search_records
Locate records containing specified text within a resource URI. Define search terms, specific fields, and limit results for targeted record retrieval.
Instructions
Search for records containing specific text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | Specific fields to search in. If not provided, searches all text fields. | |
maxRecords | No | Maximum number of records to return. Defaults to 100. | |
resourceUri | Yes | URI of the resource | |
searchTerm | Yes | Text to search for in records |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fields": {
"description": "Specific fields to search in. If not provided, searches all text fields.",
"items": {
"type": "string"
},
"type": "array"
},
"maxRecords": {
"description": "Maximum number of records to return. Defaults to 100.",
"type": "number"
},
"resourceUri": {
"description": "URI of the resource",
"type": "string"
},
"searchTerm": {
"description": "Text to search for in records",
"type": "string"
}
},
"required": [
"resourceUri",
"searchTerm"
],
"type": "object"
}