UNPKG

@twin.org/standards-w3c-dcat

Version:

Models which define the structure of W3C DCAT Standard

12 lines (11 loc) 482 B
import type { IJsonLdContextDefinition } from "@twin.org/data-json-ld"; import type { DublinCoreContexts } from "@twin.org/standards-dublin-core"; import type { DcatContexts } from "./dcatContexts.js"; /** * The DCAT JSON-LD context type. * Supports the DCAT context URL or arrays with additional context definitions. */ export type DcatContextType = { dcat: typeof DcatContexts.ContextRoot; dcterms: typeof DublinCoreContexts.ContextTerms; } & IJsonLdContextDefinition;