-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0c5f7ef
Showing
2 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
= Relaton BIPM Bibliographic Data Model | ||
|
||
This bibliographic model is developed to consolidate and standardize | ||
the data model used for bibliographic and citation purposes. | ||
|
||
This model is meant to be fully compatible with ISO 690 and | ||
ISO TC 46's (and SC 4, SC 9) work on bibliography. | ||
|
||
NOTE: The modelled components represent a subset of the XML model; omitted | ||
elements are implementation details that are not important in the generation of | ||
bibliographic data. | ||
|
||
image:/~https://github.com/relaton/relaton-model-bipm/workflows/make/badge.svg["Build Status", link="/~https://github.com/relaton/relaton-model-bipm/actions/workflows/make.yml"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
include "biblio-standoc.rnc" { | ||
|
||
DocumentType = | ||
"brochure" | | ||
"mise-en-pratique" | | ||
"rapport" | | ||
"monographie" | | ||
"guide" | | ||
"meeting-report" | | ||
"technical-report" | | ||
"working-party-note" | | ||
"strategy" | | ||
"cipm-mra" | | ||
"resolution" | ||
|
||
editorialgroup = element editorialgroup { | ||
committee+, | ||
workgroup* | ||
} | ||
|
||
structuredidentifier = element structuredidentifier { | ||
element docnumber { text }, | ||
element part { text }?, | ||
element appendix { text }? | ||
} | ||
|
||
BibDataExtensionType = | ||
attribute schema-version { text }?, | ||
doctype?, docsubtype?, editorialgroup, comment-period?, si-aspect?, meeting-note?, structuredidentifier | ||
|
||
} | ||
|
||
comment-period = element comment-period { | ||
element from { ISO8601Date }, | ||
element to { ISO8601Date } | ||
} | ||
|
||
si-aspect = element si-aspect { | ||
"A_e_deltanu" | | ||
"A_e" | | ||
"cd_Kcd_h_deltanu" | | ||
"cd_Kcd" | | ||
"full" | | ||
"K_k_deltanu" | | ||
"K_k" | | ||
"kg_h_c_deltanu" | | ||
"kg_h" | | ||
"m_c_deltanu" | | ||
"m_c" | | ||
"mol_NA" | | ||
"s_deltanu" | ||
} | ||
|
||
committee = element committee { | ||
attribute acronym { | ||
"CGPM" | | ||
"CIPM" | | ||
"BIPM" | | ||
"CCAUV" | | ||
"CCEM" | | ||
"CCL" | | ||
"CCM" | | ||
"CCPR" | | ||
"CCQM" | | ||
"CCRI" | | ||
"CCT" | | ||
"CCTF" | | ||
"CCU" | | ||
"CCL-CCTF-WGFS" | | ||
"JCGM" | | ||
"JCRB" | | ||
"JCTLM" | | ||
"INetQI" }, | ||
LocalizedString | ||
} | ||
|
||
workgroup = element workgroup { | ||
attribute acronym { text }?, | ||
text | ||
} | ||
|
||
meeting-note = element meeting-note { text } | ||
|
||
|