Convenience wrapper around ris_search_case_law() with
application = "Lvwg".
Usage
ris_search_lvwg(
query = NULL,
business_number = NULL,
norm = NULL,
decision_date_from = NULL,
decision_date_to = NULL,
decision_type = NULL,
index_term = NULL,
federal_state = NULL,
in_ris_since = NULL,
search_decision_text = TRUE,
search_legal_principles = TRUE,
echo = FALSE,
base_url = ris_base_url()
)Arguments
- query
Optional full-text query (
Suchworte). Supports the RIS full-text operators (space/und= AND,OR/ODER= OR,nicht= NOT,*= wildcard,'phrase'for exact phrase).- business_number
Optional business number (
Geschaeftszahl).- norm
Optional legal norm query (
Norm). Multiple norms can be combined withOR/ODER(wrap each norm in single quotes, e.g."'AsylG 2005 §3' ODER 'BFA-VG §21 Abs7'").- decision_date_from
Optional lower date bound (
YYYY-MM-DD,EntscheidungsdatumVon).- decision_date_to
Optional upper date bound (
YYYY-MM-DD,EntscheidungsdatumBis).- decision_type
Optional decision type (
Entscheidungsart). LVwG accepts:"Undefined","Beschluss","Erkenntnis","Bescheid".- index_term
Optional index term (
Index).- federal_state
Optional federal state (
Bundesland) to restrict results to a single LVwG. Accepts the German name of any of the nine Austrian Bundesländer:"Burgenland","Kärnten","Niederösterreich","Oberösterreich","Salzburg","Steiermark","Tirol","Vorarlberg","Wien". Common English aliases ("Vienna","Styria","Carinthia", etc.) are also accepted (case-insensitive).- in_ris_since
Optional RIS recency filter (
ImRisSeit). Accepts API values ("Undefined","EinerWoche","ZweiWochen","EinemMonat","DreiMonaten","SechsMonaten","EinemJahr") and English aliases ("one_week","two_weeks","one_month","three_months","six_months","one_year").- search_decision_text
Optional flag for decision text search (
SucheInEntscheidungstexten).- search_legal_principles
Optional flag for legal principles search (
SucheInRechtssaetzen). When both flags are omitted, both document types are searched. When only one flag is given, the other defaults to its complement, so a single flag selects exactly one document type (e.g.search_decision_text = FALSEsearches legal principles only). Setting both toFALSEis an error.- echo
Logical. If
TRUE, prints two progress messages: the equivalent RIS website search URL (theErgebnis.wxequery onhttps://www.ris.bka.gv.at) before any request is sent; and the total hit and page count as soon as the first page's response arrives. This lets the result set be double-checked in the browser and gives an early sense of scope for broad queries without waiting for every page.- base_url
API base URL. Defaults to
ris_base_url(), which can be overridden for a session viaoptions(risAT.base_url = ...).
Details
The Landesverwaltungsgerichte (LVwG) are Austria's nine state administrative
courts (one per Bundesland), established on 1 January 2014. Use
federal_state to restrict results to a specific state.
Examples
if (FALSE) { # interactive()
# Search across all nine LVwG
ris_search_lvwg(query = "Baubewilligung")
# Restrict to the Verwaltungsgericht Wien (VGW)
ris_search_lvwg(query = "Baubewilligung", federal_state = "Wien")
# Filter by decision type and state
ris_search_lvwg(
decision_type = "Erkenntnis",
federal_state = "Steiermark",
decision_date_from = "2022-01-01"
)
# Search by norm
ris_search_lvwg(norm = "VStG §19")
# Decisions added to RIS within the last month
ris_search_lvwg(in_ris_since = "one_month", federal_state = "Tirol")
}
