how to have different required fields for the create (put) and update api?
I have a schema defined say star which has name as required field.But i want this field to be required in create body request but not in update body request. What is the correct way to do without redundant code? Star: title: Star description: star found required: - name properties: id: description: the id for the star type: string format: uuid4 readOnly: true x-go-name: ID name: description: name of the star type: string x-go-name: Star