Skip to content
Open
Show file tree
Hide file tree
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
10 changes: 8 additions & 2 deletions connection-coordinator/schemas/connection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,16 @@ ASNRange:
properties:
start:
description: First ASN (inclusive).
type: uint32
type: integer
format: int64
minimum: 0
maximum: 4294967295
stop:
description: Last ASN (inclusive).
type: uint32
type: integer
format: int64
minimum: 0
maximum: 4294967295
type: object

SubnetGuidance:
Expand Down
5 changes: 4 additions & 1 deletion connection-coordinator/schemas/feature.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,10 @@ ProviderBgpConfig:
type: string
asn:
description: Required. The ASN associated with the provider.
type: uint32
type: integer
format: int64
minimum: 0
maximum: 4294967295
hostIpv4:
description: Required. IPv4 address hosting BGP session for provider.
type: string
Expand Down