Re: [web-annotation] Extension Capacity

:+1: to moving extensions to -vocab and just allowing multiple 
contexts (without further explanation of why you might do that) in 
-model.

The i18n issue is if you want to provide /within the annotation/ 
multiple values for a property in different languages, then it would 
be lovely if there was a recommended way to do that as there are 
several possibilities within JSON-LD.

For example, if you wanted to have a label for an Annotation, with 
versions in English and French there are at least:

1:
```
{
  "type": "Annotation",
  "label": [ {"@language": "en", "@value": "Commentary"}, 
{"@language": "fr", "@value": "Commentaire"}]
}
```

2:
```
{
  "type": "Annotation",
  "label": {"en": "Commentary", "fr": "Commentaire"}
}
```

3:
```
{
  "type": "Annotation",
  "label_en": "Commentary",
  "label_fr": "Commentaire"
}
```

Each with different pros and cons.

-- 
GitHub Notification of comment by azaroth42
Please view or discuss this issue at 
https://github.com/w3c/web-annotation/issues/154#issuecomment-191421726
 using your GitHub account

Received on Wednesday, 2 March 2016 20:44:59 UTC