Interface Organization

Represents an organization or company offering a job or other services.

interface Organization {
    name: string;
    url?: string;
}

Properties

Properties

name: string

The name of the organization.

"Tech Corp"
url?: string

The URL of the organization.

"https://techcorp.com"