Solved
Forum Discussion
RonRatovsky
Staff
7 years agoThere's no real way of enforcing that in the spec.
1. OpenAPI Specification does not have a way to define dynamic/computed values. These values will have to be computed by the sender of the data.
2. Your example is correct, but if you mean that "audit" is always true use an enum instead:
"audit": {"type": "boolean", "enum" [true]},
There's no real way of enforcing that in the spec.
There's no real way of enforcing that in the spec.