| Name | Type | Description | Notes |
|---|---|---|---|
| content | str | Source ICU message string to derive skeletons from. Mutually exclusive with `id`; exactly one of the two must be provided. | [optional] |
| id | str | Code of an existing translation to source content from. Mutually exclusive with `content`; exactly one of the two must be provided. Returns 404 when the translation does not exist. | [optional] |
| locale_codes | List[str] | Locale codes for which to generate skeletons. The pluralization rules of each locale determine which plural forms appear in the output. | [optional] |
| keep_content | bool | When true, preserves the existing translation text in each plural form and adds any missing forms for the locale rather than stripping all literal content. | [optional] |
| zero_form_enabled | bool | When true, includes the zero plural form in the generated skeleton for locales that support it. | [optional] |
| cldr_version | str | Pluralization rule set to apply when constructing skeletons. Accepted values are `legacy` and `cldr_41`. Defaults to `legacy` when omitted. | [optional] |