Atlassian · Schema

ContentRestrictionAddOrUpdateArray

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-contentrestrictionaddorupdatearray-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContentRestrictionAddOrUpdateArray",
  "title": "ContentRestrictionAddOrUpdateArray",
  "oneOf": [
    {
      "type": "object",
      "required": [
        "results"
      ],
      "properties": {
        "results": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/ContentRestrictionUpdate"
          }
        },
        "start": {
          "type": "integer",
          "format": "int32"
        },
        "limit": {
          "type": "integer",
          "format": "int32"
        },
        "size": {
          "type": "integer",
          "format": "int32"
        },
        "restrictionsHash": {
          "type": "string",
          "description": "This property is used by the UI to figure out whether a set of restrictions\nhas changed."
        },
        "_links": {
          "$ref": "#/components/schemas/GenericLinks"
        }
      }
    },
    {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ContentRestrictionUpdate"
      }
    }
  ]
}