In section 5 "extensibility" we say:
It is important to note that the JSON-LD Processing Algorithms [ JSON-LD-API], as currently defined, will silently ignore any property not defined in a JSON-LD @context.
I don't think this is true. Because of the @vocab statement in the AS2 context, I think they end up in the "_" namespace.
For example:
{
"@context": "https://www.w3.org/ns/activitystreams",
"id": "https://as2.example/1",
"foo": "bar"
}
is compacted to:
{
"@id": "https://as2.example/1",
"_:foo": "bar"
}
In section 5 "extensibility" we say:
I don't think this is true. Because of the
@vocabstatement in the AS2 context, I think they end up in the "_" namespace.For example:
{ "@context": "https://www.w3.org/ns/activitystreams", "id": "https://as2.example/1", "foo": "bar" }is compacted to:
{ "@id": "https://as2.example/1", "_:foo": "bar" }