unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
32 lines • 838 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.featureEnvironmentMetricsSchema = void 0;
exports.featureEnvironmentMetricsSchema = {
$id: '#/components/schemas/featureEnvironmentMetricsSchema',
type: 'object',
additionalProperties: false,
required: ['environment', 'timestamp', 'yes', 'no'],
properties: {
featureName: {
type: 'string',
},
appName: {
type: 'string',
},
environment: {
type: 'string',
},
timestamp: {
type: 'string',
format: 'date-time',
},
yes: {
type: 'number',
},
no: {
type: 'number',
},
},
components: {},
};
//# sourceMappingURL=feature-environment-metrics-schema.js.map