We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fae913d commit 9a936fcCopy full SHA for 9a936fc
3 files changed
lib/handlers/validate.js
lib/ldp-middleware.js
@@ -10,7 +10,6 @@ const del = require('./handlers/delete')
10
const patch = require('./handlers/patch')
11
const index = require('./handlers/index')
12
const copy = require('./handlers/copy')
13
-// const validate = require('./handlers/validate')
14
15
function LdpMiddleware (corsSettings) {
16
const router = express.Router('/')
test/resources/sampleContainer/invalid.ttl
@@ -0,0 +1,13 @@
1
+@prefix ldp: <http://www.w3.org/ns/ldp#>.
2
+@prefix o: <http://example.org/ontology#>.
3
+
4
+<http://example.org/netWorth/nw1/>
5
+ test o:NetWorth;
6
+ o:netWorthOf <http://example.org/users/JohnZSmith>;
7
+ o:asset
8
+ <assets/a1>,
9
+ <assets/a2>;
+ o:liability
+ <liabilities/l1>,
+ <liabilities/l2>,
+ <liabilities/l3>.
0 commit comments