{
"$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-set-language-primary-request-schema.json",
"title": "SetLanguagePrimaryRequest",
"description": "Request to set new primary language",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID of the post to set as primary",
"example": "500123"
}
},
"required": [
"id"
]
}