{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LocalizedString", "title": "LocalizedString", "type": "object", "properties": { "localized": { "type": "object", "additionalProperties": { "type": "string" }, "example": { "en_US": "Acme Corporation" } }, "preferredLocale": { "$ref": "#/components/schemas/Locale" } } }