Atlassian · Schema

SpaceWatch

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string
watcher object
spaceKey string
labelName string
prefix string
View JSON Schema on GitHub

JSON Schema

atlassian-spacewatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpaceWatch",
  "title": "SpaceWatch",
  "required": [
    "type",
    "watcher"
  ],
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "example": "example_value"
    },
    "watcher": {
      "$ref": "#/components/schemas/WatchUser"
    },
    "spaceKey": {
      "type": "string",
      "example": "example_value"
    },
    "labelName": {
      "type": "string",
      "example": "example_value"
    },
    "prefix": {
      "type": "string",
      "example": "example_value"
    }
  }
}