Skip to main content

Generate Protobuf definitions, JSON Schema, and Python XML-to-protobuf converters from XSD and DTD schemas.

Project description

XSDFormer

XSDFormer deforms XML schema definitions (XSDs) into Protobuf definitions. It also generates Python code to convert parsed XML into the corresponding Protobuf representation.

It supports enough of the XSD specification to convert the ClinVar and BioC schemas; full support for all XSD features is a non-goal.

Why convert from XSD to Protobuf?

While XML and XSDs (or alternatively JSON and JSON schemas) are powerful for defining complex, human-readable data structures, they have some drawbacks, especially in high-performance applications or when dealing with large datasets.

Performance and Size

  • Parsing Speed: XML is a text-based format and can be slow to parse. Protobuf is a binary format that is designed for speed and efficiency. Converting XML data to Protobuf can result in significantly faster parsing times.
  • Storage Space: XML is verbose, with opening and closing tags that add to the file size. Protobuf's binary format is much more compact, leading to smaller file sizes. This is a major advantage for storing large datasets or for transmitting data over a network. Effectively compressing XML requires a schema-specific dictionary, or compressing multiple records together so that the dictionary of tag/key names can be reused. However this limits the possibility for random access enabled by compressing records individually.

Developer Experience

  • Generated Code: Protobuf compilers generate code in many languages, providing a simple and consistent way to work with the data.
  • Type Safety: The Protobuf schema provides strong typing, which can help to prevent bugs. Parsing the wire format requires the protobuf definition, meaning that the data is tied to its typed representation. Conversely XML representations are only optionally validated by a schema, and so by default type information is lost during parsing (everything is treated as text).

By converting XSDs to Protobuf definitions, xsd-former allows developers to take advantage of the benefits of Protobuf while still working with data that is originally defined in an XML schema.

Output formats

From a single XSD (or DTD) source, XSDFormer can emit:

  • Protobuf (.proto) — --proto-out.
  • Python XML→protobuf converters--py-out/--py-module.
  • JSON Schema--json-schema-out (from the XSD, or directly from a .proto via the proto subcommand).
  • TypeSpec (.tsp) — --typespec-out (see below).

TypeSpec output

TypeSpec is a compact, authorable schema language that fans out to OpenAPI, JSON Schema, and protobuf — and from those to pydantic and zod. XSDFormer emits a .tsp so the same model that backs the stored protobufs can also drive backend pydantic models and frontend zod validators, all interconvertible.

# Default: clean, readable TypeSpec (string-valued enums, native scalars).
# Suited to pydantic/zod generation.
xsdformer xsd schema.xsd --typespec-out schema.tsp

# DTD sources work too (e.g. PubMed).
xsdformer dtd pubmed.dtd --typespec-out pubmed.tsp --proto-package pubmed

# proto-compat: adds @typespec/protobuf decorations (@package, @field,
# integer-valued enums) so `tsp -> proto` can be run as a regression
# check that it matches the directly generated proto.
xsdformer xsd schema.xsd --typespec-out schema.tsp --proto-compat

The .tsp is a derived artifact — regenerated from the XSD alongside the proto, never hand-edited. The governing invariant is that xsd → proto and xsd → tsp → proto agree at the wire/semantic level (field numbers, field types, enum numbers); cosmetic differences (oneof grouping, nested-vs-hoisted placement, comments, ordering) are tolerated. See docs/adr/0001-typespec-output-format.md for the full design.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xsd_former-1.3.0.tar.gz (249.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

xsd_former-1.3.0-py3-none-any.whl (53.7 kB view details)

Uploaded Python 3

File details

Details for the file xsd_former-1.3.0.tar.gz.

File metadata

  • Download URL: xsd_former-1.3.0.tar.gz
  • Upload date:
  • Size: 249.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xsd_former-1.3.0.tar.gz
Algorithm Hash digest
SHA256 c12f79243d6efb43f7f72d3ede6fcfbefecf850c0ef78dae9da6d322d86f0a40
MD5 9b3b4cf6a061b118c446d15985b5bbde
BLAKE2b-256 81511118233beb2b88c989cd9230c225c11bfd5c87b004f949248b3ed06cfd5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xsd_former-1.3.0.tar.gz:

Publisher: release.yml on populationgenomics/xsd-former

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xsd_former-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: xsd_former-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 53.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xsd_former-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bfa6f57b872f5da1c5ef22e2ea848d38f1febf595aa5bc260d53dbdc2e1d2ca0
MD5 1dc9c1ba21d491626b79ecf62df149b0
BLAKE2b-256 fac6e84f39bfc2c337864468ecb62b581e6396d1f74133fb4e958cd9d441f56f

See more details on using hashes here.

Provenance

The following attestation bundles were made for xsd_former-1.3.0-py3-none-any.whl:

Publisher: release.yml on populationgenomics/xsd-former

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page