Type Alias TermRelatesTo

type TermRelatesTo = {
    termId: string;
    type:
        | "isA"
        | "hasA"
        | "seeAlso"
        | "synonym"
        | "antonym"
        | "classifies"
        | "other"
        | "replaces"
        | "replacedBy"
        | "hasSubtype"
        | "preferredTerm"
        | "seeInstead"
        | "defines"
        | "definedBy";
}
Index

Properties

Properties

termId: string

The unique identifier of the related term. NOTE! In case of import the string refers to the index of the term in the import document.

type:
    | "isA"
    | "hasA"
    | "seeAlso"
    | "synonym"
    | "antonym"
    | "classifies"
    | "other"
    | "replaces"
    | "replacedBy"
    | "hasSubtype"
    | "preferredTerm"
    | "seeInstead"
    | "defines"
    | "definedBy"

How the term related to the other object