GitHub Actions · Schema
Artifact
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| node_id | string | |
| name | string | The name of the artifact. |
| size_in_bytes | integer | The size in bytes of the artifact. |
| url | string | |
| archive_download_url | string | |
| expired | boolean | |
| created_at | string | |
| expires_at | string | |
| updated_at | string | |
| workflow_run | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Artifact",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"node_id": {
"type": "string"
},
"name": {
"type": "string",
"description": "The name of the artifact."
},
"size_in_bytes": {
"type": "integer",
"description": "The size in bytes of the artifact."
},
"url": {
"type": "string"
},
"archive_download_url": {
"type": "string"
},
"expired": {
"type": "boolean"
},
"created_at": {
"type": "string"
},
"expires_at": {
"type": "string"
},
"updated_at": {
"type": "string"
},
"workflow_run": {
"type": "object"
}
}
}