Compute Graph Framework SDK Reference  5.16
node-params.schema.json
Go to the documentation of this file.
1{
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.",
6 "type": "object",
7 "additionalProperties": false,
8 "patternProperties": {
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.",
11 "type": "object",
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": [
17 "array",
18 "boolean",
19 "number",
20 "string"
21 ],
22 "items": {
23 "type": [
24 "boolean",
25 "number",
26 "string"
27 ]
28 }
29 }
30 }
31 }
32 }
33}