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