{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "Post request schema for adding new receivers to an existing network flow.",
    "properties": {
        "receiver_endpoint_ids": {
            "description": "List of receiver endpoint IDs.",
            "items": {
                "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$",
                "type": "string"
            },
            "minItems": 1,
            "type": "array",
            "uniqueItems": true
        }
    },
    "required": [
        "receiver_endpoint_ids"
    ],
    "title": "One or many receivers for a multicast network flow.",
    "type": "object"
}
