Docupilot · Schema

ExportMergeHistory

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
id integer
name string
from_date string
to_date string
status string
View JSON Schema on GitHub

JSON Schema

app-ExportMergeHistory.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ExportMergeHistory",
  "description": "",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "readOnly": true
    },
    "from_date": {
      "type": "string",
      "format": "date"
    },
    "to_date": {
      "type": "string",
      "format": "date"
    },
    "status": {
      "enum": [
        "pending",
        "success",
        "error"
      ],
      "type": "string"
    }
  },
  "required": [
    "from_date",
    "id",
    "name",
    "to_date"
  ]
}