CircleCI · Schema

Artifact

CI/CDContinuous IntegrationContinuous DeploymentDevOpsPipelinesWorkflows

Properties

Name Type Description
path string The artifact path
pretty_path string Human-readable artifact path
node_index integer The node index that produced this artifact
url string URL to download the artifact
View JSON Schema on GitHub

JSON Schema

circleci-artifact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Artifact",
  "title": "Artifact",
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "The artifact path"
    },
    "pretty_path": {
      "type": "string",
      "description": "Human-readable artifact path"
    },
    "node_index": {
      "type": "integer",
      "description": "The node index that produced this artifact"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL to download the artifact"
    }
  }
}