Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| version | integer | |
| description | string | |
| status | string | |
| current | boolean | |
| addon_plan_names | array | |
| slug | object | |
| user | object | |
| app | object | |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Release",
"title": "Release",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"version": {
"type": "integer"
},
"description": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"failed",
"pending",
"succeeded"
]
},
"current": {
"type": "boolean"
},
"addon_plan_names": {
"type": "array",
"items": {
"type": "string"
}
},
"slug": {
"type": "object",
"nullable": true,
"properties": {
"id": {
"type": "string",
"format": "uuid"
}
}
},
"user": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"id": {
"type": "string",
"format": "uuid"
}
}
},
"app": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
}
}
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
}
}
}