Atlassian · Schema

UserPage

A paginated list of users.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

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