{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"description": "Schema describing an OpenFlow port status message, version 1.3",
	"id": "of13/ofp_port_status.json",
	"type": "object",
	"required": [
		"header",
		"reason",
		"desc"
	],
	"properties": {
		"header": {
			"allOf": [
				{
					"$ref": "definitions.json#/ofp_header"
				},
				{
					"properties": {
						"type": {
							"enum": [
								"OFPT_PORT_STATUS"
							],
							"default": "OFPT_PORT_STATUS"
						}
					}
				}
			]
		},
		"reason": {
			"$ref": "definitions.json#/ofp_port_reason"
		},
		"desc": {
			"$ref": "definitions.json#/ofp_port"
		}
	}
}