Atlassian · Schema

EventPage

A paginated list of events.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

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