Docupilot · Schema

SAMLProviderUpdate

SAMLProviderUpdate schema from Docupilot accounts API

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
metadata_url string Metadata URL of the Identity Provider
name string Name of the SAML provider
View JSON Schema on GitHub

JSON Schema

accounts-SAMLProviderUpdate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SAMLProviderUpdate",
  "description": "SAMLProviderUpdate schema from Docupilot accounts API",
  "type": "object",
  "properties": {
    "metadata_url": {
      "type": "string",
      "format": "uri",
      "description": "Metadata URL of the Identity Provider"
    },
    "name": {
      "type": "string",
      "description": "Name of the SAML provider"
    }
  },
  "required": [
    "metadata_url",
    "name"
  ]
}