{ "$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-create-language-variation-request-schema.json", "title": "CreateLanguageVariationRequest", "description": "Request to create language variation", "type": "object", "properties": { "id": { "type": "string", "description": "ID of the source post", "example": "500123" }, "language": { "type": "string", "description": "Language code for the new variation", "example": "en" } }, "required": [ "id", "language" ] }