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.2.0.tar.gz (247.1 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.2.0-py3-none-any.whl (53.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: xsd_former-1.2.0.tar.gz
  • Upload date:
  • Size: 247.1 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.2.0.tar.gz
Algorithm Hash digest
SHA256 6d02d1f226ce5fa7294d3065ab6043d088b1cef74919229a9b07467a5a285883
MD5 afc5593428a887cf866bf19bf874423a
BLAKE2b-256 262fffdc1bf35f1c6b9ac32e46565f1f2ff91660ea2f690a25c6c3983f796338

See more details on using hashes here.

Provenance

The following attestation bundles were made for xsd_former-1.2.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.2.0-py3-none-any.whl.

File metadata

  • Download URL: xsd_former-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 53.1 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.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2529cee5f478f45ad99519a3be3108b377a723307621f8b7c5f40fc8c260c8eb
MD5 23185818c32f07b3dbc0bb26c665f077
BLAKE2b-256 2d4e40688858b3eac254da43444f39e806fb6bf4dbd50bfa094d9a964811bf29

See more details on using hashes here.

Provenance

The following attestation bundles were made for xsd_former-1.2.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