mirror of
https://github.com/Theodor-Springmann-Stiftung/KGPZ.git
synced 2025-10-29 09:05:30 +00:00
Started XSD Schema creation
This commit is contained in:
@@ -1,36 +1,38 @@
|
||||
# Zusammengesetzte Aufnahme einzelne Ausgabe: Erfassung des Originals
|
||||
rdam:P30156 - Hauptitel: Königsbergische Gelehrte und Politische Zeitungen
|
||||
rdam:P30142 - Titelzusatz: Mit allergnädigster Freyheit
|
||||
rdam:P30157 - Titel einer Reihe: Königsbergische Gelehrte und Politische Zeitungen
|
||||
rdam:P30117 - Verantwortlichkeitsangabe: Kanter, Johann Jakob
|
||||
x rdam:P30156 - Hauptitel: Königsbergische Gelehrte und Politische Zeitungen
|
||||
x rdam:P30142 - Titelzusatz: Mit allergnädigster Freyheit
|
||||
x rdam:P30157 - Titel einer Reihe: Königsbergische Gelehrte und Politische Zeitungen
|
||||
x rdam:P30117 - Verantwortlichkeitsangabe: Kanter, Johann Jakob
|
||||
// Hier ist die Verantwortlichkeitsangabe für die Zeitung als Ganzes; sie geht aus der Ausgabe in der Kanterschen Buchhandlung hervor.
|
||||
// Die Frage sit nach der Verantwortlichkeit der Autoren einzelner Beiträge, die aber idR nicht genannt sind.
|
||||
rdam:P30088 - Erscheinungsort: Königsberg
|
||||
rdam:P30014 - Zählung innerhalb einer Reihe: 1
|
||||
rdam:P30011 - Erscheinungsdatum: 1764-03-02 (ISO 8601)
|
||||
rdam:P30003 - Erscheinungsweise: fortlaufende Resource
|
||||
rdam:P30001 - Datenträger: Band
|
||||
rdam:P30002 - Medientyp: ohne Hilfsmittel zu benutzen
|
||||
rdam:P30168 - Erscheinungsfrequenz: 2 Mal/Woche
|
||||
x rdam:P30088 - Erscheinungsort: Königsberg
|
||||
rdam:P30014 - Zählung innerhalb einer Reihe: 1
|
||||
rdam:P30011 - Erscheinungsdatum: 1764-03-02 (ISO 8601)
|
||||
x rdam:P30003 - Erscheinungsweise: fortlaufende Resource
|
||||
x rdam:P30001 - Datenträger: Band
|
||||
x rdam:P30002 - Medientyp: ohne Hilfsmittel zu benutzen
|
||||
rdam:P30168 - Erscheinungsfrequenz: 2 Mal/Woche
|
||||
// Abgekündigt, mussi nicht mehr erfasst werden
|
||||
rdam:P30182 - Umfang: S. 1-4
|
||||
// Optionale Erfassung
|
||||
rdam:P30198 - Maße: 4°
|
||||
x rdam:P30198 - Maße: 4°
|
||||
// Optionale Erfassung
|
||||
rdam:P30453 - Illustrationen: Titelvignette
|
||||
// Optionale Erfassung
|
||||
|
||||
rdae:P20001 - Inhaltstyp: Text,unbewegtes Bild
|
||||
rdae:P20005 - Sprache: de
|
||||
? rdae:P20001 - Inhaltstyp: Text,unbewegtes Bild
|
||||
? rdae:P20005 - Sprache: de
|
||||
|
||||
x rdaw:P10088 - Titel eines Werkes: Königsbergische Gelehrte und Politische Zeitungen
|
||||
x rdaw:P10055 - Geistiger Schöpfer: Kanter, Johann Jakob
|
||||
x rdaw:P10046 - Herausgeber: Kanter, Johann Jakob
|
||||
x rdaw:P10222 - Hat Art des Inhalts: Zeitung
|
||||
|
||||
? rdai:P40001 - Identifikator des Exemplars: Signatur in der UB
|
||||
? rdai:P40004 - Sammler:in: UB XY
|
||||
? rdai:P40018 - Eigentümer:in: UB XY
|
||||
|
||||
rdaw:P10088 - Titel eines Werkes: Königsbergische Gelehrte und Politische Zeitungen
|
||||
rdaw:P10055 - Geistiger Schöpfer: Kanter, Johann Jakob
|
||||
rdaw:P10046 - Herausgeber: Kanter, Johann Jakob
|
||||
rdaw:P10222 - Hat Art des Inhalts: Zeitung
|
||||
|
||||
rdai:P40001 - Identifikator des Exemplars: Signatur in der UB
|
||||
rdai:P40004 - Sammler:in: UB XY
|
||||
rdai:P40018 - Eigentümer:in: UB XY
|
||||
|
||||
+ Relationen zu Beiträgen:
|
||||
+ Versweise auf die elekrtonische Ausgabe der UB, und eigene Erfassung
|
||||
@@ -38,3 +40,4 @@ rdai:P40018 - Eigentümer:in: UB X
|
||||
Achtung: Online-Ausgabe ist eigenes Werk, Inhalt, Expression und Exemplar
|
||||
|
||||
|
||||
|
||||
|
||||
26
Schemata/KGPZ.xsd
Normal file
26
Schemata/KGPZ.xsd
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0"?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="https://www.kgpz.de"
|
||||
xmlns="https://www.kgpz.de"
|
||||
elementFormDefault="qualified">
|
||||
|
||||
<xs:include schemaLocation="personen.xsd" />
|
||||
<xs:include schemaLocation="orte.xsd" />
|
||||
<xs:include schemaLocation="kategorien.xsd" />
|
||||
<xs:include schemaLocation="werke.xsd" />
|
||||
<xs:include schemaLocation="stuecke.xsd" />
|
||||
<xs:include schemaLocation="beitraege.xsd" />
|
||||
|
||||
<xs:element name="kgpz">
|
||||
<xs:complexType>
|
||||
<xs:sequence minOccurs="1" maxOccurs="1">
|
||||
<xs:element name="personen" type="personen" minOccurs="1" maxOccurs="1"/>
|
||||
<xs:element name="orte" type="orte" minOccurs="1" maxOccurs="1"/>
|
||||
<xs:element name="kategorien" type="kategorien" minOccurs="1" maxOccurs="1"/>
|
||||
<xs:element name="werke" type="werke" maxOccurs="1" minOccurs="1"/>
|
||||
<xs:element name="stuecke" type="stuecke" maxOccurs="1" minOccurs="1"/>
|
||||
<xs:element name="beitraege" type="beitraege" maxOccurs="1" minOccurs="1"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
||||
10
Schemata/beitraege.xsd
Normal file
10
Schemata/beitraege.xsd
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="https://www.kgpz.de"
|
||||
xmlns="https://www.kgpz.de"
|
||||
elementFormDefault="qualified">
|
||||
|
||||
<xs:element name="beitraege" type="beitraege" />
|
||||
|
||||
<xs:complexType name="beitraege"></xs:complexType>
|
||||
</xs:schema>
|
||||
10
Schemata/kategorien.xsd
Normal file
10
Schemata/kategorien.xsd
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="https://www.kgpz.de"
|
||||
xmlns="https://www.kgpz.de"
|
||||
elementFormDefault="qualified">
|
||||
|
||||
<xs:element name="kategorien" type="kategorien" />
|
||||
|
||||
<xs:complexType name="kategorien"></xs:complexType>
|
||||
</xs:schema>
|
||||
10
Schemata/orte.xsd
Normal file
10
Schemata/orte.xsd
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="https://www.kgpz.de"
|
||||
xmlns="https://www.kgpz.de"
|
||||
elementFormDefault="qualified">
|
||||
|
||||
<xs:element name="orte" type="orte" />
|
||||
|
||||
<xs:complexType name="orte"></xs:complexType>
|
||||
</xs:schema>
|
||||
10
Schemata/personen.xsd
Normal file
10
Schemata/personen.xsd
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="https://www.kgpz.de"
|
||||
xmlns="https://www.kgpz.de"
|
||||
elementFormDefault="qualified">
|
||||
|
||||
<xs:element name="personen" type="personen" />
|
||||
|
||||
<xs:complexType name="personen"></xs:complexType>
|
||||
</xs:schema>
|
||||
10
Schemata/stuecke.xsd
Normal file
10
Schemata/stuecke.xsd
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="https://www.kgpz.de"
|
||||
xmlns="https://www.kgpz.de"
|
||||
elementFormDefault="qualified">
|
||||
|
||||
<xs:element name="stuecke" type="stuecke" />
|
||||
|
||||
<xs:complexType name="stuecke"></xs:complexType>
|
||||
</xs:schema>
|
||||
10
Schemata/werke.xsd
Normal file
10
Schemata/werke.xsd
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="https://www.kgpz.de"
|
||||
xmlns="https://www.kgpz.de"
|
||||
elementFormDefault="qualified">
|
||||
|
||||
<xs:element name="werke" type="werke" />
|
||||
|
||||
<xs:complexType name="werke"></xs:complexType>
|
||||
</xs:schema>
|
||||
5
beitraege.xml
Normal file
5
beitraege.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0"?>
|
||||
<beitraege xmlns="https://www.kgpz.de"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
xsi:schemaLocation="https://www.kgpz.de Schemata/KGPZ.xsd"></beitraege>
|
||||
5
kategorien.xml
Normal file
5
kategorien.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0"?>
|
||||
<kategorien xmlns="https://www.kgpz.de"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
xsi:schemaLocation="https://www.kgpz.de Schemata/KGPZ.xsd"></kategorien>
|
||||
13
kgpz.xml
Normal file
13
kgpz.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0"?>
|
||||
<kgpz
|
||||
xmlns="https://www.kgpz.de"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
xsi:schemaLocation="https://www.kgpz.de Schemata/KGPZ.xsd">
|
||||
<personen />
|
||||
<orte />
|
||||
<kategorien />
|
||||
<werke />
|
||||
<stuecke />
|
||||
<beitraege />
|
||||
</kgpz>
|
||||
5
orte.xml
Normal file
5
orte.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0"?>
|
||||
<orte xmlns="https://www.kgpz.de"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
xsi:schemaLocation="https://www.kgpz.de Schemata/KGPZ.xsd"></orte>
|
||||
5
personen.xml
Normal file
5
personen.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0"?>
|
||||
<personen xmlns="https://www.kgpz.de"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
xsi:schemaLocation="https://www.kgpz.de Schemata/KGPZ.xsd"></personen>
|
||||
5
stuecke.xml
Normal file
5
stuecke.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0"?>
|
||||
<stuecke xmlns="https://www.kgpz.de"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
xsi:schemaLocation="https://www.kgpz.de Schemata/KGPZ.xsd"></stuecke>
|
||||
Reference in New Issue
Block a user