CircleCI · Schema

ResourceClassCreation

CI/CDContinuous IntegrationContinuous DeploymentDevOpsPipelinesWorkflows

Properties

Name Type Description
id string The unique identifier of the resource class
resource_class string The resource class name in namespace/name format
description string A description of the resource class
token string The resource class token. This is only displayed once and cannot be retrieved again. Store it securely.
View JSON Schema on GitHub

JSON Schema

circleci-resourceclasscreation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourceClassCreation",
  "title": "ResourceClassCreation",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The unique identifier of the resource class"
    },
    "resource_class": {
      "type": "string",
      "description": "The resource class name in namespace/name format"
    },
    "description": {
      "type": "string",
      "description": "A description of the resource class"
    },
    "token": {
      "type": "string",
      "description": "The resource class token. This is only displayed once and cannot be retrieved again. Store it securely."
    }
  }
}