5 mins | Administrative | All | Review of TR-547 1.1: Wed 28, 10:00-12:00 pm CEsT (and tentatively also 29 and 30)
TAPI weeky call |
10 mins | ONAP Update | Karthik Sethuraman | Karthik Sethuraman informs that ONAP side are looking at TAPI for topology model, it it worth that TAPI team tries to attend ONAP.
|
10 mins | O-RAN Update | Nigel Davis | Nigel Davis informs that O-RAN specifications are centered on Papyrus/UML and they are considering Eagle tool for the automatic translation to Yang.
|
90 mins | Technical discussion on Integration of Streaming and Fault Management | Andrea Mazzini presents current state of TapiNotification, TapiStreaming and TapiFM models. Agreed a simplification, only one object, ObjectNotification, augments the new EventNotification, which is replacing the old Notification signal:
leaf-list object-content {
A JSON Patch document is a JSON [RFC4627] document that represents an array of objects. Each object represents a single operation to be applied to the target JSON document. The following is an example JSON Patch document, transferred in an HTTP PATCH request: PATCH /my/data HTTP/1.1 Host: example.org Content-Length: 326 Content-Type: application/json-patch+json If-Match: "abc123" [ { "op": "test", "path": "/a/b/c", "value": "foo" }, { "op": "remove", "path": "/a/b/c" }, { "op": "add", "path": "/a/b/c", "value": [ "foo", "bar" ] }, { "op": "replace", "path": "/a/b/c", "value": 42 }, { "op": "move", "from": "/a/b/c", "path": "/a/b/d" }, { "op": "copy", "from": "/a/b/d", "path": "/a/b/e" } ]
7.10. The "anydata" Statement
The "anydata" statement defines an interior node in the schema tree.
It takes one argument, which is an identifier, followed by a block of
substatements that holds detailed anydata information.
The "anydata" statement is used to represent an unknown set of nodes
that can be modeled with YANG, except anyxml, but for which the data
model is not known at module design time. It is possible, though not
required, for the data model for anydata content to become known
through protocol signaling or other means that are outside the scope
of this document.
An example of where anydata can be useful is a list of received
notifications where the specific notifications are not known at
design time. |