CircleCI · Schema

ResourceClass

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
View JSON Schema on GitHub

JSON Schema

circleci-resourceclass-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourceClass",
  "title": "ResourceClass",
  "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"
    }
  }
}