Atlassian · Schema

IncludedFields

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
actuallyIncluded array
excluded array
included array
View JSON Schema on GitHub

JSON Schema

atlassian-includedfields-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IncludedFields",
  "title": "IncludedFields",
  "additionalProperties": false,
  "properties": {
    "actuallyIncluded": {
      "items": {
        "type": "string"
      },
      "type": "array",
      "uniqueItems": true
    },
    "excluded": {
      "items": {
        "type": "string"
      },
      "type": "array",
      "uniqueItems": true
    },
    "included": {
      "items": {
        "type": "string"
      },
      "type": "array",
      "uniqueItems": true
    }
  },
  "type": "object"
}