Docupilot · Schema

TimeZone

TimeZone schema from Docupilot accounts API

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
name string
tz string
offset string
View JSON Schema on GitHub

JSON Schema

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