aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/masspnfsim/pnf-sim-lightweight/json_schema/input_validator.json
diff options
context:
space:
mode:
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>2020-12-16 13:16:47 +0100
committerBartek Grzybowski <b.grzybowski@partner.samsung.com>2020-12-16 13:20:34 +0100
commite2e2041fccc8beee89a378de2de54f3dce8f056e (patch)
treebe72d882fc8d6c572503469dcb2181051abff6a6 /test/mocks/masspnfsim/pnf-sim-lightweight/json_schema/input_validator.json
parentc1049d85e04edc89859dfae21c089e36d941f3b3 (diff)
Remove masspnf simulator code
It has been moved to it's own repository: https://git.onap.org/integration/simulators/masspnf-simulator/ Change-Id: I54b63243eb9e932cd34373ef33679356542349be Issue-ID: INT-1810 Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'test/mocks/masspnfsim/pnf-sim-lightweight/json_schema/input_validator.json')
-rw-r--r--test/mocks/masspnfsim/pnf-sim-lightweight/json_schema/input_validator.json108
1 files changed, 0 insertions, 108 deletions
diff --git a/test/mocks/masspnfsim/pnf-sim-lightweight/json_schema/input_validator.json b/test/mocks/masspnfsim/pnf-sim-lightweight/json_schema/input_validator.json
deleted file mode 100644
index 9f56e8df1..000000000
--- a/test/mocks/masspnfsim/pnf-sim-lightweight/json_schema/input_validator.json
+++ /dev/null
@@ -1,108 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-04/schema#",
- "type": "object",
- "properties": {
- "simulatorParams": {
- "type": "object",
- "properties": {
- "testDuration": {
- "type": "string"
- },
- "messageInterval": {
- "type": "string"
- }
- },
- "required": [
- "testDuration",
- "messageInterval"
- ]
- },
- "commonEventHeaderParams": {
- "type": "object",
- "properties": {
- "eventName": {
- "type": "string"
- },
- "nfNamingCode": {
- "type": "string"
- },
- "nfcNamingCode": {
- "type": "string"
- }
- },
- "required": [
- "eventName"
- ]
- },
- "pnfRegistrationParams": {
- "type": "object",
- "properties": {
- "serialNumber": {
- "type": "string"
- },
- "vendorName": {
- "type": "string"
- },
- "oamV4IpAddress": {
- "type": "string"
- },
- "oamV6IpAddress": {
- "type": "string"
- },
- "unitFamily": {
- "type": "string"
- },
- "modelNumber": {
- "type": "string"
- },
- "softwareVersion": {
- "type": "string"
- },
- "unitType": {
- "type": "string"
- }
- },
- "required": [
- "serialNumber",
- "vendorName",
- "oamV4IpAddress",
- "oamV6IpAddress",
- "unitFamily",
- "modelNumber",
- "softwareVersion",
- "unitType"
- ]
- },
- "notificationParams": {
- "type": "object",
- "properties": {
- "changeIdentifier": {
- "type": "string"
- },
- "changeType": {
- "type": "string"
- }
- },
- "required": [
- "changeIdentifier",
- "changeType"
- ]
- }
- },
- "oneOf": [
- {
- "required": [
- "simulatorParams",
- "commonEventHeaderParams",
- "pnfRegistrationParams"
- ]
- },
- {
- "required": [
- "simulatorParams",
- "commonEventHeaderParams",
- "notificationParams"
- ]
- }
- ]
-}