Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| app | object | |
| pipeline | object | |
| stage | string | |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$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"
}
}
}