Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Mermaid Visual to reflect basic design pattern #2

Merged
merged 3 commits into from
Jun 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
# OccO
```mermaid
graph RL
A(Entity):::BFO --> B(Continuant):::BFO
A(Entity):::BFO --> O(Occurrent):::BFO
O(Occurrent):::BFO --> P(Process):::BFO
P(Process):::BFO --> Z(Occupation Activity):::OccO
B(Continuant):::BFO -.-> J(Realizable Entity):::BFO
B(Continuant):::BFO -.-> F(Material Entity):::BFO
J(Realizable Entity):::BFO --> L(Role):::BFO
L(Role):::BFO --> KJ(Occupation Role):::OccO
K(Occupation Holder):::OccO ==has role==> KJ(Occupation Role):::OccO
K(Occupation Holder):::OccO ==participates in==> Z(Occupation Activity):::OccO
K(Occupation Holder):::OccO ==has disposition==> KK(Occupation Disposition):::OccO
M(Disposition):::BFO --> KK(Occupation Disposition):::OccO
M(Disposition):::BFO --> KM(Ability):::OccO
M(Disposition):::BFO --> KN(Skill):::OccO
J(Realizable Entity):::BFO --> M(Disposition):::BFO
F(Material Entity):::BFO -.-> K(Occupation Holder):::OccO
subgraph Legend
AA(BFO):::BFO
BB(OccO):::OccO
end
classDef BFO fill:#F5AD27,color:#060606
classDef OccO fill:#1FBF1F,color:#060606
```
OccO: Occupation Ontology

The Occupation Ontology (OccO) is an ontology in the domain of human occupations. OccO is an initial ontological presentation of information taken from a standardized occupation taxonomy, the US Standard Occupational Classification (SOC) as enhanced by the **O*Net** system. These systems have been developed by the following US Federal agencies:
- Department of Labor
- Bureau of Labor Statistics
Expand Down