diff options
Diffstat (limited to 'misc/ols.schema.json')
| -rw-r--r-- | misc/ols.schema.json | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/misc/ols.schema.json b/misc/ols.schema.json index c3ad997..b5ebd93 100644 --- a/misc/ols.schema.json +++ b/misc/ols.schema.json @@ -128,6 +128,10 @@ "type": "string", "description": "The operating system for the profile." }, + "arch": { + "type": "string", + "description": "The architecture for the profile." + }, "checker_path": { "type": "array", "description": "List of paths where to run the checker.", @@ -141,6 +145,13 @@ "items": { "type": "string" } + }, + "defines": { + "type": "object", + "description": "Key-value pairs of defines. Used for evaluating when expressions, for example `ODIN_DEBUG`. The value must be a string.", + "additionalProperties": { + "type": "string" + } } }, "required": ["name", "checker_path"], |