{ "type": "object", "description": "Request to create a language variation of an author", "properties": { "id": { "type": "string", "description": "ID of the source author", "example": "500123" }, "language": { "type": "string", "description": "Language code for the new variation", "example": "en" } }, "required": [ "id", "language" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CreateLanguageVariationRequest" }