@pact-foundation/pact-mock-service-linux-x64
Version:
28 lines (27 loc) • 527 B
JSON
{
"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+"}
}
}
}