```mermaid
erDiagram
    COMPANY ||--o{ BRAND : has
    BRAND ||--||  BRAND_DETAILS : has
    BRAND_DETAILS ||--|{ DISPLAY_NAME : has
    BRAND_DETAILS ||--o{ URL : has
    BRAND_DETAILS {
        string partnersBrandId
        string partnersBrandVersion
        string[] categories
        string[] countryCodes
        string ownershipType
    }

    DISPLAY_NAME {
        string name
        string locale
        boolean primary
    }

    URL {
        uri url
        string type
    }
```