aboutsummaryrefslogtreecommitdiffstats
path: root/cps-ncmp-events/src/main/resources/schemas/dmidataavc/avc-event-header-v1.json
blob: ea1e617c82dea448b2ac200eec7521a7a6a5ad8d (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
  "$schema": "https://json-schema.org/draft/2019-09/schema",
  "$id": "urn:cps:org.onap.cps.ncmp.events:avc-event-header-schema:v1",
  "$ref": "#/definitions/AvcEventHeader",
  "definitions": {
    "AvcEventHeader": {
      "description": "The header for AVC event.",
      "type": "object",
      "javaType" : "org.onap.cps.ncmp.events.avc.v1.AvcEventHeader",
      "properties": {
        "eventId": {
          "description": "The unique id identifying the event generated by DMI for this AVC event.",
          "type": "string"
        },
        "eventCorrelationId": {
          "description": "The request id passed by NCMP for this AVC event.",
          "type": "string"
        },
        "eventTime": {
          "description": "The time of the AVC event. The expected format is 'yyyy-MM-dd'T'HH:mm:ss.SSSZ'.",
          "type": "string"
        },
        "eventSource": {
          "description": "The source of the AVC event.",
          "type": "string"
        },
        "eventType": {
          "description": "The type of the AVC event.",
          "type": "string"
        },
        "eventSchema": {
          "description": "The event schema for AVC events.",
          "type": "string"
        },
        "eventSchemaVersion": {
          "description": "The event schema version for AVC events.",
          "type": "string"
        }
      },
      "required": [
        "eventId",
        "eventCorrelationId",
        "eventType",
        "eventSchema",
        "eventSchemaVersion"
      ],
      "additionalProperties": false
    }
  }
}