Atlassian · Schema

UserPropertyKeyArray

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

atlassian-userpropertykeyarray-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserPropertyKeyArray",
  "title": "UserPropertyKeyArray",
  "required": [
    "results"
  ],
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "key": {
            "type": "string"
          }
        }
      },
      "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"
    }
  }
}