{
  "description": "a request to make something",
  "providerState" : null,
  "request" : {
    "method" : "POST",
    "path" : "/something",
    "body": {
      "name": "Mary"
    },
    "matchingRules": {
      "$.body.name" : {"regex" : ".+"}
    }
  },
  "response" : {
    "status" : 200,
    "body" : {
      "_links" : {
        "self" : {
          "href" : "http://localhost:1234/things/1"
        }
      }
    },
    "matchingRules" : {
      "$.body._links.self.href": {"regex": "http:\\/\\/.*\\/\\d+"}
    }
  }
}
