UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.

39 lines 985 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.clientApplicationSchema = void 0; exports.clientApplicationSchema = { $id: '#/components/schemas/clientApplicationSchema', type: 'object', required: ['appName', 'interval', 'started', 'strategies'], properties: { appName: { type: 'string', }, instanceId: { type: 'string', }, sdkVersion: { type: 'string', }, environment: { type: 'string', }, interval: { type: 'number', }, started: { oneOf: [ { type: 'string', format: 'date-time' }, { type: 'number' }, ], }, strategies: { type: 'array', items: { type: 'string', }, }, }, components: {}, }; //# sourceMappingURL=client-application-schema.js.map