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