{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"description": "Schema describing an OpenFlow stats reply message, version 1.0",
	"id": "of10/ofp_stats_reply.json",
	"type": "object",
	"required": [
		"header",
		"type",
		"flags",
		"body"
	],
	"properties": {
		"header": {
			"allOf": [
				{
					"$ref": "definitions.json#/ofp_header"
				},
				{
					"properties": {
						"type": {
							"enum": [
								"OFPT_STATS_REPLY"
							],
							"default": "OFPT_STATS_REPLY"
						}
					}
				}
			]
		},
		"type": {
			"$ref": "definitions.json#/ofp_stats_types"
		},
		"flags": {
			"type": "integer",
			"minimum": 0,
			"maximum": 65535,
			"default": 0
		},
		"body": {
			"$ref": "definitions.json#/data"
		}
	}
}