@cyanheads/ris-austria-mcp-server 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +401 -0
- package/CLAUDE.md +401 -0
- package/Dockerfile +125 -0
- package/LICENSE +201 -0
- package/README.md +309 -0
- package/changelog/0.1.x/0.1.0.md +25 -0
- package/changelog/0.1.x/0.1.1.md +24 -0
- package/changelog/0.1.x/0.1.2.md +16 -0
- package/changelog/0.1.x/0.1.3.md +11 -0
- package/changelog/0.1.x/0.1.4.md +11 -0
- package/changelog/0.1.x/0.1.5.md +18 -0
- package/changelog/template.md +129 -0
- package/dist/config/server-config.d.ts +19 -0
- package/dist/config/server-config.d.ts.map +1 -0
- package/dist/config/server-config.js +35 -0
- package/dist/config/server-config.js.map +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +37 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp-server/resources/definitions/ris-document.resource.d.ts +30 -0
- package/dist/mcp-server/resources/definitions/ris-document.resource.d.ts.map +1 -0
- package/dist/mcp-server/resources/definitions/ris-document.resource.js +75 -0
- package/dist/mcp-server/resources/definitions/ris-document.resource.js.map +1 -0
- package/dist/mcp-server/tools/definitions/_shared.d.ts +8 -0
- package/dist/mcp-server/tools/definitions/_shared.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/_shared.js +10 -0
- package/dist/mcp-server/tools/definitions/_shared.js.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-get-document.tool.d.ts +189 -0
- package/dist/mcp-server/tools/definitions/ris-get-document.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-get-document.tool.js +504 -0
- package/dist/mcp-server/tools/definitions/ris-get-document.tool.js.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-list-reference.tool.d.ts +42 -0
- package/dist/mcp-server/tools/definitions/ris-list-reference.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-list-reference.tool.js +316 -0
- package/dist/mcp-server/tools/definitions/ris-list-reference.tool.js.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-lookup-citation.tool.d.ts +80 -0
- package/dist/mcp-server/tools/definitions/ris-lookup-citation.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-lookup-citation.tool.js +529 -0
- package/dist/mcp-server/tools/definitions/ris-lookup-citation.tool.js.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-search-announcements.tool.d.ts +118 -0
- package/dist/mcp-server/tools/definitions/ris-search-announcements.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-search-announcements.tool.js +389 -0
- package/dist/mcp-server/tools/definitions/ris-search-announcements.tool.js.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-search-case-law.tool.d.ts +178 -0
- package/dist/mcp-server/tools/definitions/ris-search-case-law.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-search-case-law.tool.js +495 -0
- package/dist/mcp-server/tools/definitions/ris-search-case-law.tool.js.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-search-drafts.tool.d.ts +80 -0
- package/dist/mcp-server/tools/definitions/ris-search-drafts.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-search-drafts.tool.js +264 -0
- package/dist/mcp-server/tools/definitions/ris-search-drafts.tool.js.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-search-gazette.tool.d.ts +147 -0
- package/dist/mcp-server/tools/definitions/ris-search-gazette.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-search-gazette.tool.js +509 -0
- package/dist/mcp-server/tools/definitions/ris-search-gazette.tool.js.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-search-legislation.tool.d.ts +145 -0
- package/dist/mcp-server/tools/definitions/ris-search-legislation.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-search-legislation.tool.js +466 -0
- package/dist/mcp-server/tools/definitions/ris-search-legislation.tool.js.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-track-changes.tool.d.ts +73 -0
- package/dist/mcp-server/tools/definitions/ris-track-changes.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/ris-track-changes.tool.js +265 -0
- package/dist/mcp-server/tools/definitions/ris-track-changes.tool.js.map +1 -0
- package/dist/services/ris/normalizer.d.ts +40 -0
- package/dist/services/ris/normalizer.d.ts.map +1 -0
- package/dist/services/ris/normalizer.js +480 -0
- package/dist/services/ris/normalizer.js.map +1 -0
- package/dist/services/ris/reference/applications.d.ts +529 -0
- package/dist/services/ris/reference/applications.d.ts.map +1 -0
- package/dist/services/ris/reference/applications.js +520 -0
- package/dist/services/ris/reference/applications.js.map +1 -0
- package/dist/services/ris/reference/changed-since-intervals.d.ts +42 -0
- package/dist/services/ris/reference/changed-since-intervals.d.ts.map +1 -0
- package/dist/services/ris/reference/changed-since-intervals.js +16 -0
- package/dist/services/ris/reference/changed-since-intervals.js.map +1 -0
- package/dist/services/ris/reference/citation-formats.d.ts +39 -0
- package/dist/services/ris/reference/citation-formats.d.ts.map +1 -0
- package/dist/services/ris/reference/citation-formats.js +39 -0
- package/dist/services/ris/reference/citation-formats.js.map +1 -0
- package/dist/services/ris/reference/collections.d.ts +82 -0
- package/dist/services/ris/reference/collections.d.ts.map +1 -0
- package/dist/services/ris/reference/collections.js +102 -0
- package/dist/services/ris/reference/collections.js.map +1 -0
- package/dist/services/ris/reference/courts.d.ts +201 -0
- package/dist/services/ris/reference/courts.d.ts.map +1 -0
- package/dist/services/ris/reference/courts.js +198 -0
- package/dist/services/ris/reference/courts.js.map +1 -0
- package/dist/services/ris/reference/decision-kinds.d.ts +78 -0
- package/dist/services/ris/reference/decision-kinds.d.ts.map +1 -0
- package/dist/services/ris/reference/decision-kinds.js +117 -0
- package/dist/services/ris/reference/decision-kinds.js.map +1 -0
- package/dist/services/ris/reference/decision-types.d.ts +36 -0
- package/dist/services/ris/reference/decision-types.d.ts.map +1 -0
- package/dist/services/ris/reference/decision-types.js +29 -0
- package/dist/services/ris/reference/decision-types.js.map +1 -0
- package/dist/services/ris/reference/district-authorities.d.ts +314 -0
- package/dist/services/ris/reference/district-authorities.d.ts.map +1 -0
- package/dist/services/ris/reference/district-authorities.js +212 -0
- package/dist/services/ris/reference/district-authorities.js.map +1 -0
- package/dist/services/ris/reference/gazette-parts.d.ts +73 -0
- package/dist/services/ris/reference/gazette-parts.d.ts.map +1 -0
- package/dist/services/ris/reference/gazette-parts.js +58 -0
- package/dist/services/ris/reference/gazette-parts.js.map +1 -0
- package/dist/services/ris/reference/index.d.ts +23 -0
- package/dist/services/ris/reference/index.d.ts.map +1 -0
- package/dist/services/ris/reference/index.js +23 -0
- package/dist/services/ris/reference/index.js.map +1 -0
- package/dist/services/ris/reference/issuing-bodies.d.ts +642 -0
- package/dist/services/ris/reference/issuing-bodies.d.ts.map +1 -0
- package/dist/services/ris/reference/issuing-bodies.js +616 -0
- package/dist/services/ris/reference/issuing-bodies.js.map +1 -0
- package/dist/services/ris/reference/justiz-subject-areas.d.ts +133 -0
- package/dist/services/ris/reference/justiz-subject-areas.d.ts.map +1 -0
- package/dist/services/ris/reference/justiz-subject-areas.js +67 -0
- package/dist/services/ris/reference/justiz-subject-areas.js.map +1 -0
- package/dist/services/ris/reference/law-types.d.ts +46 -0
- package/dist/services/ris/reference/law-types.d.ts.map +1 -0
- package/dist/services/ris/reference/law-types.js +41 -0
- package/dist/services/ris/reference/law-types.js.map +1 -0
- package/dist/services/ris/reference/ministries.d.ts +360 -0
- package/dist/services/ris/reference/ministries.d.ts.map +1 -0
- package/dist/services/ris/reference/ministries.js +408 -0
- package/dist/services/ris/reference/ministries.js.map +1 -0
- package/dist/services/ris/reference/search-syntax.d.ts +66 -0
- package/dist/services/ris/reference/search-syntax.d.ts.map +1 -0
- package/dist/services/ris/reference/search-syntax.js +65 -0
- package/dist/services/ris/reference/search-syntax.js.map +1 -0
- package/dist/services/ris/reference/section-types.d.ts +33 -0
- package/dist/services/ris/reference/section-types.d.ts.map +1 -0
- package/dist/services/ris/reference/section-types.js +29 -0
- package/dist/services/ris/reference/section-types.js.map +1 -0
- package/dist/services/ris/reference/stages.d.ts +41 -0
- package/dist/services/ris/reference/stages.d.ts.map +1 -0
- package/dist/services/ris/reference/stages.js +27 -0
- package/dist/services/ris/reference/stages.js.map +1 -0
- package/dist/services/ris/reference/states.d.ts +90 -0
- package/dist/services/ris/reference/states.d.ts.map +1 -0
- package/dist/services/ris/reference/states.js +85 -0
- package/dist/services/ris/reference/states.js.map +1 -0
- package/dist/services/ris/request-builder.d.ts +195 -0
- package/dist/services/ris/request-builder.d.ts.map +1 -0
- package/dist/services/ris/request-builder.js +673 -0
- package/dist/services/ris/request-builder.js.map +1 -0
- package/dist/services/ris/ris-service.d.ts +65 -0
- package/dist/services/ris/ris-service.d.ts.map +1 -0
- package/dist/services/ris/ris-service.js +200 -0
- package/dist/services/ris/ris-service.js.map +1 -0
- package/dist/services/ris/types.d.ts +651 -0
- package/dist/services/ris/types.d.ts.map +1 -0
- package/dist/services/ris/types.js +11 -0
- package/dist/services/ris/types.js.map +1 -0
- package/package.json +108 -0
- package/server.json +111 -0
|
@@ -0,0 +1,529 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview All 39 RIS OGD applications: controller routing, document class, binding
|
|
3
|
+
* status, coverage window, content-format availability, the History-feed name, and the
|
|
4
|
+
* content-host path segment (`/Dokumente/{segment}/{DOKNR}/…`).
|
|
5
|
+
* Sources: OGD Handbook V2.6 (application descriptions and windows), the request XSDs
|
|
6
|
+
* (`HistoryRequestApplicationType`), and live probes of content renditions and content
|
|
7
|
+
* URLs harvested per application (2026-07-04/05).
|
|
8
|
+
* @module services/ris/reference/applications
|
|
9
|
+
*/
|
|
10
|
+
/** Controller (URL path segment) that serves an application. */
|
|
11
|
+
export type RisController = 'Bundesrecht' | 'Landesrecht' | 'Bezirke' | 'Gemeinden' | 'Judikatur' | 'Sonstige';
|
|
12
|
+
/** Document class an application belongs to. */
|
|
13
|
+
export type RisDocumentClass = 'consolidated_law' | 'translation' | 'authentic_promulgation' | 'historical_gazette' | 'case_law' | 'pipeline' | 'executive_record' | 'sectoral_announcement';
|
|
14
|
+
/**
|
|
15
|
+
* Legal-binding label carried on every document-bearing output. Only `authentic`
|
|
16
|
+
* (amtssignierte) publications are legally binding.
|
|
17
|
+
*/
|
|
18
|
+
export type RisBindingStatus = 'authentic' | 'consolidated_informational' | 'historical_record' | 'decision' | 'preparatory' | 'administrative_directive' | 'translation';
|
|
19
|
+
/** Which content renditions an application's documents carry. */
|
|
20
|
+
export type RisFormatAvailability =
|
|
21
|
+
/** Xml / Html / Rtf (plus Pdf and the signed Authentisch PDF where published). */
|
|
22
|
+
'full'
|
|
23
|
+
/** Signed authentic PDF (.pdfsig) only — no text renditions. */
|
|
24
|
+
| 'authentic_pdf_only'
|
|
25
|
+
/** Plain PDF only. */
|
|
26
|
+
| 'pdf_only'
|
|
27
|
+
/** No content URLs at all — metadata only (scans hosted by the Austrian National Library). */
|
|
28
|
+
| 'none';
|
|
29
|
+
/** One RIS OGD application. */
|
|
30
|
+
export interface RisApplication {
|
|
31
|
+
/** Binding status of the application's documents. */
|
|
32
|
+
readonly binding: RisBindingStatus;
|
|
33
|
+
/** Exact `Applikation` request value. */
|
|
34
|
+
readonly code: string;
|
|
35
|
+
/**
|
|
36
|
+
* Path segment of the application's content URLs on the content host
|
|
37
|
+
* (`https://www.ris.bka.gv.at/Dokumente/{segment}/{DOKNR}/{DOKNR}.{ext}`), harvested from
|
|
38
|
+
* live search hits 2026-07-05. Null for BgblAlt, whose documents carry no content URLs
|
|
39
|
+
* (metadata only — scans are hosted by the Austrian National Library).
|
|
40
|
+
*/
|
|
41
|
+
readonly contentPathSegment: string | null;
|
|
42
|
+
/** Controller that serves the application. */
|
|
43
|
+
readonly controller: RisController;
|
|
44
|
+
/** Coverage window / scope, when documented; null when RIS documents no restriction. */
|
|
45
|
+
readonly coverage: string | null;
|
|
46
|
+
/** Document class. */
|
|
47
|
+
readonly documentClass: RisDocumentClass;
|
|
48
|
+
/** Content-format availability. */
|
|
49
|
+
readonly formats: RisFormatAvailability;
|
|
50
|
+
/** Official German designation (OGD Handbook V2.6). */
|
|
51
|
+
readonly germanName: string;
|
|
52
|
+
/** `Anwendung` value for the History change feed (differs from `code` for four applications). */
|
|
53
|
+
readonly historyName: string;
|
|
54
|
+
/** English name. */
|
|
55
|
+
readonly name: string;
|
|
56
|
+
/** Extra usage note, when needed. */
|
|
57
|
+
readonly note: string | null;
|
|
58
|
+
}
|
|
59
|
+
/** All RIS OGD applications reachable through the v2.6 API. */
|
|
60
|
+
export declare const RIS_APPLICATIONS: readonly [{
|
|
61
|
+
readonly code: "BrKons";
|
|
62
|
+
readonly controller: "Bundesrecht";
|
|
63
|
+
readonly name: "Consolidated federal law";
|
|
64
|
+
readonly germanName: "Bundesrecht in konsolidierter Fassung";
|
|
65
|
+
readonly documentClass: "consolidated_law";
|
|
66
|
+
readonly binding: "consolidated_informational";
|
|
67
|
+
readonly coverage: "Current and all historical versions (FassungVom / force-window filters)";
|
|
68
|
+
readonly formats: "full";
|
|
69
|
+
readonly historyName: "Bundesnormen";
|
|
70
|
+
readonly contentPathSegment: "Bundesnormen";
|
|
71
|
+
readonly note: "One document per Paragraph, Artikel, or Anlage of a law.";
|
|
72
|
+
}, {
|
|
73
|
+
readonly code: "BgblAuth";
|
|
74
|
+
readonly controller: "Bundesrecht";
|
|
75
|
+
readonly name: "Authentic Federal Law Gazette";
|
|
76
|
+
readonly germanName: "Bundesgesetzblatt authentisch ab 2004";
|
|
77
|
+
readonly documentClass: "authentic_promulgation";
|
|
78
|
+
readonly binding: "authentic";
|
|
79
|
+
readonly coverage: "2004 and later";
|
|
80
|
+
readonly formats: "full";
|
|
81
|
+
readonly historyName: "BgblAuth";
|
|
82
|
+
readonly contentPathSegment: "BgblAuth";
|
|
83
|
+
readonly note: "The electronically promulgated version is the legally binding one since 2004-01-01.";
|
|
84
|
+
}, {
|
|
85
|
+
readonly code: "BgblPdf";
|
|
86
|
+
readonly controller: "Bundesrecht";
|
|
87
|
+
readonly name: "Post-war federal gazettes";
|
|
88
|
+
readonly germanName: "Staats- und Bundesgesetzblatt 1945–2003";
|
|
89
|
+
readonly documentClass: "historical_gazette";
|
|
90
|
+
readonly binding: "historical_record";
|
|
91
|
+
readonly coverage: "1945–2003 (Staatsgesetzblatt 1945 and Bundesgesetzblatt volumes)";
|
|
92
|
+
readonly formats: "full";
|
|
93
|
+
readonly historyName: "BgblPdf";
|
|
94
|
+
readonly contentPathSegment: "BgblPdf";
|
|
95
|
+
readonly note: "Number parameter is `Bundesgesetzblatt` (e.g. \"194/1961\").";
|
|
96
|
+
}, {
|
|
97
|
+
readonly code: "BgblAlt";
|
|
98
|
+
readonly controller: "Bundesrecht";
|
|
99
|
+
readonly name: "Imperial and interwar gazettes";
|
|
100
|
+
readonly germanName: "Reichs-, Staats- und Bundesgesetzblatt 1848–1940";
|
|
101
|
+
readonly documentClass: "historical_gazette";
|
|
102
|
+
readonly binding: "historical_record";
|
|
103
|
+
readonly coverage: "RGBl 1849–1918, StGBl 1918–1920, BGBl 1920–1938, GBlÖ 1938–1940";
|
|
104
|
+
readonly formats: "none";
|
|
105
|
+
readonly historyName: "BgblAlt";
|
|
106
|
+
readonly contentPathSegment: null;
|
|
107
|
+
readonly note: "Metadata only — document scans are linked at the Austrian National Library (ÖNB).";
|
|
108
|
+
}, {
|
|
109
|
+
readonly code: "Begut";
|
|
110
|
+
readonly controller: "Bundesrecht";
|
|
111
|
+
readonly name: "Ministerial review drafts";
|
|
112
|
+
readonly germanName: "Begutachtungsentwürfe";
|
|
113
|
+
readonly documentClass: "pipeline";
|
|
114
|
+
readonly binding: "preparatory";
|
|
115
|
+
readonly coverage: "As made available by the ministries";
|
|
116
|
+
readonly formats: "full";
|
|
117
|
+
readonly historyName: "Begut";
|
|
118
|
+
readonly contentPathSegment: "Begut";
|
|
119
|
+
readonly note: null;
|
|
120
|
+
}, {
|
|
121
|
+
readonly code: "RegV";
|
|
122
|
+
readonly controller: "Bundesrecht";
|
|
123
|
+
readonly name: "Government bills";
|
|
124
|
+
readonly germanName: "Regierungsvorlagen";
|
|
125
|
+
readonly documentClass: "pipeline";
|
|
126
|
+
readonly binding: "preparatory";
|
|
127
|
+
readonly coverage: "2004 and later";
|
|
128
|
+
readonly formats: "full";
|
|
129
|
+
readonly historyName: "RegV";
|
|
130
|
+
readonly contentPathSegment: "RegV";
|
|
131
|
+
readonly note: null;
|
|
132
|
+
}, {
|
|
133
|
+
readonly code: "Erv";
|
|
134
|
+
readonly controller: "Bundesrecht";
|
|
135
|
+
readonly name: "English translations of selected federal laws";
|
|
136
|
+
readonly germanName: "Rechtsvorschriften in englischer Sprache (Austrian Laws)";
|
|
137
|
+
readonly documentClass: "translation";
|
|
138
|
+
readonly binding: "translation";
|
|
139
|
+
readonly coverage: "Roughly 138 selected laws";
|
|
140
|
+
readonly formats: "full";
|
|
141
|
+
readonly historyName: "Erv";
|
|
142
|
+
readonly contentPathSegment: "Erv";
|
|
143
|
+
readonly note: "Request parameters are English here: SearchTerms and Title.";
|
|
144
|
+
}, {
|
|
145
|
+
readonly code: "LrKons";
|
|
146
|
+
readonly controller: "Landesrecht";
|
|
147
|
+
readonly name: "Consolidated state law";
|
|
148
|
+
readonly germanName: "Landesrecht konsolidiert (Landesnormen)";
|
|
149
|
+
readonly documentClass: "consolidated_law";
|
|
150
|
+
readonly binding: "consolidated_informational";
|
|
151
|
+
readonly coverage: "All nine Bundesländer; current and historical versions";
|
|
152
|
+
readonly formats: "full";
|
|
153
|
+
readonly historyName: "Landesnormen";
|
|
154
|
+
readonly contentPathSegment: "Landesnormen";
|
|
155
|
+
readonly note: null;
|
|
156
|
+
}, {
|
|
157
|
+
readonly code: "LgblAuth";
|
|
158
|
+
readonly controller: "Landesrecht";
|
|
159
|
+
readonly name: "Authentic state law gazettes";
|
|
160
|
+
readonly germanName: "Landesgesetzblätter authentisch";
|
|
161
|
+
readonly documentClass: "authentic_promulgation";
|
|
162
|
+
readonly binding: "authentic";
|
|
163
|
+
readonly coverage: null;
|
|
164
|
+
readonly formats: "full";
|
|
165
|
+
readonly historyName: "LgblAuth";
|
|
166
|
+
readonly contentPathSegment: "LgblAuth";
|
|
167
|
+
readonly note: "Salzburg district-authority regulations are promulgated here since 2022-07-01.";
|
|
168
|
+
}, {
|
|
169
|
+
readonly code: "Lgbl";
|
|
170
|
+
readonly controller: "Landesrecht";
|
|
171
|
+
readonly name: "Historical non-authentic state gazettes";
|
|
172
|
+
readonly germanName: "Landesgesetzblätter nicht authentisch";
|
|
173
|
+
readonly documentClass: "historical_gazette";
|
|
174
|
+
readonly binding: "historical_record";
|
|
175
|
+
readonly coverage: "Seven Bundesländer — no Niederösterreich, no Wien";
|
|
176
|
+
readonly formats: "full";
|
|
177
|
+
readonly historyName: "Lgbl";
|
|
178
|
+
readonly contentPathSegment: "Lgbl";
|
|
179
|
+
readonly note: null;
|
|
180
|
+
}, {
|
|
181
|
+
readonly code: "LgblNO";
|
|
182
|
+
readonly controller: "Landesrecht";
|
|
183
|
+
readonly name: "Niederösterreich systematic state-law collection";
|
|
184
|
+
readonly germanName: "Landesgesetzblätter Niederösterreich";
|
|
185
|
+
readonly documentClass: "consolidated_law";
|
|
186
|
+
readonly binding: "consolidated_informational";
|
|
187
|
+
readonly coverage: "Niederösterreich only";
|
|
188
|
+
readonly formats: "full";
|
|
189
|
+
readonly historyName: "LgblNO";
|
|
190
|
+
readonly contentPathSegment: "LgblNO";
|
|
191
|
+
readonly note: "Carries FassungVom and Gliederungszahl (systematic classification number).";
|
|
192
|
+
}, {
|
|
193
|
+
readonly code: "Vbl";
|
|
194
|
+
readonly controller: "Landesrecht";
|
|
195
|
+
readonly name: "State ordinance gazettes";
|
|
196
|
+
readonly germanName: "Verordnungsblätter der Länder";
|
|
197
|
+
readonly documentClass: "authentic_promulgation";
|
|
198
|
+
readonly binding: "authentic";
|
|
199
|
+
readonly coverage: "Tirol only, since 2022-01-01";
|
|
200
|
+
readonly formats: "full";
|
|
201
|
+
readonly historyName: "Vbl";
|
|
202
|
+
readonly contentPathSegment: "Vbl";
|
|
203
|
+
readonly note: "State regulations promulgated outside the Landesgesetzblatt (not district-authority regulations). Other Bundesland values pass schema validation but fail server-side.";
|
|
204
|
+
}, {
|
|
205
|
+
readonly code: "Bvb";
|
|
206
|
+
readonly controller: "Bezirke";
|
|
207
|
+
readonly name: "District-authority promulgations";
|
|
208
|
+
readonly germanName: "Kundmachungen der Bezirksverwaltungsbehörden";
|
|
209
|
+
readonly documentClass: "authentic_promulgation";
|
|
210
|
+
readonly binding: "authentic";
|
|
211
|
+
readonly coverage: "Niederösterreich since 2021-09-01, Oberösterreich and Tirol since 2022-01-01, Vorarlberg since 2022-07-01, Burgenland since 2023-01-01, Steiermark since 2013-01-01; Salzburg districts publish in the Salzburg LGBl";
|
|
212
|
+
readonly formats: "authentic_pdf_only";
|
|
213
|
+
readonly historyName: "Bvb";
|
|
214
|
+
readonly contentPathSegment: "Bvb";
|
|
215
|
+
readonly note: "Bundesland filter uses umlauted spellings here (e.g. \"Kärnten\").";
|
|
216
|
+
}, {
|
|
217
|
+
readonly code: "Gr";
|
|
218
|
+
readonly controller: "Gemeinden";
|
|
219
|
+
readonly name: "Municipal law (selected norms)";
|
|
220
|
+
readonly germanName: "Rechtsnormen von Gemeinden";
|
|
221
|
+
readonly documentClass: "consolidated_law";
|
|
222
|
+
readonly binding: "consolidated_informational";
|
|
223
|
+
readonly coverage: "Kärnten (all municipalities), Niederösterreich, Oberösterreich, Salzburg, Steiermark, Wien — none from Burgenland, Tirol, or Vorarlberg";
|
|
224
|
+
readonly formats: "full";
|
|
225
|
+
readonly historyName: "Gemeinderecht";
|
|
226
|
+
readonly contentPathSegment: "Gemeinderecht";
|
|
227
|
+
readonly note: null;
|
|
228
|
+
}, {
|
|
229
|
+
readonly code: "GrA";
|
|
230
|
+
readonly controller: "Gemeinden";
|
|
231
|
+
readonly name: "Authentic municipal promulgations";
|
|
232
|
+
readonly germanName: "Rechtsverbindliche Kundmachungen und Verordnungen von Gemeinden";
|
|
233
|
+
readonly documentClass: "authentic_promulgation";
|
|
234
|
+
readonly binding: "authentic";
|
|
235
|
+
readonly coverage: null;
|
|
236
|
+
readonly formats: "authentic_pdf_only";
|
|
237
|
+
readonly historyName: "GemeinderechtAuth";
|
|
238
|
+
readonly contentPathSegment: "GemeinderechtAuth";
|
|
239
|
+
readonly note: null;
|
|
240
|
+
}, {
|
|
241
|
+
readonly code: "Vfgh";
|
|
242
|
+
readonly controller: "Judikatur";
|
|
243
|
+
readonly name: "Constitutional Court decisions";
|
|
244
|
+
readonly germanName: "Verfassungsgerichtshof (VfGH)";
|
|
245
|
+
readonly documentClass: "case_law";
|
|
246
|
+
readonly binding: "decision";
|
|
247
|
+
readonly coverage: "1980 and later";
|
|
248
|
+
readonly formats: "full";
|
|
249
|
+
readonly historyName: "Vfgh";
|
|
250
|
+
readonly contentPathSegment: "Vfgh";
|
|
251
|
+
readonly note: null;
|
|
252
|
+
}, {
|
|
253
|
+
readonly code: "Vwgh";
|
|
254
|
+
readonly controller: "Judikatur";
|
|
255
|
+
readonly name: "Supreme Administrative Court decisions";
|
|
256
|
+
readonly germanName: "Verwaltungsgerichtshof (VwGH)";
|
|
257
|
+
readonly documentClass: "case_law";
|
|
258
|
+
readonly binding: "decision";
|
|
259
|
+
readonly coverage: "1990 and later; older decisions selected";
|
|
260
|
+
readonly formats: "full";
|
|
261
|
+
readonly historyName: "Vwgh";
|
|
262
|
+
readonly contentPathSegment: "Vwgh";
|
|
263
|
+
readonly note: null;
|
|
264
|
+
}, {
|
|
265
|
+
readonly code: "Normenliste";
|
|
266
|
+
readonly controller: "Judikatur";
|
|
267
|
+
readonly name: "VwGH norm index";
|
|
268
|
+
readonly germanName: "Normenliste des Verwaltungsgerichtshofes";
|
|
269
|
+
readonly documentClass: "case_law";
|
|
270
|
+
readonly binding: "decision";
|
|
271
|
+
readonly coverage: null;
|
|
272
|
+
readonly formats: "full";
|
|
273
|
+
readonly historyName: "Normenliste";
|
|
274
|
+
readonly contentPathSegment: "Normenliste";
|
|
275
|
+
readonly note: "A register of norms, not decisions — no case-number, date, or decision-type filters.";
|
|
276
|
+
}, {
|
|
277
|
+
readonly code: "Justiz";
|
|
278
|
+
readonly controller: "Judikatur";
|
|
279
|
+
readonly name: "Ordinary courts (OGH and selected lower courts)";
|
|
280
|
+
readonly germanName: "Justiz";
|
|
281
|
+
readonly documentClass: "case_law";
|
|
282
|
+
readonly binding: "decision";
|
|
283
|
+
readonly coverage: "Selected decisions of the ordinary courts, not the full record";
|
|
284
|
+
readonly formats: "full";
|
|
285
|
+
readonly historyName: "Justiz";
|
|
286
|
+
readonly contentPathSegment: "Justiz";
|
|
287
|
+
readonly note: null;
|
|
288
|
+
}, {
|
|
289
|
+
readonly code: "Bvwg";
|
|
290
|
+
readonly controller: "Judikatur";
|
|
291
|
+
readonly name: "Federal Administrative Court decisions";
|
|
292
|
+
readonly germanName: "Bundesverwaltungsgericht (BVwG)";
|
|
293
|
+
readonly documentClass: "case_law";
|
|
294
|
+
readonly binding: "decision";
|
|
295
|
+
readonly coverage: "2014 and later";
|
|
296
|
+
readonly formats: "full";
|
|
297
|
+
readonly historyName: "Bvwg";
|
|
298
|
+
readonly contentPathSegment: "Bvwg";
|
|
299
|
+
readonly note: null;
|
|
300
|
+
}, {
|
|
301
|
+
readonly code: "Lvwg";
|
|
302
|
+
readonly controller: "Judikatur";
|
|
303
|
+
readonly name: "State administrative court decisions";
|
|
304
|
+
readonly germanName: "Landesverwaltungsgerichte (LVwG)";
|
|
305
|
+
readonly documentClass: "case_law";
|
|
306
|
+
readonly binding: "decision";
|
|
307
|
+
readonly coverage: "2014 and later";
|
|
308
|
+
readonly formats: "full";
|
|
309
|
+
readonly historyName: "Lvwg";
|
|
310
|
+
readonly contentPathSegment: "Lvwg";
|
|
311
|
+
readonly note: null;
|
|
312
|
+
}, {
|
|
313
|
+
readonly code: "Dsk";
|
|
314
|
+
readonly controller: "Judikatur";
|
|
315
|
+
readonly name: "Data protection authority decisions";
|
|
316
|
+
readonly germanName: "Datenschutzbehörde, Datenschutzkommission";
|
|
317
|
+
readonly documentClass: "case_law";
|
|
318
|
+
readonly binding: "decision";
|
|
319
|
+
readonly coverage: "1990 and later, selected";
|
|
320
|
+
readonly formats: "full";
|
|
321
|
+
readonly historyName: "Dsk";
|
|
322
|
+
readonly contentPathSegment: "Dsk";
|
|
323
|
+
readonly note: "Covers the Datenschutzbehörde (2014+) and its predecessor Datenschutzkommission (up to 2013) — split via the EntscheidendeBehoerde filter.";
|
|
324
|
+
}, {
|
|
325
|
+
readonly code: "Dok";
|
|
326
|
+
readonly controller: "Judikatur";
|
|
327
|
+
readonly name: "Civil-service disciplinary decisions";
|
|
328
|
+
readonly germanName: "Bundesdisziplinarbehörde, Disziplinarkommissionen";
|
|
329
|
+
readonly documentClass: "case_law";
|
|
330
|
+
readonly binding: "decision";
|
|
331
|
+
readonly coverage: null;
|
|
332
|
+
readonly formats: "full";
|
|
333
|
+
readonly historyName: "Dok";
|
|
334
|
+
readonly contentPathSegment: "Dok";
|
|
335
|
+
readonly note: null;
|
|
336
|
+
}, {
|
|
337
|
+
readonly code: "Pvak";
|
|
338
|
+
readonly controller: "Judikatur";
|
|
339
|
+
readonly name: "Staff-representation oversight decisions";
|
|
340
|
+
readonly germanName: "Personalvertretungsaufsichtsbehörde, Personalvertretungsaufsichtskommission";
|
|
341
|
+
readonly documentClass: "case_law";
|
|
342
|
+
readonly binding: "decision";
|
|
343
|
+
readonly coverage: null;
|
|
344
|
+
readonly formats: "full";
|
|
345
|
+
readonly historyName: "Pvak";
|
|
346
|
+
readonly contentPathSegment: "Pvak";
|
|
347
|
+
readonly note: null;
|
|
348
|
+
}, {
|
|
349
|
+
readonly code: "Gbk";
|
|
350
|
+
readonly controller: "Judikatur";
|
|
351
|
+
readonly name: "Equal-treatment commission decisions";
|
|
352
|
+
readonly germanName: "Bundes-Gleichbehandlungskommission, Gleichbehandlungskommission";
|
|
353
|
+
readonly documentClass: "case_law";
|
|
354
|
+
readonly binding: "decision";
|
|
355
|
+
readonly coverage: null;
|
|
356
|
+
readonly formats: "full";
|
|
357
|
+
readonly historyName: "Gbk";
|
|
358
|
+
readonly contentPathSegment: "Gbk";
|
|
359
|
+
readonly note: null;
|
|
360
|
+
}, {
|
|
361
|
+
readonly code: "Uvs";
|
|
362
|
+
readonly controller: "Judikatur";
|
|
363
|
+
readonly name: "Independent administrative senate decisions";
|
|
364
|
+
readonly germanName: "Unabhängige Verwaltungssenate (UVS)";
|
|
365
|
+
readonly documentClass: "case_law";
|
|
366
|
+
readonly binding: "decision";
|
|
367
|
+
readonly coverage: "1991–2013; succeeded by the Landesverwaltungsgerichte";
|
|
368
|
+
readonly formats: "full";
|
|
369
|
+
readonly historyName: "Uvs";
|
|
370
|
+
readonly contentPathSegment: "Uvs";
|
|
371
|
+
readonly note: null;
|
|
372
|
+
}, {
|
|
373
|
+
readonly code: "AsylGH";
|
|
374
|
+
readonly controller: "Judikatur";
|
|
375
|
+
readonly name: "Asylum Court decisions";
|
|
376
|
+
readonly germanName: "Asylgerichtshof (AsylGH)";
|
|
377
|
+
readonly documentClass: "case_law";
|
|
378
|
+
readonly binding: "decision";
|
|
379
|
+
readonly coverage: "2008–2013; succeeded by the Bundesverwaltungsgericht";
|
|
380
|
+
readonly formats: "full";
|
|
381
|
+
readonly historyName: "AsylGH";
|
|
382
|
+
readonly contentPathSegment: "AsylGH";
|
|
383
|
+
readonly note: null;
|
|
384
|
+
}, {
|
|
385
|
+
readonly code: "Ubas";
|
|
386
|
+
readonly controller: "Judikatur";
|
|
387
|
+
readonly name: "Independent Federal Asylum Senate decisions";
|
|
388
|
+
readonly germanName: "Unabhängiger Bundesasylsenat (UBAS)";
|
|
389
|
+
readonly documentClass: "case_law";
|
|
390
|
+
readonly binding: "decision";
|
|
391
|
+
readonly coverage: "1998–2008; succeeded by the Asylgerichtshof";
|
|
392
|
+
readonly formats: "full";
|
|
393
|
+
readonly historyName: "Ubas";
|
|
394
|
+
readonly contentPathSegment: "Ubas";
|
|
395
|
+
readonly note: null;
|
|
396
|
+
}, {
|
|
397
|
+
readonly code: "Umse";
|
|
398
|
+
readonly controller: "Judikatur";
|
|
399
|
+
readonly name: "Environmental Senate decisions";
|
|
400
|
+
readonly germanName: "Umweltsenat (UMSE)";
|
|
401
|
+
readonly documentClass: "case_law";
|
|
402
|
+
readonly binding: "decision";
|
|
403
|
+
readonly coverage: "Until 2013";
|
|
404
|
+
readonly formats: "full";
|
|
405
|
+
readonly historyName: "Umse";
|
|
406
|
+
readonly contentPathSegment: "Umse";
|
|
407
|
+
readonly note: null;
|
|
408
|
+
}, {
|
|
409
|
+
readonly code: "Bks";
|
|
410
|
+
readonly controller: "Judikatur";
|
|
411
|
+
readonly name: "Federal Communications Senate decisions";
|
|
412
|
+
readonly germanName: "Bundeskommunikationssenat";
|
|
413
|
+
readonly documentClass: "case_law";
|
|
414
|
+
readonly binding: "decision";
|
|
415
|
+
readonly coverage: "Until 2013";
|
|
416
|
+
readonly formats: "full";
|
|
417
|
+
readonly historyName: "Bks";
|
|
418
|
+
readonly contentPathSegment: "Bks";
|
|
419
|
+
readonly note: null;
|
|
420
|
+
}, {
|
|
421
|
+
readonly code: "Verg";
|
|
422
|
+
readonly controller: "Judikatur";
|
|
423
|
+
readonly name: "Procurement review decisions";
|
|
424
|
+
readonly germanName: "Vergabekontrollbehörden";
|
|
425
|
+
readonly documentClass: "case_law";
|
|
426
|
+
readonly binding: "decision";
|
|
427
|
+
readonly coverage: null;
|
|
428
|
+
readonly formats: "full";
|
|
429
|
+
readonly historyName: "Verg";
|
|
430
|
+
readonly contentPathSegment: "Verg";
|
|
431
|
+
readonly note: null;
|
|
432
|
+
}, {
|
|
433
|
+
readonly code: "PruefGewO";
|
|
434
|
+
readonly controller: "Sonstige";
|
|
435
|
+
readonly name: "Trade-exam regulations";
|
|
436
|
+
readonly germanName: "Prüfungsordnungen gemäß Gewerbeordnung";
|
|
437
|
+
readonly documentClass: "sectoral_announcement";
|
|
438
|
+
readonly binding: "authentic";
|
|
439
|
+
readonly coverage: null;
|
|
440
|
+
readonly formats: "full";
|
|
441
|
+
readonly historyName: "PruefGewO";
|
|
442
|
+
readonly contentPathSegment: "PruefGewO";
|
|
443
|
+
readonly note: null;
|
|
444
|
+
}, {
|
|
445
|
+
readonly code: "Avsv";
|
|
446
|
+
readonly controller: "Sonstige";
|
|
447
|
+
readonly name: "Official social-insurance notices";
|
|
448
|
+
readonly germanName: "Amtliche Verlautbarungen der Sozialversicherung";
|
|
449
|
+
readonly documentClass: "sectoral_announcement";
|
|
450
|
+
readonly binding: "authentic";
|
|
451
|
+
readonly coverage: "2002 and later";
|
|
452
|
+
readonly formats: "full";
|
|
453
|
+
readonly historyName: "Avsv";
|
|
454
|
+
readonly contentPathSegment: "Avsv";
|
|
455
|
+
readonly note: null;
|
|
456
|
+
}, {
|
|
457
|
+
readonly code: "Spg";
|
|
458
|
+
readonly controller: "Sonstige";
|
|
459
|
+
readonly name: "Health structure plans";
|
|
460
|
+
readonly germanName: "Strukturpläne Gesundheit (ÖSG, RSG)";
|
|
461
|
+
readonly documentClass: "sectoral_announcement";
|
|
462
|
+
readonly binding: "authentic";
|
|
463
|
+
readonly coverage: null;
|
|
464
|
+
readonly formats: "full";
|
|
465
|
+
readonly historyName: "Spg";
|
|
466
|
+
readonly contentPathSegment: "Spg";
|
|
467
|
+
readonly note: "ÖSG is the federal plan; RSG plans are per Bundesland.";
|
|
468
|
+
}, {
|
|
469
|
+
readonly code: "Avn";
|
|
470
|
+
readonly controller: "Sonstige";
|
|
471
|
+
readonly name: "Official veterinary notices";
|
|
472
|
+
readonly germanName: "Amtliche Veterinärnachrichten (AVN)";
|
|
473
|
+
readonly documentClass: "sectoral_announcement";
|
|
474
|
+
readonly binding: "authentic";
|
|
475
|
+
readonly coverage: "2004-09-15 and later";
|
|
476
|
+
readonly formats: "full";
|
|
477
|
+
readonly historyName: "Avn";
|
|
478
|
+
readonly contentPathSegment: "Avn";
|
|
479
|
+
readonly note: null;
|
|
480
|
+
}, {
|
|
481
|
+
readonly code: "KmGer";
|
|
482
|
+
readonly controller: "Sonstige";
|
|
483
|
+
readonly name: "Court rules of procedure and case-allocation plans";
|
|
484
|
+
readonly germanName: "Kundmachungen der Gerichte";
|
|
485
|
+
readonly documentClass: "sectoral_announcement";
|
|
486
|
+
readonly binding: "authentic";
|
|
487
|
+
readonly coverage: "Currently LVwG Tirol and LVwG Vorarlberg only";
|
|
488
|
+
readonly formats: "authentic_pdf_only";
|
|
489
|
+
readonly historyName: "KmGer";
|
|
490
|
+
readonly contentPathSegment: "KmGer";
|
|
491
|
+
readonly note: null;
|
|
492
|
+
}, {
|
|
493
|
+
readonly code: "Upts";
|
|
494
|
+
readonly controller: "Sonstige";
|
|
495
|
+
readonly name: "Party-Transparency Senate decisions";
|
|
496
|
+
readonly germanName: "Entscheidungen des unabhängigen Parteien-Transparenz-Senats";
|
|
497
|
+
readonly documentClass: "case_law";
|
|
498
|
+
readonly binding: "decision";
|
|
499
|
+
readonly coverage: null;
|
|
500
|
+
readonly formats: "pdf_only";
|
|
501
|
+
readonly historyName: "Upts";
|
|
502
|
+
readonly contentPathSegment: "Upts";
|
|
503
|
+
readonly note: "Lives in the Sonstige controller upstream, but its documents are decisions.";
|
|
504
|
+
}, {
|
|
505
|
+
readonly code: "Mrp";
|
|
506
|
+
readonly controller: "Sonstige";
|
|
507
|
+
readonly name: "Council-of-ministers minutes";
|
|
508
|
+
readonly germanName: "Ministerratsprotokolle";
|
|
509
|
+
readonly documentClass: "executive_record";
|
|
510
|
+
readonly binding: "preparatory";
|
|
511
|
+
readonly coverage: "2004 and later";
|
|
512
|
+
readonly formats: "pdf_only";
|
|
513
|
+
readonly historyName: "Mrp";
|
|
514
|
+
readonly contentPathSegment: "Mrp";
|
|
515
|
+
readonly note: "Has no Titel parameter.";
|
|
516
|
+
}, {
|
|
517
|
+
readonly code: "Erlaesse";
|
|
518
|
+
readonly controller: "Sonstige";
|
|
519
|
+
readonly name: "Federal-ministry decrees";
|
|
520
|
+
readonly germanName: "Erlässe der Bundesministerien";
|
|
521
|
+
readonly documentClass: "executive_record";
|
|
522
|
+
readonly binding: "administrative_directive";
|
|
523
|
+
readonly coverage: null;
|
|
524
|
+
readonly formats: "full";
|
|
525
|
+
readonly historyName: "Erlaesse";
|
|
526
|
+
readonly contentPathSegment: "Erlaesse";
|
|
527
|
+
readonly note: "Decrees bind the administration internally, not citizens.";
|
|
528
|
+
}];
|
|
529
|
+
//# sourceMappingURL=applications.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"applications.d.ts","sourceRoot":"","sources":["../../../../src/services/ris/reference/applications.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,gEAAgE;AAChE,MAAM,MAAM,aAAa,GACrB,aAAa,GACb,aAAa,GACb,SAAS,GACT,WAAW,GACX,WAAW,GACX,UAAU,CAAC;AAEf,gDAAgD;AAChD,MAAM,MAAM,gBAAgB,GACxB,kBAAkB,GAClB,aAAa,GACb,wBAAwB,GACxB,oBAAoB,GACpB,UAAU,GACV,UAAU,GACV,kBAAkB,GAClB,uBAAuB,CAAC;AAE5B;;;GAGG;AACH,MAAM,MAAM,gBAAgB,GACxB,WAAW,GACX,4BAA4B,GAC5B,mBAAmB,GACnB,UAAU,GACV,aAAa,GACb,0BAA0B,GAC1B,aAAa,CAAC;AAElB,iEAAiE;AACjE,MAAM,MAAM,qBAAqB;AAC/B,kFAAkF;AAChF,MAAM;AACR,gEAAgE;GAC9D,oBAAoB;AACtB,sBAAsB;GACpB,UAAU;AACZ,8FAA8F;GAC5F,MAAM,CAAC;AAEX,+BAA+B;AAC/B,MAAM,WAAW,cAAc;IAC7B,qDAAqD;IACrD,QAAQ,CAAC,OAAO,EAAE,gBAAgB,CAAC;IACnC,yCAAyC;IACzC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;;;;OAKG;IACH,QAAQ,CAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3C,8CAA8C;IAC9C,QAAQ,CAAC,UAAU,EAAE,aAAa,CAAC;IACnC,wFAAwF;IACxF,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC,sBAAsB;IACtB,QAAQ,CAAC,aAAa,EAAE,gBAAgB,CAAC;IACzC,mCAAmC;IACnC,QAAQ,CAAC,OAAO,EAAE,qBAAqB,CAAC;IACxC,uDAAuD;IACvD,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,iGAAiG;IACjG,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,oBAAoB;IACpB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,qCAAqC;IACrC,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B;AAED,+DAA+D;AAC/D,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8fiB,CAAC"}
|