myspec
Results
1
issues of
myspec
``` components: schemas: Customer: type: object properties: birthday: type: string example: 1989-12-12 ``` converted to ``` definitions: Customer: properties: birthday: example: '1989-12-10T00:00:00.000Z' format: date type: string ```