From fe6d6112a05c19b5f05dd70eac6396752ac4f391 Mon Sep 17 00:00:00 2001 From: deen1985 Date: Tue, 16 Jun 2020 16:25:58 +0200 Subject: stndDefined domain added to VES schema Change-Id: I8fec71a3fe3a77089fd558e87563e247966a5819 Signed-off-by: deen1985 Issue-ID: VNFRQTS-888 Signed-off-by: deen1985 --- .../ves_7_2/CommonEventFormat_30.2_ONAP.json | 37 +++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/Chapter8/ves_7_2/CommonEventFormat_30.2_ONAP.json b/docs/Chapter8/ves_7_2/CommonEventFormat_30.2_ONAP.json index 5be8a6b..75923c4 100644 --- a/docs/Chapter8/ves_7_2/CommonEventFormat_30.2_ONAP.json +++ b/docs/Chapter8/ves_7_2/CommonEventFormat_30.2_ONAP.json @@ -104,6 +104,7 @@ "pnfRegistration", "sipSignaling", "stateChange", + "stndDefined", "syslog", "thresholdCrossingAlert", "voiceQuality" @@ -174,6 +175,10 @@ "description": "the earliest unix time aka epoch time associated with the event from any component--as microseconds elapsed since 1 Jan 1970 not including leap seconds", "type": "number" }, + "stndDefinedNamespace": { + "description": "Standards organization defined event namespace; expected usage includes event routing by the event listener", + "type": "string" + }, "timeZoneOffset": { "description": "UTC offset for the local time zone of the device as UTC+/-hh.mm", "type": "string" @@ -195,7 +200,7 @@ "7.0.1", "7.1", "7.1.1", - "7.2", + "7.2" ] } }, @@ -716,6 +721,9 @@ "stateChangeFields": { "$ref": "#/definitions/stateChangeFields" }, + "stndDefinedFields": { + "$ref": "#/definitions/stndDefinedFields" + }, "syslogFields": { "$ref": "#/definitions/syslogFields" }, @@ -2779,6 +2787,33 @@ "stateInterface" ] }, + "stndDefinedFields": { + "description": "stndDefined fields", + "type": "object", + "properties": { + "schemaReference": { + "description": "a uri of a standards-defined JSON object schema; used to valide the stndDefinedFields.data property contents", + "type": "string", + "format": "uri" + }, + "data": { + "description": "a native standards-defined JSON notification", + "type": "object" + }, + "stndDefinedFieldsVersion": { + "description": "version of stndDefinedFields block", + "type": "string", + "enum": [ + "1.0" + ] + } + }, + "additionalProperties": false, + "required": [ + "data", + "stndDefinedFieldsVersion" + ] + }, "syslogFields": { "description": "sysLog fields", "type": "object", -- cgit 1.2.3-korg