import type { TestData } from "./testData.js"; export const propertyCollision: TestData = { name: "property collision", shexc: ` PREFIX ex: PREFIX ex2: PREFIX foaf: PREFIX v1: PREFIX ver: 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;\n\nexport interface C {\n id?: IRI;\n /**\n * Original IRI: http://ex/label\n */\n ex_label: any;\n /**\n * Original IRI: http://ex2/label\n */\n ex2_label: any;\n /**\n * Original IRI: http://xmlns.com/foaf/0.1/label\n */\n "0.1_label": any;\n /**\n * Original IRI: http://example.com/v1#label\n */\n v1_label: any;\n /**\n * Original IRI: http://api.example.com/v2.1:label\n */\n "v2.1:label": any;\n}\n\n`, };