Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 525 Bytes

README.md

File metadata and controls

27 lines (24 loc) · 525 Bytes

RR0 Event

A RR0 event is a RR0 Data with some people as a subject and a kind (subtype) which can be:

  • birth/creation
  • death/discontinuation
  • image snapshot
  • book publication
  • sighting
classDiagram
    class RR0Data {
        id: string
        type: string
        url?: URL
        name: string
        title: string
        time: TimeContext
    }
    RR0Data --> RR0Data: events[]
    class RR0Event {
    }
    RR0Event --> People: subject
    RR0Data <|-- RR0Event
Loading