SignWell · Schema

AttachmentRequestInfo

Attachment request information

E-SignatureElectronic SignatureDocumentsPDFSigningTemplatesWorkflowsHIPAASOC2

Properties

Name Type Description
name string Name of the attachment request
url string URL of the uploaded attachment (when available)
required boolean Whether the attachment is required
View JSON Schema on GitHub

JSON Schema

AttachmentRequestInfo.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/signwell/main/json-schema/AttachmentRequestInfo.json",
  "title": "AttachmentRequestInfo",
  "type": "object",
  "description": "Attachment request information",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the attachment request"
    },
    "url": {
      "type": "string",
      "format": "url",
      "description": "URL of the uploaded attachment (when available)"
    },
    "required": {
      "type": "boolean",
      "description": "Whether the attachment is required"
    }
  },
  "required": [
    "name",
    "required"
  ]
}