{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/app_user",
"title": "app_user",
"allOf": [
{
"$ref": "#/components/schemas/account"
},
{
"type": "object",
"title": "App User",
"description": "An app user object.",
"properties": {
"account_id": {
"type": "string",
"description": "The user's Atlassian account ID."
},
"account_status": {
"type": "string",
"description": "The status of the account. Currently the only possible value is \"active\", but more values may be added in the future."
},
"kind": {
"type": "string",
"description": "The kind of App User."
}
},
"additionalProperties": true
}
]
}