{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/author",
"title": "author",
"allOf": [
{
"$ref": "#/components/schemas/object"
},
{
"type": "object",
"title": "Author",
"description": "The author of a change in a repository",
"properties": {
"raw": {
"type": "string",
"description": "The raw author value from the repository. This may be the only value available if the author does not match a user in Bitbucket."
},
"user": {
"$ref": "#/components/schemas/account"
}
},
"additionalProperties": true
}
]
}