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

add 'sensitive' object property #154

Merged
merged 1 commit into from
Jan 19, 2022
Merged
Show file tree
Hide file tree
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
23 changes: 23 additions & 0 deletions astool/activitystreams.jsonld
Original file line number Diff line number Diff line change
Expand Up @@ -4870,6 +4870,29 @@
"name": "deleted",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-deleted"
},
{
"id": "https://www.w3.org/ns/activitystreams#sensitive",
"type": [
"rdf:Property",
"owl:ObjectProperty"
],
"notes": "Indicates that some users may wish to apply discretion about viewing this object's content, whether due to nudity, violence, or any other likely aspects that viewers may be sensitive to.",
"domain": {
"type": "owl:Class",
"unionOf": {
"type": "owl:Class",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#dfn-object",
"name": "Object"
}
},
"isDefinedBy": "https://www.w3.org/TR/activitystreams-vocabulary/#sensitive",
"range": {
"type": "owl:Class",
"unionOf": "xsd:boolean"
},
"name": "sensitive",
"url": "https://www.w3.org/TR/activitystreams-vocabulary/#sensitive"
},
{
"id": "https://www.w3.org/TR/activitypub/#inbox",
"type": [
Expand Down
3 changes: 3 additions & 0 deletions streams/gen_consts.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions streams/gen_init.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions streams/gen_manager.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions streams/gen_pkg_activitystreams_property_constructors.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions streams/impl/activitystreams/property_sensitive/gen_doc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions streams/impl/activitystreams/property_sensitive/gen_pkg.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading