Atlassian · Schema

LabeledContentPageResponse

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
results array
start integer
limit integer
size integer
View JSON Schema on GitHub

JSON Schema

atlassian-labeledcontentpageresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LabeledContentPageResponse",
  "title": "LabeledContentPageResponse",
  "required": [
    "results",
    "size"
  ],
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LabeledContent"
      }
    },
    "start": {
      "type": "integer",
      "format": "int32"
    },
    "limit": {
      "type": "integer",
      "format": "int32"
    },
    "size": {
      "type": "integer",
      "format": "int32"
    }
  }
}