Rust implementation of NextGraph, a Decentralized and local-first web 3.0 ecosystem
https://nextgraph.org
byzantine-fault-tolerancecrdtsdappsdecentralizede2eeeventual-consistencyjson-ldlocal-firstmarkdownocapoffline-firstp2pp2p-networkprivacy-protectionrdfrich-text-editorself-hostedsemantic-websparqlweb3collaboration
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1016 B
43 lines
1016 B
import type { TestData } from "./testData.js";
|
|
|
|
export const propertyCollision: TestData = {
|
|
name: "property collision",
|
|
shexc: `
|
|
PREFIX ex: <http://ex/>
|
|
PREFIX ex2: <http://ex2/>
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
|
PREFIX v1: <http://example.com/v1#>
|
|
PREFIX ver: <http://api.example.com/v2.1:>
|
|
ex:C { ex:label . ; ex2:label . ; foaf:label . ; v1:label . ; ver:label . }
|
|
`,
|
|
sampleTurtle: ``,
|
|
baseNode: "http://ex/c1",
|
|
successfulContext: {} as any,
|
|
successfulTypings: "",
|
|
successfulCompactTypings: `export type IRI = string;
|
|
|
|
export interface C {
|
|
id: IRI;
|
|
/**
|
|
* Original IRI: http://ex/label
|
|
*/
|
|
ex_label: any;
|
|
/**
|
|
* Original IRI: http://ex2/label
|
|
*/
|
|
ex2_label: any;
|
|
/**
|
|
* Original IRI: http://xmlns.com/foaf/0.1/label
|
|
*/
|
|
"0.1_label": any;
|
|
/**
|
|
* Original IRI: http://example.com/v1#label
|
|
*/
|
|
v1_label: any;
|
|
/**
|
|
* Original IRI: http://api.example.com/v2.1:label
|
|
*/
|
|
"v2.1_label": any;
|
|
}
|
|
`,
|
|
};
|
|
|