mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
41 lines
896 B
TypeScript
41 lines
896 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
|
|
|
|
export const projectSchema = {
|
|
$id: '#/components/schemas/projectSchema',
|
|
type: 'object',
|
|
additionalProperties: false,
|
|
required: ['id', 'name'],
|
|
properties: {
|
|
id: {
|
|
type: 'string',
|
|
},
|
|
name: {
|
|
type: 'string',
|
|
},
|
|
description: {
|
|
type: 'string',
|
|
},
|
|
health: {
|
|
type: 'number',
|
|
},
|
|
featureCount: {
|
|
type: 'number',
|
|
},
|
|
memberCount: {
|
|
type: 'number',
|
|
},
|
|
createdAt: {
|
|
type: 'string',
|
|
format: 'date-time',
|
|
},
|
|
updatedAt: {
|
|
type: 'string',
|
|
format: 'date-time',
|
|
nullable: true,
|
|
},
|
|
},
|
|
components: {},
|
|
} as const;
|
|
|
|
export type ProjectSchema = FromSchema<typeof projectSchema>;
|