`@fin.cx/fee-schedules` is a TypeScript package for country-specific fee schedule data. It gives apps a clean, searchable source of truth for statutory, contractual, and professional fee schedules, starting with Germany's healthcare, legal, court, public compensation, and regulated professional service schedules.
Use it when you need stable identifiers, abbreviations, imported fee table rows, source metadata, and rule sections for fee systems such as `GOÄ`, `GOZ`, `RVG`, `GNotKG`, `GKG`, `HOAI`, `JVEG`, and more.
## Issue Reporting and Security
For reporting bugs, issues, or security vulnerabilities, please visit [community.foss.global/](https://community.foss.global/). This is the central community hub for all issue reporting. Developers who sign and comply with our contribution agreement and go through identification can also get a [code.foss.global/](https://code.foss.global/) account to submit Pull Requests directly.
| `findByAbbreviation(abbreviation, countryCode?)` | Returns the first schedule matching an abbreviation. Abbreviation lookup normalizes whitespace and casing. |
Fee rows preserve the original source cells in order. Where the row is code-based, `code`, `description`, `points`, and `amountEur` are populated when those values can be read directly from the source table.
```ts
constrow=schedules.getFeeRow('de-goae','1');
console.log(row?.cells);
// ['1', 'Beratung - auch mittels Fernsprecher -', '80', '9,12']
```
## Data Sources
The package imports official federal XML data from [gesetze-im-internet.de](https://www.gesetze-im-internet.de/) for these schedules: GOÄ, GOZ, GOP, GOT, StBVV, RVG, GNotKG, GKG, FamGKG, GvKostG, JVEG, InsVV, HOAI, and AMPreisV.
Some German fee schedules are not federal XML laws on `gesetze-im-internet.de`. They are represented with explicit `external-source-pending` source metadata until their source-specific importers are added: EBM, BEMA, aG-DRG / FPV, UV-GOÄ, Heilmittel GKV, Hebammenhilfevertrag, and GebüH.
The npm package does not ship the catalog or fee data payload. Supported countries, schedule metadata, generation source config, fee rows, and rule sections live under `.onlygit/` in git.
The generator lives in `scripts/generate-germany.mjs`. It reads `.onlygit/fee-schedules.sources.json`, downloads the official XML ZIP files into `.nogit/fee-schedules-sources/`, extracts them, parses fee table rows and rule sections, and writes:
| `de-hoai` | Architekten/Ingenieure | `HOAI` | Honorarordnung für Architekten und Ingenieure; heute vor allem Orientierungs-/Auffangsystem für erfasste Planungsleistungen. |
| `de-heilmittel-gkv` | Heilmittel, z. B. Physio/Logo/Ergo | `keine einzelne GO` | GKV-Vergütungsvereinbarungen/Preislisten nach Bundesrahmenverträgen. |
| `de-hebammenhilfevertrag` | Hebammen GKV | `Hebammenhilfevertrag` | Vertrag/Vergütungsvereinbarung nach § 134a SGB V. |
| `de-gebueh` | Heilpraktiker | `GebüH` | Gebührenverzeichnis für Heilpraktiker; keine amtliche verbindliche Gebührenordnung, eher Orientierung/übliche Vergütung. |
## Typical Use Cases
- Build country-aware fee schedule selectors.
- Normalize German fee schedule abbreviations in forms and admin systems.
- Enrich billing, compliance, procurement, or legal-tech workflows with stable fee schedule metadata.
- Power search, autocomplete, or classification flows without hand-maintaining the same acronym list in every app.
## Scope
This package includes imported fee rows and rule sections for the German federal schedules currently available as official XML. It does not yet normalize every schedule into a single calculation engine because several schedules use different fee mechanics: points, factors, euro amounts, value tables, formula rules, or external annual catalogs.
## License and Legal Information
This repository contains open-source code licensed under the MIT License. A copy of the license can be found in the [license](./license) file.
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
### Trademarks
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH or third parties, and are not included within the scope of the MIT license granted herein.
Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines or the guidelines of the respective third-party owners, and any usage must be approved in writing. Third-party trademarks used herein are the property of their respective owners and used only in a descriptive manner, e.g. for an implementation of an API or similar.
### Company Information
Task Venture Capital GmbH
Registered at District Court Bremen HRB 35230 HB, Germany
For any legal inquiries or further information, please contact us via email at hello@task.vc.
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.