{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Restore", "title": "Restore", "type": "object", "description": "Represents a restore operation on a CockroachDB cluster.", "properties": { "id": { "type": "string", "description": "Unique identifier of the restore operation." }, "cluster_id": { "type": "string", "description": "ID of the destination cluster being restored into." }, "status": { "type": "string", "description": "Current status of the restore operation." }, "created_at": { "type": "string", "format": "date-time", "description": "Timestamp when the restore was initiated." } } }