[{
	"port": 2021,
	"method": "GET",
	"uri": "/simple-static-mock-example",
	"response": {
		"statusCode": 200,
		"headers": {
			"X-Custom-Header": "This rocks"
		},
		"body": {
			"someKey": "some value"
		}
	}
},
{
	"port": 2021,
	"method": "GET",
	"uri": "/static-mock-with-params-example/:name",
	"response": {
		"body": "My name is ${req.params.name}"
	}
},
{
	"port": 2021,
	"method": "GET",
	"uri": "/static-mock-with-params-json-example/:name",
	"response": {
		"body": {
			"name": "${req.params.name}"
		}
	}
}]
