UNPKG

unleash-server

Version:

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

24 lines 780 B
export const projectApplicationSdkSchema = { $id: '#/components/schemas/projectApplicationSdkSchema', type: 'object', additionalProperties: false, required: ['name', 'versions'], description: 'A project application instance SDK.', properties: { name: { type: 'string', description: 'Name of the SDK package that the application is using.', example: 'unleash-client-node', }, versions: { description: 'The versions of the SDK that the application is using.', type: 'array', items: { type: 'string', }, example: ['4.1.1'], }, }, components: {}, }; //# sourceMappingURL=project-application-sdk-schema.js.map