Interface represents metadata of a VRM 1.0 model.

interface VRM1Meta {
    allowAntisocialOrHateUsage?: boolean;
    allowExcessivelySexualUsage?: boolean;
    allowExcessivelyViolentUsage?: boolean;
    allowPoliticalOrReligiousUsage?: boolean;
    allowRedistribution?: boolean;
    authors: string[];
    avatarPermission?:
        | "onlyAuthor"
        | "onlySeparatelyLicensedPerson"
        | "everyone";
    commercialUsage?: "personalNonProfit"
    | "personalProfit"
    | "corporation";
    contactInformation?: string;
    copyrightInformation?: string;
    creditNotation?: "required" | "unnecessary";
    licenseUrl: string;
    metaVersion: "1";
    modification?:
        | "prohibited"
        | "allowModification"
        | "allowModificationRedistribution";
    name: string;
    otherLicenseUrl?: string;
    references?: string[];
    thirdPartyLicenses?: string;
    thumbnailImage?: HTMLImageElement;
    version?: string;
}

Properties

allowAntisocialOrHateUsage?: boolean

A flag that permits to use this model in contents contain anti-social activities or hate speeches.

allowExcessivelySexualUsage?: boolean

A flag that permits to use this model in excessively sexual contents.

allowExcessivelyViolentUsage?: boolean

A flag that permits to use this model in excessively violent contents.

allowPoliticalOrReligiousUsage?: boolean

A flag that permits to use this model in political or religious contents.

allowRedistribution?: boolean

A flag that permits to redistribute this model.

authors: string[]

Authors of the model.

avatarPermission?: "onlyAuthor" | "onlySeparatelyLicensedPerson" | "everyone"

A person who can perform as an avatar with this model.

commercialUsage?: "personalNonProfit" | "personalProfit" | "corporation"

An option that permits to use this model in commercial products.

contactInformation?: string

An information that describes the contact information of the author.

copyrightInformation?: string

An information that describes the copyright of the model.

creditNotation?: "required" | "unnecessary"

An option that forces or abandons to display the credit of this model.

licenseUrl: string

A URL towards the license document this model refers to

metaVersion: "1"

The version of meta.

modification?:
    | "prohibited"
    | "allowModification"
    | "allowModificationRedistribution"

An option that controls the condition to modify this model.

name: string

The name of the model.

otherLicenseUrl?: string

Describe the URL links of other license.

references?: string[]

References / original works of the model.

thirdPartyLicenses?: string

Third party licenses of the model, if required. You can use line breaks.

thumbnailImage?: HTMLImageElement

An image of the thumbnail image of the model. This is for the application to use as an icon.

version?: string

The version of the model.

MMNEPVFCICPMFPCPTTAAATR