Properties
| Name | Type | Description |
|---|---|---|
| created_at | string | |
| decline_reason | string | |
| document_id | string | |
| string | ||
| id | string | |
| name | string | |
| order | number | |
| raw | object | |
| role | string | |
| signed_at | string | |
| status | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SigningSignatory",
"title": "SigningSignatory",
"properties": {
"created_at": {
"format": "date-time",
"type": "string"
},
"decline_reason": {
"type": "string"
},
"document_id": {
"type": "string"
},
"email": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"order": {
"type": "number"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"role": {
"enum": [
"SIGNER",
"CC",
"APPROVER",
"IN_PERSON_SIGNER",
"VIEWER"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"signed_at": {
"format": "date-time",
"type": "string"
},
"status": {
"enum": [
"PENDING",
"SENT",
"DELIVERED",
"SIGNED",
"DECLINED",
"ERROR"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"updated_at": {
"format": "date-time",
"type": "string"
}
},
"type": "object"
}