blob: 4d98bc8632dccfa50f9cc64c61db9aec7f778150 [file] [log] [blame]
ToineSiebelink53375822024-07-29 17:45:52 +01001{
2 "$schema": "https://json-schema.org/draft/2019-09/schema",
ToineSiebelinka05ca3d2024-08-27 14:56:44 +01003 "$id": "urn:cps:org.onap.cps.ncmp.policy-executor.ncmp-create-schema:1.0.0",
ToineSiebelink53375822024-07-29 17:45:52 +01004 "$ref": "#/definitions/NcmpCreate",
5 "definitions": {
6 "NcmpCreate": {
7 "type": "object",
8 "additionalProperties": false,
9 "properties": {
10 "cmHandleId": {
11 "type": "string"
12 },
13 "resourceIdentifier": {
14 "type": "string"
15 },
16 "targetIdentifier": {
17 "type": "string"
18 },
19 "cmChangeRequest": {
20 "type": "object"
21 }
22 },
23 "required": [
24 "targetIdentifier",
25 "cmChangeRequest"
26 ]
27 }
28 }
29}