{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "properties": {
    "apiVersion": {
      "title": "API Version",
      "type": "string",
      "description": "The API version",
      "examples": [
        "1.0"
      ],
      "default": "1.0"
    },
    "token": {
      "title": "Token",
      "type": "string",
      "description": "The API token",
      "writeOnly": true,
      "examples": [
        "sample-tokenyWSJdXBACMLLWMNGgADFA"
      ]
    },
    "workspaceGid": {
      "title": "Workspace GID",
      "type": "string",
      "description": "Globally unique identifier for the workspace or organization.",
      "examples": [
        "12345"
      ]
    }
  },
  "type": "object",
  "additionalProperties": true,
  "required": [
    "token",
    "workspaceGid"
  ]
}