{ "$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" }