Subrahmanyam Rentala
07/18/2022, 1:01 PMMike Geeves
07/18/2022, 1:07 PMMatt (pactflow.io / pact-js / pact-go)
integration testscan you please elaborate what you mean by this? The definition has widely ranging meanings, so it’s important to make this clear
Subrahmanyam Rentala
07/18/2022, 2:13 PMMatt (pactflow.io / pact-js / pact-go)
Matt (pactflow.io / pact-js / pact-go)
Timothy Jones
07/19/2022, 2:26 AM{
"type": "foo"
"fooField": {....}
}
and
{
"type": "bar"
"barField": {....}
}
typically this is expressed in schema as:
{
type: "bar" | "foo"
barField: Optional<BarField>
fooField: Optional<FooField>
}
which means the following two examples are schema-compliant, but probably wrong:
{
type: "bar"
}
and
{
type: "bar"
fooField: { ... }
}
Yousaf Nabi (pactflow.io)
Subrahmanyam Rentala
07/27/2022, 5:07 PMMatt (pactflow.io / pact-js / pact-go)
Matt (pactflow.io / pact-js / pact-go)
Timothy Jones
07/27/2022, 11:35 PMSubrahmanyam Rentala
07/29/2022, 9:22 AMMatt (pactflow.io / pact-js / pact-go)
Matt (pactflow.io / pact-js / pact-go)
Matt (pactflow.io / pact-js / pact-go)
Timothy Jones
07/29/2022, 11:15 AMSubrahmanyam Rentala
08/03/2022, 12:12 PM