Docupilot · Schema

CSMDetails

CSMDetails schema from Docupilot accounts API

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
name string
phone_number string
View JSON Schema on GitHub

JSON Schema

accounts-CSMDetails.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CSMDetails",
  "description": "CSMDetails schema from Docupilot accounts API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 100
    },
    "phone_number": {
      "type": "string",
      "maxLength": 20
    }
  },
  "required": [
    "name",
    "phone_number"
  ]
}