GitHub Actions · JSON Structure

Github Actions Artifact Structure

Type: object Properties: 11

Artifact is a JSON Structure definition published by GitHub Actions, describing 11 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

id node_id name size_in_bytes url archive_download_url expired created_at expires_at updated_at workflow_run

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "Artifact",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "node_id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "size_in_bytes": {
      "type": "integer"
    },
    "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"
    }
  }
}