Docupilot · Schema

PatchedOrganization

PatchedOrganization schema from Docupilot accounts API

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
name string
subdomain string
created_time string
updated_time string
enforce_mfa boolean
logo string
password_based_login boolean Whether password-based login is allowed for this organization
region string
provisioning_mode string
View JSON Schema on GitHub

JSON Schema

accounts-PatchedOrganization.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PatchedOrganization",
  "description": "PatchedOrganization schema from Docupilot accounts API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 50
    },
    "subdomain": {
      "type": "string",
      "readOnly": true
    },
    "created_time": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "updated_time": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "enforce_mfa": {
      "type": "boolean",
      "readOnly": true
    },
    "logo": {
      "type": "string",
      "format": "binary",
      "nullable": true
    },
    "password_based_login": {
      "type": "boolean",
      "readOnly": true,
      "description": "Whether password-based login is allowed for this organization"
    },
    "region": {
      "enum": [
        "us1"
      ],
      "type": "string",
      "readOnly": true
    },
    "provisioning_mode": {
      "enum": [
        "manual",
        "scim"
      ],
      "type": "string",
      "readOnly": true
    }
  }
}