<!-- which workflow to use for (can be more then one, otherwise use *) -->
<!-- general Fedora configuration data -->
<fedoraUrl>http://localhost:8080/fedora/rest</fedoraUrl>
<useVersioning>false</useVersioning>
<!-- Basic HTTP authentication user name (optional) -->
<!-- Basic HTTP authentication password (optional) -->
<!-- which content to ingest -->
<ingestMaster>true</ingestMaster>
<ingestMedia>false</ingestMedia>
<ingestJp2>false</ingestJp2>
<ingestPdf>false</ingestPdf>
<!-- command for specific property including the parameter for Barcode and for the unit-or-item-type -->
PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/>
INSERT { <> crm:P70_documents <http://example.com/code=[UNIT_ITEM_CODE]&entityId=[BARCODE]#> }
<!-- command for specific property including the parameter for PID -->
PREFIX crm:<http://www.cidoc-crm.org/cidoc-crm/>
INSERT { <> crm:P70_documents <http://example.com/resolver?pid=/[PID]#> }
</externalLinkContentPID>
<!-- command for specific property including the parameter for full_partial -->
PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/>
INSERT { <> crm:P3_has_note "[FULL_PARTIAL]" }
<!-- Property containing the public release date (optional)-->
PREFIX dcterms: <http://purl.org/dc/terms/>
<> dcterms:available "[DATE_AVAILABLE]" .
</availableMetadataQuery>
<!-- Properties query for the /images container -->
<imagesContainerMetadataQuery>
PREFIX ldp: <http://www.w3.org/ns/ldp#>
PREFIX pcdm: <http://pcdm.org/models#>
<> a ldp:DirectContainer\,pcdm:Object ;
ldp:membershipResource <[URL]> ;
ldp:hasMemberRelation pcdm:hasMember .
</imagesContainerMetadataQuery>
<!-- Properties query for the /files container -->
<filesContainerMetadataQuery>
PREFIX ldp: <http://www.w3.org/ns/ldp#>
PREFIX pcdm: <http://pcdm.org/models#>
<> a ldp:DirectContainer\,pcdm:Object ;
ldp:membershipResource <[URL]> ;
ldp:hasMemberRelation pcdm:hasFile .
</filesContainerMetadataQuery>
<!-- Properties query for the /fcr:metadata part of a file -->
PREFIX exif: <https://www.w3.org/2003/12/exif/ns#>
<> exif:imageLength [HEIGHT] ;
exif:imageWidth [WIDTH] .
</imageFileMetadataQuery>
<!-- which workflow to use for (can be more then one, otherwise use *) -->
<workflow>My_special_workflow</workflow>