Docupilot · Schema

Domain

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
id integer
domain_name string
txt_record string
is_txt_verified boolean
is_spf_verified boolean
spf_record string
View JSON Schema on GitHub

JSON Schema

app-Domain.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Domain",
  "description": "",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "domain_name": {
      "type": "string",
      "maxLength": 255
    },
    "txt_record": {
      "type": "string",
      "maxLength": 60
    },
    "is_txt_verified": {
      "type": "boolean"
    },
    "is_spf_verified": {
      "type": "boolean"
    },
    "spf_record": {
      "type": "string",
      "readOnly": true
    }
  },
  "required": [
    "domain_name",
    "id",
    "spf_record",
    "txt_record"
  ]
}