{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"description": "Schema describing an OpenFlow queue get config reply message, version 1.3",
	"id": "of13/ofp_queue_get_config_reply.json",
	"type": "object",
	"required": [
		"header",
		"port",
		"queues"
	],
	"properties": {
		"header": {
			"allOf": [
				{
					"$ref": "definitions.json#/ofp_header"
				},
				{
					"properties": {
						"type": {
							"enum": [
								"OFPT_QUEUE_GET_CONFIG_REPLY"
							],
							"default": "OFPT_QUEUE_GET_CONFIG_REPLY"
						}
					}
				}
			]
		},
		"port": {
			"type": "integer",
			"maximum": 4294967295,
			"default": 0
		},
		"queues": {
			"type": "array",
			"default": [
				{
					"queue_id": 0,
					"port": 0,
					"len": 0,
					"properties": [
						{
							"property": "OFPQT_MIN_RATE",
							"len": 0,
							"rate": 0
						}
					]
				}
			],
			"items": {
				"$ref": "definitions.json#/ofp_packet_queue"
			}
		}
	}
}