Atlassian · Schema

ContentRestrictionArray

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
results array
start integer
limit integer
size integer
restrictionsHash string This property is used by the UI to figure out whether a set of restrictions has changed.
_links object
View JSON Schema on GitHub

JSON Schema

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