{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/updatePanFolder", "title": "Update Folder", "type": "object", "properties": { "folder": { "type": "object", "properties": { "name": { "type": "string", "description": "The folder's new name.", "example": "Billing" }, "description": { "type": "string", "description": "The folder's updated description.", "example": "The Billing API." }, "parentFolderId": { "type": "integer", "description": "The folder's new parent folder ID.", "example": 0 } } } } }