Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,19 @@
"number",
"array"
],
"items": {
"type": "number"
},
"description": "Maximum allowed values for property values. Only applicable for numeric types and fixed-length arrays of numeric types. For numeric types this is a single number. For fixed-length arrays this is an array with `componentCount` number of elements. The `normalized` property has no effect on these values: they always correspond to the integer values."
},
"min": {
"type": [
"number",
"array"
],
"items": {
"type": "number"
},
"description": "Minimum allowed values for property values. Only applicable for numeric types and fixed-length arrays of numeric types. For numeric types this is a single number. For fixed-length arrays this is an array with `componentCount` number of elements. The `normalized` property has no effect on these values: they always correspond to the integer values."
},
"default": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-04/schema",
"title": "Feature ID attribute",
"title": "Feature IDs",
"type": "object",
"description": "Feature IDs to be used as indices to property arrays in the feature table.",
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,5 @@
},
"extensions": {},
"extras": {}
},
"not": {
"required": [
"schema",
"schemaUri"
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,48 +9,69 @@
"number",
"array"
],
"items": {
"type": "number"
},
"description": "The minimum property value. Only applicable for numeric types and fixed-length arrays of numeric types. For numeric types this is a single number. For fixed-length arrays this is an array with `componentCount` number of elements. The `normalized` property has no effect on these values."
},
"max": {
"type": [
"number",
"array"
],
"items": {
"type": "number"
},
"description": "The maximum property value. Only applicable for numeric types and fixed-length arrays of numeric types. For numeric types this is a single number. For fixed-length arrays this is an array with `componentCount` number of elements. The `normalized` property has no effect on these values."
},
"mean": {
"type": [
"number",
"array"
],
"items": {
"type": "number"
},
"description": "The arithmetic mean of the property values. Only applicable for numeric types and fixed-length arrays of numeric types. For numeric types this is a single number. For fixed-length arrays this is an array with `componentCount` number of elements. The `normalized` property has no effect on these values."
},
"median": {
"type": [
"number",
"array"
],
"items": {
"type": "number"
},
"description": "The median of the property values. Only applicable for numeric types and fixed-length arrays of numeric types. For numeric types this is a single number. For fixed-length arrays this is an array with `componentCount` number of elements. The `normalized` property has no effect on these values."
},
"standardDeviation": {
"type": [
"number",
"array"
],
"items": {
"type": "number"
},
"description": "The standard deviation of the property values. Only applicable for numeric types and fixed-length arrays of numeric types. For numeric types this is a single number. For fixed-length arrays this is an array with `componentCount` number of elements. The `normalized` property has no effect on these values."
},
"variance": {
"type": [
"number",
"array"
],
"items": {
"type": "number"
},
"description": "The variance of the property values. Only applicable for numeric types and fixed-length arrays of numeric types. For numeric types this is a single number. For fixed-length arrays this is an array with `componentCount` number of elements. The `normalized` property has no effect on these values."
},
"sum": {
"type": [
"number",
"array"
],
"items": {
"type": "number"
},
"description": "The sum of the property values. Only applicable for numeric types and fixed-length arrays of numeric types. For numeric types this is a single number. For fixed-length arrays this is an array with `componentCount` number of elements. The `normalized` property has no effect on these values."
},
"occurrences": {
Expand All @@ -61,7 +82,10 @@
"type": [
"integer",
"array"
]
],
"items": {
"type": "number"
}
}
},
"extensions": {},
Expand Down