Docupilot · Schema

UserDemographic

UserDemographic schema from Docupilot accounts API

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
id integer
product_referral_source string
role string
View JSON Schema on GitHub

JSON Schema

accounts-UserDemographic.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UserDemographic",
  "description": "UserDemographic schema from Docupilot accounts API",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "product_referral_source": {
      "type": "string",
      "nullable": true,
      "maxLength": 52
    },
    "role": {
      "type": "string",
      "maxLength": 52
    }
  },
  "required": [
    "id",
    "role"
  ]
}