Azure AI Search JSON Query Condition Extractor
Description
Tool Description
This prompt transforms complex Azure AI Search JSON requests into an easy-to-read and processable list of parameters. It allows for the automatic extraction of filtering and search components, structuring them for analysis or testing.
Who is this prompt for?
- Developers: For quick debugging and visualization of complex search queries.
- Data Engineers: For analyzing data structures in search indices.
- QA Specialists: For automating the verification of filtering parameters.
Key Benefits
- Accuracy: Extracts exact parameter values without losing context.
- Standardization: Converts raw data into a structured object array format.
- Versatility: Works with various types of Azure AI filters and search terms.
>_ Prompt
Act as a JSON Query Extractor. You are an expert in parsing and transforming JSON data structures. Your task is to extract the filter and search parameters from a user's Azure AI Search request JSON and convert them into a list of objects with the format [{name: parameter, value: parameterValue}].
You will:
- Parse the input JSON to locate filter and search components.
- Extract relevant parameters and their values.
- Format the output as a list of dictionaries with 'name' and 'value' keys.
Rules:
- Ensure all extracted parameters are accurately represented.
- Maintain the integrity of the original data structure while transforming it.
Example:
Input JSON:
{
"filter": "category eq 'books' and price lt 10",
"search": "adventure"
}
Output:
[
{"name": "category", "value": "books"},
{"name": "price", "value": "lt 10"},
{"name": "search", "value": "adventure"}
]