-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path00000042.xml
1157 lines (1157 loc) · 52.3 KB
/
00000042.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<METS_Profile xmlns="http://www.loc.gov/METS_Profile/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.loc.gov/METS_Profile/ http://www.loc.gov/standards/mets/profile_docs/mets.profile.v1-2.xsd http://www.loc.gov/METS/ http://www.loc.gov/standards/mets/version16/mets.v1-6.xsd">
<URI LOCTYPE="URL">http://www.loc.gov/standards/mets/profiles/00000042.xml</URI>
<title>Ex Libris - Rosetta METS entity</title>
<abstract>
This profile describes a Rosetta Intellectual Entity (IE), stored in the permanent repository as an Archival Information Package (AIP). All IEs in Rosetta are represented as METS files according to this profile. The METS structure map allows describing hierarchy of files within a representation (for example, a logical table of contents of a book). The content files may be of any format type, e.g. audio, image, text, or video, and there can be any combination of formats within a single IE.
</abstract>
<date>2015-01-05T00:00:00</date>
<contact>
<name>Ex Libris LTD.</name>
<address>Gan Technology 8, Malcha Jerusalem, Israel</address>
<phone>972-2-6499100 or 972-2-6499106</phone>
<email>[email protected]</email>
</contact>
<related_profile RELATIONSHIP="supersedes" URI="http://www.loc.gov/standards/mets/profiles/00000038.xml">This profile supersedes the previous profile of the same name.</related_profile>
<extension_schema>
<name>DC XML Schema (dc:)</name>
<URI>http://dublincore.org/schemas/xmls/qdc/2003/04/02/dc.xsd</URI>
<context>Used for encoding descriptive metadata. (MDTYPE="DC")</context>
</extension_schema>
<extension_schema>
<name>Qualified DC XML Schema (dcterms:)</name>
<URI>http://dublincore.org/schemas/xmls/qdc/2003/04/02/dcterms.xsd</URI>
<context>Used for encoding descriptive metadata. (MDTYPE="DC")</context>
</extension_schema>
<extension_schema>
<name>DNX</name>
<URI>http://www.exlibrisgroup.com/dps/dnx</URI>
<context>Used for encoding technical metadata. (MDTYPE="OTHER" OTHERMDTYPE="dnx")</context>
</extension_schema>
<description_rules>
<p>Descriptive metadata contents should be encoded using Dublin Core or Dublin Core Terms, following both the appropriate guidelines recommended by the extension schemas' maintenance agencies and the Ex Libris Guidelines for descriptive metadata. The metadata should be embedded in the METS file as XML, using the mdWrap tag.</p>
</description_rules>
<controlled_vocabularies>
<vocabulary ID="vc1">
<name> MDTYPE Attribute Values </name>
<maintenance_agency>Ex Libris LTD.</maintenance_agency>
<values>
<value>DC</value>
</values>
<context>
<p>mets:mdWrap MDTYPE="DC"</p>
</context>
<description>
<p> This profile specifies MDTYPE attribute value on the dmdSec:mdWrap element. The MDTYPE can be only "DC".</p>
</description>
</vocabulary>
<vocabulary ID="vc2">
<name> OTHERMDTYPE in techMD:mdWrap, digiprovMD:mdWrap and rightsMD:mdWrap elements </name>
<maintenance_agency>Ex Libris LTD.</maintenance_agency>
<values>
<value>dnx</value>
</values>
<context>
<p>mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="dnx"</p>
</context>
<description>
<p> This profile specifies OTHERMDTYPE attribute value on the techMD:mdWrap, digiprovMD:mdWrap and rightsMD:mdWrap elements. The MDTYPE="OTHER", and the OTHERMDTYPE="dnx".</p>
</description>
</vocabulary>
<vocabulary ID="vc3">
<name> OTHERMDTYPE in sourceMD:mdWrap element </name>
<maintenance_agency>Ex Libris LTD.</maintenance_agency>
<values>
<value>MARC</value>
<value>DC</value>
<value>MODS</value>
<value>EAD</value>
<value>NISO</value>
<value>MIX</value>
</values>
<context>
<p>sourceMD/mdWrap/@OTHERMDTYPE</p>
</context>
<description>
<p> This profile specifies OTHERMDTYPE attribute value on the sourceMD:mdWrap elements. If the MDTYPE="OTHER", then a value must be declared for OTHERMDTYPE from the listed attribute values</p>
</description>
</vocabulary>
<vocabulary ID="vc4">
<name>METS fileGrp USE Attribute Values</name>
<maintenance_agency>Ex Libris LTD.</maintenance_agency>
<values>
<value>VIEW</value>
</values>
<context>
<p>mets/fileSec/fileGrp/@USE</p>
</context>
<description>
<p>This is the supported value for mets/fileSec/fileGrp USE attribute.</p>
</description>
</vocabulary>
</controlled_vocabularies>
<structural_requirements>
<metsRootElement>
<requirement>
<p>The root <mets> element must include only the METS name space URL.</p>
</requirement>
</metsRootElement>
<metsHdr>
<requirement>
<p>A conforming METS document should not contain a <metsHdr> element.</p>
</requirement>
</metsHdr>
<dmdSec>
<requirement ID="dmdSec1">
<p>Conforming METS documents must contain one, and only one, IE-level <dmdSec> element</p>
<p>Conforming METS documents may contain up to one file-level <dmdSec> element per file</p>
</requirement>
<requirement ID="dmdSec2">
<p>Any metadata provided must be embedded in the METS file as XML using the mdWrap tag.</p>
<p>mdRef is not supported.</p>
</requirement>
<requirement ID="dmdSec3">
<p>If a <dmdSec> of a conforming document contains a <mdWrap> with <xmlData>, the <xmlData> must conform to those listed in the extension schemas section above.</p>
</requirement>
<requirement ID="dmdSec4">
<p>For IE-level, the dmdSec ID should be referenced by the DMDID value "ie-dmd". </p>
<p>For File-level, the dmdSec ID should be referenced by the DMDID value "FL{ID}-dmd". </p>
</requirement>
</dmdSec>
<amdSec>
<requirement ID="amdSec1">
<head>Conforming METS documents must contain administrative metadata. The following <amdSec> child elements should be in any METS file:</head>
<p>techMD (technical metadata) - DNX sections that holds the technical metadata</p>
<p>rightsMD (intellectual property rights metadata) - Access Rights Policy, Copyrights Metadata.</p>
<p>sourceMD (analog/digital source metadata) - Any kind of metadata that is relevant for preservation. </p>
<p>digiprovMD (digital provenance metadata) - Provenance events.</p>
</requirement>
<requirement ID="amdSec2">
<p>A conforming METS document will contain one <amdSec> element for each object in each level - IE, Representation and file.</p>
</requirement>
<requirement ID="amdSec3">
<p>Each <techMD> element must contain an <mdWrap> element and corresponding MDTYPE/OTHERMDTYPE attribute. The MDTYPE/OTHERMDTYPE attributes must conform to the controlled vocabulary contained within this profile. MDTYPE/OTHERMDTYPE attributes must describe the type of file as (DNX).</p>
</requirement>
<requirement ID="amdSec4">
<p>Any amdSec or child element techMD, rightsMD, sourceMD or digiprovMD ID need to be referenced by the ADMID value denoted in either the fileSec section or structMap div section sections.</p>
<p>When referenced using ADMID from the fileSec level - the metadata will be associated specifically with that particular file.</p>
</requirement>
<requirement ID="amdSec5">
<p>A <rightsMD> element can be populated only in the "ie-amd-rights" or "rep-amd-rights" section.</p>
</requirement>
</amdSec>
<fileSec>
<requirement ID="fileSec1" RELATEDMAT="vc4">
<p>The <fileSec> must contain a <fileGrp> for each Representation (set of files).</p>
<p>For example, the <fileSec> of a typical METS document implementing this profile might contain one <fileGrp> representing TIFF master images, one <fileGrp> representing high resolution JPEG reference images , one <fileGrp> representing medium resolution JPEG reference images and one <fileGrp> representing OCR full text files.</p>
</requirement>
<requirement ID="fileSec2">
<p>Each <fileGrp> represented in the <fileSec> must have an ID and ADMID attribute.</p>
<p>The ADMID attribute will associate each Representation with its <amdSec> sections.</p>
</requirement>
<requirement ID="fileSec3">
<p>Each <file> represented in the <fileGrp> must have an ID and ADMID attribute.</p>
<p>The ADMID attribute will associate each file with its <amdSec> and structMap sections.</p>
</requirement>
<requirement ID="fileSec5">
<p>Each <file> element must contain an <FLocat> element which specifies the location of the content file in an xlink:href attribute in Rosetta's permanent repository.The <FLocat> element must contain an xlink:href attribute, as well as a LOCTYPE attribute, which in all cases should be "URL".</p>
</requirement>
</fileSec>
<structMap>
<requirement ID="structMap1">
<p>A conforming METS document must contain at least one <structMap>; it may, however, contain more than one <structMap>.</p>
</requirement>
<requirement ID="structMap2" RELATEDMAT="vc1">
<p>A conforming <structMap> must contain a TYPE attribute. "logical" and "physical" are reserved (see description below). Other types are not validated by Rosetta METS xsd (only by the LOC METS xsd) and can be used for delivery only using external viewers.</p>
</requirement>
<requirement ID="structMap3">
<p>Each <structMap> must include a LABEL attribute value.</p>
</requirement>
<requirement ID="structMap4">
<p>Each <div> must include a LABEL attribute value.</p>
</requirement>
<requirement ID="structMap5">
<p>The physical <structMap> represents a flattened structure and must only contain two levels of <div> elements with no further nesting. The top level <div> element required by the METS schema contains one level of child <div> elements to represent the linear sequence of the components of the Representation.</p>
</requirement>
<requirement ID="structMap6">
<p>The logical structMap represents the full hierarchical structure of the Representation, and can contain as many levels of nested <div> elements as required to express the object's full structure.</p>
</requirement>
<requirement ID="structMap7">
<p>A <div> element may or may not directly contain <fptr> elements. (In other words, a <div> of the <structMap> may or may not have content files directly associated with it).</p>
</requirement>
<requirement ID="structMap8">
<p>An <fptr> element must directly point to a <file> element via its FILEID attribute;</p>
</requirement>
</structMap>
<structLink>
<requirement ID="structLink1">
<p>A conforming METS document should not contain a <structLink> element.</p>
</requirement>
</structLink>
<behaviorSec>
<requirement ID="behaviorSec1">
<p>A conforming METS document should not contain a <behaviorSec> element.</p>
</requirement>
</behaviorSec>
</structural_requirements>
<technical_requirements>
<content_files>
<requirement>
<p>This profile supports all kinds of content files.</p>
</requirement>
</content_files>
</technical_requirements>
<tool>
<note>
<p>No specific tools are required by this profile.</p>
</note>
</tool>
<Appendix NUMBER="1" LABEL="Simple METS">
<mets:mets xmlns:mets="http://www.loc.gov/METS/">
<mets:dmdSec ID="ie-dmd">
<mets:mdWrap MDTYPE="DC">
<mets:xmlData>
<dc:record xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:mods="http://www.loc.gov/mods/v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<dc:title>Wien University Test</dc:title>
<dc:creator>Roland</dc:creator>
<dc:description>This is just a test</dc:description>
<dc:type>Drawing and Prints</dc:type>
<dcterms:created>01/02/2011</dcterms:created>
</dc:record>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:dmdSec ID="FL1780-dmd">
<mets:mdWrap MDTYPE="DC">
<mets:xmlData>
<dc:record xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:mods="http://www.loc.gov/mods/v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<dc:title>Some file level metadata</dc:title>
<dc:description>Some more file level metadata</dc:description>
</dc:record>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:amdSec ID="REP1779-amd">
<mets:techMD ID="REP1779-amd-tech">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="dnx">
<mets:xmlData>
<dnx xmlns="http://www.exlibrisgroup.com/dps/dnx">
<section id="generalRepCharacteristics">
<record>
<key id="preservationType">PRESERVATION_MASTER</key>
<key id="usageType">VIEW</key>
<key id="RevisionNumber">1</key>
<key id="DigitalOriginal">false</key>
</record>
</section>
<section id="internalIdentifier">
<record>
<key id="internalIdentifierType">SIPID</key>
<key id="internalIdentifierValue">70</key>
</record>
<record>
<key id="internalIdentifierType">PID</key>
<key id="internalIdentifierValue">REP1779</key>
</record>
<record>
<key id="internalIdentifierType">DepositSetID</key>
<key id="internalIdentifierValue">475</key>
</record>
</section>
<section id="objectCharacteristics">
<record>
<key id="objectType">REPRESENTATION</key>
<key id="creationDate">2011-02-01 13:03:51</key>
<key id="createdBy">admin1</key>
<key id="modificationDate">2011-02-01 13:03:51</key>
<key id="modifiedBy">admin1</key>
<key id="owner">CRS00.INS00.DPR00</key>
</record>
</section>
</dnx>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:rightsMD ID="REP1779-amd-rights">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="dnx">
<mets:xmlData>
<dnx xmlns="http://www.exlibrisgroup.com/dps/dnx">
<section id="accessRightsPolicy">
<record>
<key id="policyId">AR_EVERYONE</key>
<key id="policyParameters"/>
<key id="policyDescription">No restrictions</key>
</record>
</section>
</dnx>
</mets:xmlData>
</mets:mdWrap>
</mets:rightsMD>
<mets:sourceMD ID="REP1779-amd-source">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="dnx">
<mets:xmlData>
<dnx xmlns="http://www.exlibrisgroup.com/dps/dnx">
</dnx>
</mets:xmlData>
</mets:mdWrap>
</mets:sourceMD>
<mets:digiprovMD ID="REP1779-amd-digiprov">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="dnx">
<mets:xmlData>
<dnx xmlns="http://www.exlibrisgroup.com/dps/dnx"/>
</mets:xmlData>
</mets:mdWrap>
</mets:digiprovMD>
</mets:amdSec>
<mets:amdSec ID="FL1780-amd">
<mets:techMD ID="FL1780-amd-tech">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="dnx">
<mets:xmlData>
<dnx xmlns="http://www.exlibrisgroup.com/dps/dnx">
<section id="internalIdentifier">
<record>
<key id="internalIdentifierType">SIPID</key>
<key id="internalIdentifierValue">70</key>
</record>
<record>
<key id="internalIdentifierType">PID</key>
<key id="internalIdentifierValue">FL1780</key>
</record>
<record>
<key id="internalIdentifierType">DepositSetID</key>
<key id="internalIdentifierValue">475</key>
</record>
</section>
<section id="objectCharacteristics">
<record>
<key id="objectType">FILE</key>
<key id="creationDate">2011-02-01 13:03:51</key>
<key id="createdBy">admin1</key>
<key id="modificationDate">2011-11-29 14:01:30</key>
<key id="modifiedBy">admin1</key>
<key id="owner">CRS00.INS00.DPR00</key>
</record>
</section>
<section id="generalFileCharacteristics">
<record>
<key id="label">Image</key>
<key id="note"/>
<key id="fileCreationDate"/>
<key id="fileModificationDate">06/10/2010 17:01:48</key>
<key id="FileEntityType"/>
<key id="compositionLevel"/>
<key id="fileLocationType">FILE</key>
<key id="fileLocation"/>
<key id="fileOriginalName">Image.txt</key>
<key id="fileOriginalPath">C:\Documents and Settings\idop\My Documents\My Pictures\Uploadable\Image.txt</key>
<key id="fileOriginalID">/exlibris/dps/d4_1/profile/units/DTL01/deposit_area_1///1-1000/dep_475/deposit/content/streams/Image.txt</key>
<key id="fileExtension">txt</key>
<key id="fileMIMEType">text/plain</key>
<key id="fileSizeBytes">186</key>
<key id="storageID"/>
<key id="streamRefId"/>
<key id="formatLibraryId">x-fmt/16</key>
<key id="riskLibraryIdentifiers"/>
</record>
</section>
<section id="fileFixity">
<record>
<key id="agent">REG_SA_JAVA5_FIXITY</key>
<key id="fixityType">MD5</key>
<key id="fixityValue">4fdfbb7b8200b1acd8f03da4e56aa15a</key>
</record>
<record>
<key id="agent">REG_SA_JAVA5_FIXITY</key>
<key id="fixityType">SHA1</key>
<key id="fixityValue">6b54e4453ecd92c51964b35fe44480bf670b17c4</key>
</record>
<record>
<key id="agent">REG_SA_JAVA5_FIXITY</key>
<key id="fixityType">CRC32</key>
<key id="fixityValue">5975e40a</key>
</record>
</section>
<section id="vsOutcome">
<record>
<key id="checkDate">Tue Nov 29 14:01:30 IST 2011</key>
<key id="vsAgent">REG_SA_DROID , Version 5.0 , Signature version 52</key>
<key id="type">FILE_FORMAT</key>
<key id="result">FAILED</key>
<key id="resultDetails">Tentative format identification (vs_Error.9)</key>
<key id="vsEvaluation">FAILED</key>
<key id="vsEvaluationDetails">vs_Error.9</key>
</record>
<record>
<key id="checkDate">Tue Feb 01 13:12:36 IST 2011</key>
<key id="vsAgent">JHOVE , UTF8-hul 1.4 , Plugin Version 2.0</key>
<key id="type">TECHMD</key>
<key id="result">PASSED</key>
<key id="resultDetails"/>
<key id="vsEvaluation">PASSED</key>
<key id="vsEvaluationDetails"/>
</record>
<record>
<key id="checkDate">Thu Feb 17 20:33:47 IST 2011</key>
<key id="vsAgent">REG_SA_JAVA5_FIXITY</key>
<key id="type">CHECKSUM</key>
<key id="result">PASSED</key>
<key id="resultDetails"/>
<key id="vsEvaluation">PASSED</key>
<key id="vsEvaluationDetails"/>
</record>
<record>
<key id="checkDate">Thu Feb 17 20:33:48 IST 2011</key>
<key id="vsAgent">REG_SA_DPS</key>
<key id="type">VIRUSCHECK</key>
<key id="result">PASSED</key>
<key id="resultDetails"/>
<key id="vsEvaluation">PASSED</key>
<key id="vsEvaluationDetails"/>
</record>
<record>
<key id="checkDate">Thu Feb 24 13:58:10 IST 2011</key>
<key id="type">RISK_ANALYSIS</key>
<key id="vsAgent">REG_SA_DPS</key>
<key id="result">PASSED</key>
<key id="resultDetails"/>
<key id="vsEvaluation">PASSED</key>
<key id="vsEvaluationDetails"/>
</record>
</section>
<section id="fileVirusCheck">
<record>
<key id="agent">REG_SA_DPS</key>
<key id="status">00</key>
<key id="content">/exlibris/dps/d4_1/profile/permanent/file/storage1/2011/02/01/file_1/V1-FL1780.txt is Virus Free</key>
</record>
</section>
<section id="fileFormat">
<record>
<key id="agent">REG_SA_DROID</key>
<key id="formatRegistry">PRONOM</key>
<key id="formatRegistryId">x-fmt/111</key>
<key id="formatRegistryRole"/>
<key id="formatName">x-fmt/111</key>
<key id="formatVersion"/>
<key id="formatDescription">Plain Text File</key>
<key id="formatNote"/>
<key id="exactFormatIdentification">false</key>
<key id="mimeType">text/plain</key>
<key id="agentVersion">5.0</key>
<key id="agentSignatureVersion">52</key>
</record>
</section>
<section id="fileValidation">
<record>
<key id="agent">JHOVE , UTF8-hul 1.4 , Plugin Version 2.0</key>
<key id="status"/>
<key id="format">UTF-8</key>
<key id="version"/>
<key id="mimeType">text/plain; charset=UTF-8</key>
<key id="profile"/>
<key id="isValid">true</key>
<key id="isWellFormed">true</key>
<key id="errorMessage"/>
</record>
</section>
<section id="significantProperties">
<record>
<key id="significantPropertiesType">text.charactersCount</key>
<key id="significantPropertiesValue">186</key>
</record>
<record>
<key id="significantPropertiesType">text.lineEndings</key>
<key id="significantPropertiesValue">[CRLF]</key>
</record>
<record>
<key id="significantPropertiesType">text.unicodeBlocks</key>
<key id="significantPropertiesValue">[Basic Latin]</key>
</record>
</section>
</dnx>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:rightsMD ID="FL1780-amd-rights">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="dnx">
<mets:xmlData>
<dnx xmlns="http://www.exlibrisgroup.com/dps/dnx"/>
</mets:xmlData>
</mets:mdWrap>
</mets:rightsMD>
<mets:sourceMD ID="FL1780-amd-source">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="dnx">
<mets:xmlData>
<dnx xmlns="http://www.exlibrisgroup.com/dps/dnx">
</dnx>
</mets:xmlData>
</mets:mdWrap>
</mets:sourceMD>
<mets:digiprovMD ID="FL1780-amd-digiprov">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="dnx">
<mets:xmlData>
<dnx xmlns="http://www.exlibrisgroup.com/dps/dnx">
<section id="event">
<record>
<key id="eventDateTime">2011-02-01 13:03:53</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">27</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=30067;PID=FL1780;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=1;ALGORITHM_NAME=MD5;PRODUCER_ID=10000;</key>
<key id="eventDescription">Fixity check performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_JAVA5_FIXITY</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:03:53</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">27</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=30067;PID=FL1780;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=1;ALGORITHM_NAME=SHA1;PRODUCER_ID=10000;</key>
<key id="eventDescription">Fixity check performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_JAVA5_FIXITY</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:03:53</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">27</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=30067;PID=FL1780;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=1;ALGORITHM_NAME=CRC32;PRODUCER_ID=10000;</key>
<key id="eventDescription">Fixity check performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_JAVA5_FIXITY</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:03:54</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">24</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=30067;PID=FL1780;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=7;PRODUCER_ID=10000;</key>
<key id="eventDescription">Virus check performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_DPS</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:03:54</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">25</key>
<key id="eventOutcome1">FAILURE</key>
<key id="eventOutcomeDetail1">PROCESS_ID=30067;PID=FL1780;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=48;PRODUCER_ID=10000;</key>
<key id="eventDescription">Format Identification performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_DROID</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:03:54</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">165</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=30067;PID=FL1780;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=49;PRODUCER_ID=10000;</key>
<key id="eventDescription">Technical Metadata extraction performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">JHOVE , JPEG-hul 1.2 , Plugin Version 2.0</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:03:55</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">381</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=30067;PID=FL1780;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=29;PRODUCER_ID=10000;</key>
<key id="eventDescription">Risk identification performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1"/>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:09:28</key>
<key id="eventType">PROCESSING</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">31</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">key:PID;value:FL1780;key:SIP_ID;value:70;key:DEPOSIT_ACTIVITY_ID;value:475;key:MF_ID;value:11;key:PRODUCER_ID;value:10000;key:REASON_CODE;value:Corrupted file:Extension doesn't match content (it's a JPEG file);</key>
<key id="eventDescription">Technical Analyst - Reject File</key>
<key id="linkingAgentIdentifierType1">USER</key>
<key id="linkingAgentIdentifierValue1">admin1</key>
<key id="linkingAgentRole1">agent</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:12:35</key>
<key id="eventType">PROCESSING</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">385</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PID=FL1780;SIP_ID=70;MF_ID=11;DEPOSIT_ACTIVITY_ID=475;PRODUCER_ID=10000;REASON_CODE=;</key>
<key id="eventDescription">Upload and Replace File by Producer Agent</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_DPS</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:12:35</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">27</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=;PID=FL1780;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=1;ALGORITHM_NAME=SHA1;PRODUCER_ID=10000;</key>
<key id="eventDescription">Fixity check performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_JAVA5_FIXITY</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:12:35</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">27</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=;PID=FL1780;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=1;ALGORITHM_NAME=CRC32;PRODUCER_ID=10000;</key>
<key id="eventDescription">Fixity check performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_JAVA5_FIXITY</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:12:36</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">24</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=;PID=FL1780;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=7;PRODUCER_ID=10000;</key>
<key id="eventDescription">Virus check performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_DPS</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:12:36</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">25</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=;PID=FL1780;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=48;PRODUCER_ID=10000;</key>
<key id="eventDescription">Format Identification performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_DROID</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:12:36</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">165</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=;PID=FL1780;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=49;PRODUCER_ID=10000;</key>
<key id="eventDescription">Technical Metadata extraction performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">JHOVE , UTF8-hul 1.4 , Plugin Version 2.0</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:12:36</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">381</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=;PID=FL1780;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=29;PRODUCER_ID=10000;</key>
<key id="eventDescription">Risk identification performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1"/>
</record>
</section>
</dnx>
</mets:xmlData>
</mets:mdWrap>
</mets:digiprovMD>
</mets:amdSec>
<mets:amdSec ID="FL1781-amd">
<mets:techMD ID="FL1781-amd-tech">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="dnx">
<mets:xmlData>
<dnx xmlns="http://www.exlibrisgroup.com/dps/dnx">
<section id="internalIdentifier">
<record>
<key id="internalIdentifierType">SIPID</key>
<key id="internalIdentifierValue">70</key>
</record>
<record>
<key id="internalIdentifierType">PID</key>
<key id="internalIdentifierValue">FL1781</key>
</record>
<record>
<key id="internalIdentifierType">DepositSetID</key>
<key id="internalIdentifierValue">475</key>
</record>
</section>
<section id="objectCharacteristics">
<record>
<key id="objectType">FILE</key>
<key id="creationDate">2011-02-01 13:03:51</key>
<key id="createdBy">admin1</key>
<key id="modificationDate">2011-11-29 14:01:33</key>
<key id="modifiedBy">admin1</key>
<key id="owner">CRS00.INS00.DPR00</key>
</record>
</section>
<section id="fileFixity">
<record>
<key id="agent">REG_SA_JAVA5_FIXITY</key>
<key id="fixityType">MD5</key>
<key id="fixityValue">dc5b3c4d72b912959ca3693d22e04676</key>
</record>
<record>
<key id="agent">REG_SA_JAVA5_FIXITY</key>
<key id="fixityType">SHA1</key>
<key id="fixityValue">59b66f930c1aae230bb812a13aaab21c8ee099a2</key>
</record>
<record>
<key id="agent">REG_SA_JAVA5_FIXITY</key>
<key id="fixityType">CRC32</key>
<key id="fixityValue">388ec968</key>
</record>
</section>
<section id="vsOutcome">
<record>
<key id="checkDate">Tue Feb 01 13:03:54 IST 2011</key>
<key id="vsAgent">REG_SA_DROID , Version 5.0 , Signature version 52</key>
<key id="type">FILE_FORMAT</key>
<key id="result">PASSED</key>
<key id="resultDetails"/>
<key id="vsEvaluation">PASSED</key>
<key id="vsEvaluationDetails"/>
</record>
<record>
<key id="checkDate">Tue Feb 01 13:03:54 IST 2011</key>
<key id="vsAgent">JHOVE , JPEG-hul 1.2 , Plugin Version 2.0</key>
<key id="type">TECHMD</key>
<key id="result">PASSED</key>
<key id="resultDetails"/>
<key id="vsEvaluation">PASSED</key>
<key id="vsEvaluationDetails"/>
</record>
<record>
<key id="checkDate">Thu Feb 17 20:33:47 IST 2011</key>
<key id="vsAgent">REG_SA_JAVA5_FIXITY</key>
<key id="type">CHECKSUM</key>
<key id="result">PASSED</key>
<key id="resultDetails"/>
<key id="vsEvaluation">PASSED</key>
<key id="vsEvaluationDetails"/>
</record>
<record>
<key id="checkDate">Thu Feb 17 20:33:48 IST 2011</key>
<key id="vsAgent">REG_SA_DPS</key>
<key id="type">VIRUSCHECK</key>
<key id="result">PASSED</key>
<key id="resultDetails"/>
<key id="vsEvaluation">PASSED</key>
<key id="vsEvaluationDetails"/>
</record>
<record>
<key id="checkDate">Thu Feb 24 13:58:11 IST 2011</key>
<key id="type">RISK_ANALYSIS</key>
<key id="vsAgent">REG_SA_DPS</key>
<key id="result">PASSED</key>
<key id="resultDetails"/>
<key id="vsEvaluation">PASSED</key>
<key id="vsEvaluationDetails"/>
</record>
</section>
<section id="fileVirusCheck">
<record>
<key id="agent">REG_SA_DPS</key>
<key id="status">00</key>
<key id="content">/exlibris/dps/d4_1/profile/permanent/file/storage1/2011/02/01/file_1/V1-FL1781.jpg is Virus Free</key>
</record>
</section>
<section id="fileFormat">
<record>
<key id="agent">REG_SA_DROID</key>
<key id="formatRegistry">PRONOM</key>
<key id="formatRegistryId">fmt/43</key>
<key id="formatRegistryRole"/>
<key id="formatName">fmt/43</key>
<key id="formatVersion">1.01</key>
<key id="formatDescription">JPEG File Interchange Format</key>
<key id="formatNote"/>
<key id="exactFormatIdentification">false</key>
<key id="mimeType">image/jpeg</key>
<key id="agentVersion">5.0</key>
<key id="agentSignatureVersion">52</key>
</record>
</section>
<section id="generalFileCharacteristics">
<record>
<key id="label">Pisa Tower</key>
<key id="note"/>
<key id="fileCreationDate"/>
<key id="fileModificationDate">06/10/2010 16:56:30</key>
<key id="FileEntityType"/>
<key id="compositionLevel"/>
<key id="fileLocationType">FILE</key>
<key id="fileLocation"/>
<key id="fileOriginalName">Pisa.jpg</key>
<key id="fileOriginalPath">C:\Documents and Settings\idop\My Documents\My Pictures\Uploadable\Pisa.jpg</key>
<key id="fileOriginalID">/exlibris/dps/d4_1/profile/units/DTL01/deposit_area_1///1-1000/dep_475/deposit/content/streams/Pisa.jpg</key>
<key id="fileExtension">jpg</key>
<key id="fileMIMEType">image/jpeg</key>
<key id="fileSizeBytes">62173</key>
<key id="storageID"/>
<key id="streamRefId"/>
<key id="formatLibraryId">fmt/43</key>
<key id="riskLibraryIdentifiers"/>
</record>
</section>
<section id="fileValidation">
<record>
<key id="agent">JHOVE , JPEG-hul 1.2 , Plugin Version 2.0</key>
<key id="status"/>
<key id="format">JPEG</key>
<key id="version">1.01</key>
<key id="mimeType">image/jpeg</key>
<key id="profile"/>
<key id="isValid">true</key>
<key id="isWellFormed">true</key>
<key id="errorMessage"/>
</record>
</section>
<section id="significantProperties">
<record>
<key id="significantPropertiesType">image.pixelAspectRatioX</key>
<key id="significantPropertiesValue">1</key>
</record>
<record>
<key id="significantPropertiesType">image.pixelAspectRatioY</key>
<key id="significantPropertiesValue">1</key>
</record>
<record>
<key id="significantPropertiesType">image.quantisationTableDestinationID</key>
<key id="significantPropertiesValue">0</key>
</record>
<record>
<key id="significantPropertiesType">image.quantisationTablePrecision</key>
<key id="significantPropertiesValue">8-bit</key>
</record>
<record>
<key id="significantPropertiesType">image.scans</key>
<key id="significantPropertiesValue">1</key>
</record>
<record>
<key id="significantPropertiesType">object.imageCount</key>
<key id="significantPropertiesValue">1</key>
</record>
<record>
<key id="significantPropertiesType">nisoImage.samplesPerPixel</key>
<key id="significantPropertiesValue">3</key>
</record>
<record>
<key id="significantPropertiesType">nisoImage.samplingFrequencyUnit</key>
<key id="significantPropertiesValue">1</key>
</record>
<record>
<key id="significantPropertiesType">image.applicationSegments</key>
<key id="significantPropertiesValue">[APP0]</key>
</record>
<record>
<key id="significantPropertiesType">image.compressionType</key>
<key id="significantPropertiesValue">Huffman coding, Baseline DCT</key>
</record>
<record>
<key id="significantPropertiesType">nisoImage.bitsPerSample</key>
<key id="significantPropertiesValue">[8, 8, 8]</key>
</record>
<record>
<key id="significantPropertiesType">nisoImage.byteOrder</key>
<key id="significantPropertiesValue">big-endian</key>
</record>
<record>
<key id="significantPropertiesType">nisoImage.class</key>
<key id="significantPropertiesValue">class edu.harvard.hul.ois.jhove.NisoImageMetadata</key>
</record>
<record>
<key id="significantPropertiesType">nisoImage.colourSpace</key>
<key id="significantPropertiesValue">YCbCr</key>
</record>
<record>
<key id="significantPropertiesType">nisoImage.compressionScheme</key>
<key id="significantPropertiesValue">JPEG</key>
</record>
<record>
<key id="significantPropertiesType">nisoImage.imageLength</key>
<key id="significantPropertiesValue">640</key>
</record>
<record>
<key id="significantPropertiesType">nisoImage.imageWidth</key>
<key id="significantPropertiesValue">480</key>
</record>
<record>
<key id="significantPropertiesType">nisoImage.mimeType</key>
<key id="significantPropertiesValue">image/jpeg</key>
</record>
</section>
</dnx>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:rightsMD ID="FL1781-amd-rights">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="dnx">
<mets:xmlData>
<dnx xmlns="http://www.exlibrisgroup.com/dps/dnx"/>
</mets:xmlData>
</mets:mdWrap>
</mets:rightsMD>
<mets:sourceMD ID="FL1781-amd-source">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="dnx">
<mets:xmlData>
<dnx xmlns="http://www.exlibrisgroup.com/dps/dnx">
</dnx>
</mets:xmlData>
</mets:mdWrap>
</mets:sourceMD>
<mets:digiprovMD ID="FL1781-amd-digiprov">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="dnx">
<mets:xmlData>
<dnx xmlns="http://www.exlibrisgroup.com/dps/dnx">
<section id="event">
<record>
<key id="eventDateTime">2011-02-01 13:03:53</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">27</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=30067;PID=FL1781;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=1;ALGORITHM_NAME=MD5;PRODUCER_ID=10000;</key>
<key id="eventDescription">Fixity check performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_JAVA5_FIXITY</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:03:53</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">27</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=30067;PID=FL1781;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=1;ALGORITHM_NAME=SHA1;PRODUCER_ID=10000;</key>
<key id="eventDescription">Fixity check performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_JAVA5_FIXITY</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:03:53</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">27</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=30067;PID=FL1781;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=1;ALGORITHM_NAME=CRC32;PRODUCER_ID=10000;</key>
<key id="eventDescription">Fixity check performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_JAVA5_FIXITY</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:03:54</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">24</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=30067;PID=FL1781;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=7;PRODUCER_ID=10000;</key>
<key id="eventDescription">Virus check performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_DPS</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:03:54</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">25</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=30067;PID=FL1781;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=48;PRODUCER_ID=10000;</key>
<key id="eventDescription">Format Identification performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">REG_SA_DROID</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:03:54</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">165</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=30067;PID=FL1781;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=49;PRODUCER_ID=10000;</key>
<key id="eventDescription">Technical Metadata extraction performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1">JHOVE , JPEG-hul 1.2 , Plugin Version 2.0</key>
</record>
<record>
<key id="eventDateTime">2011-02-01 13:03:55</key>
<key id="eventType">VALIDATION</key>
<key id="eventIdentifierType">DPS</key>
<key id="eventIdentifierValue">381</key>
<key id="eventOutcome1">SUCCESS</key>
<key id="eventOutcomeDetail1">PROCESS_ID=30067;PID=FL1781;SIP_ID=70;DEPOSIT_ACTIVITY_ID=475;MF_ID=11;TASK_ID=29;PRODUCER_ID=10000;</key>
<key id="eventDescription">Risk identification performed on file</key>
<key id="linkingAgentIdentifierType1">SOFTWARE</key>
<key id="linkingAgentIdentifierValue1"/>
</record>
</section>
</dnx>
</mets:xmlData>
</mets:mdWrap>
</mets:digiprovMD>
</mets:amdSec>
<mets:amdSec ID="ie-amd">
<mets:techMD ID="ie-amd-tech">