Four main entity types make up the register. An Accounting unit is always the starting point. Financial statements and annual reports link from it, and financial reports link from those.Each arrow is a field on the parent containing an array of child IDs. You call the child’s detail endpoint with those IDs to go one level deeper. Dotted lines indicate supporting objects that belong to a parent but are not navigated to via a separate endpoint.
A financial report can belong to both a financial statement and an annual report simultaneously.
The cover page of a financial report, embedded in UctovnyVykaz.obsah. Captures entity identification details as they appeared at time of filing — these may differ from current values on UctovnaJednotka.
Codelist-backed fields here use the same codes as on UctovnaJednotka. See Codelists.
A file attachment on a financial report or annual report. Download the binary via /domain/financialreport/attachment/{id}.
When an attachment is deleted, the parent datumPoslednejUpravy is bumped — but fetching the attachment directly returns HTTP 404. Always handle 404 when downloading.
A single table section within UctovnyVykaz.obsah.tabulky. Contains a localised name and a flat array of row values whose positions are defined by the corresponding Sablona.
Localised section name. Keys are language codes ("sk", "en"), values are label strings. Always access .nazov.sk or .nazov.en — never .nazov directly, as it is an object, not a string.
Row values in positional order, as defined by the corresponding Sablona.tabulky[i].riadky. Values are numeric strings — the unit is set by UctovnyVykaz.mena.
A single financial report — the leaf node of the hierarchy. Contains structured tabular data in obsah and any file attachments in prilohy. May belong to a financial statement, an annual report, or both.
obsah is only present when pristupnostDat is "Verejné". Always check the access level before reading report content.
A report template that defines the row and column structure of UctovnyVykaz.obsah.tabulky. See Get report template for how to use it to interpret financial data.
Table definitions, each with a localised nazov, a hlavicka array for the header layout, and a riadky array of row definitions whose order corresponds positionally to Tabulka.data. See Get report template.
When an entity is deleted, its detail endpoint returns a stripped response rather than HTTP 404, so that sync consumers can detect and handle deletions.
Copy
Ask AI
{ "id": 336953, "ico": "00603481", "nazovUJ": "Hlavné mesto Slovenskej republiky Bratislava", "datumPoslednejUpravy": "2012-11-14"}
The deleted entity’s id still appears in zmenene-od change lists so that sync consumers can discover it. Cascading behaviour:
Deleting an UctovnaJednotka deletes all its child records.
Deleting a VyrocnaSprava or UctovnaZavierkadoes not bump datumPoslednejUpravy on the parent UctovnaJednotka.
Deleting an attachment bumps datumPoslednejUpravy on the parent UctovnyVykaz, but the attachment itself returns HTTP 404.
In exceptional cases an entity may disappear from the public register without a trace.