SlideShare a Scribd company logo
Kathryn Cassidy
Software Engineer, Digital Repository of Ireland (Trinity College Dublin)
Metadata & XML
Digital Repository of Ireland
DRI is a trusted digital repository for Humanities and
Social Sciences Data in Ireland, launched June 2015
• Provides preservation and access to digital
collections
• Born digital and digitised collections including
maps, photographs, letters,
audio-visual, sound, books,
oral histories, paintings..
https://repository.dri.ie/
Metadata & XML
• Define Metadata
• Identify benefits of using standards-compliant metadata
• Familiarise ourselves with XML
• Create XML Metadata by Interactive Example
By the end of this afternoon’s session we will have be able to do the following…
What is Metadata?
What is Metadata?
Technical metadata – hardware, software, file formats, resolution,
size
Preservation metadata – provenance, authenticity, preservation
actions, responsibility (eg. PREMIS)
Structural metadata – physical/logical structure of digital resources
(eg. METS)
Descriptive metadata – describes the digital resource; catalogue
records/finding aids
Human readable metadata
A handwritten or typewritten
listing or finding aid
Can be easily read and
understood
Can be accessible in physical or
digital medium
Can be free-text searched
Machine readable metadata
In a format that can be
understood by computers
Structured representation of
information
Described using particular
standards (eg. XML, HTML,
RDF)
Allows processing, exchange
and analysis
The importance of Structure & standards
Why use standard metadata?
Using standardised descriptive metadata means adhering to the best
practices in your domain.
Standardised metadata allows you to control how records are described
within your organisation.
Enforcing standards allows greater searchability of your records.
Metadata sharing and interoperability is only possible when a standard is
used.
Quality metadata enables analysis, manipulation and “value-added
services”
Seeing Standards: A Visualization of the Metadata Universe, Jenn Riley & Devin Becker,
http://www.dlib.indiana.edu/~jenlrile/metadatamap/
Digital Archiving in
Ireland:
National Survey of
the Humanities and
Social Sciences
DRI metadata guidelines
http://www.dri.ie/publications
Simple Dublin Core Metadata Element Set
1. Title
2. Creator
3. Subject
4. Description
5. Publisher
6. Contributor
7. Date
8. Type
9. Format
10. Identifier
11. Source
12. Language
13. Relation
14. Coverage
15. Rights
DRI metadata guidelines
1. Title Ulysses
2. Creator James Joyce
3. Subject Stream of consciousness;
Modern novel;
Turn of century Dublin;
Book covers
4. Description Traces the character Leopold
Bloom as he walks around
Dublin on 16 June, 1904
Or
Scan of first edition, hard cover
5. Publisher Shakespeare and Company
6. Contributor
7. Date 1922
Controlled Vocabularies
• A standardised set of terms that are accepted, defined and managed
(agreed on by a community)
• A way to enable consistency in metadata, to facilitate accurate search
and retrieval
• Tend to be domain/discipline specific
• Find the one that best fits your collection
Library of Congress - Subject
1. Title Ulysses
2. Creator James Joyce
3. Subject Stream of consciousness;
Modern novel;
Turn of century Dublin;
Book covers
4. Description Traces the character Leopold
Bloom as he walks around
Dublin on 16 June, 1904
Or
Scan of first edition, hard cover
5. Publisher Shakespeare and Company
6. Contributor
7. Date 1922
Library of Congress - Subject
DRI Presents: Introduction to Metadata
1. Title Ulysses
2. Creator James Joyce
3. Subject Turn of century Dublin;
4. Description Traces the character Leopold
Bloom as he walks around
Dublin on 16 June, 1904
Or
Scan of first edition, hard cover
5. Publisher Shakespeare and Company
6. Contributor
7. Date 1922
Dublin—History—20th century
Joyce, James, 1882-1941
Metadata Quality Control – DRI guide
www.dri.ie/publications
“Extensible Markup Language (XML) is a markup
language that defines a set of rules for encoding
documents in a format that is both human-readable and
machine-readable. It is defined by the W3C's XML 1.0
Specification and by several other related specifications,
all of which are free open standards.”
- https://en.wikipedia.org/wiki/XML
What is XML?
“Extensible Markup Language (XML) is a markup
language that defines a set of rules for encoding
documents in a format that is both human-readable and
machine-readable. It is defined by the W3C's XML 1.0
Specification and by several other related specifications,
all of which are free open standards.”
- https://en.wikipedia.org/wiki/XML
Machine readable metadata
In a format that can be
understood by computers
Structured representation of
information
Described using particular
standards (eg. XML, HTML,
RDF)
Allows processing, exchange
and analysis
“Extensible Markup Language (XML) is a markup
language that defines a set of rules for encoding
documents in a format that is both human-readable and
machine-readable. It is defined by the W3C's XML 1.0
Specification and by several other related specifications,
all of which are free open standards.”
- https://en.wikipedia.org/wiki/XML
What is XML?
<html>
<head>
<title>The DRI Website</title>
</head>
<body>
<img src=“drilogo.png”>
<h3>Structure of DRI</h3>
<p>The principal governance structure of the DRI is its Board. The current DRI Board
was appointed in 2017 following a call for nominations that was open to all DRI
Members. Appointees were ratified by the Executive Committee of the Royal Irish
Academy, and serve 3-year terms.</p>
<p>The principal management mechanism of the DRI is the
<a href=“cit.html”>Core ImplementationTeam (CIT)</a>. The CIT is responsible for
the day-to-day operational management of the DRI in addition to developing the DRI
strategy, coordination, and delivering the project. The CIT is comprised of the <b>DRI
Director (Chair)</b>, <b>DRI Principal Investigators and Institutional representatives</b>,
with the <b>DRI Programme Manager</b> in RIA providing the secretariat.</p>
</body>
</html>
<participants>
<person role="teacher">
<id>1</id>
<name>
<personalname>Kathryn</personalname>
<familyname>Cassidy</familyname>
</name>
<affiliation>DRI</affiliation>
<affiliation>TCD</affiliation>
</person>
<person role=”organiser">
<id>2</id>
<name>
<personalname>Lisa</personalname>
<familyname>Griffith</familyname>
</name>
<affiliation>DRI</affiliation>
<affiliation>RIA</afiliation>
</person>
....
</participants>
XML Structure
An XML document consists of a set
of elements, which can be nested
within eachother
All elements must have an opening
and closing tag of the form
<tagname>… </tagname>
Elements may also have attributes
<tramTicket>
<type>return</type>
<from>Central 1</from>
<to>Red 2</to>
<validUntil>Last
Tram</validUntil>
<date>31 Jul 06</date>
<for>Adult</for>
<on>Luas only</on>
<timeIssued>21:15</timeissue
d>
<price>2.90</price>
<number>6004375019</numb
er>
</tramTicket>
XML does not DO anything
XML vs. Metadata Standards
XML lets you use any tags you like:
<person> <familyname> <validuntil> <date> <price>
Making up tags is using XML, but it is not using a Standard!
We want to use the Dublin Core Standard (or some other
metadata standard) expressed as XML.
To achieve this we need to specify an XML Schema. The XML
Schema constrains the possible tags and XML elements that we
can use in our XML files.
A Dublin Core example in XML
<qualifieddc xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:marcrel="http://www.loc.gov/marc.relators/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.loc.gov/marc.relators/
http://imlsdcc2.grainger.illinois.edu/registry/marcrel.xsd"
xsi:noNamespaceSchemaLocation="http://dublincore.org/schemas/xmls/qdc/2008/02/11/q
ualifieddc.xsd">
<dc:title>Dublin Core and the Digital Repository of Ireland</dc:title>
<dc:description>These guidelines relate to the use of the Dublin core metadata schema in
the Digital Repository of Ireland. These guidelines are an updated version of our original
Dublin Core guidelines, published in January 2015. The updates reflect changes to the DRI
infrastructure since its launch in June 2015.</dc:description>
<dc:type>Metadata guidelines</dc:type>
<dcterms:created/>
<dcterms:issued>2015-12</dcterms:issued>
<dc:date>2015-12</dc:date>

