Files
onspring-api-docs/src/docs/version_002/docsStructure.ts
T

64 lines
1.4 KiB
TypeScript
Raw Normal View History

import { DocsStructure } from '@/app/types/types';
2023-04-09 14:50:50 -05:00
export const versionTwo: DocsStructure = {
version: 'version_002',
2023-04-13 17:22:28 -05:00
hasSwagger: true,
2023-04-09 14:50:50 -05:00
docs: [
{
title: 'Introduction',
folder: 'introduction',
copy: 'copy.md',
example: 'example.md',
children: [],
},
{
title: 'Authentication',
folder: 'authentication',
copy: 'copy.md',
example: 'example.md',
children: [],
},
2023-04-13 18:26:33 -05:00
{
title: 'Data Format',
folder: 'data_format',
copy: 'copy.md',
example: 'example.md',
children: [],
},
2023-04-13 17:22:28 -05:00
{
title: 'Pagination',
folder: 'pagination',
copy: 'copy.md',
example: 'example.md',
children: [],
},
{
title: 'Resources',
folder: 'resources',
children: [
{
title: 'Records',
folder: 'resources/records',
copy: 'copy.md',
example: 'example.md',
children: [
2023-04-12 10:54:07 -05:00
{
title: 'Field Values',
folder: 'resources/records/field_values',
copy: 'copy.md',
example: 'example.md',
},
{
title: 'Get Records by App',
folder:
'resources/records/get_records_by_app',
copy: 'copy.md',
example: 'example.md',
},
],
},
],
},
2023-04-09 14:50:50 -05:00
],
};