Entity:

Attributes

Relationships

One to many

erDiagram
    PERSON ||--o{ PASSPORT : id
    PERSON {
        int id
        string name
    }
    PASSPORT {
        int id
        string number
    }

A person can have many passports, or none. A passport however, must be associated with one person.