Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
h1. Document information | *Title:* \\ *Subject:* \\ *Moderator:* \\ *Version:* \\ *Date published:* \\ *Excerpt*:{excerpt} Write an excerpt here of max. 60 words {excerpt}\\ \\ (Optional information) \\ *Type:* \\ *Format:* \\ *Identifier:* \\ *Language:* \\ *Rights:* \\ *Tags:* {page-info:labels} {contributors-summary} | {column}
Section
Wiki Markup

version: 1.0

Document History

2011-11-16

1.0

gal-extension.xsd

...

For reference to current version use http://purl.org/REP/standards/daigal-extension.xsd

This grant agreement list extension is made to extend the MODS metadata scheme with the Digital Author IdentifierOpenAire Guidelines.

For examples how to use this extension in combination with MODS see: Use of MODS\

The schema below is the DAIGAL-extension.xsd

Code Block
xml
xml

<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns="info:eu-repo/grantAgreement"
        targetNamespace="info:eu-repo/grantAgreement"
        elementFormDefault="qualified"
        attributeFormDefault="unqualified">

	<xsd:import namespace="http://www.w3.org/XML/1998/namespace"
        schemaLocation="http://www.w3.org/2001/xml.xsd"/>

	<xsd:element name="grantAgreementList" type="grantAgreementListType"/>

	<xsd:complexType name="grantAgreementListType">
		<xsd:sequence>
			<xsd:element name="grantAgreement" type="grantAgreementType" minOccurs="1" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>


	<xsd:complexType name="grantAgreementType">
		<xsd:sequence>
			<xsd:element name="funder" type="funderType" minOccurs="0" maxOccurs="1"/>
			<xsd:element name="title" type="xsd:string" minOccurs="0" maxOccurs="1"/>
			<xsd:element name="description" type="xsd:string" minOccurs="0" maxOccurs="1"/>
		</xsd:sequence>
		<xsd:attribute name="code" type="xsd:string" use="required"/>
	</xsd:complexType>


	<xsd:complexType name="funderType">
		<xsd:attribute name="IDref" type="xsd:IDREF" use="required"/>
	</xsd:complexType>
</xsd:schema>