Changes between Version 512 and Version 513 of WikiStart
- Timestamp:
- 02/04/25 09:15:40 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v512 v513 116 116 When describing the domain, the set of allowed values has to be given. A domain looks like this 117 117 {{{ 118 {"name":"jobs", 119 "issuesValues":{ 120 "lease car":{"values":["yes","no"]}, 121 "permanent contract":{"values":["yes","no"]}, 122 "career development opportunities":{"values":["low","medium","high"]}, 123 "fte":{"values":["0.6","0.8","1.0"]}, 124 "salary":{"range":{"low":"2000, "high":"4000", "step":500} }, 125 "work from home":{"values":["0","1","2"]} 126 } 118 { "name":"jobs", 119 "issuesValues":{ 120 "lease car":{"values":["yes","no"]}, 121 ,,, 122 "fte":{"values":["0.6","0.8","1.0"]}, 123 "salary":{"range":{"low":2000,"high":4000,"step":500}}, 124 "work from home":{"values":["0","1","2"]} 125 } 127 126 } 128 }}} 129 130 * The name is just a string. Our reference implementation of the profiles server additionally requires that the name must match the filename and directory name when placed on the profiles server. So your directory must be domainsrepo/jobs and the filename must be jobs.json. 127 128 }}} 129 130 * The name is just a string. Special characters (eg underscore, dollar signs etc) are not allowed. Our reference implementation of the profiles server additionally requires that the name must match the filename and directory name when placed on the profiles server. So your directory must be domainsrepo/jobs and the filename must be jobs.json. 131 131 132 132 * The issueValues contains a dictionary with issues. Each issue is indicated by a name (a string), followed by a column (:) and then a ValueSet as discussed above.