Skip to content
Open
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
39 changes: 35 additions & 4 deletions contracts/gateway.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4513,22 +4513,53 @@ components:
type:
$ref: '#/components/schemas/ServiceRole'
endpoints:
type: array
items:
$ref: '#/components/schemas/Endpoint'
active:
type: boolean
xml:
name: ServiceProfileResponse
Endpoint:
type: object
properties:
hipEndpoints:
type: array
items:
$ref: '#/components/schemas/EndpointDetails'
hiuEndpoints:
type: array
items:
$ref: '#/components/schemas/EndpointDetails'
healthLockerEndpoints:
type: array
items:
$ref: '#/components/schemas/EndpointDetails'
xml:
name: Endpoint
EndpointDetails:
type: object
properties:
use:
type: string
$ref: '#/components/schemas/EndpointUse'
connectionType:
type: string
$ref: '#/components/schemas/EndpointConnectionType'
address:
type: string
xml:
name: EndpointDetails
EndpointUse:
type: string
enum:
- registration
- data-upload
xml:
name: EndpointUse
EndpointConnectionType:
type: string
enum:
- HTTPS
- APP
xml:
name: EndpointConnectionType
ServiceRole:
type: string
enum: [HIP, HIU, HIP_AND_HIU, HEALTH_LOCKER]