json_get
Extract specific JSON values from Redis keys using a defined path. Simplify data retrieval by querying nested JSON structures directly, enabling efficient data management and integration.
Instructions
Retrieve a JSON value from Redis at a given path.
Args: name: The Redis key where the JSON document is stored. path: The JSON path to retrieve (default: root '$').
Returns: The retrieved JSON value or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
path | No | $ |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"path": {
"default": "$",
"title": "Path",
"type": "string"
}
},
"required": [
"name"
],
"title": "json_getArguments",
"type": "object"
}