CircleCI · Schema

CheckoutKeyList

CI/CDContinuous IntegrationContinuous DeploymentDevOpsPipelinesWorkflows

Properties

Name Type Description
items array List of checkout keys
next_page_token string Token for retrieving the next page
View JSON Schema on GitHub

JSON Schema

circleci-checkoutkeylist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CheckoutKeyList",
  "title": "CheckoutKeyList",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CheckoutKey"
      },
      "description": "List of checkout keys"
    },
    "next_page_token": {
      "type": "string",
      "description": "Token for retrieving the next page"
    }
  }
}