@cityjson/flatcitybuf
    Preparing search index...

    Interface PointOfContact

    metadata.pointOfContact (CityJSON section 5.3). contactName and emailAddress are the schema's only required members.

    interface PointOfContact {
        address?: Record<string, string>;
        contactName: string;
        contactType?: string;
        emailAddress: string;
        phone?: string;
        role?: string;
        website?: string;
    }
    Index
    address?: Record<string, string>

    Deliberately free-form: metadata.schema.json types address as a bare object with no properties and no required.

    contactName: string
    contactType?: string
    emailAddress: string
    phone?: string
    role?: string
    website?: string