Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| name | string | |
| state | string | |
| result | string | |
| createdDate | string | |
| finishedDate | string | |
| pipeline | object | |
| resources | object | |
| variables | object | |
| url | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PipelineRun",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"state": {
"type": "string"
},
"result": {
"type": "string"
},
"createdDate": {
"type": "string"
},
"finishedDate": {
"type": "string"
},
"pipeline": {
"type": "object"
},
"resources": {
"type": "object"
},
"variables": {
"type": "object"
},
"url": {
"type": "string"
}
}
}