You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here's a piece of a request definition in one of my source files:
- name: date
description: The date
in: path
required: true
schema:
type: string
format: date
example: 2019-12-25
And here's the same section after merging with yamlinc:
- name: date
description: The date
in: path
required: true
schema:
type: string
format: date
example: '2019-12-25T00:00:00.000Z'
Note how the example date in the last line has been changed from just the date to a full date and time format, which is not what I want in this case. Is there a way to prevent this from happening?
The text was updated successfully, but these errors were encountered:
Here's a piece of a request definition in one of my source files:
And here's the same section after merging with yamlinc:
Note how the example date in the last line has been changed from just the date to a full date and time format, which is not what I want in this case. Is there a way to prevent this from happening?
The text was updated successfully, but these errors were encountered: