I get a warning: 'Data and type mismatch found.' with this response description:
DiffCreatedEvent:
description: 'diff index created
type: object
additionalProperties: false
properties:
updatedAt: { $ref: '#/components/schemas/Timestamp' }
example:
{
"updatedAt": '2020-06-30T06:43:51.391Z',
}
Timestamp: { type: string, format: date-time, description: 'timestamp', example: '2020-06-30T06:43:51.391Z' }
but no warning with this:
DiffCreatedEvent:
description: 'diff index created
type: object
additionalProperties: false
properties:
updatedAt: { type: string, format: date-time, description: 'timestamp', example: '2020-06-30T06:43:51.391Z' }
example:
{
"updatedAt": '2020-06-30T06:43:51.391Z',
}
I get a warning: 'Data and type mismatch found.' with this response description:
but no warning with this: