LinkML representation of ActivityStreams and ActivityPub schema
https://pypi.org/projects/linkml-activitypub
Source schema:
linkml_activitypub/activitystreams.yaml- ActivityStreams2 vocabulary schemalinkml_activitypub/activitypub.yaml- ActivityPub Extensions to ActivityStreams2 (imports ActivityStreams2)
Generated models:
generated/- All generated schema for both source schema- Pydantic 2 Models:
linkml_activitypub/activitystreams.pylinkml_activitypub/activitypub.py
- Dataclasses
linkml_activitypub/dataclass/activitystreams.pylinkml_activitypub/dataclass/activitypub.py
Intermediate files are in the data directory
activitystreams2.owl- Initially imported from activitystreams2.owl- Removed problematic OrderedCollection definitions
activitystreams2.ofn- Convert to functional notation with robotactivitystreams2.yaml- Then to rough linkml using schema-automator
Then the final schema in linkml_activitypub/activitystreams.yaml:
- Reorder to match ActivityStreams
- Ensure correct
- inheritance
multivalued
- Prune extra properties and classes to match those in ActivityStreams2 normative definition
- Then re-add the ones that declare a class in their domain, even if the class doesn't list that property in its definition
- Except for those types that seem to be metaclasses:
attributedTo(->actor)
- Added LinkML properties (where needed):
- Classes
disjoint_withsee_alsowhen references given
- Properties
descriptiondomainrangeminumum_valuemaximum_value
- Classes
- Added missing slots
closedstartIndex
- Handle special property cases
itemsis marked aslist_elements_ordered: trueonOrderedCollectionand false onCollection
- Made types
- anyURI as
xsd:anyURI, did not try and find a validator pattern. The spec alternatingly uses its own anyURI prop andxsd:anyURI durationas a string that indicates it's axsd:duration, finding a pattern is TODO
- anyURI as
- Made enums
unitEnum- forunit
- Copied Notes to class
descriptionrather thancomments - Added schema prefixes:
schema: https://schema.org/ - for specifying IETF BCP 47 language codes
OrderedCollectionPageis not a subclass of, and doesn't mix inCollectionPagesince it would then have an ambiguous class definition, sinceOrderedCollectioninherits fromCollectionbut asserts that thelist_items_orderedslot istruerather thanfalse. Instead, the slots fromCollectionPageare just duplicated.- Accordingly, the domain and range of slots that include
CollectionPagealso include `OrderedCollectionPage
- Accordingly, the domain and range of slots that include
- Need to implement some
xsd:durationpattern
- JSON-LD Serialization: https://www.w3.org/TR/activitystreams-core/#syntaxconventions
- Collection serialization: "In the JSON serialization, the unordered items of a Collection are represented using the items property while ordered items are represented using the orderedItems property."
- Should
itemsandorderedItemsjust be disjoint slots, rather than a slot with a special property modification?
- Should
- Everything!
- Status of AS OWL vocabulary and etc. w3c/activitystreams#416