Atlassian · Schema

Subject Types

The mapping of resource/subject types pointing to their individual event types.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
repository object
workspace object
View JSON Schema on GitHub

JSON Schema

atlassian-subject-types-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/subject_types",
  "title": "Subject Types",
  "type": "object",
  "description": "The mapping of resource/subject types pointing to their individual event types.",
  "properties": {
    "repository": {
      "type": "object",
      "properties": {
        "events": {
          "type": "object",
          "title": "Link",
          "description": "A link to a resource related to this object.",
          "properties": {
            "href": {
              "type": "string",
              "format": "uri"
            },
            "name": {
              "type": "string"
            }
          },
          "additionalProperties": false
        }
      },
      "additionalProperties": false
    },
    "workspace": {
      "type": "object",
      "properties": {
        "events": {
          "type": "object",
          "title": "Link",
          "description": "A link to a resource related to this object.",
          "properties": {
            "href": {
              "type": "string",
              "format": "uri"
            },
            "name": {
              "type": "string"
            }
          },
          "additionalProperties": false
        }
      },
      "additionalProperties": false
    }
  },
  "additionalProperties": false
}