Atlassian · Schema

PolicyPage

A paginated list of policies.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
data array The list of policies.
links object
View JSON Schema on GitHub

JSON Schema

atlassian-policypage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PolicyPage",
  "title": "PolicyPage",
  "type": "object",
  "description": "A paginated list of policies.",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Policy"
      },
      "description": "The list of policies.",
      "example": []
    },
    "links": {
      "$ref": "#/components/schemas/PaginationLinks"
    }
  }
}