mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
35 lines
817 B
TypeScript
35 lines
817 B
TypeScript
|
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
|
||
|
>;
|