document-svg 2.0.2

Convert PDF, Word, Excel, PowerPoint, diagram and CAD files into one SVG per page, locally — a Rust library and the docsvg command
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "type": "record",
  "name": "User",
  "namespace": "example.avro",
  "doc": "private documentation should be omitted",
  "fields": [
    {"name": "id", "type": "long", "default": 7},
    {"name": "email", "type": "string", "doc": "secret field docs"},
    {"name": "profile", "type": {
      "type": "record",
      "name": "Profile",
      "fields": [{"name": "active", "type": "boolean"}]
    }},
    {"name": "tags", "type": {"type": "array", "items": "string"}},
    {"name": "attributes", "type": {"type": "map", "values": "string"}},
    {"name": "status", "type": ["null", {"type": "enum", "name": "Status", "symbols": ["NEW", "DONE"]}], "default": null}
  ]
}