More Related Content

What's hot

Folksonomies
FolksonomiesFolksonomies
Folksonomies
Daniele
 
NISO/DCMI Webinar: Metadata for Managing Scientific Research Data
NISO/DCMI Webinar: Metadata for Managing Scientific Research DataNISO/DCMI Webinar: Metadata for Managing Scientific Research Data
NISO/DCMI Webinar: Metadata for Managing Scientific Research Data
National Information Standards Organization (NISO)
 
Knowledge Organization Lis 653 Spring 2017 Class Posters
Knowledge Organization Lis 653 Spring 2017 Class PostersKnowledge Organization Lis 653 Spring 2017 Class Posters
Knowledge Organization Lis 653 Spring 2017 Class Posters
PrattSILS
 
Final project posters for lis 653 spring 2014
Final project posters for lis 653 spring 2014Final project posters for lis 653 spring 2014
Final project posters for lis 653 spring 2014
PrattSILS
 
Better Search With Structured Knowledge
Better Search With Structured KnowledgeBetter Search With Structured Knowledge
Better Search With Structured Knowledge
Michel Dumontier
 
Dublin Core Registry to Support Multilinguality : Te Reo Māori Dublin Core Me...
Dublin Core Registry to Support Multilinguality : Te Reo Māori Dublin Core Me...Dublin Core Registry to Support Multilinguality : Te Reo Māori Dublin Core Me...
Dublin Core Registry to Support Multilinguality : Te Reo Māori Dublin Core Me...
Karen R
 
Metadata Workshop
Metadata WorkshopMetadata Workshop
Metadata Workshop
Rachel Lovinger
 
NISO/DCMI May 22 Webinar: Semantic Mashups Across Large, Heterogeneous Insti...
 NISO/DCMI May 22 Webinar: Semantic Mashups Across Large, Heterogeneous Insti... NISO/DCMI May 22 Webinar: Semantic Mashups Across Large, Heterogeneous Insti...
NISO/DCMI May 22 Webinar: Semantic Mashups Across Large, Heterogeneous Insti...
National Information Standards Organization (NISO)
 
Knowledge Organization | LIS653 | Fall 2017
Knowledge Organization | LIS653 | Fall 2017Knowledge Organization | LIS653 | Fall 2017
Knowledge Organization | LIS653 | Fall 2017
PrattSILS
 
LIS 653 posters spring 2015
LIS 653 posters spring 2015LIS 653 posters spring 2015
LIS 653 posters spring 2015
PrattSILS
 
IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)
IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)
IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)
IWMW
 
MarcOnt Initiative - Protege meeting
MarcOnt Initiative - Protege meetingMarcOnt Initiative - Protege meeting
MarcOnt Initiative - Protege meeting
mdabrowski
 
From the Semantic Web to the Web of Data: ten years of linking up
From the Semantic Web to the Web of Data: ten years of linking upFrom the Semantic Web to the Web of Data: ten years of linking up
From the Semantic Web to the Web of Data: ten years of linking up
Davide Palmisano
 
Resource description and Access
Resource description and AccessResource description and Access
Resource description and Access
UDAYA VARADARAJAN
 
Corrib.org - OpenSource and Research
Corrib.org - OpenSource and ResearchCorrib.org - OpenSource and Research
Corrib.org - OpenSource and Research
adameq
 
DLF Aquifer MODS Implementation Guidelines
DLF Aquifer MODS Implementation GuidelinesDLF Aquifer MODS Implementation Guidelines
DLF Aquifer MODS Implementation Guidelines
Sarah Shreeves
 
MODS and RDA - ALA MidWinter 2007
MODS and RDA - ALA MidWinter 2007MODS and RDA - ALA MidWinter 2007
MODS and RDA - ALA MidWinter 2007
Sarah Shreeves
 
RDA Presentation to G8
RDA Presentation to G8RDA Presentation to G8
RDA Presentation to G8
Research Data Alliance
 
Linked Data Technology and Status
Linked Data Technology and StatusLinked Data Technology and Status
Linked Data Technology and Status
Myungjin Lee
 
Info 653 - Spring 2019 Project Posters
Info 653 - Spring 2019 Project PostersInfo 653 - Spring 2019 Project Posters
Info 653 - Spring 2019 Project Posters
PrattSILS
 

What's hot (20)

Folksonomies
FolksonomiesFolksonomies
Folksonomies
 
NISO/DCMI Webinar: Metadata for Managing Scientific Research Data
NISO/DCMI Webinar: Metadata for Managing Scientific Research DataNISO/DCMI Webinar: Metadata for Managing Scientific Research Data
NISO/DCMI Webinar: Metadata for Managing Scientific Research Data
 
Knowledge Organization Lis 653 Spring 2017 Class Posters
Knowledge Organization Lis 653 Spring 2017 Class PostersKnowledge Organization Lis 653 Spring 2017 Class Posters
Knowledge Organization Lis 653 Spring 2017 Class Posters
 
Final project posters for lis 653 spring 2014
Final project posters for lis 653 spring 2014Final project posters for lis 653 spring 2014
Final project posters for lis 653 spring 2014
 
Better Search With Structured Knowledge
Better Search With Structured KnowledgeBetter Search With Structured Knowledge
Better Search With Structured Knowledge
 
Dublin Core Registry to Support Multilinguality : Te Reo Māori Dublin Core Me...
Dublin Core Registry to Support Multilinguality : Te Reo Māori Dublin Core Me...Dublin Core Registry to Support Multilinguality : Te Reo Māori Dublin Core Me...
Dublin Core Registry to Support Multilinguality : Te Reo Māori Dublin Core Me...
 
Metadata Workshop
Metadata WorkshopMetadata Workshop
Metadata Workshop
 
NISO/DCMI May 22 Webinar: Semantic Mashups Across Large, Heterogeneous Insti...
 NISO/DCMI May 22 Webinar: Semantic Mashups Across Large, Heterogeneous Insti... NISO/DCMI May 22 Webinar: Semantic Mashups Across Large, Heterogeneous Insti...
NISO/DCMI May 22 Webinar: Semantic Mashups Across Large, Heterogeneous Insti...
 
Knowledge Organization | LIS653 | Fall 2017
Knowledge Organization | LIS653 | Fall 2017Knowledge Organization | LIS653 | Fall 2017
Knowledge Organization | LIS653 | Fall 2017
 
LIS 653 posters spring 2015
LIS 653 posters spring 2015LIS 653 posters spring 2015
LIS 653 posters spring 2015
 
IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)
IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)
IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)
 
MarcOnt Initiative - Protege meeting
MarcOnt Initiative - Protege meetingMarcOnt Initiative - Protege meeting
MarcOnt Initiative - Protege meeting
 
From the Semantic Web to the Web of Data: ten years of linking up
From the Semantic Web to the Web of Data: ten years of linking upFrom the Semantic Web to the Web of Data: ten years of linking up
From the Semantic Web to the Web of Data: ten years of linking up
 
Resource description and Access
Resource description and AccessResource description and Access
Resource description and Access
 
Corrib.org - OpenSource and Research
Corrib.org - OpenSource and ResearchCorrib.org - OpenSource and Research
Corrib.org - OpenSource and Research
 
DLF Aquifer MODS Implementation Guidelines
DLF Aquifer MODS Implementation GuidelinesDLF Aquifer MODS Implementation Guidelines
DLF Aquifer MODS Implementation Guidelines
 
MODS and RDA - ALA MidWinter 2007
MODS and RDA - ALA MidWinter 2007MODS and RDA - ALA MidWinter 2007
MODS and RDA - ALA MidWinter 2007
 
RDA Presentation to G8
RDA Presentation to G8RDA Presentation to G8
RDA Presentation to G8
 
