{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/panCreateFolder", "title": "Add Folder", "type": "object", "properties": { "folder": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "The folder's name.", "example": "Billing" }, "description": { "type": "string", "description": "The folder's description.", "example": "The Billing API." }, "parentFolderId": { "type": "integer", "default": 0, "description": "The folder's parent folder ID. This value defaults to `0`. To create a folder at the root level, omit this property.", "example": 0 } } } } }