{
"$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-clone-request-schema.json",
"title": "CloneRequest",
"description": "Request to clone a blog post",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID of the blog post to clone",
"example": "500123"
}
},
"required": [
"id"
]
}