Atlassian · Schema

SpacePropertyArray

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

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