{ "$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" } } }