/**
  * Constructor
  */
 function Openurl10BookSchema()
 {
     parent::Openurl10JournalBookBaseSchema('openurl-1.0-book', 'lib.pkp.plugins.metadata.openurl10.schema.Openurl10BookSchema');
     // Add meta-data properties that only appear in the OpenURL book standard
     $this->addProperty('btitle');
     $this->addProperty('place');
     // Place of publication
     $this->addProperty('pub');
     // Publisher
     $this->addProperty('edition');
     $this->addProperty('tpages');
     $this->addProperty('series');
     // The title of a series in which the book or document was issued.
     $this->addProperty('bici');
     $this->addProperty('genre', array(METADATA_PROPERTY_TYPE_VOCABULARY => 'openurl10-book-genres'));
 }
 /**
  * Constructor
  */
 function Openurl10JournalSchema()
 {
     parent::Openurl10JournalBookBaseSchema('openurl-1.0-journal', 'lib.pkp.plugins.metadata.openurl10.schema.Openurl10JournalSchema');
     // Add meta-data properties that only appear in the OpenURL journal standard
     $this->addProperty('jtitle');
     $this->addProperty('stitle');
     // Short title
     $this->addProperty('chron');
     // Enumeration or chronology in not-normalized form, e.g. "1st quarter"
     $this->addProperty('ssn');
     // Season
     $this->addProperty('quarter');
     $this->addProperty('volume');
     $this->addProperty('part');
     // A special subdivision of a volume or the highest level division of the journal
     $this->addProperty('issue');
     $this->addProperty('artnum');
     // Number assigned by the publisher
     $this->addProperty('eissn');
     $this->addProperty('coden');
     $this->addProperty('sici');
     $this->addProperty('genre', array(METADATA_PROPERTY_TYPE_VOCABULARY => 'openurl10-journal-genres'));
 }