/**
 * A short overview of a license
 */
export type LicenseTag = {
    /**
     * The short identifier of the license
     */
    short: string;
    /**
     * The full name of the license
     */
    name: string;
};
