{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PipelineCoupling", "title": "PipelineCoupling", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "app": { "type": "object", "properties": { "id": { "type": "string", "format": "uuid" } } }, "pipeline": { "type": "object", "properties": { "id": { "type": "string", "format": "uuid" } } }, "stage": { "type": "string", "enum": [ "review", "development", "staging", "production" ] }, "created_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" } } }