DocSpring · Schema

folder

PDFDocument GenerationPDF TemplatesE-SignaturesFormsHTML to PDFDocument Automation

Properties

Name Type Description
id string
name string
path string
parent_folder_id string
View JSON Schema on GitHub

JSON Schema

folder.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/docspring/main/json-schema/folder.json",
  "title": "folder",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "nullable": true
    },
    "name": {
      "type": "string",
      "nullable": true
    },
    "path": {
      "type": "string",
      "nullable": true
    },
    "parent_folder_id": {
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "id",
    "name",
    "parent_folder_id",
    "path"
  ],
  "additionalProperties": false
}