{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ArchiveUpdateRequest", "title": "ArchiveUpdateRequest", "properties": { "name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Name" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Description" } }, "type": "object", "description": "Request model for updating an archive (partial).\n\nSupports updating only name and description." }