search_cases
Search Australian case law using queries with neutral citation fallbacks. Retrieve structured results with citation metadata and jurisdiction filtering.
Instructions
Search Australian case law with neutral citation fallbacks.
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"
}