1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-11-01 19:07:38 +01:00
unleash.unleash/src/lib/openapi/spec/features-schema.ts

23 lines
554 B
TypeScript
Raw Normal View History

import { createSchemaObject, CreateSchemaType } from '../types';
export const schema = {
type: 'object',
additionalProperties: false,
required: ['version', 'features'],
properties: {
version: {
type: 'integer',
},
features: {
type: 'array',
items: {
$ref: '#/components/schemas/featureSchema',
},
},
},
} as const;
export type FeaturesSchema = CreateSchemaType<typeof schema>;
export const featuresSchema = createSchemaObject(schema);