Linked Data Technology and Status
Linked Data Technology and StatusLinked Data Technology and Status
Linked Data Technology and Status
 
Info 653 - Spring 2019 Project Posters
Info 653 - Spring 2019 Project PostersInfo 653 - Spring 2019 Project Posters
Info 653 - Spring 2019 Project Posters
 

Similar to DRI Introduction to Digital Preservation Training- Metadata and xml-Kathryn Cassidy

Kathryn Cassidy - DRI Training Series: 4. Metadata and XML
Kathryn Cassidy - DRI Training Series: 4. Metadata and XMLKathryn Cassidy - DRI Training Series: 4. Metadata and XML
Kathryn Cassidy - DRI Training Series: 4. Metadata and XML
dri_ireland
 
Rebecca Grant - DRI/ARA(I) Training: Introduction to EAD - Metadata and Metad...
Rebecca Grant - DRI/ARA(I) Training: Introduction to EAD - Metadata and Metad...Rebecca Grant - DRI/ARA(I) Training: Introduction to EAD - Metadata and Metad...
Rebecca Grant - DRI/ARA(I) Training: Introduction to EAD - Metadata and Metad...
dri_ireland
 
Digital Libraries
Digital LibrariesDigital Libraries
Digital Libraries
Jack Eapen
 
Digital Libraries
Digital LibrariesDigital Libraries
Digital Libraries
Jack Eapen
 
Intro to Digitization Projects
Intro to Digitization ProjectsIntro to Digitization Projects
Intro to Digitization Projects
zsrlibrary
 
Geo-annotations in Semantic Digital Libraries
Geo-annotations in Semantic Digital Libraries Geo-annotations in Semantic Digital Libraries
Geo-annotations in Semantic Digital Libraries
mdabrowski
 
Irish Digital Libraries Summit
Irish Digital Libraries SummitIrish Digital Libraries Summit
Irish Digital Libraries Summit
Sebastian Ryszard Kruk
 
Toward universal information access on the digital object cloud
Toward universal information access on the digital object cloudToward universal information access on the digital object cloud
Toward universal information access on the digital object cloud
National Institute of Informatics
 
Harmony project - JISC Synthesis meeting 2001
Harmony project - JISC Synthesis meeting 2001Harmony project - JISC Synthesis meeting 2001
Harmony project - JISC Synthesis meeting 2001
Dan Brickley
 
Digital library and metadata
Digital library and metadataDigital library and metadata
Digital library and metadata
ramncsi
 
Data Management Planning at the DCC
Data Management Planning at the DCCData Management Planning at the DCC
Data Management Planning at the DCC
Martin Donnelly
 
Linked Open Data Fundamentals for Libraries, Archives and Museums
Linked Open Data Fundamentals for Libraries, Archives and MuseumsLinked Open Data Fundamentals for Libraries, Archives and Museums
Linked Open Data Fundamentals for Libraries, Archives and Museums
trevorthornton
 
