Skip to main content

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.

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.4.0.tar.gz (251.0 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.4.0-py3-none-any.whl (57.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: xsd_former-1.4.0.tar.gz
  • Upload date:
  • Size: 251.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xsd_former-1.4.0.tar.gz
Algorithm Hash digest
SHA256 cc96c6db53548429b791b74440f63a44171338bf0067144cca604529cd801eda
MD5 2e8fecd57af81a1b281e891ac5ee9a68
BLAKE2b-256 039602af9b1da2da077ea5675cb7d99254211a14550782b752797968d3549bd3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: xsd_former-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 57.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xsd_former-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 07374b24efc3d1729f3c2f67c9b18e5ff695df964db3d42010a84452195cb032
MD5 c4399fc1d536c80049504d46ae62d726
BLAKE2b-256 516f39e370437a1c1eaa5ba259f1c7d10abf8aa55d693537bce60d297c8acdc7

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

1.4.0 This release

2 files

1.3.0

2 files

1.2.0

2 files

1.1.0

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page