{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/VersionApprover", "title": "VersionApprover", "additionalProperties": true, "description": "Contains details about a version approver.", "properties": { "accountId": { "description": "The Atlassian account ID of the approver.", "readOnly": true, "type": "string" }, "declineReason": { "description": "A description of why the user is declining the approval.", "readOnly": true, "type": "string" }, "description": { "description": "A description of what the user is approving within the specified version.", "readOnly": true, "type": "string" }, "status": { "description": "The status of the approval, which can be *PENDING*, *APPROVED*, or *DECLINED*", "readOnly": true, "type": "string" } }, "type": "object" }