{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/blog-posts-api-restore-previous-version-request-schema.json", "title": "RestorePreviousVersionRequest", "description": "Request to restore a previous version", "type": "object", "properties": { "id": { "type": "string", "description": "ID of the blog post", "example": "500123" }, "revisionId": { "type": "string", "description": "ID of the revision to restore", "example": "500123" } }, "required": [ "id", "revisionId" ] }