UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

29 lines 988 B
import { projectApplicationSchema } from './project-application-schema.js'; import { projectApplicationSdkSchema } from './project-application-sdk-schema.js'; export const projectApplicationsSchema = { $id: '#/components/schemas/projectApplicationsSchema', type: 'object', description: 'A list of project applications', required: ['total', 'applications'], properties: { total: { type: 'integer', example: 50, description: 'The total number of project applications.', }, applications: { type: 'array', items: { $ref: '#/components/schemas/projectApplicationSchema', }, description: 'All applications defined for a specific project.', }, }, components: { schemas: { projectApplicationSchema, projectApplicationSdkSchema, }, }, }; //# sourceMappingURL=project-applications-schema.js.map