Properties
| Name | Type | Description |
|---|---|---|
| completed_at | string | |
| created_at | string | |
| creator_id | string | |
| description | string | |
| download_url | string | |
| expires_at | string | |
| id | string | |
| name | string | |
| raw | object | |
| sent_at | string | |
| status | string | |
| template_id | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SigningDocument",
"title": "SigningDocument",
"properties": {
"completed_at": {
"format": "date-time",
"type": "string"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"creator_id": {
"type": "string"
},
"description": {
"type": "string"
},
"download_url": {
"type": "string"
},
"expires_at": {
"format": "date-time",
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"sent_at": {
"format": "date-time",
"type": "string"
},
"status": {
"enum": [
"DRAFT",
"SENT",
"DELIVERED",
"IN_PROGRESS",
"COMPLETED",
"DECLINED",
"VOIDED",
"EXPIRED"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"template_id": {
"type": "string"
},
"updated_at": {
"format": "date-time",
"type": "string"
}
},
"type": "object"
}