35 lines
864 B
Text
Executable file
35 lines
864 B
Text
Executable file
{
|
|
"@context": {
|
|
"@base": "http://example.com/some/deep/directory/and/file#with-a-fragment",
|
|
"links": { "@id": "http://www.example.com/link", "@type": "@id", "@container": "@list" }
|
|
},
|
|
"@id": "relativeIris",
|
|
"@type": [
|
|
"link",
|
|
"#fragment-works",
|
|
"?query=works",
|
|
"./",
|
|
"../",
|
|
"../parent",
|
|
"../../parent-parent-eq-root",
|
|
"../../../../../still-root",
|
|
"../.././.././../../too-many-dots",
|
|
"/absolute",
|
|
"//example.org/scheme-relative"
|
|
],
|
|
"links": [
|
|
"link",
|
|
"#fragment-works",
|
|
"?query=works",
|
|
"./",
|
|
"../",
|
|
"../parent",
|
|
"../../parent-parent-eq-root",
|
|
"./../../../../../still-root",
|
|
"../.././.././../../too-many-dots",
|
|
"/absolute",
|
|
"//example.org/scheme-relative",
|
|
"//example.org/../scheme-relative",
|
|
"//example.org/.././useless/../../scheme-relative"
|
|
]
|
|
}
|