Commit beef407c authored by Rafael Monnerat's avatar Rafael Monnerat

slapos_jio: Include more use cases entries for tests

parent 06c91260
...@@ -142,6 +142,54 @@ ...@@ -142,6 +142,54 @@
} }
} }
}, },
"simple-object-with-additionalProperties-string": {
"title": "Sample Object with additionalProperties as string",
"description": "Sample Object with additionalProperties as string",
"default": {},
"additionalProperties": {
"description": "Sample String",
"type": "string"
},
"type": "object"
},
"simple-object-string": {
"title": "Example of multi strings as a Dict",
"description": "Example of multi strings as a Dict",
"patternProperties": {
".*": {
"description": "Sample String",
"type": "string"
}
},
"type": "object"
},
"simple-object-with-additionalProperties-array-string": {
"title": "Sample Object with additionalProperties as array of string",
"description": "Sample Object with additionalProperties as array of string",
"default": {},
"additionalProperties": {
"description": "Sample array of String",
"items": {
"type": "string"
},
"type": "array"
},
"type": "object"
},
"simple-object-array-string": {
"title": "Example of multi arrays of strings as a Dict",
"description": "Example of multi strings as a Dict",
"patternProperties": {
".*": {
"description": "Sample array of strings",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"simple-object-dict": { "simple-object-dict": {
"title": "Example of multi objects as a Dict", "title": "Example of multi objects as a Dict",
"description": "Example of multi objects as a Dict", "description": "Example of multi objects as a Dict",
......
...@@ -33,8 +33,8 @@ ...@@ -33,8 +33,8 @@
"default": "simple string A" "default": "simple string A"
}, },
"simple-boolean": { "simple-boolean": {
"title": "Example of Simple String", "title": "Example of Boolean",
"description": "Example of Simple String", "description": "Example of Boolean",
"type": "boolean", "type": "boolean",
"default": true "default": true
}, },
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
"default": 1.0 "default": 1.0
}, },
"simple-numeric-integer-enum": { "simple-numeric-integer-enum": {
"title": "Example of Simple Numeric as integer", "title": "Example of Simple Numeric as integer with enum",
"description": "Example of Simple Numeric as Interger", "description": "Example of Simple Numeric as Interger",
"type": "number", "type": "number",
"default": 1.0, "default": 1.0,
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
"default": 1.5 "default": 1.5
}, },
"simple-numeric-float-enum": { "simple-numeric-float-enum": {
"title": "Example of Simple Numeric as float", "title": "Example of Simple Numeric as float with enum",
"description": "Example of Simple Numeric as float", "description": "Example of Simple Numeric as float",
"type": "number", "type": "number",
"default": 1.5, "default": 1.5,
......
...@@ -94,6 +94,23 @@ ...@@ -94,6 +94,23 @@
1.25, 1.25,
1.5 1.5
] ]
},
"simple-numeric-float-oneOf": {
"title": "Example of Simple Numeric as float (oneOf)",
"description": "Example of Simple Numeric as float (oneOf)",
"type": "number",
"oneOf": [
{
"type": number,
"const": 6,
"title": "Six"
},
{
"type": number,
"const": 15,
"title": "Fifteen"
}
]
} }
} }
} }
......
...@@ -83,6 +83,54 @@ ...@@ -83,6 +83,54 @@
} }
} }
}, },
"simple-object-with-additionalProperties-string": {
"title": "Sample Object with additionalProperties as string",
"description": "Sample Object with additionalProperties as string",
"default": {},
"additionalProperties": {
"description": "Sample String",
"type": "string"
},
"type": "object"
},
"simple-object-string": {
"title": "Example of multi strings as a Dict",
"description": "Example of multi strings as a Dict",
"patternProperties": {
".*": {
"description": "Sample String",
"type": "string"
}
},
"type": "object"
},
"simple-object-with-additionalProperties-array-string": {
"title": "Sample Object with additionalProperties as array of string",
"description": "Sample Object with additionalProperties as array of string",
"default": {},
"additionalProperties": {
"description": "Sample array of String",
"items": {
"type": "string"
},
"type": "array"
},
"type": "object"
},
"simple-object-array-string": {
"title": "Example of multi arrays of strings as a Dict",
"description": "Example of multi strings as a Dict",
"patternProperties": {
".*": {
"description": "Sample array of strings",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"simple-object-dict": { "simple-object-dict": {
"title": "Example of multi objects as a Dict", "title": "Example of multi objects as a Dict",
"description": "Example of multi objects as a Dict", "description": "Example of multi objects as a Dict",
......
...@@ -115,6 +115,23 @@ ...@@ -115,6 +115,23 @@
1.25, 1.25,
1.5 1.5
] ]
},
"simple-numeric-float-oneOf": {
"title": "Example of Simple Numeric as float (oneOf)",
"description": "Example of Simple Numeric as float (oneOf)",
"type": "number",
"oneOf": [
{
"type": number,
"const": 6,
"title": "Six"
},
{
"type": number,
"const": 15,
"title": "Fifteen"
}
]
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment