You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/presentation/4.0/model.md
+31-8Lines changed: 31 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2663,26 +2663,49 @@ FIXME: possible values are 'm' and 's' and 'relative'. Is relative always 0-1.0
2663
2663
2664
2664
### value
2665
2665
2666
-
within metadata:
2666
+
the `value` property is used as a language mapped key value pair where the langauge key string is always an array.
2667
2667
2668
-
{label: value: {"en": ["foo"]}}
2668
+
```json
2669
+
{
2670
+
"label":
2671
+
"value": {
2672
+
"en": ["foo"]
2673
+
}
2674
+
}
2675
+
```
2676
+
TODO: if we are happy with the new value property names we need to update references in the rest of the Model doc and Index doc
2669
2677
2670
-
### value (UnitValue)
2678
+
### quantity
2671
2679
2672
-
The `value` property of a UnitValue represents the numerical component of a quantity.
2680
+
The `quantity` property of a UnitValue represents the numerical component of a `UnitValue`.
2673
2681
2674
2682
The value _MUST_ be a floating point number.
2675
2683
2676
2684
* A UnitValue _MUST_ have the `value` property.
2677
2685
2678
-
`"value": 0.1234123`
2686
+
`"quantity": 0.1234123`
2687
+
2688
+
### wktLiteral
2679
2689
2680
-
FIXME: use scoped context for UnitValue to change the meaning of `value`
2690
+
the `wktLiteral` property of a WktSelector is a string for representing space in vector geometry. a `wktLiteral` of a WktSelector _MUST_ be a valid structured Well-Known Text (WKT) string.
a `value` of a TextualBody follows the Web Annotation data model and _MUST NOT_ be a language mapped string. Instead the string value and the language of the string are represeted by separate properties.
0 commit comments