get_public_serializer_formats
Returns a list of available serializer format names that are not marked for internal use only, loading the serializers if they have not been initialized.
def get_public_serializer_formats() - > list[str]
Retrieves a list of all registered serializer format identifiers that are intended for public use. This function ensures serializers are loaded into the internal registry before filtering out those marked for internal use only.
Returns
| Type | Description |
|---|---|
list[str] | A list of format keys (e.g., 'json', 'xml') available for external data serialization and export. |