{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/authors-api-attach-to-language-group-request-structure.json", "name": "AttachToLanguageGroupRequest", "description": "Request to attach an author to a multi-language group", "type": "object", "properties": { "id": { "type": "string", "description": "ID of the author to attach", "example": "500123" }, "language": { "type": "string", "description": "Language code for the author (e.g., es, fr, de)", "example": "en" }, "primaryId": { "type": "string", "description": "ID of the primary language author", "example": "500123" }, "primaryLanguage": { "type": "string", "description": "Language code of the primary author", "example": "en" } }, "required": [ "id", "language", "primaryId" ] }