search_legislation
Search Australian legislation to find relevant laws and regulations with structured results. Focuses on Commonwealth and Victorian jurisdictions, returning matches with citation metadata.
Instructions
Search Australian legislation (Commonwealth and Victorian focus) and return structured matches.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | json | |
jurisdiction | No | ||
limit | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"enum": [
"json",
"text",
"markdown",
"html"
],
"type": "string"
},
"jurisdiction": {
"enum": [
"cth",
"vic",
"federal",
"other"
],
"type": "string"
},
"limit": {
"maximum": 50,
"minimum": 1,
"type": "integer"
},
"query": {
"minLength": 1,
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}