UNPKG

unleash-server

Version:

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

26 lines 859 B
export const projectFlagCreatorsSchema = { $id: '#/components/schemas/projectFlagCreatorsSchema', type: 'array', description: 'A list of project flag creators', items: { type: 'object', additionalProperties: false, required: ['id', 'name'], properties: { id: { type: 'integer', example: 50, description: 'The user id.', }, name: { description: "Name of the user. If the user has no set name, the API falls back to using the user's username (if they have one) or email (if neither name or username is set).", type: 'string', example: 'User', }, }, }, components: { schemas: {}, }, }; //# sourceMappingURL=project-flag-creators-schema.js.map