rechtspraak-nl
Version:
Utility functions for consuming Rechtspraak.nl open data for Dutch court judgments and generating well-formed linked data
11 lines (10 loc) • 433 B
TypeScript
import { Label } from "./label";
export interface StandardResourceObject {
"@id": string;
"rdfs:label"?: Label[];
"originalIdentifier"?: string;
"schemeIdentifier"?: string;
"additionalIdentifier"?: string;
}
export declare function idResourceNoUriCheck(id: string, ...labels: Label[]): StandardResourceObject;
export declare function idResource(id: string, ...labels: Label[]): StandardResourceObject;