2 "$schema": "https://json-schema.org/draft/2020-12/schema",
3 "$id": "https://nvidia.com/dw/schedule.schema.json",
4 "title": "DriveWorks Node parameter value sets Descriptor",
5 "description": "The descriptor of sets of parameter values for DriveWorks nodes. The order of sets should be alphabetical.",
7 "additionalProperties": false,
9 "^([a-ZA-Z][a-zA-Z0-9_]*|\\*)$": {
10 "description": "The key is the set identifier. The value contains a mapping from parameter names to parameter values. The order of parameter names should be alphabetical.",
12 "additionalProperties": false,
13 "patternProperties": {
14 "^([a-z][a-zA-Z0-9_]*(\\.[a-z][a-zA-Z0-9_]*)?|\\*)$": {
15 "description": "The key is the parameter name from the node. The value is the parameter value which must match the type of the parameter defined in the node descriptor.",
16 "type": ["array", "boolean", "number", "string"],
18 "type": ["boolean", "number", "string"]