The non-technical copyright and license metadata of a content object. H5P calls this "metadata" in the GUI (and in their code), but to avoid confusing from our use of metadata, we call it license data.

interface ILicenseData {
    a11yTitle?: string;
    authorComments?: string;
    authors?: IContentAuthor[];
    changes?: IContentChange[];
    contentType?: string;
    defaultLanguage: string;
    license: string;
    licenseExtras?: string;
    licenseVersion?: string;
    source?: string;
    title: string;
    yearFrom?: string;
    yearTo?: string;
}

Hierarchy (View Summary)

Properties

a11yTitle?: string
authorComments?: string
authors?: IContentAuthor[]
changes?: IContentChange[]
contentType?: string
defaultLanguage: string
license: string
licenseExtras?: string
licenseVersion?: string
source?: string
title: string
yearFrom?: string
yearTo?: string