Skip to content
Snippets Groups Projects
Commit 0049131c authored by Andreas Deuschlinger's avatar Andreas Deuschlinger
Browse files

should fix gap

parent 05664d4b
Branches
No related tags found
No related merge requests found
...@@ -37,7 +37,6 @@ This is an array ...@@ -37,7 +37,6 @@ This is an array
* is optional * is optional
* type: `boolean[]` * type: `boolean[]`
* at least `1` items in the array * at least `1` items in the array
* defined in this schema * defined in this schema
### boollist Type ### boollist Type
...@@ -62,7 +61,6 @@ This is an array of coordinates in three-dimensional space. ...@@ -62,7 +61,6 @@ This is an array of coordinates in three-dimensional space.
* is optional * is optional
* type: `number[][]` (nested array) * type: `number[][]` (nested array)
* no more than `10` items in the array * no more than `10` items in the array
* defined in this schema * defined in this schema
### coordinatelist Type ### coordinatelist Type
...@@ -97,7 +95,6 @@ This is an array ...@@ -97,7 +95,6 @@ This is an array
* is optional * is optional
* type: `integer[]` * type: `integer[]`
* between `1` and `10` items in the array * between `1` and `10` items in the array
* defined in this schema * defined in this schema
### intlist Type ### intlist Type
...@@ -174,7 +171,6 @@ This is an array ...@@ -174,7 +171,6 @@ This is an array
* is optional * is optional
* type: `number[]` * type: `number[]`
* no more than `10` items in the array * no more than `10` items in the array
* defined in this schema * defined in this schema
### numlist Type ### numlist Type
...@@ -227,7 +223,6 @@ The a property ...@@ -227,7 +223,6 @@ The a property
* is **required** * is **required**
* type: `string` * type: `string`
##### a Type ##### a Type
...@@ -248,7 +243,6 @@ The b property ...@@ -248,7 +243,6 @@ The b property
* is optional * is optional
* type: `integer` * type: `integer`
##### b Type ##### b Type
......
...@@ -132,7 +132,6 @@ A unique identifier given to every addressable thing. ...@@ -132,7 +132,6 @@ A unique identifier given to every addressable thing.
* is optional * is optional
* type: `string` * type: `string`
##### foo Type ##### foo Type
......
...@@ -18,8 +18,7 @@ ...@@ -18,8 +18,7 @@
<% if (schema.maxItems!==undefined&&schema.minItems!==undefined) { %>* between `<%=schema.minItems %>` and `<%=schema.maxItems %>` items in the array<% } <% if (schema.maxItems!==undefined&&schema.minItems!==undefined) { %>* between `<%=schema.minItems %>` and `<%=schema.maxItems %>` items in the array<% }
else if (schema.maxItems!==undefined ) { %>* no more than `<%=schema.maxItems %>` items in the array<% } else if (schema.maxItems!==undefined ) { %>* no more than `<%=schema.maxItems %>` items in the array<% }
else if (schema.minItems!==undefined ) { %>* at least `<%=schema.minItems %>` items in the array<% } %> else if (schema.minItems!==undefined ) { %>* at least `<%=schema.minItems %>` items in the array<% } %>
<% } %> <% } %><% if (schema.default!==undefined) { %>
<% if (schema.default!==undefined) { %>
* default: `<%= JSON.stringify(schema.default) %>` * default: `<%= JSON.stringify(schema.default) %>`
<% } %> <% } %>
......
...@@ -21,8 +21,7 @@ Applies to all properties that match the regular expression `<%=name %>` ...@@ -21,8 +21,7 @@ Applies to all properties that match the regular expression `<%=name %>`
<% if (schema.maxItems!==undefined&&schema.minItems!==undefined) { %>* between `<%=schema.minItems %>` and `<%=schema.maxItems %>` items in the array<% } <% if (schema.maxItems!==undefined&&schema.minItems!==undefined) { %>* between `<%=schema.minItems %>` and `<%=schema.maxItems %>` items in the array<% }
else if (schema.maxItems!==undefined ) { %>* no more than `<%=schema.maxItems %>` items in the array<% } else if (schema.maxItems!==undefined ) { %>* no more than `<%=schema.maxItems %>` items in the array<% }
else if (schema.minItems!==undefined ) { %>* at least `<%=schema.minItems %>` items in the array<% } %> else if (schema.minItems!==undefined ) { %>* at least `<%=schema.minItems %>` items in the array<% } %>
<% } %> <% } %><% if (schema.default!==undefined) { %>
<% if (schema.default!==undefined) { %>
* default: `<%= JSON.stringify(schema.default) %>` * default: `<%= JSON.stringify(schema.default) %>`
<% } %> <% } %>
* defined in <% if (schema.$oSchema) { %>[<%= schema.$oSchema.$linkVal %>](<%= schema.$oSchema.$linkPath %>#<%= name %>)<% } else { %>this schema<% } %> * defined in <% if (schema.$oSchema) { %>[<%= schema.$oSchema.$linkVal %>](<%= schema.$oSchema.$linkPath %>#<%= name %>)<% } else { %>this schema<% } %>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment