Docupilot · Schema

ChangeRole

ChangeRole schema from Docupilot accounts API

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
role string
View JSON Schema on GitHub

JSON Schema

accounts-ChangeRole.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ChangeRole",
  "description": "ChangeRole schema from Docupilot accounts API",
  "type": "object",
  "properties": {
    "role": {
      "enum": [
        "admin",
        "member"
      ],
      "type": "string"
    }
  },
  "required": [
    "role"
  ]
}