This document is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/
1 Introduction
X-Road Service Metadata protocol [PR-META] describes how X-Road metaservices can be called via SOAP interface. This specification complements it by describing REST call mechanisms.
REST metaservices conform to X-Road Message Protocol for REST [PR-REST].
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and " OPTIONAL" in this document (in uppercase, as shown) are to be interpreted as described in [RFC2119].
1.1 Terms and abbreviations
See X-Road terms and abbreviations documentation [TA-TERMS].
1.2 References
[PR-META] X-Road: Service Metadata Protocol. Document ID: PR-META.
[TA-TERMS] X-Road Terms and Abbreviations. Document ID: TA-TERMS.
[PR-REST] X-Road: Message Protocol for REST. Document ID: PR-REST.
2 Retrieving List of Service Providers
For retrieving the list of service providers listClients metaservice is used. It can be invoked with simple HTTP GET to right URL. Service output format is controlled with Accept header. The details of listClients are described in [PR-META].
4 Retrieving List of Services
X-Road provides two methods for getting the list of services and service endpoints offered by an X-Road client:
listMethods lists all REST services and service endpoints offered by a service provider.
allowedMethods lists all REST services and service endpoints offered by a service provider that the caller has permission to invoke. Notice that the endpoints may contain wildcards and the amount of concrete endpoints may actually be larger. Generally, fetching the OpenAPI service description is the preferred method for discovering service endpoints.
Both methods are invoked as regular X-Road REST services (see specification [PR-REST] for details on the X-Road REST protocol).
The serviceId MUST contain the identifier of the target service provider and the value of the serviceCode element MUST be either listMethods or allowedMethods.
Request example
GET /r1/INSTANCE/CLASS2/MEMBER2/SUBSYSTEM2/listMethods
HTTP request headers
X-Road-Client: INSTANCE/CLASS1/MEMBER1/SUBSYSTEM1
The body of the response message MUST contain a list of services and service endpoints provided by the service provider (in case of listMethods) or open to the given client (in case of allowedMethods). The response SHALL NOT contain names of the metainfo services.
Annex A contains the OpenAPI description of the REST metadata services.
Annexes B.1 and B.2 contain example response messages for services, respectively.
5 Retrieving the OpenAPI description of a Service
X-Road provides a metaservice for fetching service descriptions of REST services.
getOpenAPI returns the OpenAPI service description of a REST service
The method is invoked as regular X-Road REST service (see specification [PR-REST] for details on the X-Road REST protocol).
The serviceId MUST contain the identifier of the target service provider and the value of the serviceCode element MUST be getOpenAPI.
The query parameters must contain serviceCode=xxx where xxx is the service code of the REST service we want to get the service description from.
Request example
GET /r1/INSTANCE/CLASS2/MEMBER2/SUBSYSTEM2/getOpenAPI?serviceCode=listFirms
HTTP request headers
X-Road-Client: INSTANCE/CLASS1/MEMBER1/SUBSYSTEM1
Note that fetching the OpenAPI service description respects the "Verify TLS Certificate" setting of the service.
The body of the response MUST contain the OpenAPI service description of the REST service indicated by the query parameters.
Annex A contains the OpenAPI description of the REST metadata services.
Annex B.3 contains an example response message for the service.
Annex A Service Descriptions for REST Metadata Services
openapi: 3.0.0
info:
title: X-Road Service Metadata API for REST
version: '0.3'
servers:
- url: https://{securityserver}/r1
variables:
securityserver:
default: ''
description: 'security server address'
paths:
/{xRoadInstance}/{memberClass}/{memberCode}/{subsystemCode}/listMethods:
parameters:
- $ref: '#/components/parameters/xRoadInstance'
- $ref: '#/components/parameters/memberClass'
- $ref: '#/components/parameters/memberCode'
- $ref: '#/components/parameters/subsystemCode'
get:
tags:
- metaservices
summary: List REST services and endpoints for a service provider
operationId: listMethods
parameters:
- name: serviceId
in: query
schema:
type: string
- name: X-Road-Client
in: header
schema:
type: string
responses:
'200':
description: List of REST services and endpoints for a service provider
content:
application/json:
schema:
$ref: '#/components/schemas/restServiceDetailsListType'
/{xRoadInstance}/{memberClass}/{memberCode}/{subsystemCode}/allowedMethods:
parameters:
- $ref: '#/components/parameters/xRoadInstance'
- $ref: '#/components/parameters/memberClass'
- $ref: '#/components/parameters/memberCode'
- $ref: '#/components/parameters/subsystemCode'
get:
tags:
- metaservices
summary: List of allowed REST services and endpoints for a service provider
operationId: allowedMethods
parameters:
- name: serviceId
in: query
schema:
type: string
- name: X-Road-Client
in: header
schema:
type: string
responses:
'200':
description: List of allowed REST services and endpoints for a service provider
content:
application/json:
schema:
$ref: '#/components/schemas/restServiceDetailsListType'
/{xRoadInstance}/{memberClass}/{memberCode}/{subsystemCode}/getOpenAPI:
parameters:
- $ref: "#/components/parameters/xRoadInstance"
- $ref: "#/components/parameters/memberClass"
- $ref: "#/components/parameters/memberCode"
- $ref: "#/components/parameters/subsystemCode"
get:
tags:
- metaservices
summary: Returns OpenAPI service description for a REST service
operationId: getOpenAPI
parameters:
- name: serviceCode
in: query
schema:
type: string
- name: X-Road-Client
in: header
schema:
type: string
responses:
'200':
description: OpenAPI description of the specified REST service
content:
application/json:
schema:
type: string
text/yaml:
schema:
type: string
'400':
description: Error in request
'500':
description: Internal error
components:
parameters:
xRoadInstance:
name: xRoadInstance
required: true
in: path
schema:
type: string
memberClass:
name: memberClass
required: true
in: path
schema:
type: string
memberCode:
name: memberCode
required: true
in: path
schema:
type: string
subsystemCode:
name: subsystemCode
required: true
in: path
schema:
type: string
schemas:
restServiceDetailsListType:
type: object
properties:
member:
type: array
items:
$ref: '#/components/schemas/xroadRestServiceDetailsType'
xroadRestServiceDetailsType:
type: object
properties:
objectType:
type: object
properties:
object_type:
type: string
enum:
- MEMBER
- SUBSYSTEM
- SERVER
- GLOBALGROUP
- SERVICE
- LOCALGROUP
serviceType:
type: string
xRoadInstance:
type: string
memberClass:
type: string
memberCode:
type: string
subsystemCode:
type: string
serviceCode:
type: string
serviceVersion:
type: string
endpointList:
type: object
properties:
member:
type: array
items:
$ref: '#/components/schemas/endpoint'
endpoint:
type: object
properties:
method:
type: string
path:
type: string