{ "$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 }