{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"description": "Schema describing an OpenFlow multipart request message, version 1.3",
	"id": "of13/ofp_multipart_request.json",
	"type": "object",
	"required": [
		"header",
		"type",
		"flags"
	],
	"properties": {
		"header": {
			"allOf": [
				{
					"$ref": "definitions.json#/ofp_header"
				},
				{
					"properties": {
						"type": {
							"enum": [
								"OFPT_MULTIPART_REQUEST"
							],
							"default": "OFPT_MULTIPART_REQUEST"
						}
					}
				}
			]
		},
		"type": {
			"$ref": "definitions.json#/multipart_type"
		},
		"flags": {
			"$ref": "definitions.json#/ofp_multipart_request_flags"
		},
		"body": {
			"type": "string"
		}
	}
}