aboutsummaryrefslogtreecommitdiff
path: root/exampleData/ruleSets/template.json
diff options
context:
space:
mode:
Diffstat (limited to 'exampleData/ruleSets/template.json')
-rw-r--r--exampleData/ruleSets/template.json23
1 files changed, 12 insertions, 11 deletions
diff --git a/exampleData/ruleSets/template.json b/exampleData/ruleSets/template.json
index 70d101c..43ab973 100644
--- a/exampleData/ruleSets/template.json
+++ b/exampleData/ruleSets/template.json
@@ -5,15 +5,16 @@
* Template ruleset containing one empty rule.
*/
-{ 'name': "NAME"
-, 'description': "DESCRIPTION"
-, 'rules': [
-//--------------------------------------------
- { 'name': "RULE NAME"
- , 'description': "RULE DESC"
- , 'rule':
- function() {} // Function that checks the rule
- }//,
-//--------------------------------------------
- ]
+{ 'name': 'NAME'
+ , 'description': 'DESCRIPTION'
+ , 'rules': [
+ //--------------------------------------------
+ { 'id': 123456789
+ , 'name': 'RULE NAME'
+ , 'description': 'RULE DESC'
+ , 'rule':
+ function() {} // Function that checks the rule
+ }//,
+ //--------------------------------------------
+ ]
}