CircleCI · Schema

PipelineCreation

CI/CDContinuous IntegrationContinuous DeploymentDevOpsPipelinesWorkflows

Properties

Name Type Description
id string The unique identifier of the new pipeline
state string The state of the new pipeline
number integer The pipeline number
created_at string When the pipeline was created
View JSON Schema on GitHub

JSON Schema

circleci-pipelinecreation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PipelineCreation",
  "title": "PipelineCreation",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The unique identifier of the new pipeline"
    },
    "state": {
      "type": "string",
      "description": "The state of the new pipeline"
    },
    "number": {
      "type": "integer",
      "description": "The pipeline number"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "When the pipeline was created"
    }
  }
}