{
	"title": "Update case",
	"type": "object",
	"properties": {
		"delivery": {
			"type": "object",
			"properties": {
				"name": {
					"type": "string",
					"minLength": 1
				},
				"street": {
					"type": "string",
					"minLength": 1,
					"required": true
				},
				"zip": {
					"type": "string",
					"minLength": 1
				},
				"city": {
					"type": "string",
					"minLength": 1
				},
				"country": {
					"type": "string",
					"pattern": "/^[A-Z]{2}$/"
				},
				"phone": {
					"type": "string",
					"pattern": "/^(\\+[0-9]{1,3}[- ]?)?[-0-9 ]{1,18}$/"
				},
				"fax": {
					"type": "string",
					"pattern": "/^(\\+[0-9]{1,3}[- ]?)?[-0-9 ]{1,18}$/"
				},
				"email": {
					"type": "string",
					"pattern": "/^[^@]+@[^@]+\\.[^@.]+$/"
				}
			}
		},
		"symptomDescription": {
			"type": "string"
		},
		"visualAppearance": {
			"type": "string"
		}
	}
}
