summaryrefslogtreecommitdiffstats
path: root/data/test.schema.json
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--data/test.schema.json179
1 files changed, 179 insertions, 0 deletions
diff --git a/data/test.schema.json b/data/test.schema.json
new file mode 100644
index 0000000..a809388
--- /dev/null
+++ b/data/test.schema.json
@@ -0,0 +1,179 @@
+{
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "env": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ }
+ },
+ "installed": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "file": {
+ "type": "string"
+ },
+ "type": {
+ "type": "string",
+ "enum": [
+ "file",
+ "python_file",
+ "dir",
+ "exe",
+ "shared_lib",
+ "python_lib",
+ "pdb",
+ "implib",
+ "py_implib",
+ "implibempty",
+ "expr"
+ ]
+ },
+ "platform": {
+ "type": "string",
+ "enum": [
+ "msvc",
+ "gcc",
+ "cygwin",
+ "!cygwin"
+ ]
+ },
+ "version": {
+ "type": "string"
+ },
+ "language": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "file",
+ "type"
+ ]
+ }
+ },
+ "matrix": {
+ "type": "object",
+ "properties": {
+ "options": {
+ "additionalProperties": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "val": {
+ "type": ["string", "boolean", "null", "array"],
+ "items": {
+ "type": "string"
+ }
+ },
+ "compilers": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ }
+ },
+ "skip_on_env": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "skip_on_jobname": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "skip_on_os": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ }
+ },
+ "required": [
+ "val"
+ ]
+ }
+ },
+ "exclude": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "additionalProperties": {
+ "type": ["string", "boolean", "array"],
+ "items": {
+ "type": "string"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "do_not_set_opts": {
+ "type": "array",
+ "items": {
+ "type": "string",
+ "enum": [
+ "libdir",
+ "prefix"
+ ]
+ }
+ },
+ "tools": {
+ "type": "object"
+ },
+ "stdout": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "line": {
+ "type": "string"
+ },
+ "match": {
+ "type": "string",
+ "enum": [
+ "literal",
+ "re"
+ ]
+ },
+ "count": {
+ "type": "integer"
+ },
+ "comment": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "line"
+ ]
+ }
+ },
+ "skip_on_env": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "skip_on_jobname": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "skip_on_os": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ }
+ }
+}