Schema network-flow.json
Resolve referenced schemas (may reorder keys)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "Describes a simple network flow core schema.",
"title": "Network flow with minimal attributes",
"required": [
"id",
"multicast_address",
"sender_endpoint_id",
"receiver_endpoint_ids",
"bandwidth"
],
"properties": {
"id": {
"description": "Globally unique identifier for the network flow",
"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}$"
},
"multicast_address": {
"type": [
"string",
"null"
],
"description": "Multicast group address is an IP address, the IPv4 range is 224.1.1.1 to 239.255.255.255. Provisioned for IPv6 but implementation may depend or may not exist. A null value and null type option is added for future use of this schema for unicast flow",
"anyOf": [
{
"format": "ipv4"
},
{
"format": "ipv6"
},
{
"type": "null"
}
]
},
"sender_endpoint_id": {
"description": "Sender Endpoint ID",
"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}$"
},
"receiver_endpoint_ids": {