1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-11-01 19:07:38 +01:00
unleash.unleash/src/lib/openapi/spec/feature-environment-metrics-schema.ts

35 lines
817 B
TypeScript
Raw Normal View History

import { FromSchema } from 'json-schema-to-ts';
export const 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: {},
} as const;
export type FeatureEnvironmentMetricsSchema = FromSchema<
typeof featureEnvironmentMetricsSchema
>;