Interface Organization

This interface represents an organization, including its name, an optional description, and a URL.

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

Properties

Properties

name: string

The name of the organization

description?: string

An optional description of the organization

url: string

The URL of the organization