{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateFolderSpecification",
"title": "UpdateFolderSpecification",
"type": "object",
"description": "Specification for updating a folder.",
"properties": {
"name": {
"type": "string",
"description": "New name for the folder."
},
"parent_id": {
"type": "string",
"description": "New parent folder ID to move the folder to."
}
}
}