{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$id": "https://www.salesteamportal.com/getItemList",
    "title": "getItemList",
    "description": "payload for getItemList operation",
    "type": "object",
    "properties" : {

        "keyword" : { "type" : "string", "minLength" : 3 },
        "attribute_id_list" : { "type" : "array", "items" : { "type" : "integer" }, "maxItems" : 50 },
        "attribute_optr" : { "type" : "string", "enum" : ["AND", "OR"], "default" : "OR" },
        "sku_id_list" : { "type" : "array", "items" : { "type" : "integer" }, "maxItems" : 50 },
        "gs1_only" : { "type" : "boolean", "default" : false },
        "discontinued" : { "type" : "boolean", "default" : false },
        "category_filter" : { "type" : "integer" },
        "school_products_only" : { "type" : "boolean", "default" : false },
        "published_only" : { "type" : "boolean", "default" : true }

    },
    "additionalProperties": false
   
}
