SignWell · Schema

CopiedContactInfo

Copied contact information

E-SignatureElectronic SignatureDocumentsPDFSigningTemplatesWorkflowsHIPAASOC2

Properties

Name Type Description
id string Contact ID
name string Contact name
email string Contact email
View JSON Schema on GitHub

JSON Schema

CopiedContactInfo.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/signwell/main/json-schema/CopiedContactInfo.json",
  "title": "CopiedContactInfo",
  "type": "object",
  "description": "Copied contact information",
  "properties": {
    "id": {
      "type": "string",
      "description": "Contact ID"
    },
    "name": {
      "type": "string",
      "description": "Contact name"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Contact email"
    }
  },
  "required": [
    "email"
  ]
}