Given the following schema definition (which is a valid way to define required properties):
MySchema:
type: object
required: [property1, property2, property3]
properties:
property1:
type: integer
property2:
type: integer
property3:
type: integer
Is there a way to specify that all the properties are required?
Clarification: I'm looking for a way to say that all the properties are required, without specifying it one by one.
To be even more explicit: this does not answer my question.