unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
17 lines • 687 B
JavaScript
export const releasePlanTemplateIdSchema = {
$id: '#/components/schemas/releasePlanTemplateIdSchema',
additionalProperties: false,
description: 'Schema for creating a release plan for a feature flag environment by copying and applying the configuration from a release plan template.',
type: 'object',
required: ['templateId'],
properties: {
templateId: {
type: 'string',
description: "The release plan template's ID. Release template IDs are ulids.",
example: '01JB9GGTGQYEQ9D40R17T3YVW2',
nullable: false,
},
},
components: {},
};
//# sourceMappingURL=release-plan-template-id-schema.js.map