CircleCI · Schema

Collaboration

CI/CDContinuous IntegrationContinuous DeploymentDevOpsPipelinesWorkflows

Properties

Name Type Description
vcs-type string The VCS provider type
name string The name of the organization
avatar_url string The URL of the organization avatar
slug string The organization slug
id string The unique identifier of the organization
View JSON Schema on GitHub

JSON Schema

circleci-collaboration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Collaboration",
  "title": "Collaboration",
  "type": "object",
  "properties": {
    "vcs-type": {
      "type": "string",
      "description": "The VCS provider type"
    },
    "name": {
      "type": "string",
      "description": "The name of the organization"
    },
    "avatar_url": {
      "type": "string",
      "format": "uri",
      "description": "The URL of the organization avatar"
    },
    "slug": {
      "type": "string",
      "description": "The organization slug"
    },
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The unique identifier of the organization"
    }
  }
}