Virtual Collection Resources

Virtual Collection Resources

This page contains an assortment of resources to help explain the structure and relationship of the Virtual Collection object.

Latimer Core Resources

This page contains an assortment of resources to help facilitate activities associated with the Latimer Core standard.

SSSOM

SKOS Mappings metadata elements based on Simple Standard for Sharing Ontological Mappings (SSSOM)

DiSSCo has developed three SSSOM mappings to other data standards: DwC-A, ABCD(EFG), DwC-DP. For each of these there is a tsv available for the 0.4.0 version of the Digital Specimen and Digital Media object. The basis for this mapping is the logic developed in the DiSSCo Translator.

More information on the SSSOM standard can be found here:

  • Specification: https://mapping-commons.github.io/sssom/
  • Repository: https://github.com/mapping-commons/sssom
  • Citation: Nicolas Matentzoglu, James P Balhoff, Susan M Bello, Chris Bizon, Matthew Brush, Tiffany J Callahan, Christopher G Chute, William D Duncan, Chris T Evelo, Davera Gabriel, John Graybeal, Alasdair Gray, Benjamin M Gyori, Melissa Haendel, Henriette Harmse, Nomi L Harris, Ian Harrow, Harshad B Hegde, Amelia L Hoyt, Charles T Hoyt, Dazhi Jiao, Ernesto Jiménez-Ruiz, Simon Jupp, Hyeongsik Kim, Sebastian Koehler, Thomas Liener, Qinqin Long, James Malone, James A McLaughlin, Julie A McMurry, Sierra Moxon, Monica C Munoz-Torres, David Osumi-Sutherland, James A Overton, Bjoern Peters, Tim Putman, Núria Queralt-Rosinach, Kent Shefchek, Harold Solbrig, Anne Thessen, Tania Tudorache, Nicole Vasilevsky, Alex H Wagner, Christopher J Mungall, A Simple Standard for Sharing Ontological Mappings (SSSOM), Database, Volume 2022, 2022, baac035, https://doi.org/10.1093/database/baac035

Diagrams

Class Diagrams

                            classDiagram
 class VirtualCollection { 
   dcterms:identifier : string 
   ods:fdoType : string 
   ods:status : string 
   schema:version : integer 
   ltc:collectionName : string 
   ltc:description : string 
   ltc:basisOfScheme : string 
   schema:dateCreated : string 
   schema:dateModified : string 
   schema:contentURL : string 
   schema:creator : object 
   ods:hasTargetDigitalObjectFilter : object 
   ods:hasTombstoneMetadata : object 
 }
 class TombstoneMetadata { 
   ods:tombstoneDate : string 
   ods:tombstoneText : string 
   ods:hasAgents : array<ods:Agent> 
   ods:hasRelatedPIDs : array<ods:RelatedPID> 
 }
 class RelatedPID { 
   dcterms:identifier : string 
   schema:identifier : string 
   ods:relationshipType : string 
 }
 class Agent { 
   schema:identifier : string 
   schema:name : string 
   ods:hasRoles : array<ods:Role> 
   schema:email : string 
   schema:url : string 
   ods:hasIdentifiers : array<ods:Identifier> 
 }
 class Role { 
   schema:roleName : string 
   schema:startDate : string 
   schema:endDate : string 
   schema:position : integer 
 }
 class Identifier { 
   ods:predicateType : None 
   ods:predicateKey : string 
   ods:predicateValue : ['string', 'number', 'boolean'] 
   ods:predicateValues : array<string|number|boolean> 
   ods:hasPredicates : array<ods:Predicate> 
 }
 class Predicate { 
   ods:predicateType : string 
   ods:predicateKey : string 
   ods:predicateValue : ['string', 'number', 'boolean'] 
   ods:predicateValues : array<string|number|boolean> 
 }
VirtualCollection -- TombstoneMetadata
TombstoneMetadata -- RelatedPID
VirtualCollection -- Agent
Agent -- Role
Agent -- Identifier
TombstoneMetadata -- Agent
VirtualCollection -- Predicate
                            

Entity-Relationship Diagrams

                            erDiagram
    VirtualCollection ||--o| TombstoneMetadata : Has
    TombstoneMetadata ||--o{ RelatedPID : Has
    TombstoneMetadata ||--|{ Agent : Has
    Agent ||--|{ Role : Has
    Agent ||--o{ Identifier : Has
    VirtualCollection ||--|{ Agent : Has
    VirtualCollection ||--o{ Predicate : Has

                        

Built with Mermaid.js