Is there any drawbacks when a concept is modeled in a bounded context as a root entity and in another bounded context as a child entity (same identity in both BC's)?
From Eric Evans DDD:
ENTITIES other than the root have local identity, but it only needs to be unique within the aggregate, since no outside object can ever see it out of the context of the root ENTITY.
The concept would have global identity even when it plays the role of child entity. I think Evan's point is to avoid modification of the child entity outside its aggregate, but in another BC no invariants would be violated. What do you think?