Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
opoudjis committed Oct 22, 2022
0 parents commit 0c5f7ef
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.adoc
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"]

84 changes: 84 additions & 0 deletions grammars/relaton-bipm.rnc
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 }


0 comments on commit 0c5f7ef

Please sign in to comment.