Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


#OperationPayloadDescription

Modelling storage

1PUT POST /dataspaces/{dataspace-id}/modulesFileCreate /Update (and validate) a module set (upload a model file) for the given dataspace. Payload is a file containing 1 or more yang modules. This operation will also create a dataspace.
2GET /dataspaces/{dataspace-id}/modules
Read all modules in the store for the given dataspace
3GET /dataspaces/{dataspace-id}/modules?namespace="..."
Read all modules in the store for the given dataspace and namespace
4GET /dataspaces/{dataspace-id}/modules?namespace="..."&revision="..."
Read all modules in the store for the given dataspace, namespace and revision

Anchor persistence

5PUT POST /dataspaces/{dataspace-id}/anchorsJson Object 

Create an a new anchor in the given dataspace (payload includes anchor IDname, module namespace and revision)

6GET /dataspaces/{dataspace-id}/anchors/{anchor-id}
Read an anchor and the associated attributes given a anchor ID and a dataspace.
7DELETE /dataspaces/{dataspace-id}/anchors/{anchor-id}

Delete an anchor given a anchor ID and a dataspace.  This will delete the whole tree

8GET /dataspaces/{dataspace-id}/anchors

Read all anchors in the given a dataspace.

Node persistence

9PUT POST /dataspaces/{dataspace-id}/nodesFileCreate a (root) node for a given anchor for the given dataspace, the node can have children. Their children will also be persisted as separate nodes in the system.
10GET /dataspaces/{dataspace-id}/anchors/{anchor-id}/nodes?xpath="..."
Get a node given an anchor for the given dataspace (return just one level with just xpath references to its children)
11GET /dataspaces/{dataspace-id}/nodes&xpath="..."
Get a node (under any anchor) given a Xpath expression for the given dataspace
12GET /dataspaces/{dataspace-id}/nodes?schema_node_identifier="..."
Get all the relevant nodes given a schema node identifier for the given dataspace
(not need to specify dataspace is schema-node-identifier is globally unique)

...