Skip to content
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

fix: Ajust-OpenAPI-EdgeApp---type-weight-to-int #155

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
13 changes: 12 additions & 1 deletion edgeapplications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4667,9 +4667,20 @@ components:
CreateOriginsRequest_addresses:
example:
address: address
is_active: true
weight: weight
server_role: server_role
properties:
address:
type: string
is_active:
type: boolean
weight:
nullable: true
type: integer
format: int64
server_role:
type: string
required:
- address
type: object
Expand All @@ -4684,7 +4695,7 @@ components:
type: string
weight:
nullable: true
type: string
type: integer
server_role:
type: string
is_active:
Expand Down