Hey all, we have this validation error, however al...
# pactflow-ama
j
Hey all, we have this validation error, however all the validators were running against say the OAS is valid.. How is this being determine / How can we perform this check locally to find the issue?
Copy code
"nullable" cannot be used without "type"
m
TL;DR - add an explicity
type
on whatever property currently has
nullable
on it.
j
Thanks for that, curious how I can suggest updating a field like so to account for a missing type, ex:
Copy code
"answer": { "nullable": true, "oneOf": [{ "type": "object" }, { "type": "string" }] },
m
Could you please provide it in further context?