--- /dev/null
+{
+ "type": "object",
+ "properties": {
+ "timestamp": {
+ "type": "string",
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+[+\\-]\\d+$",
+ "optional": false
+ },
+ "flow_id": {
+ "type": "integer",
+ "optional": true
+ },
+ "pcap_cnt": {
+ "type": "integer",
+ "optional": true
+ },
+ "event_type": {
+ "type": "string",
+ "optional": false
+ },
+ "vlan": {
+ "type": "array",
+ "items": {
+ "type": "number"
+ }
+ },
+ "src_ip": {
+ "type": "string",
+ "optional": true
+ },
+ "src_port": {
+ "type": "integer",
+ "optional": true
+ },
+ "dest_ip": {
+ "type": "string",
+ "optional": true
+ },
+ "dest_port": {
+ "type": "integer",
+ "optional": true
+ },
+ "proto": {
+ "type": "string",
+ "optional": true
+ },
+ "http": {
+ "type": "object",
+ "optional": true,
+ "properties": {
+ "hostname": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ },
+ "http_user_agent": {
+ "type": "string"
+ },
+ "http_content_type": {
+ "type": "string"
+ },
+ "http_method": {
+ "type": "string"
+ },
+ "protocol": {
+ "type": "string"
+ },
+ "status": {
+ "type": "integer"
+ },
+ "length": {
+ "type": "integer"
+ }
+ }
+ },
+ "app_proto": {
+ "type": "string",
+ "optional": true
+ },
+ "fileinfo": {
+ "type": "object",
+ "optional": true,
+ "properties": {
+ "filename": {
+ "type": "string"
+ },
+ "state": {
+ "type": "string"
+ },
+ "stored": {
+ "type": "boolean"
+ },
+ "size": {
+ "type": "integer"
+ },
+ "tx_id": {
+ "type": "integer"
+ }
+ }
+ }
+ }
+}