{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-schema/config-put-stored-query-request-schema.json", "title": "PutStoredQueryRequest", "description": "PutStoredQueryRequest schema", "type": "object", "properties": { "StoredQuery": { "allOf": [ { "$ref": "#/components/schemas/StoredQuery" }, { "description": "

A list of StoredQuery objects. The mandatory fields are QueryName and Expression.

When you are creating a query, you must provide a query name and an expression. When you are updating a query, you must provide a query name but updating the description is optional.

" } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/TagsList" }, { "description": "A list of Tags object." } ] } }, "required": [ "StoredQuery" ] }