unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
21 lines • 677 B
JavaScript
export const legalValueSchema = {
$id: '#/components/schemas/legalValueSchema',
type: 'object',
additionalProperties: false,
description: 'Describes a legal value. Typically used to limit possible values for contextFields or strategy properties',
required: ['value'],
properties: {
value: {
description: 'The valid value',
type: 'string',
example: '#c154c1',
},
description: {
description: 'Describes this specific legal value',
type: 'string',
example: 'Deep fuchsia',
},
},
components: {},
};
//# sourceMappingURL=legal-value-schema.js.map