blob: c2915187c7143a95b607805219f0645e25044282 [file] [log] [blame]
raviteja.karumurie9ac24f2023-04-13 23:44:41 +01001{
2 "$schema": "https://json-schema.org/draft/2019-09/schema",
sourabh_sourabhf4c3f0f2023-06-08 15:25:33 +01003 "$id": "urn:cps:org.onap.cps.ncmp.events.async:data-operation-event-schema:1.0.0",
4 "$ref": "#/definitions/DataOperationEvent",
raviteja.karumurie9ac24f2023-04-13 23:44:41 +01005 "definitions": {
sourabh_sourabhf4c3f0f2023-06-08 15:25:33 +01006 "DataOperationEvent": {
7 "description": "The payload of data operation event.",
raviteja.karumurie9ac24f2023-04-13 23:44:41 +01008 "type": "object",
sourabh_sourabhf4c3f0f2023-06-08 15:25:33 +01009 "javaType" : "org.onap.cps.ncmp.events.async1_0_0.DataOperationEvent",
raviteja.karumurie9ac24f2023-04-13 23:44:41 +010010 "properties": {
sourabh_sourabhf4c3f0f2023-06-08 15:25:33 +010011 "data": {
raviteja.karumurie9ac24f2023-04-13 23:44:41 +010012 "description": "The payload content of the requested data.",
13 "type": "object",
raviteja.karumurie9ac24f2023-04-13 23:44:41 +010014 "properties": {
sourabh_sourabhf4c3f0f2023-06-08 15:25:33 +010015 "responses": {
raviteja.karumurie9ac24f2023-04-13 23:44:41 +010016 "description": "An array of batch responses which contains both success and failure",
17 "type": "array",
18 "items": {
19 "type": "object",
20 "properties": {
21 "operationId": {
sourabh_sourabhede42ea2023-06-26 11:15:57 +010022 "description": "Used to distinguish multiple operations using same handle ids",
raviteja.karumurie9ac24f2023-04-13 23:44:41 +010023 "type": "string"
24 },
25 "ids": {
26 "description": "Id's of the cmhandles",
sourabh_sourabhede42ea2023-06-26 11:15:57 +010027 "type": "array",
28 "items": {
29 "type": "string"
30 }
raviteja.karumurie9ac24f2023-04-13 23:44:41 +010031 },
sourabh_sourabh0373f192023-08-16 13:16:25 +010032 "resourceIdentifier": {
33 "description": "The format of resource identifier depend on the associated DMI Plugin implementation. For ONAP DMI Plugin it will be RESTConf paths but it can really be anything.",
34 "type": "string"
35 },
36 "options": {
37 "description": "It is mandatory to add as key(s)=value(s)'. The format of options parameter depend on the associated DMI Plugin implementation.",
38 "type": "string"
39 },
sourabh_sourabhf4c3f0f2023-06-08 15:25:33 +010040 "statusCode": {
raviteja.karumurie9ac24f2023-04-13 23:44:41 +010041 "description": "which says success or failure (0-99) are for success and (100-199) are for failure",
42 "type": "string"
43 },
sourabh_sourabhf4c3f0f2023-06-08 15:25:33 +010044 "statusMessage": {
raviteja.karumurie9ac24f2023-04-13 23:44:41 +010045 "description": "Human readable message, Which says what the response has",
46 "type": "string"
47 },
sourabh_sourabhede42ea2023-06-26 11:15:57 +010048 "result": {
raviteja.karumurie9ac24f2023-04-13 23:44:41 +010049 "description": "Contains the requested data response.",
50 "type": "object",
51 "existingJavaType": "java.lang.Object",
52 "additionalProperties": false
53 }
54 },
55 "required": [
56 "operationId",
57 "ids",
sourabh_sourabhf4c3f0f2023-06-08 15:25:33 +010058 "statusCode",
59 "statusMessage"
raviteja.karumurie9ac24f2023-04-13 23:44:41 +010060 ],
61 "additionalProperties": false
62 }
63 }
64 },
65 "required": [
sourabh_sourabhf4c3f0f2023-06-08 15:25:33 +010066 "responses"
raviteja.karumurie9ac24f2023-04-13 23:44:41 +010067 ],
68 "additionalProperties": false
69 }
70 },
71 "required": [
sourabh_sourabhf4c3f0f2023-06-08 15:25:33 +010072 "data"
raviteja.karumurie9ac24f2023-04-13 23:44:41 +010073 ],
74 "additionalProperties": false
75 }
76 }
77}