https://github.com/rr0/data
RR0 data model
https://github.com/rr0/data
Last synced: 3 months ago
JSON representation
RR0 data model
- Host: GitHub
- URL: https://github.com/rr0/data
- Owner: RR0
- License: mit
- Created: 2024-10-23T17:53:13.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-09-14T09:53:30.000Z (9 months ago)
- Last Synced: 2025-09-16T16:34:54.242Z (9 months ago)
- Language: HTML
- Size: 1.19 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @rr0/data
All RR0 data types share common properties from their `RR0Data` interface.
Also, all RR0Data have other RR0Data types as properties, such as:
- [place](https://github.com/RR0/place)
- people
- [events](src/event/README.md)
```mermaid
classDiagram
class RR0Data {
id: string
type: string
title: string
name: string
time: TimeContext
dirName: string
url?: string
}
RR0Data --> Place: place?
RR0Data --> People: people?
RR0Data --> RR0Data: events[]
class Sighting {
}
RR0Data <|-- Sighting
class People {
}
RR0Data <|-- People
class Organization {
}
RR0Data <|-- Organization
class Place {
}
RR0Data <|-- Place
class Case {
}
RR0Data <|-- Case
class Source {
}
RR0Data <|-- Source
class Investigation {
}
RR0Data <|-- Investigation
```