Spinnaker · Schema

Spinnaker Pipeline Execution

JSON Schema for a Spinnaker pipeline execution, including stages, status, and trigger information.

Continuous DeliveryContainersDevOpsMulti-CloudPipelines

Properties

Name Type Description
id string Unique pipeline execution ID
application string Spinnaker application name
name string Pipeline name
status string Current execution status
startTime integer Execution start time in milliseconds since epoch
endTime integer Execution end time in milliseconds since epoch
trigger object Trigger that initiated this execution
stages array Stage executions in this pipeline run
View JSON Schema on GitHub

JSON Schema

spinnaker-pipeline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/spinnaker/json-schema/spinnaker-pipeline-schema.json",
  "title": "Spinnaker Pipeline Execution",
  "description": "JSON Schema for a Spinnaker pipeline execution, including stages, status, and trigger information.",
  "type": "object",
  "required": ["id", "application", "name", "status"],
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique pipeline execution ID"
    },
    "application": {
      "type": "string",
      "description": "Spinnaker application name"
    },
    "name": {
      "type": "string",
      "description": "Pipeline name"
    },
    "status": {
      "type": "string",
      "description": "Current execution status",
      "enum": ["NOT_STARTED", "RUNNING", "PAUSED", "SUSPENDED", "SUCCEEDED", "FAILED_CONTINUE", "TERMINAL", "CANCELED", "REDIRECT", "STOPPED", "SKIPPED", "BUFFERED"]
    },
    "startTime": {
      "type": "integer",
      "description": "Execution start time in milliseconds since epoch"
    },
    "endTime": {
      "type": "integer",
      "description": "Execution end time in milliseconds since epoch"
    },
    "trigger": {
      "type": "object",
      "description": "Trigger that initiated this execution",
      "additionalProperties": true
    },
    "stages": {
      "type": "array",
      "description": "Stage executions in this pipeline run",
      "items": {
        "$ref": "#/$defs/StageExecution"
      }
    }
  },
  "$defs": {
    "StageExecution": {
      "type": "object",
      "description": "A single stage within a pipeline execution",
      "required": ["id", "type", "status"],
      "properties": {
        "id": {
          "type": "string",
          "description": "Unique stage execution ID"
        },
        "name": {
          "type": "string",
          "description": "Stage display name"
        },
        "type": {
          "type": "string",
          "description": "Stage type (deploy, wait, manualJudgment, bake, findImage, etc.)"
        },
        "status": {
          "type": "string",
          "description": "Stage status",
          "enum": ["NOT_STARTED", "RUNNING", "PAUSED", "SUCCEEDED", "FAILED_CONTINUE", "TERMINAL", "CANCELED", "SKIPPED"]
        },
        "startTime": {
          "type": "integer",
          "description": "Stage start time in milliseconds"
        },
        "endTime": {
          "type": "integer",
          "description": "Stage end time in milliseconds"
        },
        "context": {
          "type": "object",
          "description": "Stage context data and outputs",
          "additionalProperties": true
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/spinnaker-pipeline"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.