Docupilot · Schema

SAMLProviderCreate

SAMLProviderCreate schema from Docupilot accounts API

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
name string
type string
View JSON Schema on GitHub

JSON Schema

accounts-SAMLProviderCreate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SAMLProviderCreate",
  "description": "SAMLProviderCreate schema from Docupilot accounts API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 40
    },
    "type": {
      "enum": [
        "microsoft",
        "okta"
      ],
      "type": "string"
    }
  },
  "required": [
    "name",
    "type"
  ]
}