{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$id": "https://www.salesteamportal.com/getRecipeList",
    "title": "getRecipeList",
    "description": "payload for getRecipeList operation",
    "type": "object",
    "properties": {
        "keyword": { "type": "string", "minLength": 3 },
        "attribute_id_list": {
            "type": "array",
            "items": { "type": "integer" },
            "maxItems": 50
        },
        "recipe_id_list": {
            "type": "array",
            "items": { "type": "integer" },
            "maxItems": 50
        },
        "published_only": { "type": "boolean", "default": true }
    },
    "additionalProperties": false
}
