We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eebc7a6 commit 22a62b1Copy full SHA for 22a62b1
ERRATA.md
@@ -4,8 +4,20 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a
4
5
## Activity Streams
6
7
-- None yet reported.
+ - None yet reported.
8
9
## Activity Vocabulary
10
11
+ - Example 150 has `latitude` and `longitude` properties with string values.
12
+ The range of these properties is `xsd:float`. A correct example would be:
13
+
14
+ ```json
15
+ {
16
+ "@context": "https://www.w3.org/ns/activitystreams",
17
+ "type": "Place",
18
+ "name": "San Francisco, CA",
19
+ "longitude": 122.4167,
20
+ "latitude": 37.7833
21
+ }
22
+ ```
23
0 commit comments