{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "OrderModifierDetail",
    "type": "object",
    "additionalProperties": false,
    "description": "TAnalytics-v4 .. To details of modifier in an order",
    "properties": {
        "modifier_id": {
            "type": "string",
            "description": "The id of a modifier in a commerce order"
        },
        "modifier_name": {
            "type": "string",
            "description": "The name of a modifier in the order"
        },
        "quantity": {
            "type": "integer",
            "description": "The modifier quantity"
        }
    },
    "required": [
        "modifier_name"
    ]
}