WHAT ARE METADATA STANDARDS? EXPLAIN DUBLIN CORE IN DETAIL.
WHAT ARE METADATA STANDARDS? EXPLAIN DUBLIN CORE IN DETAIL.WHAT ARE METADATA STANDARDS? EXPLAIN DUBLIN CORE IN DETAIL.
WHAT ARE METADATA STANDARDS? EXPLAIN DUBLIN CORE IN DETAIL.
`Shweta Bhavsar
 
Quick Introduction to the Semantic Web, RDFa & Microformats
Quick Introduction to the Semantic Web, RDFa & MicroformatsQuick Introduction to the Semantic Web, RDFa & Microformats
Quick Introduction to the Semantic Web, RDFa & Microformats
University of California, San Diego
 
Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011 Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011
Jane Stevenson
 
RDM and the Donders Repository
RDM and the Donders RepositoryRDM and the Donders Repository
RDM and the Donders Repository
Robert Oostenveld
 
DataCite – Bridging the gap and helping to find, access and reuse data – Herb...
DataCite – Bridging the gap and helping to find, access and reuse data – Herb...DataCite – Bridging the gap and helping to find, access and reuse data – Herb...
DataCite – Bridging the gap and helping to find, access and reuse data – Herb...
OpenAIRE
 
Pratt Sils LIS653 4 Fall 2007
Pratt Sils LIS653 4 Fall 2007Pratt Sils LIS653 4 Fall 2007
Pratt Sils LIS653 4 Fall 2007
PrattSILS
 
Semantic Web in Action
Semantic Web in ActionSemantic Web in Action
Semantic Web in Action
Sebastian Ryszard Kruk
 
Impact of Covid-19 on Learning and Education
Impact of Covid-19 on Learning and EducationImpact of Covid-19 on Learning and Education
Impact of Covid-19 on Learning and Education
MANENDRASINGH30
 

Similar to DRI Introduction to Digital Preservation Training- Metadata and xml-Kathryn Cassidy (20)

Kathryn Cassidy - DRI Training Series: 4. Metadata and XML
Kathryn Cassidy - DRI Training Series: 4. Metadata and XMLKathryn Cassidy - DRI Training Series: 4. Metadata and XML
Kathryn Cassidy - DRI Training Series: 4. Metadata and XML
 
Rebecca Grant - DRI/ARA(I) Training: Introduction to EAD - Metadata and Metad...
Rebecca Grant - DRI/ARA(I) Training: Introduction to EAD - Metadata and Metad...Rebecca Grant - DRI/ARA(I) Training: Introduction to EAD - Metadata and Metad...
Rebecca Grant - DRI/ARA(I) Training: Introduction to EAD - Metadata and Metad...
 
Digital Libraries
Digital LibrariesDigital Libraries
Digital Libraries
 
Digital Libraries
Digital LibrariesDigital Libraries
Digital Libraries
 
Intro to Digitization Projects
Intro to Digitization ProjectsIntro to Digitization Projects
Intro to Digitization Projects
 
Geo-annotations in Semantic Digital Libraries
Geo-annotations in Semantic Digital Libraries Geo-annotations in Semantic Digital Libraries
Geo-annotations in Semantic Digital Libraries
 
Irish Digital Libraries Summit
Irish Digital Libraries SummitIrish Digital Libraries Summit
Irish Digital Libraries Summit
 
Toward universal information access on the digital object cloud
Toward universal information access on the digital object cloudToward universal information access on the digital object cloud
Toward universal information access on the digital object cloud
 
Harmony project - JISC Synthesis meeting 2001
Harmony project - JISC Synthesis meeting 2001Harmony project - JISC Synthesis meeting 2001
Harmony project - JISC Synthesis meeting 2001
 
Digital library and metadata
Digital library and metadataDigital library and metadata
Digital library and metadata
 
Data Management Planning at the DCC
Data Management Planning at the DCCData Management Planning at the DCC
Data Management Planning at the DCC
 
Linked Open Data Fundamentals for Libraries, Archives and Museums
Linked Open Data Fundamentals for Libraries, Archives and MuseumsLinked Open Data Fundamentals for Libraries, Archives and Museums
Linked Open Data Fundamentals for Libraries, Archives and Museums
 
WHAT ARE METADATA STANDARDS? EXPLAIN DUBLIN CORE IN DETAIL.
WHAT ARE METADATA STANDARDS? EXPLAIN DUBLIN CORE IN DETAIL.WHAT ARE METADATA STANDARDS? EXPLAIN DUBLIN CORE IN DETAIL.
WHAT ARE METADATA STANDARDS? EXPLAIN DUBLIN CORE IN DETAIL.
 
Quick Introduction to the Semantic Web, RDFa & Microformats
Quick Introduction to the Semantic Web, RDFa & MicroformatsQuick Introduction to the Semantic Web, RDFa & Microformats
Quick Introduction to the Semantic Web, RDFa & Microformats
 
Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011 Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011
 
RDM and the Donders Repository
RDM and the Donders RepositoryRDM and the Donders Repository
RDM and the Donders Repository
 
DataCite – Bridging the gap and helping to find, access and reuse data – Herb...
DataCite – Bridging the gap and helping to find, access and reuse data – Herb...DataCite – Bridging the gap and helping to find, access and reuse data – Herb...
DataCite – Bridging the gap and helping to find, access and reuse data – Herb...
 
Pratt Sils LIS653 4 Fall 2007
Pratt Sils LIS653 4 Fall 2007Pratt Sils LIS653 4 Fall 2007
Pratt Sils LIS653 4 Fall 2007
 
Semantic Web in Action
Semantic Web in ActionSemantic Web in Action
Semantic Web in Action
 
Impact of Covid-19 on Learning and Education
Impact of Covid-19 on Learning and EducationImpact of Covid-19 on Learning and Education
Impact of Covid-19 on Learning and Education
 

More from dri_ireland

NORFest 2023 Lightning Talks Session Two
NORFest 2023 Lightning Talks Session TwoNORFest 2023 Lightning Talks Session Two
NORFest 2023 Lightning Talks Session Two
dri_ireland
 
NORFest 2023: Early Career Researcher Panel on Research Assessment
NORFest 2023: Early Career Researcher Panel on Research AssessmentNORFest 2023: Early Career Researcher Panel on Research Assessment
NORFest 2023: Early Career Researcher Panel on Research Assessment
dri_ireland
 
NORFest 2023: National Open Research Fund 2023, Projects Launch
NORFest 2023: National Open Research Fund 2023, Projects LaunchNORFest 2023: National Open Research Fund 2023, Projects Launch
NORFest 2023: National Open Research Fund 2023, Projects Launch
dri_ireland
 
NORFest 2023 Lightning Talks Session Three
NORFest 2023 Lightning Talks Session Three NORFest 2023 Lightning Talks Session Three
NORFest 2023 Lightning Talks Session Three
dri_ireland
 
NORFest 2023 Lightning Talks Session One
NORFest 2023 Lightning Talks Session OneNORFest 2023 Lightning Talks Session One
NORFest 2023 Lightning Talks Session One
dri_ireland
 
NORFest2023 Keynote address: Chelle Gentemann (NASA)
NORFest2023 Keynote address: Chelle Gentemann (NASA)NORFest2023 Keynote address: Chelle Gentemann (NASA)
NORFest2023 Keynote address: Chelle Gentemann (NASA)
dri_ireland
 
The Archiving Reproductive Health project as a FAIR data resource for humanit...
The Archiving Reproductive Health project as a FAIR data resource for humanit...The Archiving Reproductive Health project as a FAIR data resource for humanit...
The Archiving Reproductive Health project as a FAIR data resource for humanit...
dri_ireland
 
Developing a self-care protocol for working with potentially traumatic data: ...
Developing a self-care protocol for working with potentially traumatic data: ...Developing a self-care protocol for working with potentially traumatic data: ...
Developing a self-care protocol for working with potentially traumatic data: ...
dri_ireland
 
An Introduction to the Digital Repository of Ireland
An Introduction to the Digital Repository of Ireland An Introduction to the Digital Repository of Ireland
An Introduction to the Digital Repository of Ireland
dri_ireland
 
DRI Copyright and Licencing_UCC_Mar23.pptx
DRI Copyright and Licencing_UCC_Mar23.pptxDRI Copyright and Licencing_UCC_Mar23.pptx
DRI Copyright and Licencing_UCC_Mar23.pptx
dri_ireland
 
The Digital Repository of Ireland Digital Preservation and Research Sustainab...
The Digital Repository of Ireland Digital Preservation and Research Sustainab...The Digital Repository of Ireland Digital Preservation and Research Sustainab...
The Digital Repository of Ireland Digital Preservation and Research Sustainab...
dri_ireland
 
DRI's role in WorldFAIR: Cultural Heritage / Image Sharing
DRI's role in WorldFAIR: Cultural Heritage / Image SharingDRI's role in WorldFAIR: Cultural Heritage / Image Sharing
DRI's role in WorldFAIR: Cultural Heritage / Image Sharing
dri_ireland
 
Introduction to research data management
Introduction to research data managementIntroduction to research data management
Introduction to research data management
dri_ireland
 
Archiving Ports, Ports as Archives
Archiving Ports, Ports as ArchivesArchiving Ports, Ports as Archives
Archiving Ports, Ports as Archives
dri_ireland
 
Preservation, Access, Discovery
Preservation, Access, DiscoveryPreservation, Access, Discovery
Preservation, Access, Discovery
dri_ireland
 
Dublin in the Fingal Archives
Dublin in the Fingal ArchivesDublin in the Fingal Archives
Dublin in the Fingal Archives
dri_ireland
 
Dublin Ghost Signs
Dublin Ghost SignsDublin Ghost Signs
Dublin Ghost Signs
dri_ireland
 
Mapping Memories: Participatory Media, Place-Based Stories, Refugee Youth
Mapping Memories: Participatory Media, Place-Based Stories, Refugee YouthMapping Memories: Participatory Media, Place-Based Stories, Refugee Youth
Mapping Memories: Participatory Media, Place-Based Stories, Refugee Youth
dri_ireland
 
Supporting Activists to Preserve Video Documentation
Supporting Activists to Preserve Video Documentation Supporting Activists to Preserve Video Documentation
Supporting Activists to Preserve Video Documentation
dri_ireland
 
Making the Future
Making the FutureMaking the Future
Making the Future
dri_ireland
 

More from dri_ireland (20)

NORFest 2023 Lightning Talks Session Two
NORFest 2023 Lightning Talks Session TwoNORFest 2023 Lightning Talks Session Two
NORFest 2023 Lightning Talks Session Two
 
NORFest 2023: Early Career Researcher Panel on Research Assessment
NORFest 2023: Early Career Researcher Panel on Research AssessmentNORFest 2023: Early Career Researcher Panel on Research Assessment
NORFest 2023: Early Career Researcher Panel on Research Assessment
 
NORFest 2023: National Open Research Fund 2023, Projects Launch
NORFest 2023: National Open Research Fund 2023, Projects LaunchNORFest 2023: National Open Research Fund 2023, Projects Launch
NORFest 2023: National Open Research Fund 2023, Projects Launch
 
NORFest 2023 Lightning Talks Session Three
NORFest 2023 Lightning Talks Session Three NORFest 2023 Lightning Talks Session Three
NORFest 2023 Lightning Talks Session Three
 
NORFest 2023 Lightning Talks Session One
NORFest 2023 Lightning Talks Session OneNORFest 2023 Lightning Talks Session One
NORFest 2023 Lightning Talks Session One
 
NORFest2023 Keynote address: Chelle Gentemann (NASA)
NORFest2023 Keynote address: Chelle Gentemann (NASA)NORFest2023 Keynote address: Chelle Gentemann (NASA)
NORFest2023 Keynote address: Chelle Gentemann (NASA)
 
The Archiving Reproductive Health project as a FAIR data resource for humanit...
The Archiving Reproductive Health project as a FAIR data resource for humanit...The Archiving Reproductive Health project as a FAIR data resource for humanit...
The Archiving Reproductive Health project as a FAIR data resource for humanit...
 
Developing a self-care protocol for working with potentially traumatic data: ...
Developing a self-care protocol for working with potentially traumatic data: ...Developing a self-care protocol for working with potentially traumatic data: ...
Developing a self-care protocol for working with potentially traumatic data: ...
 
An Introduction to the Digital Repository of Ireland
An Introduction to the Digital Repository of Ireland An Introduction to the Digital Repository of Ireland
An Introduction to the Digital Repository of Ireland
 
DRI Copyright and Licencing_UCC_Mar23.pptx
DRI Copyright and Licencing_UCC_Mar23.pptxDRI Copyright and Licencing_UCC_Mar23.pptx
DRI Copyright and Licencing_UCC_Mar23.pptx
 
The Digital Repository of Ireland Digital Preservation and Research Sustainab...
The Digital Repository of Ireland Digital Preservation and Research Sustainab...The Digital Repository of Ireland Digital Preservation and Research Sustainab...
The Digital Repository of Ireland Digital Preservation and Research Sustainab...
 
DRI's role in WorldFAIR: Cultural Heritage / Image Sharing
DRI's role in WorldFAIR: Cultural Heritage / Image SharingDRI's role in WorldFAIR: Cultural Heritage / Image Sharing
DRI's role in WorldFAIR: Cultural Heritage / Image Sharing
 
Introduction to research data management
Introduction to research data managementIntroduction to research data management
Introduction to research data management
 
Archiving Ports, Ports as Archives
Archiving Ports, Ports as ArchivesArchiving Ports, Ports as Archives
Archiving Ports, Ports as Archives
 
Preservation, Access, Discovery
Preservation, Access, DiscoveryPreservation, Access, Discovery
Preservation, Access, Discovery
 
Dublin in the Fingal Archives
Dublin in the Fingal ArchivesDublin in the Fingal Archives
Dublin in the Fingal Archives
 
Dublin Ghost Signs
Dublin Ghost SignsDublin Ghost Signs
Dublin Ghost Signs
 
Mapping Memories: Participatory Media, Place-Based Stories, Refugee Youth
Mapping Memories: Participatory Media, Place-Based Stories, Refugee YouthMapping Memories: Participatory Media, Place-Based Stories, Refugee Youth
Mapping Memories: Participatory Media, Place-Based Stories, Refugee Youth
 
Supporting Activists to Preserve Video Documentation
Supporting Activists to Preserve Video Documentation Supporting Activists to Preserve Video Documentation
Supporting Activists to Preserve Video Documentation
 
Making the Future
Making the FutureMaking the Future
Making the Future
 

Recently uploaded

June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
Ivanti
 
UI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentationUI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentation
Wouter Lemaire
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
Tatiana Kojar
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
tolgahangng
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
Daiki Mogmet Ito
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Wask
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
Tomaz Bratanic
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
Jakub Marek
 
UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6
DianaGray10
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Safe Software
 
WeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation TechniquesWeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation Techniques
Postman
 
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Jeffrey Haguewood
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
panagenda
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
Hiroshi SHIBATA
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
ssuserfac0301
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
Zilliz
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
DanBrown980551
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
Pixlogix Infotech
 

Recently uploaded (20)

June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
 
UI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentationUI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentation
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
 
UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
 
WeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation TechniquesWeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation Techniques
 
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
 

DRI Introduction to Digital Preservation Training- Metadata and xml-Kathryn Cassidy

  • 1. Kathryn Cassidy Software Engineer, Digital Repository of Ireland (Trinity College Dublin) Metadata & XML
  • 2. Digital Repository of Ireland DRI is a trusted digital repository for Humanities and Social Sciences Data in Ireland, launched June 2015 • Provides preservation and access to digital collections • Born digital and digitised collections including maps, photographs, letters, audio-visual, sound, books, oral histories, paintings..
  • 3.
  • 5. Metadata & XML • Define Metadata • Identify benefits of using standards-compliant metadata • Familiarise ourselves with XML • Create XML Metadata by Interactive Example By the end of this afternoon’s session we will have be able to do the following…
  • 7. What is Metadata? Technical metadata – hardware, software, file formats, resolution, size Preservation metadata – provenance, authenticity, preservation actions, responsibility (eg. PREMIS) Structural metadata – physical/logical structure of digital resources (eg. METS) Descriptive metadata – describes the digital resource; catalogue records/finding aids
  • 8. Human readable metadata A handwritten or typewritten listing or finding aid Can be easily read and understood Can be accessible in physical or digital medium Can be free-text searched
  • 9. Machine readable metadata In a format that can be understood by computers Structured representation of information Described using particular standards (eg. XML, HTML, RDF) Allows processing, exchange and analysis
  • 10. The importance of Structure & standards
  • 11. Why use standard metadata? Using standardised descriptive metadata means adhering to the best practices in your domain. Standardised metadata allows you to control how records are described within your organisation. Enforcing standards allows greater searchability of your records. Metadata sharing and interoperability is only possible when a standard is used. Quality metadata enables analysis, manipulation and “value-added services”
  • 12. Seeing Standards: A Visualization of the Metadata Universe, Jenn Riley & Devin Becker, http://www.dlib.indiana.edu/~jenlrile/metadatamap/
  • 13. Digital Archiving in Ireland: National Survey of the Humanities and Social Sciences
  • 15. Simple Dublin Core Metadata Element Set 1. Title 2. Creator 3. Subject 4. Description 5. Publisher 6. Contributor 7. Date 8. Type 9. Format 10. Identifier 11. Source 12. Language 13. Relation 14. Coverage 15. Rights
  • 17. 1. Title Ulysses 2. Creator James Joyce 3. Subject Stream of consciousness; Modern novel; Turn of century Dublin; Book covers 4. Description Traces the character Leopold Bloom as he walks around Dublin on 16 June, 1904 Or Scan of first edition, hard cover 5. Publisher Shakespeare and Company 6. Contributor 7. Date 1922
  • 18. Controlled Vocabularies • A standardised set of terms that are accepted, defined and managed (agreed on by a community) • A way to enable consistency in metadata, to facilitate accurate search and retrieval • Tend to be domain/discipline specific • Find the one that best fits your collection
  • 19. Library of Congress - Subject
  • 20. 1. Title Ulysses 2. Creator James Joyce 3. Subject Stream of consciousness; Modern novel; Turn of century Dublin; Book covers 4. Description Traces the character Leopold Bloom as he walks around Dublin on 16 June, 1904 Or Scan of first edition, hard cover 5. Publisher Shakespeare and Company 6. Contributor 7. Date 1922
  • 21. Library of Congress - Subject
  • 22. DRI Presents: Introduction to Metadata 1. Title Ulysses 2. Creator James Joyce 3. Subject Turn of century Dublin; 4. Description Traces the character Leopold Bloom as he walks around Dublin on 16 June, 1904 Or Scan of first edition, hard cover 5. Publisher Shakespeare and Company 6. Contributor 7. Date 1922 Dublin—History—20th century Joyce, James, 1882-1941
  • 23. Metadata Quality Control – DRI guide www.dri.ie/publications
  • 24. “Extensible Markup Language (XML) is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. It is defined by the W3C's XML 1.0 Specification and by several other related specifications, all of which are free open standards.” - https://en.wikipedia.org/wiki/XML What is XML? “Extensible Markup Language (XML) is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. It is defined by the W3C's XML 1.0 Specification and by several other related specifications, all of which are free open standards.” - https://en.wikipedia.org/wiki/XML
  • 25. Machine readable metadata In a format that can be understood by computers Structured representation of information Described using particular standards (eg. XML, HTML, RDF) Allows processing, exchange and analysis
  • 26. “Extensible Markup Language (XML) is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. It is defined by the W3C's XML 1.0 Specification and by several other related specifications, all of which are free open standards.” - https://en.wikipedia.org/wiki/XML What is XML?
  • 27.
  • 28.
  • 29.
  • 30. <html> <head> <title>The DRI Website</title> </head> <body> <img src=“drilogo.png”> <h3>Structure of DRI</h3> <p>The principal governance structure of the DRI is its Board. The current DRI Board was appointed in 2017 following a call for nominations that was open to all DRI Members. Appointees were ratified by the Executive Committee of the Royal Irish Academy, and serve 3-year terms.</p> <p>The principal management mechanism of the DRI is the <a href=“cit.html”>Core ImplementationTeam (CIT)</a>. The CIT is responsible for the day-to-day operational management of the DRI in addition to developing the DRI strategy, coordination, and delivering the project. The CIT is comprised of the <b>DRI Director (Chair)</b>, <b>DRI Principal Investigators and Institutional representatives</b>, with the <b>DRI Programme Manager</b> in RIA providing the secretariat.</p> </body> </html>
  • 32. <tramTicket> <type>return</type> <from>Central 1</from> <to>Red 2</to> <validUntil>Last Tram</validUntil> <date>31 Jul 06</date> <for>Adult</for> <on>Luas only</on> <timeIssued>21:15</timeissue d> <price>2.90</price> <number>6004375019</numb er> </tramTicket> XML does not DO anything
  • 33. XML vs. Metadata Standards XML lets you use any tags you like: <person> <familyname> <validuntil> <date> <price> Making up tags is using XML, but it is not using a Standard! We want to use the Dublin Core Standard (or some other metadata standard) expressed as XML. To achieve this we need to specify an XML Schema. The XML Schema constrains the possible tags and XML elements that we can use in our XML files.
  • 34. A Dublin Core example in XML <qualifieddc xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:marcrel="http://www.loc.gov/marc.relators/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.loc.gov/marc.relators/ http://imlsdcc2.grainger.illinois.edu/registry/marcrel.xsd" xsi:noNamespaceSchemaLocation="http://dublincore.org/schemas/xmls/qdc/2008/02/11/q ualifieddc.xsd"> <dc:title>Dublin Core and the Digital Repository of Ireland</dc:title> <dc:description>These guidelines relate to the use of the Dublin core metadata schema in the Digital Repository of Ireland. These guidelines are an updated version of our original Dublin Core guidelines, published in January 2015. The updates reflect changes to the DRI infrastructure since its launch in June 2015.</dc:description> <dc:type>Metadata guidelines</dc:type> <dcterms:created/> <dcterms:issued>2015-12</dcterms:issued> <dc:date>2015-12</dc:date>

Editor's Notes

  1. What does the metadata tell us about the data? Photo of K. Cassidy Photo taken by K. Cassidy Copy for K. Cassidy
  2. Could improve this record using controlled vocabularies, thesauri, taxonomies, etc. or go one better and used linked data sources
  3. Could improve this record using controlled vocabularies, thesauri, taxonomies, etc. or go one better and used linked data sources
  4. Could improve this record using controlled vocabularies, thesauri, taxonomies, etc. or go one better and used linked data sources
  5. A heavily glossed manuscript of Libri Quattuor Sententiarum by Peter Lombard, whose usage of margin notes for citations is considered by some to be the direct antecedent of modern scholarly footnotes.
  6. Typesetting Markup
  7. Proofreading shorthand
  8. Proofreading shorthand