search_by_type
Search Israeli Land Authority tenders by type or land use purpose, such as residential, commercial, or low-rise construction. Filter results by active status or specific tender IDs for targeted information.
Instructions
Search tenders by type or land use purpose
Find tenders of specific types (residential, commercial, etc.) or purposes (low-rise construction, offices, etc.).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"TypeSearchArgs": {
"description": "Arguments for type-based search",
"properties": {
"active_only": {
"default": false,
"description": "Only return active tenders",
"title": "Active Only",
"type": "boolean"
},
"purpose": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Land use purpose",
"title": "Purpose"
},
"tender_types": {
"anyOf": [
{
"items": {
"type": "integer"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "List of tender type IDs (1-9)",
"title": "Tender Types"
}
},
"title": "TypeSearchArgs",
"type": "object"
}
},
"properties": {
"args": {
"$ref": "#/$defs/TypeSearchArgs",
"title": "Args"
}
},
"required": [
"args"
],
"type": "object"
}