aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/resources/example/json-editor-schema
diff options
context:
space:
mode:
authorsebdet <sebastien.determe@intl.att.com>2020-06-02 18:21:08 +0200
committersebdet <sebastien.determe@intl.att.com>2020-06-02 18:21:08 +0200
commit5cc40b7c8debc6eecda03c351eef93f6e75b9bb6 (patch)
treec53823b5131c3130692fcd3d74b2e2b758dff36b /src/test/resources/example/json-editor-schema
parent5f4a40286949853388558b2c138f419bd7e6893d (diff)
Removal of useless test files
Removal of useless test files inherited from old tests removed. Issue-ID: CLAMP-854 Signed-off-by: sebdet <sebastien.determe@intl.att.com> Change-Id: I2f906c724b8e98ba40afbea8482a93e6b263ef29
Diffstat (limited to 'src/test/resources/example/json-editor-schema')
-rw-r--r--src/test/resources/example/json-editor-schema/tca-policy-json-editor-schema.json115
1 files changed, 0 insertions, 115 deletions
diff --git a/src/test/resources/example/json-editor-schema/tca-policy-json-editor-schema.json b/src/test/resources/example/json-editor-schema/tca-policy-json-editor-schema.json
deleted file mode 100644
index 91603972..00000000
--- a/src/test/resources/example/json-editor-schema/tca-policy-json-editor-schema.json
+++ /dev/null
@@ -1,115 +0,0 @@
-{
- "schema": {
- "uniqueItems": "true",
- "format": "tabs",
- "type": "array",
- "title": "Thresholds",
- "items": {
- "type": "object",
- "title": "Thresholds",
- "required": [
- "dummySignatures"
- ],
- "properties": {
- "severity": {
- "propertyOrder": 1004,
- "title": "event severity or priority",
- "type": "string",
- "enum": [
- "CRITICAL",
- "MAJOR",
- "MINOR",
- "WARNING",
- "NORMAL"
- ]
- },
- "fieldPath": {
- "propertyOrder": 1003,
- "title": "Field Path",
- "type": "string"
- },
- "thresholdValue": {
- "propertyOrder": 1005,
- "default": 0,
- "maximum": 65535,
- "title": "ThresholdValue",
- "type": "integer",
- "minimum": 0
- },
- "dummySignatures": {
- "propertyOrder": 1007,
- "uniqueItems": "true",
- "format": "tabs-top",
- "title": "dummy Signatures",
- "type": "array",
- "items": {
- "type": "object",
- "required": [
- "signature",
- "traversal"
- ],
- "properties": {
- "signature": {
- "propertyOrder": 1008,
- "required": [
- "filter_clause"
- ],
- "properties": {
- "filter_clause": {
- "propertyOrder": 20002,
- "title": "Filter Clause",
- "type": "string",
- "enum": [
- "OR",
- "AND",
- "NOT"
- ]
- }
- }
- },
- "traversal": {
- "propertyOrder": 1009,
- "required": [
- "traversal"
- ],
- "properties": {
- "traversal": {
- "propertyOrder": 20003,
- "title": "Dummy Traverse",
- "type": "string",
- "enum": [
- "ONE",
- "TWO",
- "THREE"
- ]
- }
- }
- }
- }
- }
- },
- "closedLoopControlName": {
- "propertyOrder": 1001,
- "title": "A UNIQUE string identifying the Closed Loop ID this event is for.",
- "type": "string"
- },
- "version": {
- "propertyOrder": 1006,
- "minLength": 1,
- "title": "Version for the closed loop message",
- "type": "string"
- },
- "direction": {
- "propertyOrder": 1002,
- "type": "string",
- "enum": [
- "LESS",
- "LESS_OR_EQUAL",
- "GREATER",
- "GREATER_OR_EQUAL"
- ]
- }
- }
- }
- }
-} \ No newline at end of file