Atlassian · Schema

DomainPage

A paginated list of domains.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

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