unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
17 lines • 524 B
JavaScript
import { contextFieldSchema } from './context-field-schema.js';
import { legalValueSchema } from './legal-value-schema.js';
export const contextFieldsSchema = {
$id: '#/components/schemas/contextFieldsSchema',
type: 'array',
description: 'A list of context fields',
items: {
$ref: '#/components/schemas/contextFieldSchema',
},
components: {
schemas: {
contextFieldSchema,
legalValueSchema,
},
},
};
//# sourceMappingURL=context-fields-schema.js.map