Merge "[BUG] Correctly parse observedTimestamp"
[cps.git] / cps-rest / docs / api / swagger / openapi.yml
1 openapi: 3.0.1
2 info:
3   title: CPS API
4   description: Configuration Persistence Service API
5   version: "1.0"
6 servers:
7   - url: //localhost:8088/
8 tags:
9   - name: cps-rest
10     description: cps Resource
11 paths:
12   /v1/dataspaces:
13     $ref: 'cpsAdmin.yml#/dataspace'
14
15   /v1/dataspaces/{dataspace-name}/:
16     $ref: 'cpsAdmin.yml#/dataspaceByDataspaceName'
17
18   /v1/dataspaces/{dataspace-name}/anchors:
19     $ref: 'cpsAdmin.yml#/anchorsByDataspace'
20
21   /v1/dataspaces/{dataspace-name}/anchors/{anchor-name}:
22     $ref: 'cpsAdmin.yml#/anchorByDataspaceAndAnchorName'
23
24   /v1/dataspaces/{dataspace-name}/schema-sets:
25     $ref: 'cpsAdmin.yml#/schemaSet'
26
27   /v1/dataspaces/{dataspace-name}/schema-sets/{schema-set-name}:
28     $ref: 'cpsAdmin.yml#/schemaSetBySchemaSetName'
29
30   /v1/dataspaces/{dataspace-name}/anchors/{anchor-name}/nodes:
31     $ref: 'cpsData.yml#/nodesByDataspaceAndAnchor'
32
33   /v1/dataspaces/{dataspace-name}/nodes:
34     $ref: 'cpsData.yml#/nodesByDataspace'