Skip to content

Commit 3b5df7a

Browse files
authored
Merge pull request #472 from w3c/issue-471
Add correct lat/lon example; closes #471
2 parents 346f55c + 5c95df0 commit 3b5df7a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

ERRATA.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a
88

99
## Activity Vocabulary
1010

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+
1124
- Example 80 has `Image` objects with `width` and `height` properties, which
1225
are only allowed on `Link` objects. One alternative is to use `Link` objects
1326
with the correct `height` and `width` as the `url` property for each `Image`

0 commit comments

Comments
 (0)