{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateFolderRequest", "title": "UpdateFolderRequest", "type": "object", "x-apideck-schema-id": "UpdateFolderRequest", "additionalProperties": false, "properties": { "id": { "$ref": "#/components/schemas/Id" }, "name": { "type": "string", "description": "The name of the folder.", "example": "Documents" }, "description": { "type": "string", "description": "Optional description of the folder.", "example": "My Personal Documents" }, "parent_folder_id": { "$ref": "#/components/schemas/ParentFolderId" }, "pass_through": { "$ref": "#/components/schemas/PassThroughBody" } } }