Change record status: 
Project: 
Introduced in branch: 
10.4.x, 11.1.x
Introduced in version: 
10.4.0, 11.1.0
Description: 

Content entities may now declare UUIDs as a content entity's ID (though entity key mappings), removing the prior implicit requirement by core that all entities have separate UUIDs and IDs.

Example:

#[ContentEntityType(
  id: 'my_entity_type',
  entity_keys: [
    'id' => 'uuid',
    'label' => 'label',
    'langcode' => 'langcode',
    'uuid' => 'uuid',
  ],
  ... 
)]
Class MyEntityType extends ContentEntityBase {
}
Impacts: 
Module developers