Skip to main content
Module

x/ldkit/mod.ts>Property

LDkit - Linked Data query toolkit for TypeScript developers
Latest
type alias Property
import { type Property } from "https://deno.land/x/ldkit@2.0.0/mod.ts";

Data property prototype that describes RDF predicate of a data entity. Includes specification of other metadata, such as whether the property is optional, array, inverse, or whether it is a nested data entity, etc.

definition: { @id: string; @type?: keyof SupportedDataTypes; @schema?: Schema; @optional?: true; @array?: true; @multilang?: true; @inverse?: true; }