Atlassian · Schema
VersionApprover
Contains details about a version approver.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| accountId | string | The Atlassian account ID of the approver. |
| declineReason | string | A description of why the user is declining the approval. |
| description | string | A description of what the user is approving within the specified version. |
| status | string | The status of the approval, which can be *PENDING*, *APPROVED*, or *DECLINED* |
JSON Schema
{
"$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"
}