Skip to content

Instantly share code, notes, and snippets.

@br2490
Last active July 26, 2016 15:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save br2490/310a005b02e70cc9a4b6e3190cf55e50 to your computer and use it in GitHub Desktop.
Save br2490/310a005b02e70cc9a4b6e3190cf55e50 to your computer and use it in GitHub Desktop.
CLAW object set for testing, ttls.

CLAW object set for testing

See Posting an Object to Fedora

Using PUT

curl -i -XPUT -H"Content-type: text/turtle" --data-binary "@Object<#>.ttl" http://localhost:8282/islandora/resource/` or BLANK/Object Name`

Using POST

curl -i -XPOST -H"Content-type: text/turtle" --data-binary "@Object<#>.ttl" http://localhost:8282/islandora/resource/` or BLANK`

Create a COLLECTION

curl -i -XPOST http://localhost:8282/islandora/collection

Make a note of the UUID you get back!

Add something to a collection

curl -i -XPOST http://localhost:8282/islandora/collection/`/member/`

If you do not remember the Object UUID see v4_uuids.txt and you're golden.

@prefix pcdm: <http://pcdm.org/models#> .
@prefix nfo: <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo/v1.2/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
<> a pcdm:Object ;
dc:title "Object 1" ;
dc:author "Batch Ingest" ;
nfo:uuid "17f21a95-9411-4550-88da-4d48546708c1" .
@prefix pcdm: <http://pcdm.org/models#> .
@prefix nfo: <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo/v1.2/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
<> a pcdm:Object ;
dc:title "Object 2" ;
dc:author "Batch Ingest" ;
nfo:uuid "21d12193-2d64-4d8d-bf83-0bbe72965670" .
@prefix pcdm: <http://pcdm.org/models#> .
@prefix nfo: <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo/v1.2/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
<> a pcdm:Object ;
dc:title "Object 3" ;
dc:author "Batch Ingest" ;
nfo:uuid "2bf82b3a-17ff-4ffb-9248-252808101bfc" .
@prefix pcdm: <http://pcdm.org/models#> .
@prefix nfo: <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo/v1.2/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
<> a pcdm:Object ;
dc:title "Object 4" ;
dc:author "Batch Ingest" ;
nfo:uuid "0aaed43b-16f6-4300-a2f5-c4e24d17bbc1" .
@prefix pcdm: <http://pcdm.org/models#> .
@prefix nfo: <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo/v1.2/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
<> a pcdm:Object ;
dc:title "Object 5" ;
dc:author "Batch Ingest" ;
nfo:uuid "45a15d24-aa70-4fc8-bdea-5391a1de2e08" .
uuid, file, name
17f21a95-9411-4550-88da-4d48546708c1, Object1.ttl, Object 1
21d12193-2d64-4d8d-bf83-0bbe72965670, Object2.ttl, Object 2
2bf82b3a-17ff-4ffb-9248-252808101bfc, Object3,ttl, Object 3
0aaed43b-16f6-4300-a2f5-c4e24d17bbc1, Object4.ttl, Object 4
45a15d24-aa70-4fc8-bdea-5391a1de2e08, Object5.ttl, Object 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment