A question domain

interface Domain {
    type:
        | "string"
        | "number"
        | "boolean"
        | "dict"
        | "time"
        | "file"
        | "audio"
        | "image"
        | "blob"
        | "opentext"
        | "date";
    idref?: string;
    selection?: Selection;
    dict?: Dictionary;
    number?: Number;
    string?: String;
    opentext?: Opentext;
}

Properties

type:
    | "string"
    | "number"
    | "boolean"
    | "dict"
    | "time"
    | "file"
    | "audio"
    | "image"
    | "blob"
    | "opentext"
    | "date"
idref?: string

The ID of a definition to be used for this domain

selection?: Selection
dict?: Dictionary
number?: Number
string?: String
opentext?: Opentext