Information for the ontology properties, i.e., properties that are defined on the top level.

The third value (url) indicates whether the property is a URL value. For values extracted from the YAML file this is decided by checking whether the string can be considered to be a valid URL or not.

interface OntologyProperty {
    property: string;
    url: boolean;
    value: string;
}

Properties

Properties

property: string
url: boolean
value: string