Skip to content

fix(editor-content-fixtures): amend OpenAPI 3.1.0 Petstore fixture #4278

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -604,22 +604,22 @@ components:
id:
type: integer
format: int64
example: 10
examples: [10]
petId:
type: integer
format: int64
example: 198772
examples: [198772]
quantity:
type: integer
format: int32
example: 7
examples: [7]
shipDate:
type: string
format: date-time
status:
type: string
description: Order Status
example: approved
examples: [approved]
enum:
- placed
- approved
Expand All @@ -634,10 +634,10 @@ components:
id:
type: integer
format: int64
example: 100000
examples: [100000]
username:
type: string
example: fehguy
examples: [fehguy]
address:
type: array
xml:
Expand All @@ -652,16 +652,16 @@ components:
properties:
street:
type: string
example: 437 Lytton
examples: [437 Lytton]
city:
type: string
example: Palo Alto
examples: [Palo Alto]
state:
type: string
example: CA
examples: [CA]
zip:
type: string
example: '94301'
examples: ['94301']
xml:
name: address
Category:
Expand All @@ -670,10 +670,10 @@ components:
id:
type: integer
format: int64
example: 1
examples: [1]
name:
type: string
example: Dogs
examples: [Dogs]
xml:
name: category
User:
Expand All @@ -682,30 +682,30 @@ components:
id:
type: integer
format: int64
example: 10
examples: [10]
username:
type: string
example: theUser
examples: [theUser]
firstName:
type: string
example: John
examples: [John]
lastName:
type: string
example: James
examples: [James]
email:
type: string
example: [email protected]
examples: [[email protected]]
password:
type: string
example: '12345'
examples: ['12345']
phone:
type: string
example: '12345'
examples: ['12345']
userStatus:
type: integer
description: User Status
format: int32
example: 1
examples: [1]
xml:
name: user
Tag:
Expand All @@ -727,10 +727,10 @@ components:
id:
type: integer
format: int64
example: 10
examples: [10]
name:
type: string
example: doggie
examples: [doggie]
category:
$ref: '#/components/schemas/Category'
photoUrls:
Expand Down