-
Notifications
You must be signed in to change notification settings - Fork 266
Closed
Labels
type:bugA broken experienceA broken experience
Milestone
Description
While parsing this document:
openapi: "3.0.0"
info:
version: 1.0.0
title: Swagger Petstore
description: A sample API that uses a petstore as an example to demonstrate features in the OpenAPI 3.0 specification
termsOfService: http://swagger.io/terms/
contact:
name: Swagger API Team
email: apiteam@swagger.io
url: http://swagger.io
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: http://petstore.swagger.io/api
paths:
/users:
post:
summary: Adds a new user
requestBody:
content:
application/xml:
schema: # Request body contents
$ref: '#/components/schemas/User'
example: # Sample object
id: 10
name: Jessica Smith
responses:
'200':
description: OK
components:
schemas:
User: # Schema name
type: object
properties:
id:
type: integer
format: int64
name:
type: string
I am getting this error in diagnostics:
Data and type mismatch found. [#/paths/~1users/post/requestBody/content/application~1xml/example/id
If I remove format:int64
in the id
definition, the error goes away. I don't understand what's wrong here, how should int64 format look like? 10 is not a valid value in long format??
Version 1.1.1 didn't throw this error, I started getting it after updating to 1.1.3
sample.txt
altumano, michaeltnguyen, ericpopivker, alikrc and Blackbaud-ChristiSchneider
Metadata
Metadata
Assignees
Labels
type:bugA broken experienceA broken experience