```"produces": [ "application/json" ], ...
# http4k
r
Copy code
"produces": [
					"application/json"
				],
				"consumes": [
					"application/json"
				],
				"parameters": [
					{
						"in": "body",
						"name": "body",
						"required": true,
						"type": "object",
						"description": "JSON represensentation of a Pool"
					}
				],
				"responses": {
					"200": {
						"description": ""
					}
				}