https://json-ld.github.io/json-ld-star/#example-embedded-node-as-subject: If I add another key (eg `sex`) inside `@id`: ```json "@id": { "@id": "bob", "age": 42, "sex": "Male" }, "certainty": 0.8 ``` 1. Is that forbidden (where does it say that?) 2. Or does it duplicate annotations like: ```ttl <<ex:bob :age 42>> :certainty 0.8. <<ex:bob :sex "Male">> :certainty 0.8. ``` As you can attach lots of annotations, such duplication would seem ill-advised.