diff --git a/src/lib/openapi/spec/feature-lifecycle-schema.ts b/src/lib/openapi/spec/feature-lifecycle-schema.ts index 88878f8a75..cabbe86cbb 100644 --- a/src/lib/openapi/spec/feature-lifecycle-schema.ts +++ b/src/lib/openapi/spec/feature-lifecycle-schema.ts @@ -11,7 +11,7 @@ export const featureLifecycleSchema = { properties: { stage: { type: 'string', - enum: ['initial', 'pre-live', 'live', 'completed', 'archived'], + enum: ['define', 'develop', 'production', 'cleanup', 'archived'], example: 'initial', description: 'The name of the lifecycle stage that got recorded for a given feature', diff --git a/src/lib/openapi/spec/feature-schema.ts b/src/lib/openapi/spec/feature-schema.ts index 7c7be1fe1c..cd4b6e2024 100644 --- a/src/lib/openapi/spec/feature-schema.ts +++ b/src/lib/openapi/spec/feature-schema.ts @@ -164,10 +164,10 @@ export const featureSchema = { description: 'The name of the current lifecycle stage', type: 'string', enum: [ - 'initial', - 'pre-live', - 'live', - 'completed', + 'define', + 'develop', + 'production', + 'cleanup', 'archived', ], example: 'initial', diff --git a/src/lib/openapi/spec/feature-search-response-schema.ts b/src/lib/openapi/spec/feature-search-response-schema.ts index e925f3c1e7..7f7895cb25 100644 --- a/src/lib/openapi/spec/feature-search-response-schema.ts +++ b/src/lib/openapi/spec/feature-search-response-schema.ts @@ -152,10 +152,10 @@ export const featureSearchResponseSchema = { description: 'The name of the current lifecycle stage', type: 'string', enum: [ - 'initial', - 'pre-live', - 'live', - 'completed', + 'define', + 'develop', + 'production', + 'cleanup', 'archived', ], example: 'initial',