JFrog · Schema
Update
ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| description | string | |
| status | string | |
| update_type | string | |
| target_devices | array | |
| target_groups | array | |
| progress | object | |
| created_at | string | |
| completed_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Update",
"title": "Update",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"pending",
"in_progress",
"completed",
"failed",
"cancelled"
]
},
"update_type": {
"type": "string",
"enum": [
"file",
"script",
"package",
"docker_compose"
]
},
"target_devices": {
"type": "array",
"items": {
"type": "string"
}
},
"target_groups": {
"type": "array",
"items": {
"type": "string"
}
},
"progress": {
"type": "object",
"properties": {
"total_devices": {
"type": "integer"
},
"completed": {
"type": "integer"
},
"failed": {
"type": "integer"
},
"pending": {
"type": "integer"
}
}
},
"created_at": {
"type": "string",
"format": "date-time"
},
"completed_at": {
"type": "string",
"format": "date-time"
}
}
}