APIs.io Engineering Platform · Schema
Runner Application
Runner Application
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| os | string | |
| architecture | string | |
| download_url | string | |
| filename | string | |
| temp_download_token | string | A short lived bearer token used to download the runner, if needed. |
| sha256_checksum | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/runner-application",
"title": "Runner Application",
"description": "Runner Application",
"type": "object",
"properties": {
"os": {
"type": "string"
},
"architecture": {
"type": "string"
},
"download_url": {
"type": "string"
},
"filename": {
"type": "string"
},
"temp_download_token": {
"description": "A short lived bearer token used to download the runner, if needed.",
"type": "string"
},
"sha256_checksum": {
"type": "string"
}
},
"required": [
"os",
"architecture",
"download_url",
"filename"
]
}