UNPKG

unleash-server

Version:

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

27 lines 851 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.environmentsProjectSchema = void 0; const environment_project_schema_1 = require("./environment-project-schema"); exports.environmentsProjectSchema = { $id: '#/components/schemas/environmentsProjectSchema', type: 'object', additionalProperties: false, required: ['version', 'environments'], properties: { version: { type: 'integer', }, environments: { type: 'array', items: { $ref: '#/components/schemas/environmentProjectSchema', }, }, }, components: { schemas: { environmentProjectSchema: environment_project_schema_1.environmentProjectSchema, }, }, }; //# sourceMappingURL=environments-project-schema.js.map