diff options
author | Sourabh Sourabh <sourabh.sourabh@est.tech> | 2024-07-31 16:39:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-07-31 16:39:43 +0000 |
commit | c8378b60ce5a9da7f037333185f767f8f2fcfbe8 (patch) | |
tree | a3d9438c6f537bf6a277c9113bfa286bac252b1a /docs/schemas/policy-executor/ncmp-update-schema-1.0.0.json | |
parent | e2527ea17f2e70f6b27655666e928314bdc56a22 (diff) | |
parent | 53375821fa2d156785a92ef57ef7948389260cc1 (diff) |
Merge "Refactor OpenAPI Policy Executor"
Diffstat (limited to 'docs/schemas/policy-executor/ncmp-update-schema-1.0.0.json')
-rw-r--r-- | docs/schemas/policy-executor/ncmp-update-schema-1.0.0.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/schemas/policy-executor/ncmp-update-schema-1.0.0.json b/docs/schemas/policy-executor/ncmp-update-schema-1.0.0.json new file mode 100644 index 0000000000..0a497e38c5 --- /dev/null +++ b/docs/schemas/policy-executor/ncmp-update-schema-1.0.0.json @@ -0,0 +1,29 @@ +{ + "$schema": "https://json-schema.org/draft/2019-09/schema", + "$id": "urn:cps:org.onap.cps.ncmp.policy-executor:ncmp-update-schema:1.0.0", + "$ref": "#/definitions/NcmpUpdate", + "definitions": { + "NcmpUpdate": { + "type": "object", + "additionalProperties": false, + "properties": { + "cmHandleId": { + "type": "string" + }, + "resourceIdentifier": { + "type": "string" + }, + "targetIdentifier": { + "type": "string" + }, + "cmChangeRequest": { + "type": "object" + } + }, + "required": [ + "targetIdentifier", + "cmChangeRequest" + ] + } + } +} |