Skip to content

Commit 77d5a25

Browse files
authored
Add files via upload
1 parent 1e09e78 commit 77d5a25

1 file changed

Lines changed: 111 additions & 0 deletions

File tree

resources/postman/RDF.json

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
{
2+
"info": {
3+
"_postman_id": "d15599be-5477-4a64-93c6-be92a80799fe",
4+
"name": "RDF operations",
5+
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
6+
},
7+
"item": [
8+
{
9+
"name": "/public/test",
10+
"request": {
11+
"method": "POST",
12+
"header": [
13+
{
14+
"key": "Content-Type",
15+
"value": "text/turtle",
16+
"type": "text"
17+
},
18+
{
19+
"key": "Link",
20+
"value": "<http://www.w3.org/ns/ldp#Resource>; rel=\"type\"",
21+
"type": "text"
22+
},
23+
{
24+
"key": "Slug",
25+
"value": "test",
26+
"type": "text"
27+
}
28+
],
29+
"body": {
30+
"mode": "raw",
31+
"raw": "<> <http://purl.org/dc/terms/title> \"This is a test file\" .\n<> <http://www.w3.org/2000/10/swap/pim/contact#fullName> \"Eric Miller\" ."
32+
},
33+
"url": {
34+
"raw": "{{endpoint}}/public/",
35+
"host": [
36+
"{{endpoint}}"
37+
],
38+
"path": [
39+
"public",
40+
""
41+
]
42+
}
43+
},
44+
"response": []
45+
},
46+
{
47+
"name": "/public/test",
48+
"request": {
49+
"method": "GET",
50+
"header": [],
51+
"url": {
52+
"raw": "{{endpoint}}/public/test",
53+
"host": [
54+
"{{endpoint}}"
55+
],
56+
"path": [
57+
"public",
58+
"test"
59+
]
60+
}
61+
},
62+
"response": []
63+
},
64+
{
65+
"name": "/public/test",
66+
"request": {
67+
"method": "PATCH",
68+
"header": [
69+
{
70+
"key": "Content-Type",
71+
"value": "application/sparql-update",
72+
"type": "text"
73+
}
74+
],
75+
"body": {
76+
"mode": "raw",
77+
"raw": "DELETE DATA { <> <http://www.w3.org/2000/10/swap/pim/contact#fullName> \"Eric Miller\" };\nINSERT DATA { <> <http://www.w3.org/2000/10/swap/pim/contact#personalTitle> \"Dr.\" }"
78+
},
79+
"url": {
80+
"raw": "{{endpoint}}/public/test",
81+
"host": [
82+
"{{endpoint}}"
83+
],
84+
"path": [
85+
"public",
86+
"test"
87+
]
88+
}
89+
},
90+
"response": []
91+
},
92+
{
93+
"name": "/public/test",
94+
"request": {
95+
"method": "DELETE",
96+
"header": [],
97+
"url": {
98+
"raw": "{{endpoint}}/public/test",
99+
"host": [
100+
"{{endpoint}}"
101+
],
102+
"path": [
103+
"public",
104+
"test"
105+
]
106+
}
107+
},
108+
"response": []
109+
}
110+
]
111+
}

0 commit comments

Comments
 (0)