Docupilot · Schema

Organization

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
name string
subdomain string
logo string
View JSON Schema on GitHub

JSON Schema

app-Organization.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Organization",
  "description": "",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "readOnly": true
    },
    "subdomain": {
      "type": "string",
      "readOnly": true
    },
    "logo": {
      "type": "string",
      "format": "uri",
      "readOnly": true,
      "nullable": true
    }
  },
  "required": [
    "logo",
    "name",
    "subdomain"
  ]
}