|
|
|
@ -10,11 +10,11 @@ export type IRI = string; |
|
|
|
|
* TestObject Type |
|
|
|
|
*/ |
|
|
|
|
export interface TestObject { |
|
|
|
|
id: IRI; |
|
|
|
|
readonly "@id": IRI; |
|
|
|
|
/** |
|
|
|
|
* Original IRI: http://www.w3.org/1999/02/22-rdf-syntax-ns#type
|
|
|
|
|
*/ |
|
|
|
|
type: string; |
|
|
|
|
"@type": string; |
|
|
|
|
/** |
|
|
|
|
* Original IRI: http://example.org/stringValue
|
|
|
|
|
*/ |
|
|
|
@ -35,7 +35,7 @@ export interface TestObject { |
|
|
|
|
* Original IRI: http://example.org/objectValue
|
|
|
|
|
*/ |
|
|
|
|
objectValue: { |
|
|
|
|
id: IRI; |
|
|
|
|
readonly "@id": IRI; |
|
|
|
|
/** |
|
|
|
|
* Original IRI: http://example.org/nestedString
|
|
|
|
|
*/ |
|
|
|
@ -55,7 +55,7 @@ export interface TestObject { |
|
|
|
|
anotherObject?: Record< |
|
|
|
|
IRI, |
|
|
|
|
{ |
|
|
|
|
id: IRI; |
|
|
|
|
readonly "@id": IRI; |
|
|
|
|
/** |
|
|
|
|
* Original IRI: http://example.org/prop1
|
|
|
|
|
*/ |
|
|
|
|