```mermaid
erDiagram
BRAND ||--o{ BRAND_ASSET : has
BRAND_ASSET ||--|| BRAND_ASSET_DETAILS : has
BRAND_ASSET_DETAILS ||--o{ ALT_TEXT : has
    BRAND_ASSET_DETAILS {
        string partnersAssetId
        string imageId
        string intent
    }
    ALT_TEXT {
        string text
        string locale
    }
```