UNPKG

unleash-server

Version:

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

39 lines 1.51 kB
export const edgeEnvironmentProjectsListSchema = { $id: '#/components/schemas/edgeEnvironmentProjectsListSchema', type: 'object', description: 'Schema to request api tokens for a list of environment -> projects tuples', required: ['tokens'], properties: { tokens: { type: 'array', description: 'A list of requested api tokens.', items: { type: 'object', additionalProperties: false, description: 'A list of requested environment -> projects tuples.', required: ['environment', 'projects'], properties: { environment: { type: 'string', description: 'The name of an existing environment', example: 'development', nullable: false, }, projects: { type: 'array', description: `The list of projects Edge wants access to, or '*' for a wildcard token`, items: { type: 'string', example: 'default', }, nullable: false, }, }, nullable: false, }, nullable: false, }, }, components: {}, }; //# sourceMappingURL=edge-environment-projects-list-schema.js.map