-
-
Save geszes/6bfd8926bded03786a63 to your computer and use it in GitHub Desktop.
Draft of TIER schemas based on Schema.org
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A possible formulation of schemas for TIER, | |
based on schemas from https://schema.org/ | |
Person | |
familyName | |
givenName | |
additionalName | |
honorificPrefix | |
honorificSuffix | |
birthDate -> Date or DateTime | |
birthPlace -> Place | |
} | |
InstitutionalPerson extends Person { | |
institutionalIdentifier | |
affiliation -> Organization | |
} | |
Course extends EducationEvent { | |
courseCredits | |
courseNumber | |
coursePrerequisites | |
provider | |
providingDepartment | |
subEvent -> CourseMeeting | |
subjectOfStudy | |
} | |
CourseMeeting extends EducationEvent { | |
id | |
attendee -> Person | |
duration -> Duration | |
location -> Place | |
performer -> Person # Instructor | |
recordedIn -> CreativeWork # Video, audio, or transcript of event | |
superEvent -> reference to Course | |
startDate -> DateTime | |
workFeatured -> CreativeWork # Presentation, Slides, or other material shown | |
} | |
Additional common datatypes: | |
Date https://schema.org/Date | |
DateTime https://schema.org/DateTime | |
Duration https://schema.org/Duration | |
EducationEvent https://schema.org/EducationEvent | |
Event https://schema.org/Event | |
Organization https://schema.org/Organization | |
Place https://schema.org/Place | |
Time https://schema.org/Time | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment