mirror of
https://codeberg.org/fediverse/fep.git
synced 2026-08-08 05:25:47 +00:00
Add: FEP-8a8e: A common approach to using the Event object type (#430)
This draft is still work in progress. I created the Pull Request to already share it with possible interested audience. ToDo before removing WIP: - [x] Anonymous Joins, indicate that such will always will be rejected. When supporting Organizers: `Join` has `to` or `cc` set to Organizer Collection of the Event. - [x] Organizer collections - [x] Move all definitions from https://event-federation/ns# to the w3c fep namespace of this fep. (https://codeberg.org/fediverse/fep/src/branch/main/fep/888d/fep-888d.md#defining-terms-associated-with-an-fep) - [x] Collection of upcoming Events - [x] Maybe define own "timezone" attribute... - [x] Multiple banner images sizes: encourage to provide if available and give `width` and `height` attributes! - [x] `organizer` or `organizers` (Use plural for `Collection` and singular for lists). Co-authored-by: les <lesion@autistici.org> Reviewed-on: https://codeberg.org/fediverse/fep/pulls/430 Co-authored-by: André Menrath <linos@noreply.codeberg.org> Co-committed-by: André Menrath <linos@noreply.codeberg.org>
This commit is contained in:
committed by
silverpill
parent
c1621c8d49
commit
837a43af5b
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>AttendeesCollection</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="AttendeesCollection" resource="https://w3id.org/fep/8a8e/AttendeesCollection" typeof="rdfs:Class">
|
||||
<h1>AttendeesCollection</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/AttendeesCollection</code></dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">A Collection of the Event's attendees</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">
|
||||
Inherits all properties from <code><a href="https://www.w3.org/ns/activitystreams#Collection">https://www.w3.org/ns/activitystreams#Collection</a></code> with the addition that the <code>items</code> may also include <code>https://schema.org/Person</code> or <code>https://schema.org/Organization</code>.
|
||||
The items of the <code>AttendeesCollection</code> are entities that are confirmed attendees by an Events organizer(s). It contains all ActivityPub actors that meet one or more of the following conditions, added as a side effect.
|
||||
<ul>
|
||||
<li>The actor has sent a Join activity with this object as the object property that has been answered with an Accept.</li>
|
||||
<li>The actor has responded to an Invite activity from the Event's owner (where the Event is specified as the object property) with an Accept activity.</li>
|
||||
</ul>
|
||||
The items MAY be filtered on privileges of an authenticated user or as appropriate when no authentication is given. This collection *SHOULD* have the totalItems set in any case.
|
||||
</dd>
|
||||
<dt>Subclass of</dt>
|
||||
<dd><a href="https://www.w3.org/ns/activitystreams#OrderedCollection" property="rdfs:subClassOf">Object</a></dd>
|
||||
<dt>See also</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e/attendees" property="rdfs:seeAlso">attendees</a></dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
</dl>
|
||||
<pre lang="json" title="Example of an AttendeesCollection with different items">
|
||||
<code>
|
||||
{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams",
|
||||
{
|
||||
"sc": "https://schema.org#"
|
||||
}
|
||||
]
|
||||
"type": "AttendeesCollection",
|
||||
"totalItems": 2,
|
||||
"context": "https://example.org/events/alice-birthday-party"
|
||||
"items": [
|
||||
{ "type": "Person", "name": "Bob", "id": "https://example.org/actors/bob"},
|
||||
{ "type": "sc:Person", "name": "Alice", "email": "alice@example.org"},
|
||||
]
|
||||
}
|
||||
</code>
|
||||
</pre>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/AttendeesCollection",
|
||||
"@type": [
|
||||
"http://www.w3.org/2000/01/rdf-schema#Class"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "\n Inherits all properties from https://www.w3.org/ns/activitystreams#Collection with the addition that the items may also include https://schema.org/Person or https://schema.org/Organization.\n The items of the AttendeesCollection are entities that are confirmed attendees by an Events organizer(s). It contains all ActivityPub actors that meet one or more of the following conditions, added as a side effect.\n \nThe actor has sent a Join activity with this object as the object property that has been answered with an Accept.\nThe actor has responded to an Invite activity from the Event's owner (where the Event is specified as the object property) with an Accept activity.\n\n The items MAY be filtered on privileges of an authenticated user or as appropriate when no authentication is given. This collection *SHOULD* have the totalItems set in any case.\n "
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "A Collection of the Event's attendees"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/attendees"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
|
||||
{
|
||||
"@id": "https://www.w3.org/ns/activitystreams#OrderedCollection"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/AttendeesCollection">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:label xml:lang="en">A Collection of the Event's attendees</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">
|
||||
Inherits all properties from https://www.w3.org/ns/activitystreams#Collection with the addition that the items may also include https://schema.org/Person or https://schema.org/Organization.
|
||||
The items of the AttendeesCollection are entities that are confirmed attendees by an Events organizer(s). It contains all ActivityPub actors that meet one or more of the following conditions, added as a side effect.
|
||||
|
||||
The actor has sent a Join activity with this object as the object property that has been answered with an Accept.
|
||||
The actor has responded to an Invite activity from the Event's owner (where the Event is specified as the object property) with an Accept activity.
|
||||
|
||||
The items MAY be filtered on privileges of an authenticated user or as appropriate when no authentication is given. This collection *SHOULD* have the totalItems set in any case.
|
||||
</rdfs:comment>
|
||||
<rdfs:subClassOf rdf:resource="https://www.w3.org/ns/activitystreams#OrderedCollection"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/attendees"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,17 @@
|
||||
@prefix as: <https://www.w3.org/ns/activitystreams#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/AttendeesCollection> a rdfs:Class ;
|
||||
rdfs:label "A Collection of the Event's attendees"@en ;
|
||||
rdfs:comment """
|
||||
Inherits all properties from https://www.w3.org/ns/activitystreams#Collection with the addition that the items may also include https://schema.org/Person or https://schema.org/Organization.
|
||||
The items of the AttendeesCollection are entities that are confirmed attendees by an Events organizer(s). It contains all ActivityPub actors that meet one or more of the following conditions, added as a side effect.
|
||||
|
||||
The actor has sent a Join activity with this object as the object property that has been answered with an Accept.
|
||||
The actor has responded to an Invite activity from the Event's owner (where the Event is specified as the object property) with an Accept activity.
|
||||
|
||||
The items MAY be filtered on privileges of an authenticated user or as appropriate when no authentication is given. This collection *SHOULD* have the totalItems set in any case.
|
||||
"""@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/attendees> ;
|
||||
rdfs:subClassOf as:OrderedCollection .
|
||||
@@ -0,0 +1,49 @@
|
||||
# AttendeesCollection
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/AttendeesCollection`
|
||||
|
||||
Label
|
||||
: A Collection of the Event's attendees
|
||||
|
||||
Comment
|
||||
: Inherits all properties from `https://www.w3.org/ns/activitystreams#Collection` with the addition that the `items` may also include `https://schema.org/Person` or `https://schema.org/Organization`.
|
||||
The items of the `AttendeesCollection` are entities that are confirmed attendees by an Events organizer(s). It contains all ActivityPub actors that meet one or more of the following conditions, added as a side effect.
|
||||
|
||||
* The actor has sent a Join activity with this object as the object property that has been answered with an Accept.
|
||||
* The actor has responded to an Invite activity from the Event's owner (where the Event is specified as the object property) with an Accept activity.
|
||||
|
||||
The items MAY be filtered on privileges of an authenticated user or as appropriate when no authentication is given. This collection \*SHOULD\* have the totalItems set in any case.
|
||||
|
||||
Subclass of
|
||||
: [Object](https://www.w3.org/ns/activitystreams#OrderedCollection)
|
||||
|
||||
See also
|
||||
: [attendees](https://w3id.org/fep/8a8e/attendees)
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
Example of an AttendeesCollection with different items
|
||||
|
||||
```json
|
||||
{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams",
|
||||
{
|
||||
"sc": "https://schema.org#"
|
||||
}
|
||||
]
|
||||
"type": "AttendeesCollection",
|
||||
"totalItems": 2,
|
||||
"context": "https://example.org/events/alice-birthday-party"
|
||||
"items": [
|
||||
{ "type": "Person", "name": "Bob", "id": "https://example.org/actors/bob"},
|
||||
{ "type": "sc:Person", "name": "Alice", "email": "alice@example.org"},
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>EventCancelled</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="EventCancelled" resource="https://w3id.org/fep/8a8e/EventCancelled" typeof="rdfs:Class">
|
||||
<h1>EventCancelled</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/EventCancelled</code>
|
||||
</dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">The event has been cancelled.</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">The event has been cancelled.</dd>
|
||||
<dt>Subclass of</dt>
|
||||
<dd property="rdfs:subClassOf" resource="https://w3id.org/fep/8a8e/EventStatusType">EventStatusType</dd>
|
||||
<dt>See also</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e/eventStatus" property="rdfs:seeAlso">eventStatus</a></dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
</dl>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventCancelled",
|
||||
"@type": [
|
||||
"http://www.w3.org/2000/01/rdf-schema#Class"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "The event has been cancelled."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "The event has been cancelled."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventStatusType"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/EventCancelled">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:label xml:lang="en">The event has been cancelled.</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">The event has been cancelled.</rdfs:comment>
|
||||
<rdfs:subClassOf rdf:resource="https://w3id.org/fep/8a8e/EventStatusType"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/eventStatus"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,8 @@
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/EventCancelled> a rdfs:Class ;
|
||||
rdfs:label "The event has been cancelled."@en ;
|
||||
rdfs:comment "The event has been cancelled."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/eventStatus> ;
|
||||
rdfs:subClassOf <https://w3id.org/fep/8a8e/EventStatusType> .
|
||||
@@ -0,0 +1,19 @@
|
||||
# EventCancelled
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/EventCancelled`
|
||||
|
||||
Label
|
||||
: The event has been cancelled.
|
||||
|
||||
Comment
|
||||
: The event has been cancelled.
|
||||
|
||||
Subclass of
|
||||
: EventStatusType
|
||||
|
||||
See also
|
||||
: [eventStatus](https://w3id.org/fep/8a8e/eventStatus)
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>EventMovedOnline</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="EventMovedOnline" resource="https://w3id.org/fep/8a8e/EventMovedOnline" typeof="rdfs:Class">
|
||||
<h1>EventMovedOnline</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/EventMovedOnline</code>
|
||||
</dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">The event moved online.</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">Indicates that the event was changed to allow online participation.</dd>
|
||||
<dt>Subclass of</dt>
|
||||
<dd property="rdfs:subClassOf" resource="https://w3id.org/fep/8a8e/EventStatusType">EventStatusType</dd>
|
||||
<dt>See also</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e/eventStatus" property="rdfs:seeAlso">eventStatus</a></dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
</dl>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventMovedOnline",
|
||||
"@type": [
|
||||
"http://www.w3.org/2000/01/rdf-schema#Class"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "Indicates that the event was changed to allow online participation."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "The event moved online."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventStatusType"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/EventMovedOnline">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:label xml:lang="en">The event moved online.</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">Indicates that the event was changed to allow online participation.</rdfs:comment>
|
||||
<rdfs:subClassOf rdf:resource="https://w3id.org/fep/8a8e/EventStatusType"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/eventStatus"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,8 @@
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/EventMovedOnline> a rdfs:Class ;
|
||||
rdfs:label "The event moved online."@en ;
|
||||
rdfs:comment "Indicates that the event was changed to allow online participation."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/eventStatus> ;
|
||||
rdfs:subClassOf <https://w3id.org/fep/8a8e/EventStatusType> .
|
||||
@@ -0,0 +1,19 @@
|
||||
# EventMovedOnline
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/EventMovedOnline`
|
||||
|
||||
Label
|
||||
: The event moved online.
|
||||
|
||||
Comment
|
||||
: Indicates that the event was changed to allow online participation.
|
||||
|
||||
Subclass of
|
||||
: EventStatusType
|
||||
|
||||
See also
|
||||
: [eventStatus](https://w3id.org/fep/8a8e/eventStatus)
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>EventPostponed</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="EventPostponed" resource="https://w3id.org/fep/8a8e/EventPostponed" typeof="rdfs:Class">
|
||||
<h1>EventCancelled</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/EventPostponed</code>
|
||||
</dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">The event has been postponed.</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">The event has been postponed and no new date has been set. The event's previousStartTime should be set.</dd>
|
||||
<dt>Subclass of</dt>
|
||||
<dd property="rdfs:subClassOf" resource="https://w3id.org/fep/8a8e/EventStatusType">EventStatusType</dd>
|
||||
<dt>See also</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e/eventStatus" property="rdfs:seeAlso">eventStatus</a></dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
</dl>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventPostponed",
|
||||
"@type": [
|
||||
"http://www.w3.org/2000/01/rdf-schema#Class"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "The event has been postponed and no new date has been set. The event's previousStartTime should be set."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "The event has been postponed."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventStatusType"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/EventPostponed">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:label xml:lang="en">The event has been postponed.</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">The event has been postponed and no new date has been set. The event's previousStartTime should be set.</rdfs:comment>
|
||||
<rdfs:subClassOf rdf:resource="https://w3id.org/fep/8a8e/EventStatusType"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/eventStatus"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,8 @@
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/EventPostponed> a rdfs:Class ;
|
||||
rdfs:label "The event has been postponed."@en ;
|
||||
rdfs:comment "The event has been postponed and no new date has been set. The event's previousStartTime should be set."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/eventStatus> ;
|
||||
rdfs:subClassOf <https://w3id.org/fep/8a8e/EventStatusType> .
|
||||
@@ -0,0 +1,19 @@
|
||||
# EventPostponed
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/EventPostponed`
|
||||
|
||||
Label
|
||||
: The event has been postponed.
|
||||
|
||||
Comment
|
||||
: The event has been postponed and no new date has been set. The event's previousStartTime should be set.
|
||||
|
||||
Subclass of
|
||||
: EventStatusType
|
||||
|
||||
See also
|
||||
: [eventStatus](https://w3id.org/fep/8a8e/eventStatus)
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>EventRescheduled</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="EventRescheduled" resource="https://w3id.org/fep/8a8e/EventRescheduled" typeof="rdfs:Class">
|
||||
<h1>EventRescheduled</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/EventRescheduled</code>
|
||||
</dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">The event has been rescheduled.</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">The event's previousStartTime should be set to the old date and the startTime should be set to the event's new start date.</dd>
|
||||
<dt>Subclass of</dt>
|
||||
<dd property="rdfs:subClassOf" resource="https://w3id.org/fep/8a8e/EventStatusType">EventStatusType</dd>
|
||||
<dt>See also</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e/eventStatus" property="rdfs:seeAlso">eventStatus</a></dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
</dl>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventRescheduled",
|
||||
"@type": [
|
||||
"http://www.w3.org/2000/01/rdf-schema#Class"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "The event's previousStartTime should be set to the old date and the startTime should be set to the event's new start date."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "The event has been rescheduled."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventStatusType"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/EventRescheduled">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:label xml:lang="en">The event has been rescheduled.</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">The event's previousStartTime should be set to the old date and the startTime should be set to the event's new start date.</rdfs:comment>
|
||||
<rdfs:subClassOf rdf:resource="https://w3id.org/fep/8a8e/EventStatusType"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/eventStatus"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,8 @@
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/EventRescheduled> a rdfs:Class ;
|
||||
rdfs:label "The event has been rescheduled."@en ;
|
||||
rdfs:comment "The event's previousStartTime should be set to the old date and the startTime should be set to the event's new start date."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/eventStatus> ;
|
||||
rdfs:subClassOf <https://w3id.org/fep/8a8e/EventStatusType> .
|
||||
@@ -0,0 +1,19 @@
|
||||
# EventRescheduled
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/EventRescheduled`
|
||||
|
||||
Label
|
||||
: The event has been rescheduled.
|
||||
|
||||
Comment
|
||||
: The event's previousStartTime should be set to the old date and the startTime should be set to the event's new start date.
|
||||
|
||||
Subclass of
|
||||
: EventStatusType
|
||||
|
||||
See also
|
||||
: [eventStatus](https://w3id.org/fep/8a8e/eventStatus)
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>EventStatusType</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="EventStatusType" resource="https://w3id.org/fep/8a8e/EventStatusType" typeof="rdfs:Class">
|
||||
<h1>EventStatusType</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/8a8e</code>
|
||||
</dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">8a8e</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">EventStatusType is an enumeration type whose instances represent several states that an Event may be in.</dd>
|
||||
<dt>Subclass of</dt>
|
||||
<dd property="rdfs:subClassOf" resource="https://schema.org/EventStatusType">https://schema.org/EventStatusType</dd>
|
||||
<dt>See also</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e/eventStatus" property="rdfs:seeAlso">eventStatus</a></dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
</dl>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventStatusType",
|
||||
"@type": [
|
||||
"http://www.w3.org/2000/01/rdf-schema#Class"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "EventStatusType is an enumeration type whose instances represent several states that an Event may be in."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
|
||||
{
|
||||
"@id": "https://schema.org/EventStatusType"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/EventStatusType">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:label xml:lang="en">8a8e</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">EventStatusType is an enumeration type whose instances represent several states that an Event may be in.</rdfs:comment>
|
||||
<rdfs:subClassOf rdf:resource="https://schema.org/EventStatusType"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/eventStatus"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,9 @@
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix schema: <https://schema.org/> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/EventStatusType> a rdfs:Class ;
|
||||
rdfs:label "8a8e"@en ;
|
||||
rdfs:comment "EventStatusType is an enumeration type whose instances represent several states that an Event may be in."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/eventStatus> ;
|
||||
rdfs:subClassOf schema:EventStatusType .
|
||||
@@ -0,0 +1,19 @@
|
||||
# EventStatusType
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/8a8e`
|
||||
|
||||
Label
|
||||
: 8a8e
|
||||
|
||||
Comment
|
||||
: EventStatusType is an enumeration type whose instances represent several states that an Event may be in.
|
||||
|
||||
Subclass of
|
||||
: https://schema.org/EventStatusType
|
||||
|
||||
See also
|
||||
: [eventStatus](https://w3id.org/fep/8a8e/eventStatus)
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>EventTentative</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="EventTentative" resource="https://w3id.org/fep/8a8e/EventTentative" typeof="rdfs:Class">
|
||||
<h1>EventTentative</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/EventTentative</code>
|
||||
</dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">The event is tentative</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">The event is currently being planned but not confirmed.</dd>
|
||||
<dt>Subclass of</dt>
|
||||
<dd property="rdfs:subClassOf" resource="https://w3id.org/fep/8a8e/EventStatusType">EventStatusType</dd>
|
||||
<dt>See also</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e/eventStatus" property="rdfs:seeAlso">eventStatus</a></dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
</dl>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventTentative",
|
||||
"@type": [
|
||||
"http://www.w3.org/2000/01/rdf-schema#Class"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "The event is currently being planned but not confirmed."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "The event is tentative"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventStatusType"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/EventTentative">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:label xml:lang="en">The event is tentative</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">The event is currently being planned but not confirmed.</rdfs:comment>
|
||||
<rdfs:subClassOf rdf:resource="https://w3id.org/fep/8a8e/EventStatusType"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/eventStatus"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,8 @@
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/EventTentative> a rdfs:Class ;
|
||||
rdfs:label "The event is tentative"@en ;
|
||||
rdfs:comment "The event is currently being planned but not confirmed."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/eventStatus> ;
|
||||
rdfs:subClassOf <https://w3id.org/fep/8a8e/EventStatusType> .
|
||||
@@ -0,0 +1,19 @@
|
||||
# EventTentative
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/EventTentative`
|
||||
|
||||
Label
|
||||
: The event is tentative
|
||||
|
||||
Comment
|
||||
: The event is currently being planned but not confirmed.
|
||||
|
||||
Subclass of
|
||||
: EventStatusType
|
||||
|
||||
See also
|
||||
: [eventStatus](https://w3id.org/fep/8a8e/eventStatus)
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
@@ -0,0 +1,45 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>OrganizersCollection</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="OrganizersCollection" resource="https://w3id.org/fep/8a8e/OrganizersCollection" typeof="rdfs:Class">
|
||||
<h1>OrganizersCollection</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/OrganizersCollection</code></dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">An Event's Organizer Collection</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">Inherits all properties from <code><a href="https://www.w3.org/ns/activitystreams#Collection">https://www.w3.org/ns/activitystreams#Collection</a></code> with the addition that the <code>items</code> may also include <code>https://schema.org/Person</code> or <code>https://schema.org/Organization</code>.</dd>
|
||||
<dt>Subclass of</dt>
|
||||
<dd><a href="https://www.w3.org/ns/activitystreams#Collection" property="rdfs:subClassOf">Object</a></dd>
|
||||
<dt>See also</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e/organizers" property="rdfs:seeAlso">organizers</a></dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
</dl>
|
||||
<pre lang="json" title="Example of an OrganizersCollection with different items">
|
||||
<code>
|
||||
{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams",
|
||||
{
|
||||
"sc": "http://schema.org#",
|
||||
}
|
||||
],
|
||||
"type": "OrganizersCollection",
|
||||
"items": [
|
||||
{ "type": "Group", "name": "ActivityPub Group Actor", "id": "https://example.org/actors/group1"},
|
||||
{ "type": "Link", "href": "https://organizer1.example.org"},
|
||||
{ "type": "sc:Person", "name": "Alice" },
|
||||
{ "type": "Organization", "name": "Event Co." }
|
||||
]
|
||||
}
|
||||
</code>
|
||||
</pre>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/OrganizersCollection",
|
||||
"@type": [
|
||||
"http://www.w3.org/2000/01/rdf-schema#Class"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "Inherits all properties from https://www.w3.org/ns/activitystreams#Collection with the addition that the items may also include https://schema.org/Person or https://schema.org/Organization."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "An Event's Organizer Collection"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/organizers"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
|
||||
{
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Collection"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/OrganizersCollection">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:label xml:lang="en">An Event's Organizer Collection</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">Inherits all properties from https://www.w3.org/ns/activitystreams#Collection with the addition that the items may also include https://schema.org/Person or https://schema.org/Organization.</rdfs:comment>
|
||||
<rdfs:subClassOf rdf:resource="https://www.w3.org/ns/activitystreams#Collection"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/organizers"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,9 @@
|
||||
@prefix as: <https://www.w3.org/ns/activitystreams#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/OrganizersCollection> a rdfs:Class ;
|
||||
rdfs:label "An Event's Organizer Collection"@en ;
|
||||
rdfs:comment "Inherits all properties from https://www.w3.org/ns/activitystreams#Collection with the addition that the items may also include https://schema.org/Person or https://schema.org/Organization."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/organizers> ;
|
||||
rdfs:subClassOf as:Collection .
|
||||
@@ -0,0 +1,43 @@
|
||||
# OrganizersCollection
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/OrganizersCollection`
|
||||
|
||||
Label
|
||||
: An Event's Organizer Collection
|
||||
|
||||
Comment
|
||||
: Inherits all properties from `https://www.w3.org/ns/activitystreams#Collection` with the addition that the `items` may also include `https://schema.org/Person` or `https://schema.org/Organization`.
|
||||
|
||||
Subclass of
|
||||
: [Object](https://www.w3.org/ns/activitystreams#Collection)
|
||||
|
||||
See also
|
||||
: [organizers](https://w3id.org/fep/8a8e/organizers)
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
Example of an OrganizersCollection with different items
|
||||
|
||||
```json
|
||||
{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams",
|
||||
{
|
||||
"sc": "http://schema.org#",
|
||||
}
|
||||
],
|
||||
"type": "OrganizersCollection",
|
||||
"items": [
|
||||
{ "type": "Group", "name": "ActivityPub Group Actor", "id": "https://example.org/actors/group1"},
|
||||
{ "type": "Link", "href": "https://organizer1.example.org"},
|
||||
{ "type": "sc:Person", "name": "Alice" },
|
||||
{ "type": "Organization", "name": "Event Co." }
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,51 @@
|
||||
# attendees
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/attendees`
|
||||
|
||||
Label
|
||||
: Attendees of an Event
|
||||
|
||||
Comment
|
||||
:
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
|
||||
Range
|
||||
: [Collection](https://w3id.org/fep/8a8e/AttendeesCollection) (ActivityStreams Type)
|
||||
|
||||
Required
|
||||
: No
|
||||
|
||||
Functional
|
||||
: No
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
Example usage of attendees
|
||||
|
||||
```json
|
||||
{
|
||||
"@context": [
|
||||
"https://schema.org",
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams",
|
||||
{
|
||||
"sc": "https://schema.org#"
|
||||
}
|
||||
],
|
||||
"type": "Event",
|
||||
"attendees": {
|
||||
"type": "https://w3id.org/fep/8a8e/OrganizersCollection",
|
||||
"totalItems": 4,
|
||||
"items": [
|
||||
{ "type": "Actor", "name": "ActivityPub Group Actor", "id": "https://example.org/actors/group1"},
|
||||
{ "type": "Link", "href": "https://organizer1.example.org"},
|
||||
{ "type": "Person", "name": "Alice" },
|
||||
{ "type": "sc:Organization", "name": "Event Co." }
|
||||
]
|
||||
}
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>attendees</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="attendees" resource="https://w3id.org/fep/8a8e/attendees" typeof="owl:ObjectProperty">
|
||||
<h1>attendees</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/attendees</code></dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">Attendees of an Event</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment"></dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
<dt>Range</dt>
|
||||
<dd property="rdfs:range" resource="rdfs:Resource"><a href="https://w3id.org/fep/8a8e/AttendeesCollection" target="_blank">Collection</a> (ActivityStreams Type)</dd>
|
||||
<dt>Required</dt>
|
||||
<dd content="0" datatype="xsd:nonNegativeInteger" property="owl:minCardinality">No</dd>
|
||||
<dt>Functional</dt>
|
||||
<dd>No</dd>
|
||||
</dl>
|
||||
<pre lang="json" title="Example usage of attendees">
|
||||
<code>
|
||||
{
|
||||
"@context": [
|
||||
"https://schema.org",
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams",
|
||||
{
|
||||
"sc": "https://schema.org#"
|
||||
}
|
||||
],
|
||||
"type": "Event",
|
||||
"attendees": {
|
||||
"type": "https://w3id.org/fep/8a8e/OrganizersCollection",
|
||||
"totalItems": 4,
|
||||
"items": [
|
||||
{ "type": "Actor", "name": "ActivityPub Group Actor", "id": "https://example.org/actors/group1"},
|
||||
{ "type": "Link", "href": "https://organizer1.example.org"},
|
||||
{ "type": "Person", "name": "Alice" },
|
||||
{ "type": "sc:Organization", "name": "Event Co." }
|
||||
]
|
||||
}
|
||||
}
|
||||
</code>
|
||||
</pre>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,36 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/attendees",
|
||||
"@type": [
|
||||
"http://www.w3.org/2002/07/owl#ObjectProperty"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": ""
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "Attendees of an Event"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": [
|
||||
{
|
||||
"@id": "http://www.w3.org/2000/01/rdf-schema#Resource"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2002/07/owl#minCardinality": [
|
||||
{
|
||||
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
|
||||
"@value": "0"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/attendees">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<rdfs:label xml:lang="en">Attendees of an Event</rdfs:label>
|
||||
<rdfs:comment xml:lang="en"></rdfs:comment>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
||||
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">0</owl:minCardinality>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,10 @@
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/attendees> a owl:ObjectProperty ;
|
||||
rdfs:label "Attendees of an Event"@en ;
|
||||
rdfs:comment ""@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range rdfs:Resource ;
|
||||
owl:minCardinality "0"^^xsd:nonNegativeInteger .
|
||||
@@ -0,0 +1,19 @@
|
||||
# category
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/category`
|
||||
|
||||
Label
|
||||
: The category of an Event
|
||||
|
||||
Comment
|
||||
: Recommended event categories include: `ARTS`, `AUTO_BOAT_AIR`, `BOOK_CLUBS`, `BUSINESS`, `CAUSES`, `CLIMATE_ENVIRONMENT`, `COMMUNITY`, `COMEDY`, `CRAFTS`, `CREATIVE_JAM`, `DIY_MAKER_SPACES`, `FAMILY_EDUCATION`, `FASHION_BEAUTY`, `FESTIVALS`, `FILM_MEDIA`, `FOOD_DRINK`, `GAMES`, `INCLUSIVE_SPACES`, `LANGUAGE_CULTURE`, `LEARNING`, `LGBTQ`, `MEETING`, `MEDITATION_WELLBEING`, `MOVEMENTS_POLITICS`, `MUSIC`, `NETWORKING`, `OUTDOORS_ADVENTURE`, `PARTY`, `PERFORMING_VISUAL_ARTS`, `PETS`, `PHOTOGRAPHY`, `SCIENCE_TECH`, `SPIRITUALITY_RELIGION_BELIEFS`, `SPORTS`, `THEATRE`, `WORKSHOPS_SKILL_SHARING`
|
||||
|
||||
Domain
|
||||
: [Event](https://www.w3.org/ns/activitystreams#Event)
|
||||
|
||||
Range
|
||||
: [xsd:string](https://www.w3.org/TR/xmlschema-2/#string) (@list)
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
@@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>category</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="category" resource="https://w3id.org/fep/8a8e/category" typeof="owl:DatatypeProperty">
|
||||
<h1>category</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/category</code>
|
||||
</dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">The category of an Event</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">Recommended event categories include: <code>ARTS</code>, <code>AUTO_BOAT_AIR</code>, <code>BOOK_CLUBS</code>, <code>BUSINESS</code>, <code>CAUSES</code>, <code>CLIMATE_ENVIRONMENT</code>, <code>COMMUNITY</code>, <code>COMEDY</code>, <code>CRAFTS</code>, <code>CREATIVE_JAM</code>, <code>DIY_MAKER_SPACES</code>, <code>FAMILY_EDUCATION</code>, <code>FASHION_BEAUTY</code>, <code>FESTIVALS</code>, <code>FILM_MEDIA</code>, <code>FOOD_DRINK</code>, <code>GAMES</code>, <code>INCLUSIVE_SPACES</code>, <code>LANGUAGE_CULTURE</code>, <code>LEARNING</code>, <code>LGBTQ</code>, <code>MEETING</code>, <code>MEDITATION_WELLBEING</code>, <code>MOVEMENTS_POLITICS</code>, <code>MUSIC</code>, <code>NETWORKING</code>, <code>OUTDOORS_ADVENTURE</code>, <code>PARTY</code>, <code>PERFORMING_VISUAL_ARTS</code>, <code>PETS</code>, <code>PHOTOGRAPHY</code>, <code>SCIENCE_TECH</code>, <code>SPIRITUALITY_RELIGION_BELIEFS</code>, <code>SPORTS</code>, <code>THEATRE</code>, <code>WORKSHOPS_SKILL_SHARING</code>
|
||||
</dd>
|
||||
<dt>Domain</dt>
|
||||
<dd><a href="https://www.w3.org/ns/activitystreams#Event" property="rdfs:domain" resource="as:Event">Event</a></dd>
|
||||
<dt>Range</dt>
|
||||
<dd><a href="https://www.w3.org/TR/xmlschema-2/#string" property="rdfs:range" resource="xsd:string">xsd:string</a> (@list)</dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
</dl>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/category",
|
||||
"@type": [
|
||||
"http://www.w3.org/2002/07/owl#DatatypeProperty"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "Recommended event categories include: ARTS, AUTO_BOAT_AIR, BOOK_CLUBS, BUSINESS, CAUSES, CLIMATE_ENVIRONMENT, COMMUNITY, COMEDY, CRAFTS, CREATIVE_JAM, DIY_MAKER_SPACES, FAMILY_EDUCATION, FASHION_BEAUTY, FESTIVALS, FILM_MEDIA, FOOD_DRINK, GAMES, INCLUSIVE_SPACES, LANGUAGE_CULTURE, LEARNING, LGBTQ, MEETING, MEDITATION_WELLBEING, MOVEMENTS_POLITICS, MUSIC, NETWORKING, OUTDOORS_ADVENTURE, PARTY, PERFORMING_VISUAL_ARTS, PETS, PHOTOGRAPHY, SCIENCE_TECH, SPIRITUALITY_RELIGION_BELIEFS, SPORTS, THEATRE, WORKSHOPS_SKILL_SHARING\n"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": [
|
||||
{
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Event"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "The category of an Event"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": [
|
||||
{
|
||||
"@id": "http://www.w3.org/2001/XMLSchema#string"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/category">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
|
||||
<rdfs:label xml:lang="en">The category of an Event</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">Recommended event categories include: ARTS, AUTO_BOAT_AIR, BOOK_CLUBS, BUSINESS, CAUSES, CLIMATE_ENVIRONMENT, COMMUNITY, COMEDY, CRAFTS, CREATIVE_JAM, DIY_MAKER_SPACES, FAMILY_EDUCATION, FASHION_BEAUTY, FESTIVALS, FILM_MEDIA, FOOD_DRINK, GAMES, INCLUSIVE_SPACES, LANGUAGE_CULTURE, LEARNING, LGBTQ, MEETING, MEDITATION_WELLBEING, MOVEMENTS_POLITICS, MUSIC, NETWORKING, OUTDOORS_ADVENTURE, PARTY, PERFORMING_VISUAL_ARTS, PETS, PHOTOGRAPHY, SCIENCE_TECH, SPIRITUALITY_RELIGION_BELIEFS, SPORTS, THEATRE, WORKSHOPS_SKILL_SHARING
|
||||
</rdfs:comment>
|
||||
<rdfs:domain rdf:resource="https://www.w3.org/ns/activitystreams#Event"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,12 @@
|
||||
@prefix as: <https://www.w3.org/ns/activitystreams#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/category> a owl:DatatypeProperty ;
|
||||
rdfs:label "The category of an Event"@en ;
|
||||
rdfs:comment """Recommended event categories include: ARTS, AUTO_BOAT_AIR, BOOK_CLUBS, BUSINESS, CAUSES, CLIMATE_ENVIRONMENT, COMMUNITY, COMEDY, CRAFTS, CREATIVE_JAM, DIY_MAKER_SPACES, FAMILY_EDUCATION, FASHION_BEAUTY, FESTIVALS, FILM_MEDIA, FOOD_DRINK, GAMES, INCLUSIVE_SPACES, LANGUAGE_CULTURE, LEARNING, LGBTQ, MEETING, MEDITATION_WELLBEING, MOVEMENTS_POLITICS, MUSIC, NETWORKING, OUTDOORS_ADVENTURE, PARTY, PERFORMING_VISUAL_ARTS, PETS, PHOTOGRAPHY, SCIENCE_TECH, SPIRITUALITY_RELIGION_BELIEFS, SPORTS, THEATRE, WORKSHOPS_SKILL_SHARING
|
||||
"""@en ;
|
||||
rdfs:domain as:Event ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range xsd:string .
|
||||
@@ -0,0 +1,35 @@
|
||||
# displayEndTime
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/displayEndTime`
|
||||
|
||||
Label
|
||||
: Whether to display the endTime
|
||||
|
||||
Comment
|
||||
: A property that defines whether the end time of an event should be displayed.
|
||||
|
||||
Domain
|
||||
: [displayEndTime](https://w3id.org/fep/8a8e/displayEndTime)
|
||||
|
||||
Range
|
||||
: Boolean
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
Example usage of displayEndTime
|
||||
|
||||
```json
|
||||
{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
],
|
||||
"type": "Event",
|
||||
"displayEndTime": false
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>displayEndTime</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="displayEndTime" resource="https://w3id.org/fep/8a8e/displayEndTime" typeof="owl:DatatypeProperty">
|
||||
<h1>displayEndTime</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/displayEndTime</code></dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">Whether to display the endTime</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">A property that defines whether the end time of an event should be displayed.</dd>
|
||||
<dt>Domain</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e/displayEndTime" property="rdfs:domain">displayEndTime</a></dd>
|
||||
<dt>Range</dt>
|
||||
<dd property="rdfs:range" resource="xsd:boolean">Boolean</dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
</dl>
|
||||
<pre lang="json" title="Example usage of displayEndTime">
|
||||
<code>
|
||||
{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
],
|
||||
"type": "Event",
|
||||
"displayEndTime": false
|
||||
}
|
||||
</code>
|
||||
</pre>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/displayEndTime",
|
||||
"@type": [
|
||||
"http://www.w3.org/2002/07/owl#DatatypeProperty"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "A property that defines whether the end time of an event should be displayed."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/displayEndTime"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "Whether to display the endTime"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": [
|
||||
{
|
||||
"@id": "http://www.w3.org/2001/XMLSchema#boolean"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/displayEndTime">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
|
||||
<rdfs:label xml:lang="en">Whether to display the endTime</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">A property that defines whether the end time of an event should be displayed.</rdfs:comment>
|
||||
<rdfs:domain rdf:resource="https://w3id.org/fep/8a8e/displayEndTime"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,10 @@
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/displayEndTime> a owl:DatatypeProperty ;
|
||||
rdfs:label "Whether to display the endTime"@en ;
|
||||
rdfs:comment "A property that defines whether the end time of an event should be displayed."@en ;
|
||||
rdfs:domain <https://w3id.org/fep/8a8e/displayEndTime> ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range xsd:boolean .
|
||||
@@ -0,0 +1,45 @@
|
||||
# eventStatus
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/eventStatus`
|
||||
|
||||
Label
|
||||
: The events status is
|
||||
|
||||
Comment
|
||||
: An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.
|
||||
|
||||
Domain
|
||||
: [Event](https://www.w3.org/ns/activitystreams#Event)
|
||||
|
||||
Range
|
||||
: [EventStatusType](https://w3id.org/fep/8a8e/EventStatusType) (@vocab)
|
||||
|
||||
Required
|
||||
: No
|
||||
|
||||
Functional
|
||||
: Yes
|
||||
|
||||
See also
|
||||
: [EventCancelled](https://w3id.org/fep/8a8e/EventCancelled) | [EventScheduled](https://w3id.org/fep/8a8e/EventScheduled) | [EventTentative](https://w3id.org/fep/8a8e/EventTentative) | [EventMovedOnline](https://w3id.org/fep/8a8e/EventMovedOnline) | [EventPostponed](https://w3id.org/fep/8a8e/EventPostponed) | [EventRescheduled](https://w3id.org/fep/8a8e/EventRescheduled)
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
Example of a forward chronological OrderedCollection with additional context
|
||||
|
||||
```None
|
||||
{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e"
|
||||
"https://www.w3.org/ns/activitystreams",
|
||||
],
|
||||
"id": "https://domain.example/events/0",
|
||||
"type": "Event",
|
||||
"eventStatus": "eventScheduled",
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>eventStatus</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="eventStatus" resource="https://w3id.org/fep/8a8e/eventStatus" typeof="rdf:Property">
|
||||
<h1>eventStatus</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/eventStatus</code></dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">The events status is</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.</dd>
|
||||
<dt>Domain</dt>
|
||||
<dd><a href="https://www.w3.org/ns/activitystreams#Event" property="rdfs:domain" resource="as:Event">Event</a></dd>
|
||||
<dt>Range</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e/EventStatusType" property="rdfs:range" resource="https://w3id.org/fep/8a8e/EventStatusType">EventStatusType</a> (@vocab)</dd>
|
||||
<dt>Required</dt>
|
||||
<dd content="0" datatype="xsd:nonNegativeInteger" property="owl:minCardinality">No</dd>
|
||||
<dt>Functional</dt>
|
||||
<dd content="1" datatype="xsd:nonNegativeInteger" property="owl:maxCardinality">Yes</dd>
|
||||
<dt>See also</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e/EventCancelled" property="rdfs:seeAlso">EventCancelled</a> | <a href="https://w3id.org/fep/8a8e/EventScheduled" property="rdfs:seeAlso">EventScheduled</a> | <a href="https://w3id.org/fep/8a8e/EventTentative" property="rdfs:seeAlso">EventTentative</a> | <a href="https://w3id.org/fep/8a8e/EventMovedOnline" property="rdfs:seeAlso">EventMovedOnline</a> | <a href="https://w3id.org/fep/8a8e/EventPostponed" property="rdfs:seeAlso">EventPostponed</a> | <a href="https://w3id.org/fep/8a8e/EventRescheduled" property="rdfs:seeAlso">EventRescheduled</a></dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
</dl>
|
||||
<pre title="Example of a forward chronological OrderedCollection with additional context">
|
||||
<code>
|
||||
{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e"
|
||||
"https://www.w3.org/ns/activitystreams",
|
||||
],
|
||||
"id": "https://domain.example/events/0",
|
||||
"type": "Event",
|
||||
"eventStatus": "eventScheduled",
|
||||
}
|
||||
</code>
|
||||
</pre>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,67 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus",
|
||||
"@type": [
|
||||
"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": [
|
||||
{
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Event"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "The events status is"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventStatusType"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventCancelled"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventScheduled"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventTentative"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventMovedOnline"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventPostponed"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventRescheduled"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2002/07/owl#maxCardinality": [
|
||||
{
|
||||
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
|
||||
"@value": "1"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2002/07/owl#minCardinality": [
|
||||
{
|
||||
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
|
||||
"@value": "0"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/eventStatus">
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
<rdfs:label xml:lang="en">The events status is</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.</rdfs:comment>
|
||||
<rdfs:domain rdf:resource="https://www.w3.org/ns/activitystreams#Event"/>
|
||||
<rdfs:range rdf:resource="https://w3id.org/fep/8a8e/EventStatusType"/>
|
||||
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">0</owl:minCardinality>
|
||||
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventCancelled"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventScheduled"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventTentative"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventMovedOnline"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventPostponed"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventRescheduled"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,20 @@
|
||||
@prefix as: <https://www.w3.org/ns/activitystreams#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/eventStatus> a rdf:Property ;
|
||||
rdfs:label "The events status is"@en ;
|
||||
rdfs:comment "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled."@en ;
|
||||
rdfs:domain as:Event ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range <https://w3id.org/fep/8a8e/EventStatusType> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/EventCancelled>,
|
||||
<https://w3id.org/fep/8a8e/EventMovedOnline>,
|
||||
<https://w3id.org/fep/8a8e/EventPostponed>,
|
||||
<https://w3id.org/fep/8a8e/EventRescheduled>,
|
||||
<https://w3id.org/fep/8a8e/EventScheduled>,
|
||||
<https://w3id.org/fep/8a8e/EventTentative> ;
|
||||
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
|
||||
owl:minCardinality "0"^^xsd:nonNegativeInteger .
|
||||
@@ -0,0 +1,36 @@
|
||||
# externalParticipationUrl
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/externalParticipationUrl`
|
||||
|
||||
rdfs:label
|
||||
: External participation URL
|
||||
|
||||
rdfs:comment
|
||||
: A URL that points to an external platform where people can join the event or where they can buy tickets for the event. Required if [`joinMode`](https://w3id.org/fep/8a8e/) is set to `external`.
|
||||
|
||||
rdfs:domain
|
||||
: [as:Event](https://www.w3.org/ns/activitystreams#Event)
|
||||
|
||||
rdfs:range
|
||||
: xsd:anyURI
|
||||
|
||||
rdfs:isDefinedBy
|
||||
: [FEP‑8a8e](https://w3id.org/fep/8a8e)
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
Example usage of externalParticipationUrl
|
||||
|
||||
```json{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
],
|
||||
"type": "Event",
|
||||
"url": "http://example.org/events/1234",
|
||||
"joinMode": "external",
|
||||
"externalParticipationUrl": "https://www.meetup.com/somegroup/events/00000/"
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>externalParticipationUrl</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="externalParticipationUrl" resource="https://w3id.org/fep/8a8e/externalParticipationUrl" typeof="owl:DatatypeProperty">
|
||||
<h1>externalParticipationUrl</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/externalParticipationUrl</code></dd>
|
||||
<dt>rdfs:label</dt>
|
||||
<dd lang="en" property="rdfs:label">External participation URL</dd>
|
||||
<dt>rdfs:comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">
|
||||
A URL that points to an external platform where people can join the event or where they can buy tickets for the event. Required if <a href="https://w3id.org/fep/8a8e/"><code>joinMode</code></a> is set to <code>external</code>.
|
||||
</dd>
|
||||
<dt>rdfs:domain</dt>
|
||||
<dd><a href="https://www.w3.org/ns/activitystreams#Event" property="rdfs:domain">as:Event</a></dd>
|
||||
<dt>rdfs:range</dt>
|
||||
<dd property="rdfs:range" resource="xsd:anyURI">xsd:anyURI</dd>
|
||||
<dt>rdfs:isDefinedBy</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP‑8a8e</a></dd>
|
||||
</dl>
|
||||
<pre lang="json" title="Example usage of externalParticipationUrl">
|
||||
<code>{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
],
|
||||
"type": "Event",
|
||||
"url": "http://example.org/events/1234",
|
||||
"joinMode": "external",
|
||||
"externalParticipationUrl": "https://www.meetup.com/somegroup/events/00000/"
|
||||
}
|
||||
</code>
|
||||
</pre>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/externalParticipationUrl",
|
||||
"@type": [
|
||||
"http://www.w3.org/2002/07/owl#DatatypeProperty"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "\n A URL that points to an external platform where people can join the event or where they can buy tickets for the event. Required if joinMode is set to external.\n "
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": [
|
||||
{
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Event"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "External participation URL"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": [
|
||||
{
|
||||
"@id": "http://www.w3.org/2001/XMLSchema#anyURI"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/externalParticipationUrl">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
|
||||
<rdfs:label xml:lang="en">External participation URL</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">
|
||||
A URL that points to an external platform where people can join the event or where they can buy tickets for the event. Required if joinMode is set to external.
|
||||
</rdfs:comment>
|
||||
<rdfs:domain rdf:resource="https://www.w3.org/ns/activitystreams#Event"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#anyURI"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,13 @@
|
||||
@prefix as: <https://www.w3.org/ns/activitystreams#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/externalParticipationUrl> a owl:DatatypeProperty ;
|
||||
rdfs:label "External participation URL"@en ;
|
||||
rdfs:comment """
|
||||
A URL that points to an external platform where people can join the event or where they can buy tickets for the event. Required if joinMode is set to external.
|
||||
"""@en ;
|
||||
rdfs:domain as:Event ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range xsd:anyURI .
|
||||
@@ -0,0 +1,526 @@
|
||||
{
|
||||
"@context": {
|
||||
"AttendeesCollection": "https://w3id.org/fep/8a8e/AttendeesCollection",
|
||||
"EventCancelled": "https://w3id.org/fep/8a8e/EventCancelled",
|
||||
"EventMovedOnline": "https://w3id.org/fep/8a8e/EventMovedOnline",
|
||||
"EventPostponed": "https://w3id.org/fep/8a8e/EventPostponed",
|
||||
"EventRescheduled": "https://w3id.org/fep/8a8e/EventRescheduled",
|
||||
"EventStatusType": "https://w3id.org/fep/8a8e/EventStatusType",
|
||||
"EventTentative": "https://w3id.org/fep/8a8e/EventTentative",
|
||||
"OrganizersCollection": "https://w3id.org/fep/8a8e/OrganizersCollection",
|
||||
"attendees": "https://w3id.org/fep/8a8e/attendees",
|
||||
"category": {
|
||||
"@container": "@list",
|
||||
"@id": "https://w3id.org/fep/8a8e/category"
|
||||
},
|
||||
"displayEndTime": {
|
||||
"@id": "https://w3id.org/fep/8a8e/displayEndTime",
|
||||
"@type": "http://www.w3.org/2001/XMLSchema#boolean"
|
||||
},
|
||||
"eventStatus": {
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus",
|
||||
"@type": "@vocab"
|
||||
},
|
||||
"externalParticipationUrl": "https://w3id.org/fep/8a8e/externalParticipationUrl",
|
||||
"isBannerImage": "https://w3id.org/fep/8a8e/isBannerImage",
|
||||
"joinMode": "https://w3id.org/fep/8a8e/joinMode",
|
||||
"organizers": "https://w3id.org/fep/8a8e/organizers",
|
||||
"previousStartTime": {
|
||||
"@id": "https://w3id.org/fep/8a8e/previousStartTime",
|
||||
"@type": "@vocab"
|
||||
},
|
||||
"requiredJoinVisibility": {
|
||||
"@container": "@list",
|
||||
"@id": "https://w3id.org/fep/8a8e/requiredJoinVisibility",
|
||||
"@type": "http://www.w3.org/2001/XMLSchema#anyURI"
|
||||
},
|
||||
"timezone": "https://w3id.org/fep/8a8e/timezone",
|
||||
"upcomingEvents": {
|
||||
"@id": "https://w3id.org/fep/8a8e/upcomingEvents",
|
||||
"@type": "@id"
|
||||
}
|
||||
},
|
||||
"@graph": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/displayEndTime",
|
||||
"@type": "http://www.w3.org/2002/07/owl#DatatypeProperty",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "A property that defines whether the end time of an event should be displayed."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": {
|
||||
"@id": "https://w3id.org/fep/8a8e/displayEndTime"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "Whether to display the endTime"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": {
|
||||
"@id": "http://www.w3.org/2001/XMLSchema#boolean"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/timezone",
|
||||
"@type": "http://www.w3.org/2002/07/owl#ObjectProperty",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "Indicates the timezone for which the time(s) indicated in the event are given. The value provided should be among those listed in the IANA Time Zone Database."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "The timezone of an Event"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": {
|
||||
"@id": "http://www.w3.org/2000/01/rdf-schema#Literal"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventTentative",
|
||||
"@type": "http://www.w3.org/2000/01/rdf-schema#Class",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "The event is currently being planned but not confirmed."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "The event is tentative"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": {
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": {
|
||||
"@id": "https://w3id.org/fep/8a8e/EventStatusType"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/requiredJoinVisibility",
|
||||
"@type": "http://www.w3.org/2002/07/owl#ObjectProperty",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "\n Specifies the minimum audience that must be addressed in a valid Join activity related to the event. This can include individual actors, groups, the as:Public collection, or any other URI. The Join activity must be addressed accordingly (e.g., using to, cc, bto, or audience).\n "
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": {
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Event"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "Required Join Visibility"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": {
|
||||
"@id": "http://www.w3.org/2001/XMLSchema#anyURI"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventPostponed",
|
||||
"@type": "http://www.w3.org/2000/01/rdf-schema#Class",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "The event has been postponed and no new date has been set. The event's previousStartTime should be set."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "The event has been postponed."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": {
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": {
|
||||
"@id": "https://w3id.org/fep/8a8e/EventStatusType"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/joinMode",
|
||||
"@type": "http://www.w3.org/2002/07/owl#ObjectProperty",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "\n Indicator of how new members may be able to join an event.\n Accepted values: free, restricted, external, none, invite.\n If external, you must also set externalParticipationUrl.\n "
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": {
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Event"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e/"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "Join mode"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": {
|
||||
"@id": "http://www.w3.org/2001/XMLSchema#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/externalParticipationUrl",
|
||||
"@type": "http://www.w3.org/2002/07/owl#DatatypeProperty",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "\n A URL that points to an external platform where people can join the event or where they can buy tickets for the event. Required if joinMode is set to external.\n "
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": {
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Event"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "External participation URL"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": {
|
||||
"@id": "http://www.w3.org/2001/XMLSchema#anyURI"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventCancelled",
|
||||
"@type": "http://www.w3.org/2000/01/rdf-schema#Class",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "The event has been cancelled."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "The event has been cancelled."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventPostponed"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventRescheduled"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": {
|
||||
"@id": "https://w3id.org/fep/8a8e/EventStatusType"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/upcomingEvents",
|
||||
"@type": "http://www.w3.org/2002/07/owl#ObjectProperty",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "An ActivityStreams OrderedCollection of Event objects that have a startTime property in the future, sorted by startTime with the earliest first."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "Ordered collection of upcoming Events"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": {
|
||||
"@id": "https://www.w3.org/ns/activitystreams#OrderedCollection"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/isBannerImage",
|
||||
"@type": "http://www.w3.org/2002/07/owl#DatatypeProperty",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "\n Whether an image is an (events) banner image.\n "
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": {
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Image"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "Image is a banner image"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": {
|
||||
"@id": "http://www.w3.org/2001/XMLSchema#boolean"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventRescheduled",
|
||||
"@type": "http://www.w3.org/2000/01/rdf-schema#Class",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "The event's previousStartTime should be set to the old date and the startTime should be set to the event's new start date."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "The event has been rescheduled."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": {
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": {
|
||||
"@id": "https://w3id.org/fep/8a8e/EventStatusType"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus",
|
||||
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": {
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Event"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "The events status is"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": {
|
||||
"@id": "https://w3id.org/fep/8a8e/EventStatusType"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventCancelled"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventRescheduled"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventScheduled"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventTentative"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventPostponed"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventMovedOnline"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2002/07/owl#maxCardinality": {
|
||||
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
|
||||
"@value": "1"
|
||||
},
|
||||
"http://www.w3.org/2002/07/owl#minCardinality": {
|
||||
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
|
||||
"@value": "0"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/attendees",
|
||||
"@type": "http://www.w3.org/2002/07/owl#ObjectProperty",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": ""
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "Attendees of an Event"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": {
|
||||
"@id": "http://www.w3.org/2000/01/rdf-schema#Resource"
|
||||
},
|
||||
"http://www.w3.org/2002/07/owl#minCardinality": {
|
||||
"@type": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
|
||||
"@value": "0"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/OrganizersCollection",
|
||||
"@type": "http://www.w3.org/2000/01/rdf-schema#Class",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "Inherits all properties from https://www.w3.org/ns/activitystreams#Collection with the addition that the items may also include https://schema.org/Person or https://schema.org/Organization."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "An Event's Organizer Collection"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": {
|
||||
"@id": "https://w3id.org/fep/8a8e/organizers"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": {
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Collection"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/organizers",
|
||||
"@type": "http://www.w3.org/2002/07/owl#ObjectProperty",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "An ActivityStreams Collection collection that lists the entities that are disclosed to as organizers of an event. If set to null this explicitly indicates a deliberate choice to withhold organizer information."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "Organizers Collection"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": {
|
||||
"@id": "https://w3id.org/fep/8a8e/OrganizersCollection"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/AttendeesCollection",
|
||||
"@type": "http://www.w3.org/2000/01/rdf-schema#Class",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "\n Inherits all properties from https://www.w3.org/ns/activitystreams#Collection with the addition that the items may also include https://schema.org/Person or https://schema.org/Organization.\n The items of the AttendeesCollection are entities that are confirmed attendees by an Events organizer(s). It contains all ActivityPub actors that meet one or more of the following conditions, added as a side effect.\n \nThe actor has sent a Join activity with this object as the object property that has been answered with an Accept.\nThe actor has responded to an Invite activity from the Event's owner (where the Event is specified as the object property) with an Accept activity.\n\n The items MAY be filtered on privileges of an authenticated user or as appropriate when no authentication is given. This collection *SHOULD* have the totalItems set in any case.\n "
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "A Collection of the Event's attendees"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": {
|
||||
"@id": "https://w3id.org/fep/8a8e/attendees"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": {
|
||||
"@id": "https://www.w3.org/ns/activitystreams#OrderedCollection"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/category",
|
||||
"@type": "http://www.w3.org/2002/07/owl#DatatypeProperty",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "Recommended event categories include: ARTS, AUTO_BOAT_AIR, BOOK_CLUBS, BUSINESS, CAUSES, CLIMATE_ENVIRONMENT, COMMUNITY, COMEDY, CRAFTS, CREATIVE_JAM, DIY_MAKER_SPACES, FAMILY_EDUCATION, FASHION_BEAUTY, FESTIVALS, FILM_MEDIA, FOOD_DRINK, GAMES, INCLUSIVE_SPACES, LANGUAGE_CULTURE, LEARNING, LGBTQ, MEETING, MEDITATION_WELLBEING, MOVEMENTS_POLITICS, MUSIC, NETWORKING, OUTDOORS_ADVENTURE, PARTY, PERFORMING_VISUAL_ARTS, PETS, PHOTOGRAPHY, SCIENCE_TECH, SPIRITUALITY_RELIGION_BELIEFS, SPORTS, THEATRE, WORKSHOPS_SKILL_SHARING\n"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": {
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Event"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "The category of an Event"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": {
|
||||
"@id": "http://www.w3.org/2001/XMLSchema#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventMovedOnline",
|
||||
"@type": "http://www.w3.org/2000/01/rdf-schema#Class",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "Indicates that the event was changed to allow online participation."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "The event moved online."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": {
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": {
|
||||
"@id": "https://w3id.org/fep/8a8e/EventStatusType"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventStatusType",
|
||||
"@type": "http://www.w3.org/2000/01/rdf-schema#Class",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "EventStatusType is an enumeration type whose instances represent several states that an Event may be in."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": {
|
||||
"@id": "https://w3id.org/fep/8a8e/eventStatus"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#subClassOf": {
|
||||
"@id": "https://schema.org/EventStatusType"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e",
|
||||
"@type": "http://www.w3.org/2002/07/owl#Ontology",
|
||||
"http://purl.org/dc/elements/1.1/creator": [
|
||||
"André Menrath <andre.menrath@posteo.de>",
|
||||
"les <lesion@autistici.org>"
|
||||
],
|
||||
"http://purl.org/dc/elements/1.1/rights": {
|
||||
"@language": "en",
|
||||
"@value": "CC0 1.0 Universal (CC0 1.0) Public Domain Dedication"
|
||||
},
|
||||
"http://purl.org/dc/terms/abstract": "ActivityStreams defines the Object Type Event. In real-world applications, the event object immediately showed the need for extension. Applications featuring Event objects have often chosen to add additional attributes and clarifications (i.e., interpretations) in order to implement their particular use case. This proposal clarifies and extends the ActivityPub standard to address the needs that have arisen in real-world implementations.",
|
||||
"http://purl.org/dc/terms/dateSubmitted": {
|
||||
"@type": "http://www.w3.org/2001/XMLSchema#date",
|
||||
"@value": "2025-04-23"
|
||||
},
|
||||
"http://purl.org/dc/terms/identifier": {
|
||||
"@type": "http://www.w3.org/2001/XMLSchema#anyURI",
|
||||
"@value": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://purl.org/dc/terms/license": {
|
||||
"@id": "https://creativecommons.org/publicdomain/zero/1.0/"
|
||||
},
|
||||
"http://purl.org/dc/terms/title": "FEP-8a8e: A common approach to using the Event object type"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/previousStartTime",
|
||||
"@type": "http://www.w3.org/2002/07/owl#DatatypeProperty",
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": {
|
||||
"@language": "en",
|
||||
"@value": "The events previous start time is the old start time before an event got postponed or rescheduled."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": {
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Event"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": {
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": {
|
||||
"@language": "en",
|
||||
"@value": "The event previous start time."
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": {
|
||||
"@id": "http://www.w3.org/2001/XMLSchema#dateTime"
|
||||
},
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventRescheduled"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventPostponed"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,208 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/EventMovedOnline">
|
||||
<rdfs:label xml:lang="en">The event moved online.</rdfs:label>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:comment xml:lang="en">Indicates that the event was changed to allow online participation.</rdfs:comment>
|
||||
<rdfs:subClassOf rdf:resource="https://w3id.org/fep/8a8e/EventStatusType"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/eventStatus"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/EventPostponed">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:label xml:lang="en">The event has been postponed.</rdfs:label>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/eventStatus"/>
|
||||
<rdfs:comment xml:lang="en">The event has been postponed and no new date has been set. The event's previousStartTime should be set.</rdfs:comment>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:subClassOf rdf:resource="https://w3id.org/fep/8a8e/EventStatusType"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/joinMode">
|
||||
<rdfs:domain rdf:resource="https://www.w3.org/ns/activitystreams#Event"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<rdfs:comment xml:lang="en">
|
||||
Indicator of how new members may be able to join an event.
|
||||
Accepted values: free, restricted, external, none, invite.
|
||||
If external, you must also set externalParticipationUrl.
|
||||
</rdfs:comment>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e/"/>
|
||||
<rdfs:label xml:lang="en">Join mode</rdfs:label>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/upcomingEvents">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:range rdf:resource="https://www.w3.org/ns/activitystreams#OrderedCollection"/>
|
||||
<rdfs:label xml:lang="en">Ordered collection of upcoming Events</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">An ActivityStreams OrderedCollection of Event objects that have a startTime property in the future, sorted by startTime with the earliest first.</rdfs:comment>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/attendees">
|
||||
<rdfs:comment xml:lang="en"></rdfs:comment>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:label xml:lang="en">Attendees of an Event</rdfs:label>
|
||||
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">0</owl:minCardinality>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/isBannerImage">
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:comment xml:lang="en">
|
||||
Whether an image is an (events) banner image.
|
||||
</rdfs:comment>
|
||||
<rdfs:label xml:lang="en">Image is a banner image</rdfs:label>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
|
||||
<rdfs:domain rdf:resource="https://www.w3.org/ns/activitystreams#Image"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/eventStatus">
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventCancelled"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventRescheduled"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventScheduled"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventTentative"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventPostponed"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventMovedOnline"/>
|
||||
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
<rdfs:range rdf:resource="https://w3id.org/fep/8a8e/EventStatusType"/>
|
||||
<rdfs:domain rdf:resource="https://www.w3.org/ns/activitystreams#Event"/>
|
||||
<rdfs:comment xml:lang="en">An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.</rdfs:comment>
|
||||
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">0</owl:minCardinality>
|
||||
<rdfs:label xml:lang="en">The events status is</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/EventStatusType">
|
||||
<rdfs:subClassOf rdf:resource="https://schema.org/EventStatusType"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/eventStatus"/>
|
||||
<rdfs:comment xml:lang="en">EventStatusType is an enumeration type whose instances represent several states that an Event may be in.</rdfs:comment>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:label xml:lang="en">8a8e</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/>
|
||||
<dcterms:identifier rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://w3id.org/fep/8a8e</dcterms:identifier>
|
||||
<dc:rights xml:lang="en">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</dc:rights>
|
||||
<dcterms:license rdf:resource="https://creativecommons.org/publicdomain/zero/1.0/"/>
|
||||
<dcterms:title>FEP-8a8e: A common approach to using the Event object type</dcterms:title>
|
||||
<dcterms:abstract>ActivityStreams defines the Object Type Event. In real-world applications, the event object immediately showed the need for extension. Applications featuring Event objects have often chosen to add additional attributes and clarifications (i.e., interpretations) in order to implement their particular use case. This proposal clarifies and extends the ActivityPub standard to address the needs that have arisen in real-world implementations.</dcterms:abstract>
|
||||
<dc:creator>André Menrath <andre.menrath@posteo.de></dc:creator>
|
||||
<dc:creator>les <lesion@autistici.org></dc:creator>
|
||||
<dcterms:dateSubmitted rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2025-04-23</dcterms:dateSubmitted>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/displayEndTime">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
|
||||
<rdfs:label xml:lang="en">Whether to display the endTime</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">A property that defines whether the end time of an event should be displayed.</rdfs:comment>
|
||||
<rdfs:domain rdf:resource="https://w3id.org/fep/8a8e/displayEndTime"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/EventRescheduled">
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:label xml:lang="en">The event has been rescheduled.</rdfs:label>
|
||||
<rdfs:subClassOf rdf:resource="https://w3id.org/fep/8a8e/EventStatusType"/>
|
||||
<rdfs:comment xml:lang="en">The event's previousStartTime should be set to the old date and the startTime should be set to the event's new start date.</rdfs:comment>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/eventStatus"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/requiredJoinVisibility">
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#anyURI"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:domain rdf:resource="https://www.w3.org/ns/activitystreams#Event"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<rdfs:label xml:lang="en">Required Join Visibility</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">
|
||||
Specifies the minimum audience that must be addressed in a valid Join activity related to the event. This can include individual actors, groups, the as:Public collection, or any other URI. The Join activity must be addressed accordingly (e.g., using to, cc, bto, or audience).
|
||||
</rdfs:comment>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/previousStartTime">
|
||||
<rdfs:domain rdf:resource="https://www.w3.org/ns/activitystreams#Event"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
|
||||
<rdfs:label xml:lang="en">The event previous start time.</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">The events previous start time is the old start time before an event got postponed or rescheduled.</rdfs:comment>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventRescheduled"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventPostponed"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/category">
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
|
||||
<rdfs:comment xml:lang="en">Recommended event categories include: ARTS, AUTO_BOAT_AIR, BOOK_CLUBS, BUSINESS, CAUSES, CLIMATE_ENVIRONMENT, COMMUNITY, COMEDY, CRAFTS, CREATIVE_JAM, DIY_MAKER_SPACES, FAMILY_EDUCATION, FASHION_BEAUTY, FESTIVALS, FILM_MEDIA, FOOD_DRINK, GAMES, INCLUSIVE_SPACES, LANGUAGE_CULTURE, LEARNING, LGBTQ, MEETING, MEDITATION_WELLBEING, MOVEMENTS_POLITICS, MUSIC, NETWORKING, OUTDOORS_ADVENTURE, PARTY, PERFORMING_VISUAL_ARTS, PETS, PHOTOGRAPHY, SCIENCE_TECH, SPIRITUALITY_RELIGION_BELIEFS, SPORTS, THEATRE, WORKSHOPS_SKILL_SHARING
|
||||
</rdfs:comment>
|
||||
<rdfs:domain rdf:resource="https://www.w3.org/ns/activitystreams#Event"/>
|
||||
<rdfs:label xml:lang="en">The category of an Event</rdfs:label>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/AttendeesCollection">
|
||||
<rdfs:label xml:lang="en">A Collection of the Event's attendees</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/attendees"/>
|
||||
<rdfs:comment xml:lang="en">
|
||||
Inherits all properties from https://www.w3.org/ns/activitystreams#Collection with the addition that the items may also include https://schema.org/Person or https://schema.org/Organization.
|
||||
The items of the AttendeesCollection are entities that are confirmed attendees by an Events organizer(s). It contains all ActivityPub actors that meet one or more of the following conditions, added as a side effect.
|
||||
|
||||
The actor has sent a Join activity with this object as the object property that has been answered with an Accept.
|
||||
The actor has responded to an Invite activity from the Event's owner (where the Event is specified as the object property) with an Accept activity.
|
||||
|
||||
The items MAY be filtered on privileges of an authenticated user or as appropriate when no authentication is given. This collection *SHOULD* have the totalItems set in any case.
|
||||
</rdfs:comment>
|
||||
<rdfs:subClassOf rdf:resource="https://www.w3.org/ns/activitystreams#OrderedCollection"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/organizers">
|
||||
<rdfs:label xml:lang="en">Organizers Collection</rdfs:label>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:range rdf:resource="https://w3id.org/fep/8a8e/OrganizersCollection"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<rdfs:comment xml:lang="en">An ActivityStreams Collection collection that lists the entities that are disclosed to as organizers of an event. If set to null this explicitly indicates a deliberate choice to withhold organizer information.</rdfs:comment>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/externalParticipationUrl">
|
||||
<rdfs:domain rdf:resource="https://www.w3.org/ns/activitystreams#Event"/>
|
||||
<rdfs:label xml:lang="en">External participation URL</rdfs:label>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#anyURI"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:comment xml:lang="en">
|
||||
A URL that points to an external platform where people can join the event or where they can buy tickets for the event. Required if joinMode is set to external.
|
||||
</rdfs:comment>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/EventTentative">
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/eventStatus"/>
|
||||
<rdfs:comment xml:lang="en">The event is currently being planned but not confirmed.</rdfs:comment>
|
||||
<rdfs:label xml:lang="en">The event is tentative</rdfs:label>
|
||||
<rdfs:subClassOf rdf:resource="https://w3id.org/fep/8a8e/EventStatusType"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/EventCancelled">
|
||||
<rdfs:comment xml:lang="en">The event has been cancelled.</rdfs:comment>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventPostponed"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventRescheduled"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/eventStatus"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:subClassOf rdf:resource="https://w3id.org/fep/8a8e/EventStatusType"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:label xml:lang="en">The event has been cancelled.</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/OrganizersCollection">
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
||||
<rdfs:subClassOf rdf:resource="https://www.w3.org/ns/activitystreams#Collection"/>
|
||||
<rdfs:comment xml:lang="en">Inherits all properties from https://www.w3.org/ns/activitystreams#Collection with the addition that the items may also include https://schema.org/Person or https://schema.org/Organization.</rdfs:comment>
|
||||
<rdfs:label xml:lang="en">An Event's Organizer Collection</rdfs:label>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/organizers"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/timezone">
|
||||
<rdfs:label xml:lang="en">The timezone of an Event</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">Indicates the timezone for which the time(s) indicated in the event are given. The value provided should be among those listed in the IANA Time Zone Database.</rdfs:comment>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,187 @@
|
||||
@prefix as: <https://www.w3.org/ns/activitystreams#> .
|
||||
@prefix dc: <http://purl.org/dc/elements/1.1/> .
|
||||
@prefix dcterms: <http://purl.org/dc/terms/> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix schema: <https://schema.org/> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/AttendeesCollection> a rdfs:Class ;
|
||||
rdfs:label "A Collection of the Event's attendees"@en ;
|
||||
rdfs:comment """
|
||||
Inherits all properties from https://www.w3.org/ns/activitystreams#Collection with the addition that the items may also include https://schema.org/Person or https://schema.org/Organization.
|
||||
The items of the AttendeesCollection are entities that are confirmed attendees by an Events organizer(s). It contains all ActivityPub actors that meet one or more of the following conditions, added as a side effect.
|
||||
|
||||
The actor has sent a Join activity with this object as the object property that has been answered with an Accept.
|
||||
The actor has responded to an Invite activity from the Event's owner (where the Event is specified as the object property) with an Accept activity.
|
||||
|
||||
The items MAY be filtered on privileges of an authenticated user or as appropriate when no authentication is given. This collection *SHOULD* have the totalItems set in any case.
|
||||
"""@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/attendees> ;
|
||||
rdfs:subClassOf as:OrderedCollection .
|
||||
|
||||
<https://w3id.org/fep/8a8e/EventCancelled> a rdfs:Class ;
|
||||
rdfs:label "The event has been cancelled."@en ;
|
||||
rdfs:comment "The event has been cancelled."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/EventPostponed>,
|
||||
<https://w3id.org/fep/8a8e/EventRescheduled>,
|
||||
<https://w3id.org/fep/8a8e/eventStatus> ;
|
||||
rdfs:subClassOf <https://w3id.org/fep/8a8e/EventStatusType> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/EventMovedOnline> a rdfs:Class ;
|
||||
rdfs:label "The event moved online."@en ;
|
||||
rdfs:comment "Indicates that the event was changed to allow online participation."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/eventStatus> ;
|
||||
rdfs:subClassOf <https://w3id.org/fep/8a8e/EventStatusType> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/EventPostponed> a rdfs:Class ;
|
||||
rdfs:label "The event has been postponed."@en ;
|
||||
rdfs:comment "The event has been postponed and no new date has been set. The event's previousStartTime should be set."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/eventStatus> ;
|
||||
rdfs:subClassOf <https://w3id.org/fep/8a8e/EventStatusType> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/EventRescheduled> a rdfs:Class ;
|
||||
rdfs:label "The event has been rescheduled."@en ;
|
||||
rdfs:comment "The event's previousStartTime should be set to the old date and the startTime should be set to the event's new start date."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/eventStatus> ;
|
||||
rdfs:subClassOf <https://w3id.org/fep/8a8e/EventStatusType> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/EventStatusType> a rdfs:Class ;
|
||||
rdfs:label "8a8e"@en ;
|
||||
rdfs:comment "EventStatusType is an enumeration type whose instances represent several states that an Event may be in."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/eventStatus> ;
|
||||
rdfs:subClassOf schema:EventStatusType .
|
||||
|
||||
<https://w3id.org/fep/8a8e/EventTentative> a rdfs:Class ;
|
||||
rdfs:label "The event is tentative"@en ;
|
||||
rdfs:comment "The event is currently being planned but not confirmed."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/eventStatus> ;
|
||||
rdfs:subClassOf <https://w3id.org/fep/8a8e/EventStatusType> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/OrganizersCollection> a rdfs:Class ;
|
||||
rdfs:label "An Event's Organizer Collection"@en ;
|
||||
rdfs:comment "Inherits all properties from https://www.w3.org/ns/activitystreams#Collection with the addition that the items may also include https://schema.org/Person or https://schema.org/Organization."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/organizers> ;
|
||||
rdfs:subClassOf as:Collection .
|
||||
|
||||
<https://w3id.org/fep/8a8e/category> a owl:DatatypeProperty ;
|
||||
rdfs:label "The category of an Event"@en ;
|
||||
rdfs:comment """Recommended event categories include: ARTS, AUTO_BOAT_AIR, BOOK_CLUBS, BUSINESS, CAUSES, CLIMATE_ENVIRONMENT, COMMUNITY, COMEDY, CRAFTS, CREATIVE_JAM, DIY_MAKER_SPACES, FAMILY_EDUCATION, FASHION_BEAUTY, FESTIVALS, FILM_MEDIA, FOOD_DRINK, GAMES, INCLUSIVE_SPACES, LANGUAGE_CULTURE, LEARNING, LGBTQ, MEETING, MEDITATION_WELLBEING, MOVEMENTS_POLITICS, MUSIC, NETWORKING, OUTDOORS_ADVENTURE, PARTY, PERFORMING_VISUAL_ARTS, PETS, PHOTOGRAPHY, SCIENCE_TECH, SPIRITUALITY_RELIGION_BELIEFS, SPORTS, THEATRE, WORKSHOPS_SKILL_SHARING
|
||||
"""@en ;
|
||||
rdfs:domain as:Event ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range xsd:string .
|
||||
|
||||
<https://w3id.org/fep/8a8e/externalParticipationUrl> a owl:DatatypeProperty ;
|
||||
rdfs:label "External participation URL"@en ;
|
||||
rdfs:comment """
|
||||
A URL that points to an external platform where people can join the event or where they can buy tickets for the event. Required if joinMode is set to external.
|
||||
"""@en ;
|
||||
rdfs:domain as:Event ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range xsd:anyURI .
|
||||
|
||||
<https://w3id.org/fep/8a8e/isBannerImage> a owl:DatatypeProperty ;
|
||||
rdfs:label "Image is a banner image"@en ;
|
||||
rdfs:comment """
|
||||
Whether an image is an (events) banner image.
|
||||
"""@en ;
|
||||
rdfs:domain as:Image ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range xsd:boolean .
|
||||
|
||||
<https://w3id.org/fep/8a8e/joinMode> a owl:ObjectProperty ;
|
||||
rdfs:label "Join mode"@en ;
|
||||
rdfs:comment """
|
||||
Indicator of how new members may be able to join an event.
|
||||
Accepted values: free, restricted, external, none, invite.
|
||||
If external, you must also set externalParticipationUrl.
|
||||
"""@en ;
|
||||
rdfs:domain as:Event ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e/> ;
|
||||
rdfs:range xsd:string .
|
||||
|
||||
<https://w3id.org/fep/8a8e/previousStartTime> a owl:DatatypeProperty ;
|
||||
rdfs:label "The event previous start time."@en ;
|
||||
rdfs:comment "The events previous start time is the old start time before an event got postponed or rescheduled."@en ;
|
||||
rdfs:domain as:Event ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range xsd:dateTime ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/EventPostponed>,
|
||||
<https://w3id.org/fep/8a8e/EventRescheduled> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/requiredJoinVisibility> a owl:ObjectProperty ;
|
||||
rdfs:label "Required Join Visibility"@en ;
|
||||
rdfs:comment """
|
||||
Specifies the minimum audience that must be addressed in a valid Join activity related to the event. This can include individual actors, groups, the as:Public collection, or any other URI. The Join activity must be addressed accordingly (e.g., using to, cc, bto, or audience).
|
||||
"""@en ;
|
||||
rdfs:domain as:Event ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range xsd:anyURI .
|
||||
|
||||
<https://w3id.org/fep/8a8e/timezone> a owl:ObjectProperty ;
|
||||
rdfs:label "The timezone of an Event"@en ;
|
||||
rdfs:comment "Indicates the timezone for which the time(s) indicated in the event are given. The value provided should be among those listed in the IANA Time Zone Database."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range rdfs:Literal .
|
||||
|
||||
<https://w3id.org/fep/8a8e/upcomingEvents> a owl:ObjectProperty ;
|
||||
rdfs:label "Ordered collection of upcoming Events"@en ;
|
||||
rdfs:comment "An ActivityStreams OrderedCollection of Event objects that have a startTime property in the future, sorted by startTime with the earliest first."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range as:OrderedCollection .
|
||||
|
||||
<https://w3id.org/fep/8a8e/attendees> a owl:ObjectProperty ;
|
||||
rdfs:label "Attendees of an Event"@en ;
|
||||
rdfs:comment ""@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range rdfs:Resource ;
|
||||
owl:minCardinality "0"^^xsd:nonNegativeInteger .
|
||||
|
||||
<https://w3id.org/fep/8a8e/displayEndTime> a owl:DatatypeProperty ;
|
||||
rdfs:label "Whether to display the endTime"@en ;
|
||||
rdfs:comment "A property that defines whether the end time of an event should be displayed."@en ;
|
||||
rdfs:domain <https://w3id.org/fep/8a8e/displayEndTime> ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range xsd:boolean .
|
||||
|
||||
<https://w3id.org/fep/8a8e/organizers> a owl:ObjectProperty ;
|
||||
rdfs:label "Organizers Collection"@en ;
|
||||
rdfs:comment "An ActivityStreams Collection collection that lists the entities that are disclosed to as organizers of an event. If set to null this explicitly indicates a deliberate choice to withhold organizer information."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range <https://w3id.org/fep/8a8e/OrganizersCollection> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/eventStatus> a rdf:Property ;
|
||||
rdfs:label "The events status is"@en ;
|
||||
rdfs:comment "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled."@en ;
|
||||
rdfs:domain as:Event ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range <https://w3id.org/fep/8a8e/EventStatusType> ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/EventCancelled>,
|
||||
<https://w3id.org/fep/8a8e/EventMovedOnline>,
|
||||
<https://w3id.org/fep/8a8e/EventPostponed>,
|
||||
<https://w3id.org/fep/8a8e/EventRescheduled>,
|
||||
<https://w3id.org/fep/8a8e/EventScheduled>,
|
||||
<https://w3id.org/fep/8a8e/EventTentative> ;
|
||||
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
|
||||
owl:minCardinality "0"^^xsd:nonNegativeInteger .
|
||||
|
||||
<https://w3id.org/fep/8a8e> a owl:Ontology ;
|
||||
dc:creator "André Menrath <andre.menrath@posteo.de>",
|
||||
"les <lesion@autistici.org>" ;
|
||||
dc:rights "CC0 1.0 Universal (CC0 1.0) Public Domain Dedication"@en ;
|
||||
dcterms:abstract "ActivityStreams defines the Object Type Event. In real-world applications, the event object immediately showed the need for extension. Applications featuring Event objects have often chosen to add additional attributes and clarifications (i.e., interpretations) in order to implement their particular use case. This proposal clarifies and extends the ActivityPub standard to address the needs that have arisen in real-world implementations." ;
|
||||
dcterms:dateSubmitted "2025-04-23"^^xsd:date ;
|
||||
dcterms:identifier "https://w3id.org/fep/8a8e"^^xsd:anyURI ;
|
||||
dcterms:license <https://creativecommons.org/publicdomain/zero/1.0/> ;
|
||||
dcterms:title "FEP-8a8e: A common approach to using the Event object type" .
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
# isBannerImage
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/isBannerImage`
|
||||
|
||||
rdfs:label
|
||||
: Image is a banner image
|
||||
|
||||
rdfs:comment
|
||||
: Whether an image is an (events) banner image.
|
||||
|
||||
rdfs:domain
|
||||
: [as:Image](https://www.w3.org/ns/activitystreams#Image)
|
||||
|
||||
rdfs:range
|
||||
: Boolean
|
||||
|
||||
rdfs:isDefinedBy
|
||||
: [FEP‑8a8e](https://w3id.org/fep/8a8e)
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
Example usage of isBannerImage
|
||||
|
||||
```json{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
],
|
||||
"type": "Event",
|
||||
"id": "https://example.org/new-year-party",
|
||||
"name": "New years party",
|
||||
"organizers": null,
|
||||
"startTime": "2014-12-31T23:00:00-08:00",
|
||||
"endTime": "2015-01-01T04:00:00-08:00",
|
||||
"image": {
|
||||
"type": "Image",
|
||||
"mediaType": "image/jpeg",
|
||||
"url": "https://example.com/images/new-year-party-flyer.png",
|
||||
"focalPoint": [
|
||||
-0.55,
|
||||
0.43
|
||||
]
|
||||
},
|
||||
"attachment": [
|
||||
{
|
||||
"type": "Image",
|
||||
"mediaType": "image/jpeg",
|
||||
"url": "https://example.com/images/new-year-party-banner.png",
|
||||
"witdh": 1000,
|
||||
"height": 500,
|
||||
"isBannerImage": true
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,61 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>isBannerImage</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="isBannerImage" resource="https://w3id.org/fep/8a8e/isBannerImage" typeof="owl:DatatypeProperty">
|
||||
<h1>isBannerImage</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/isBannerImage</code></dd>
|
||||
<dt>rdfs:label</dt>
|
||||
<dd lang="en" property="rdfs:label">Image is a banner image</dd>
|
||||
<dt>rdfs:comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">
|
||||
Whether an image is an (events) banner image.
|
||||
</dd>
|
||||
<dt>rdfs:domain</dt>
|
||||
<dd><a href="https://www.w3.org/ns/activitystreams#Image" property="rdfs:domain">as:Image</a></dd>
|
||||
<dt>rdfs:range</dt>
|
||||
<dd property="rdfs:range" resource="xsd:boolean">Boolean</dd>
|
||||
<dt>rdfs:isDefinedBy</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP‑8a8e</a></dd>
|
||||
</dl>
|
||||
<pre lang="json" title="Example usage of isBannerImage">
|
||||
<code>{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
],
|
||||
"type": "Event",
|
||||
"id": "https://example.org/new-year-party",
|
||||
"name": "New years party",
|
||||
"organizers": null,
|
||||
"startTime": "2014-12-31T23:00:00-08:00",
|
||||
"endTime": "2015-01-01T04:00:00-08:00",
|
||||
"image": {
|
||||
"type": "Image",
|
||||
"mediaType": "image/jpeg",
|
||||
"url": "https://example.com/images/new-year-party-flyer.png",
|
||||
"focalPoint": [
|
||||
-0.55,
|
||||
0.43
|
||||
]
|
||||
},
|
||||
"attachment": [
|
||||
{
|
||||
"type": "Image",
|
||||
"mediaType": "image/jpeg",
|
||||
"url": "https://example.com/images/new-year-party-banner.png",
|
||||
"witdh": 1000,
|
||||
"height": 500,
|
||||
"isBannerImage": true
|
||||
}
|
||||
]
|
||||
}
|
||||
</code>
|
||||
</pre>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/isBannerImage",
|
||||
"@type": [
|
||||
"http://www.w3.org/2002/07/owl#DatatypeProperty"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "\n Whether an image is an (events) banner image.\n "
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": [
|
||||
{
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Image"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "Image is a banner image"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": [
|
||||
{
|
||||
"@id": "http://www.w3.org/2001/XMLSchema#boolean"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/isBannerImage">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
|
||||
<rdfs:label xml:lang="en">Image is a banner image</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">
|
||||
Whether an image is an (events) banner image.
|
||||
</rdfs:comment>
|
||||
<rdfs:domain rdf:resource="https://www.w3.org/ns/activitystreams#Image"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,13 @@
|
||||
@prefix as: <https://www.w3.org/ns/activitystreams#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/isBannerImage> a owl:DatatypeProperty ;
|
||||
rdfs:label "Image is a banner image"@en ;
|
||||
rdfs:comment """
|
||||
Whether an image is an (events) banner image.
|
||||
"""@en ;
|
||||
rdfs:domain as:Image ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range xsd:boolean .
|
||||
@@ -0,0 +1,51 @@
|
||||
# joinMode
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/joinMode`
|
||||
|
||||
rdfs:label
|
||||
: Join mode
|
||||
|
||||
rdfs:comment
|
||||
: Indicator of how new members may be able to join an event.
|
||||
Accepted values: `free`, `restricted`, `external`, `none`, `invite`.
|
||||
If `external`, you must also set [`externalParticipationUrl`](https://w3id.org/fep/8a8e/externalParticipationUrl).
|
||||
|
||||
rdfs:domain
|
||||
: [as:Event](https://www.w3.org/ns/activitystreams#Event)
|
||||
|
||||
rdfs:range
|
||||
: A string
|
||||
|
||||
rdfs:isDefinedBy
|
||||
: [FEP‑8a8e](https://w3id.org/fep/8a8e/)
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
Example: restricted
|
||||
|
||||
```json{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
],
|
||||
"type": "Event",
|
||||
"url": "http://example.org/events/1234",
|
||||
"joinMode": "restricted"
|
||||
}
|
||||
```
|
||||
|
||||
Example: external
|
||||
|
||||
```json{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
],
|
||||
"type": "Event",
|
||||
"url": "http://example.org/events/1234",
|
||||
"joinMode": "external",
|
||||
"externalParticipationUrl": "https://www.escample.org/events/1234/participate"
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>joinMode</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="joinMode" resource="https://w3id.org/fep/8a8e/joinMode" typeof="owl:ObjectProperty">
|
||||
<h1>joinMode</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/joinMode</code></dd>
|
||||
<dt>rdfs:label</dt>
|
||||
<dd lang="en" property="rdfs:label">Join mode</dd>
|
||||
<dt>rdfs:comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">
|
||||
Indicator of how new members may be able to join an event.
|
||||
Accepted values: <code>free</code>, <code>restricted</code>, <code>external</code>, <code>none</code>, <code>invite</code>.
|
||||
If <code>external</code>, you must also set <a href="https://w3id.org/fep/8a8e/externalParticipationUrl"><code>externalParticipationUrl</code></a>.
|
||||
</dd>
|
||||
<dt>rdfs:domain</dt>
|
||||
<dd>
|
||||
<a href="https://www.w3.org/ns/activitystreams#Event" property="rdfs:domain">as:Event</a>
|
||||
</dd>
|
||||
<dt>rdfs:range</dt>
|
||||
<dd property="rdfs:range" resource="xsd:string">A string</dd>
|
||||
<dt>rdfs:isDefinedBy</dt>
|
||||
<dd>
|
||||
<a href="https://w3id.org/fep/8a8e/" property="rdfs:isDefinedBy">FEP‑8a8e</a>
|
||||
</dd>
|
||||
</dl>
|
||||
<pre lang="json" title="Example: restricted">
|
||||
<code>{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
],
|
||||
"type": "Event",
|
||||
"url": "http://example.org/events/1234",
|
||||
"joinMode": "restricted"
|
||||
}
|
||||
</code>
|
||||
</pre>
|
||||
<pre lang="json" title="Example: external">
|
||||
<code>{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
],
|
||||
"type": "Event",
|
||||
"url": "http://example.org/events/1234",
|
||||
"joinMode": "external",
|
||||
"externalParticipationUrl": "https://www.escample.org/events/1234/participate"
|
||||
}
|
||||
</code>
|
||||
</pre>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/joinMode",
|
||||
"@type": [
|
||||
"http://www.w3.org/2002/07/owl#ObjectProperty"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "\n Indicator of how new members may be able to join an event.\n Accepted values: free, restricted, external, none, invite.\n If external, you must also set externalParticipationUrl.\n "
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": [
|
||||
{
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Event"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "Join mode"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": [
|
||||
{
|
||||
"@id": "http://www.w3.org/2001/XMLSchema#string"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/joinMode">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<rdfs:label xml:lang="en">Join mode</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">
|
||||
Indicator of how new members may be able to join an event.
|
||||
Accepted values: free, restricted, external, none, invite.
|
||||
If external, you must also set externalParticipationUrl.
|
||||
</rdfs:comment>
|
||||
<rdfs:domain rdf:resource="https://www.w3.org/ns/activitystreams#Event"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e/"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,15 @@
|
||||
@prefix as: <https://www.w3.org/ns/activitystreams#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/joinMode> a owl:ObjectProperty ;
|
||||
rdfs:label "Join mode"@en ;
|
||||
rdfs:comment """
|
||||
Indicator of how new members may be able to join an event.
|
||||
Accepted values: free, restricted, external, none, invite.
|
||||
If external, you must also set externalParticipationUrl.
|
||||
"""@en ;
|
||||
rdfs:domain as:Event ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e/> ;
|
||||
rdfs:range xsd:string .
|
||||
@@ -0,0 +1,50 @@
|
||||
# organizers
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/organizers`
|
||||
|
||||
Label
|
||||
: Organizers Collection
|
||||
|
||||
Comment
|
||||
: An ActivityStreams Collection collection that lists the entities that are disclosed to as organizers of an event. If set to `null` this explicitly indicates a deliberate choice to withhold organizer information.
|
||||
|
||||
Range
|
||||
: [OrganizersCollection](https://w3id.org/fep/8a8e/OrganizersCollection) (SubType of of the Collection or OrderedCollection ActivityStreams Type) or `null`
|
||||
|
||||
Required
|
||||
: Yes
|
||||
|
||||
Functional
|
||||
: No
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
Example usage of organizers
|
||||
|
||||
```json
|
||||
{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams",
|
||||
{
|
||||
"sc": "http://schema.org#",
|
||||
}
|
||||
],
|
||||
"type": "Event",
|
||||
"organizers": {
|
||||
"type": "OrganizersCollection",
|
||||
"totalItems": 4,
|
||||
"items": [
|
||||
{ "type": "Actor", "name": "ActivityPub Group Actor", "id": "https://example.org/actors/group1"},
|
||||
{ "type": "Link", "href": "https://organizer1.example.org"},
|
||||
{ "type": "sc:Person", "name": "Alice" },
|
||||
{ "type": "sc:Organization", "name": "Event Co." }
|
||||
]
|
||||
}
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,51 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>organizers</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="organizers" resource="https://w3id.org/fep/8a8e/organizers" typeof="owl:ObjectProperty">
|
||||
<h1>organizers</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/organizers</code></dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">Organizers Collection</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">An ActivityStreams Collection collection that lists the entities that are disclosed to as organizers of an event. If set to <code>null</code> this explicitly indicates a deliberate choice to withhold organizer information.</dd>
|
||||
<dt>Range</dt>
|
||||
<dd property="rdfs:range" resource="https://w3id.org/fep/8a8e/OrganizersCollection"><a href="https://w3id.org/fep/8a8e/OrganizersCollection" target="_blank">OrganizersCollection</a> (SubType of of the Collection or OrderedCollection ActivityStreams Type) or <code>null</code></dd>
|
||||
<dt>Required</dt>
|
||||
<dd>Yes</dd>
|
||||
<dt>Functional</dt>
|
||||
<dd>No</dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
</dl>
|
||||
<pre lang="json" title="Example usage of organizers">
|
||||
<code>
|
||||
{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams",
|
||||
{
|
||||
"sc": "http://schema.org#",
|
||||
}
|
||||
],
|
||||
"type": "Event",
|
||||
"organizers": {
|
||||
"type": "OrganizersCollection",
|
||||
"totalItems": 4,
|
||||
"items": [
|
||||
{ "type": "Actor", "name": "ActivityPub Group Actor", "id": "https://example.org/actors/group1"},
|
||||
{ "type": "Link", "href": "https://organizer1.example.org"},
|
||||
{ "type": "sc:Person", "name": "Alice" },
|
||||
{ "type": "sc:Organization", "name": "Event Co." }
|
||||
]
|
||||
}
|
||||
}
|
||||
</code>
|
||||
</pre>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,30 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/organizers",
|
||||
"@type": [
|
||||
"http://www.w3.org/2002/07/owl#ObjectProperty"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "An ActivityStreams Collection collection that lists the entities that are disclosed to as organizers of an event. If set to null this explicitly indicates a deliberate choice to withhold organizer information."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "Organizers Collection"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/OrganizersCollection"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/organizers">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<rdfs:label xml:lang="en">Organizers Collection</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">An ActivityStreams Collection collection that lists the entities that are disclosed to as organizers of an event. If set to null this explicitly indicates a deliberate choice to withhold organizer information.</rdfs:comment>
|
||||
<rdfs:range rdf:resource="https://w3id.org/fep/8a8e/OrganizersCollection"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,8 @@
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/organizers> a owl:ObjectProperty ;
|
||||
rdfs:label "Organizers Collection"@en ;
|
||||
rdfs:comment "An ActivityStreams Collection collection that lists the entities that are disclosed to as organizers of an event. If set to null this explicitly indicates a deliberate choice to withhold organizer information."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range <https://w3id.org/fep/8a8e/OrganizersCollection> .
|
||||
@@ -0,0 +1,22 @@
|
||||
# previousStartTime
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/previousStartTime`
|
||||
|
||||
Label
|
||||
: The event previous start time.
|
||||
|
||||
Comment
|
||||
: The events previous start time is the old start time before an event got postponed or rescheduled.
|
||||
|
||||
Domain
|
||||
: [Event](https://www.w3.org/ns/activitystreams#Event)
|
||||
|
||||
Range
|
||||
: [xsd:dateTime](https://www.w3.org/TR/xmlschema-2/#dateTime) (@vocab)
|
||||
|
||||
See also
|
||||
: [EventPostponed](https://w3id.org/fep/8a8e/EventPostponed) | [EventRescheduled](https://w3id.org/fep/8a8e/EventRescheduled)
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
@@ -0,0 +1,28 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>previousStartTime</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="previousStartTime" resource="https://w3id.org/fep/8a8e/previousStartTime" typeof="owl:DatatypeProperty">
|
||||
<h1>previousStartTime</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/previousStartTime</code>
|
||||
</dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">The event previous start time.</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">The events previous start time is the old start time before an event got postponed or rescheduled.</dd>
|
||||
<dt>Domain</dt>
|
||||
<dd><a href="https://www.w3.org/ns/activitystreams#Event" property="rdfs:domain" resource="as:Event">Event</a></dd>
|
||||
<dt>Range</dt>
|
||||
<dd><a href="https://www.w3.org/TR/xmlschema-2/#dateTime" property="rdfs:range" resource="xsd:dateTime">xsd:dateTime</a> (@vocab)</dd>
|
||||
<dt>See also</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e/EventPostponed" property="rdfs:seeAlso">EventPostponed</a> | <a href="https://w3id.org/fep/8a8e/EventRescheduled" property="rdfs:seeAlso">EventRescheduled</a></dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
</dl>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,43 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/previousStartTime",
|
||||
"@type": [
|
||||
"http://www.w3.org/2002/07/owl#DatatypeProperty"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "The events previous start time is the old start time before an event got postponed or rescheduled."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": [
|
||||
{
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Event"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "The event previous start time."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": [
|
||||
{
|
||||
"@id": "http://www.w3.org/2001/XMLSchema#dateTime"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventPostponed"
|
||||
},
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/EventRescheduled"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/previousStartTime">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
|
||||
<rdfs:label xml:lang="en">The event previous start time.</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">The events previous start time is the old start time before an event got postponed or rescheduled.</rdfs:comment>
|
||||
<rdfs:domain rdf:resource="https://www.w3.org/ns/activitystreams#Event"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventPostponed"/>
|
||||
<rdfs:seeAlso rdf:resource="https://w3id.org/fep/8a8e/EventRescheduled"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,13 @@
|
||||
@prefix as: <https://www.w3.org/ns/activitystreams#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/previousStartTime> a owl:DatatypeProperty ;
|
||||
rdfs:label "The event previous start time."@en ;
|
||||
rdfs:comment "The events previous start time is the old start time before an event got postponed or rescheduled."@en ;
|
||||
rdfs:domain as:Event ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range xsd:dateTime ;
|
||||
rdfs:seeAlso <https://w3id.org/fep/8a8e/EventPostponed>,
|
||||
<https://w3id.org/fep/8a8e/EventRescheduled> .
|
||||
@@ -0,0 +1,52 @@
|
||||
# requiredJoinVisibility
|
||||
|
||||
Label
|
||||
: Required Join Visibility
|
||||
|
||||
Comment
|
||||
: Specifies the minimum audience that must be addressed in a valid `Join` activity related to the event. This can include individual actors, groups, the `as:Public` collection, or any other URI. The `Join` activity must be addressed accordingly (e.g., using `to`, `cc`, `bto`, or `audience`).
|
||||
|
||||
Domain
|
||||
: [as:Event](https://www.w3.org/ns/activitystreams#Event)
|
||||
|
||||
Range
|
||||
: A list of any addressed targets, i.e. URIs (@list)
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
Example usage of requiredJoinVisibility
|
||||
|
||||
```json{
|
||||
"@context": [
|
||||
"https://schema.org",
|
||||
"https://https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
],
|
||||
"type": "Event",
|
||||
"id": "https://example.org/yoga-workshop",
|
||||
"name": "Yoga Workshop with Alice and Bob",
|
||||
"startTime": "2014-12-12T18:00:00-08:00",
|
||||
"endTime": "2014-12-12T19:30:00-08:00",
|
||||
"attributedTo": "https://example.org/groups/fediyoga",
|
||||
"organizers": {
|
||||
"type": "OrganizersCollection",
|
||||
"id": "https://example.org/yoga-workshop/organizers",
|
||||
"totalItems": 3,
|
||||
"first": {
|
||||
"type": "CollectionPage",
|
||||
"partOf": "https://example.org/yoga-workshop/organizers",
|
||||
"items": [
|
||||
"https://example.org/users/bob",
|
||||
"https://example.org/users/alice",
|
||||
"https://example.org/groups/fediyoga"
|
||||
]
|
||||
},
|
||||
"joinMode": "restricted",
|
||||
"requiredJoinVisibility": [
|
||||
"https://example.org/yoga-with-alice/organizers"
|
||||
]
|
||||
}```
|
||||
@@ -0,0 +1,57 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>requiredJoinVisibility</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="requiredJoinVisibility" resource="https://w3id.org/fep/8a8e/requiredJoinVisibility" typeof="owl:ObjectProperty">
|
||||
<h1>requiredJoinVisibility</h1>
|
||||
<dl>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">Required Join Visibility</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">
|
||||
Specifies the minimum audience that must be addressed in a valid <code>Join</code> activity related to the event. This can include individual actors, groups, the <code>as:Public</code> collection, or any other URI. The <code>Join</code> activity must be addressed accordingly (e.g., using <code>to</code>, <code>cc</code>, <code>bto</code>, or <code>audience</code>).
|
||||
</dd>
|
||||
<dt>Domain</dt>
|
||||
<dd property="rdfs:domain"><a href="https://www.w3.org/ns/activitystreams#Event">as:Event</a></dd>
|
||||
<dt>Range</dt>
|
||||
<dd property="rdfs:range" resource="xsd:anyURI"> A list of any addressed targets, i.e. URIs (@list)</dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
</dl>
|
||||
<pre lang="json" title="Example usage of requiredJoinVisibility">
|
||||
<code>{
|
||||
"@context": [
|
||||
"https://schema.org",
|
||||
"https://https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
],
|
||||
"type": "Event",
|
||||
"id": "https://example.org/yoga-workshop",
|
||||
"name": "Yoga Workshop with Alice and Bob",
|
||||
"startTime": "2014-12-12T18:00:00-08:00",
|
||||
"endTime": "2014-12-12T19:30:00-08:00",
|
||||
"attributedTo": "https://example.org/groups/fediyoga",
|
||||
"organizers": {
|
||||
"type": "OrganizersCollection",
|
||||
"id": "https://example.org/yoga-workshop/organizers",
|
||||
"totalItems": 3,
|
||||
"first": {
|
||||
"type": "CollectionPage",
|
||||
"partOf": "https://example.org/yoga-workshop/organizers",
|
||||
"items": [
|
||||
"https://example.org/users/bob",
|
||||
"https://example.org/users/alice",
|
||||
"https://example.org/groups/fediyoga"
|
||||
]
|
||||
},
|
||||
"joinMode": "restricted",
|
||||
"requiredJoinVisibility": [
|
||||
"https://example.org/yoga-with-alice/organizers"
|
||||
]
|
||||
}</code>
|
||||
</pre>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/requiredJoinVisibility",
|
||||
"@type": [
|
||||
"http://www.w3.org/2002/07/owl#ObjectProperty"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "\n Specifies the minimum audience that must be addressed in a valid Join activity related to the event. This can include individual actors, groups, the as:Public collection, or any other URI. The Join activity must be addressed accordingly (e.g., using to, cc, bto, or audience).\n "
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#domain": [
|
||||
{
|
||||
"@id": "https://www.w3.org/ns/activitystreams#Event"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "Required Join Visibility"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": [
|
||||
{
|
||||
"@id": "http://www.w3.org/2001/XMLSchema#anyURI"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/requiredJoinVisibility">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<rdfs:label xml:lang="en">Required Join Visibility</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">
|
||||
Specifies the minimum audience that must be addressed in a valid Join activity related to the event. This can include individual actors, groups, the as:Public collection, or any other URI. The Join activity must be addressed accordingly (e.g., using to, cc, bto, or audience).
|
||||
</rdfs:comment>
|
||||
<rdfs:domain rdf:resource="https://www.w3.org/ns/activitystreams#Event"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#anyURI"/>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,13 @@
|
||||
@prefix as: <https://www.w3.org/ns/activitystreams#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/requiredJoinVisibility> a owl:ObjectProperty ;
|
||||
rdfs:label "Required Join Visibility"@en ;
|
||||
rdfs:comment """
|
||||
Specifies the minimum audience that must be addressed in a valid Join activity related to the event. This can include individual actors, groups, the as:Public collection, or any other URI. The Join activity must be addressed accordingly (e.g., using to, cc, bto, or audience).
|
||||
"""@en ;
|
||||
rdfs:domain as:Event ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range xsd:anyURI .
|
||||
@@ -0,0 +1,43 @@
|
||||
# timezone
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/timezone`
|
||||
|
||||
Label
|
||||
: The timezone of an Event
|
||||
|
||||
Comment
|
||||
: Indicates the timezone for which the time(s) indicated in the event are given. The value provided should be among those listed in the IANA Time Zone Database.
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
|
||||
Range
|
||||
: IANA Time Zone identifier
|
||||
|
||||
Required
|
||||
: No
|
||||
|
||||
Functional
|
||||
: No
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
Example usage of timezone
|
||||
|
||||
```json
|
||||
{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
]
|
||||
"type": "Event",
|
||||
"id": "https://example.org/events/new-years-party",
|
||||
"name": "New years party",
|
||||
"startTime": "2014-12-31T23:00:00Z",
|
||||
"endTime": "2015-01-01T06:00:00Z",
|
||||
"timezone": "Europe/Vienna",
|
||||
"organizers": null,
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>timezone</title>
|
||||
</head>
|
||||
<body>
|
||||
<section id="timezone" resource="https://w3id.org/fep/8a8e/timezone" typeof="owl:ObjectProperty">
|
||||
<h1>timezone</h1>
|
||||
<dl>
|
||||
<dt>URI</dt>
|
||||
<dd><code>https://w3id.org/fep/8a8e/timezone</code></dd>
|
||||
<dt>Label</dt>
|
||||
<dd lang="en" property="rdfs:label">The timezone of an Event</dd>
|
||||
<dt>Comment</dt>
|
||||
<dd lang="en" property="rdfs:comment">Indicates the timezone for which the time(s) indicated in the event are given. The value provided should be among those listed in the IANA Time Zone Database.</dd>
|
||||
<dt>Is defined by</dt>
|
||||
<dd><a href="https://w3id.org/fep/8a8e" property="rdfs:isDefinedBy">FEP-8a8e</a></dd>
|
||||
<dt>Range</dt>
|
||||
<dd property="rdfs:range" resource="rdfs:Literal">IANA Time Zone identifier</dd>
|
||||
<dt>Required</dt>
|
||||
<dd>No</dd>
|
||||
<dt>Functional</dt>
|
||||
<dd>No</dd>
|
||||
</dl>
|
||||
<pre lang="json" title="Example usage of timezone">
|
||||
<code>
|
||||
{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
]
|
||||
"type": "Event",
|
||||
"id": "https://example.org/events/new-years-party",
|
||||
"name": "New years party",
|
||||
"startTime": "2014-12-31T23:00:00Z",
|
||||
"endTime": "2015-01-01T06:00:00Z",
|
||||
"timezone": "Europe/Vienna",
|
||||
"organizers": null,
|
||||
}
|
||||
</code>
|
||||
</pre>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,30 @@
|
||||
[
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e/timezone",
|
||||
"@type": [
|
||||
"http://www.w3.org/2002/07/owl#ObjectProperty"
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#comment": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "Indicates the timezone for which the time(s) indicated in the event are given. The value provided should be among those listed in the IANA Time Zone Database."
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
|
||||
{
|
||||
"@id": "https://w3id.org/fep/8a8e"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#label": [
|
||||
{
|
||||
"@language": "en",
|
||||
"@value": "The timezone of an Event"
|
||||
}
|
||||
],
|
||||
"http://www.w3.org/2000/01/rdf-schema#range": [
|
||||
{
|
||||
"@id": "http://www.w3.org/2000/01/rdf-schema#Literal"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
>
|
||||
<rdf:Description rdf:about="https://w3id.org/fep/8a8e/timezone">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
|
||||
<rdfs:label xml:lang="en">The timezone of an Event</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">Indicates the timezone for which the time(s) indicated in the event are given. The value provided should be among those listed in the IANA Time Zone Database.</rdfs:comment>
|
||||
<rdfs:isDefinedBy rdf:resource="https://w3id.org/fep/8a8e"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
@@ -0,0 +1,8 @@
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
|
||||
<https://w3id.org/fep/8a8e/timezone> a owl:ObjectProperty ;
|
||||
rdfs:label "The timezone of an Event"@en ;
|
||||
rdfs:comment "Indicates the timezone for which the time(s) indicated in the event are given. The value provided should be among those listed in the IANA Time Zone Database."@en ;
|
||||
rdfs:isDefinedBy <https://w3id.org/fep/8a8e> ;
|
||||
rdfs:range rdfs:Literal .
|
||||
@@ -0,0 +1,38 @@
|
||||
# upcomingEvents
|
||||
|
||||
URI
|
||||
: `https://w3id.org/fep/8a8e/upcomingEvents`
|
||||
|
||||
Label
|
||||
: Ordered collection of upcoming Events
|
||||
|
||||
Comment
|
||||
: An ActivityStreams OrderedCollection of Event objects that have a startTime property in the future, sorted by startTime with the earliest first.
|
||||
|
||||
Range
|
||||
: An OrderedCollection (@id)
|
||||
|
||||
Is defined by
|
||||
: [FEP-8a8e](https://w3id.org/fep/8a8e)
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
Example usage of upcomingEvents
|
||||
|
||||
```json
|
||||
{
|
||||
"@context": [
|
||||
"https://w3id.org/fep/8a8e",
|
||||
"https://www.w3.org/ns/activitystreams"
|
||||
],
|
||||
"@type": "Actor",
|
||||
"upcomingEvents": {
|
||||
"type": "Collection",
|
||||
"items": [
|
||||
{ "type": "Event", "startTime": "2025-06-01T12:00:00Z" },
|
||||
{ "type": "Event", "startTime": "2025-07-15T15:30:00Z" }
|
||||
]
|
||||
}
|
||||
}
|
||||
```
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user