Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 08221200BAA for ; Wed, 12 Oct 2016 19:42:12 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0668F160ACA; Wed, 12 Oct 2016 17:42:12 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id D8284160AEE for ; Wed, 12 Oct 2016 19:42:09 +0200 (CEST) Received: (qmail 29803 invoked by uid 500); 12 Oct 2016 17:42:09 -0000 Mailing-List: contact commits-help@streams.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@streams.incubator.apache.org Delivered-To: mailing list commits@streams.incubator.apache.org Received: (qmail 29764 invoked by uid 99); 12 Oct 2016 17:42:08 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Oct 2016 17:42:08 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 16FBD1804B5 for ; Wed, 12 Oct 2016 17:42:08 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -6.219 X-Spam-Level: X-Spam-Status: No, score=-6.219 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id QH0BwZSe3m7a for ; Wed, 12 Oct 2016 17:41:58 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with SMTP id 1EDD160CE9 for ; Wed, 12 Oct 2016 17:41:57 +0000 (UTC) Received: (qmail 28303 invoked by uid 99); 12 Oct 2016 17:41:34 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Oct 2016 17:41:34 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8EADEE390E; Wed, 12 Oct 2016 17:41:34 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sblackmon@apache.org To: commits@streams.incubator.apache.org Date: Wed, 12 Oct 2016 17:41:58 -0000 Message-Id: <48d4dbe839484c01bf5eb8d5854a2dae@git.apache.org> In-Reply-To: <4fa2dc5a66824b358a3ab760cd4dc4f7@git.apache.org> References: <4fa2dc5a66824b358a3ab760cd4dc4f7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [25/38] incubator-streams git commit: refactoring, testing, documentation, CLI modes archived-at: Wed, 12 Oct 2016 17:42:12 -0000 http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/approve.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/approve.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/approve.json new file mode 100644 index 0000000..247871c --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/approve.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/approve.json#", + "type": "object", + "title": "Approve", + "description": "Indicates that the actor has approved the object. For instance, a manager might approve a travel request.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "approve" + }, + "title": { + "type": "string", + "default": "{actor.displayName} approved {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/archive.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/archive.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/archive.json new file mode 100644 index 0000000..7ee2226 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/archive.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/archive.json#", + "type": "object", + "title": "Archive", + "description": "Indicates that the actor has archived the object.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "archive" + }, + "title": { + "type": "string", + "default": "{actor.displayName} archived {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/assign.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/assign.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/assign.json new file mode 100644 index 0000000..1d43041 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/assign.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/assign.json#", + "type": "object", + "title": "Assign", + "description": "Indicates that the actor has assigned the object to the target.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "assign" + }, + "title": { + "type": "string", + "default": "{actor.displayName} assigned {object.displayName} to {target.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/at.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/at.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/at.json new file mode 100644 index 0000000..34497e2 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/at.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/at.json#", + "type": "object", + "title": "At", + "description": "Indicates that the actor is currently located at the object. For instance, a person being at a specific physical location.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "assign" + }, + "title": { + "type": "string", + "default": "{actor.displayName} assigned {object.displayName} to {target.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/attach.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/attach.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/attach.json new file mode 100644 index 0000000..76c5a4f --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/attach.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/attach.json#", + "type": "object", + "title": "Attach", + "description": "Indicates that the actor has attached the object to the target.For instance, a person attaching a file to a wiki page or an email.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "attach" + }, + "title": { + "type": "string", + "default": "{actor.displayName} attached {object.displayName} to {target.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/attend.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/attend.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/attend.json new file mode 100644 index 0000000..6b02d07 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/attend.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/attend.json#", + "type": "object", + "title": "Attend", + "description": "Indicates that the actor has attended the object. For instance, a person attending a meeting.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "attend" + }, + "title": { + "type": "string", + "default": "{actor.displayName} attended {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/author.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/author.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/author.json new file mode 100644 index 0000000..4898139 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/author.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/author.json#", + "type": "object", + "title": "Author", + "description": "Indicates that the actor has authored the object. Note that this is a more specific form of the verb \"create\".", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "author" + }, + "title": { + "type": "string", + "default": "{actor.displayName} authored {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/authorize.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/authorize.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/authorize.json new file mode 100644 index 0000000..661e32c --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/authorize.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/authorize.json#", + "type": "object", + "title": "Authorize", + "description": "Indicates that the actor has authorized the object. If a target is specified, it means that the authorization is specifically in regards to the target. For instance, a service can authorize a person to access a given application; in which case the actor is the service, the object is the person, and the target is the application. In contrast, a person can authorize a request; in which case the actor is the person and the object is the request and there might be no explicit target.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "authorize" + }, + "title": { + "type": "string", + "default": "{actor.displayName} authorized {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/borrow.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/borrow.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/borrow.json new file mode 100644 index 0000000..74eee36 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/borrow.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/borrow.json#", + "type": "object", + "title": "Borrow", + "description": "Indicates that the actor has borrowed the object. If a target is specified, it identifies the entity from which the object was borrowed. For instance, if a person borrows a book from a library, the person is the actor, the book is the object and the library is the target.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "borrow" + }, + "title": { + "type": "string", + "default": "{actor.displayName} borrow {object.displayName} from {target.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/build.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/build.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/build.json new file mode 100644 index 0000000..d8e7d25 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/build.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/build.json#", + "type": "object", + "title": "Build", + "description": "Indicates that the actor has built the object. For example, if a person builds a model or compiles code.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "build" + }, + "title": { + "type": "string", + "default": "{actor.displayName} built {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/cancel.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/cancel.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/cancel.json new file mode 100644 index 0000000..0d82c8e --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/cancel.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/cancel.json#", + "type": "object", + "title": "Cancel", + "description": "Indicates that the actor has canceled the object. For instance, canceling a calendar event.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "cancel" + }, + "title": { + "type": "string", + "default": "{actor.displayName} cancelled {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/checkin.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/checkin.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/checkin.json new file mode 100644 index 0000000..88a9c86 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/checkin.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/checkin.json#", + "type": "object", + "title": "checkin", + "description": "Indicates that the actor has checked-in to the object. For instance, a person checking-in to a Place.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "checkin" + }, + "title": { + "type": "string", + "default": "{actor.displayName} checked in at {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/close.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/close.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/close.json new file mode 100644 index 0000000..88a31b6 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/close.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/close.json#", + "type": "object", + "title": "Close", + "description": "Indicates that the actor has closed the object. For instance, the object could represent a ticket being tracked in an issue management system.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "close" + }, + "title": { + "type": "string", + "default": "{actor.displayName} closed {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/complete.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/complete.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/complete.json new file mode 100644 index 0000000..ddffd0e --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/complete.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/complete.json#", + "type": "object", + "title": "Complete", + "description": "Indicates that the actor has completed the object", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "complete" + }, + "title": { + "type": "string", + "default": "{actor.displayName} completed {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/confirm.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/confirm.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/confirm.json new file mode 100644 index 0000000..5148c8c --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/confirm.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/confirm.json#", + "type": "object", + "title": "Confirm", + "description": "Indicates that the actor has confirmed or agrees with the object. For instance, a software developer might confirm an issue reported against a product.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "confirm" + }, + "title": { + "type": "string", + "default": "{actor.displayName} confirmed {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/consume.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/consume.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/consume.json new file mode 100644 index 0000000..661b40b --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/consume.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/consume.json#", + "type": "object", + "title": "Consume", + "description": "Indicates that the actor has consumed the object. The specific meaning is dependent largely on the object's type. For instance, an actor may \"consume\" an audio object, indicating that the actor has listened to it; or an actor may \"consume\" a book, indicating that the book has been read. As such, the \"consume\" verb is a more generic form of other more specific verbs such as \"read\" and \"play\".", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "consume" + }, + "title": { + "type": "string", + "default": "{actor.displayName} consumed {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/create.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/create.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/create.json new file mode 100644 index 0000000..c5ad298 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/create.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/create.json#", + "type": "object", + "title": "Create", + "description": "Indicates that the actor has created the object.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "create" + }, + "title": { + "type": "string", + "default": "{actor.displayName} created {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/delete.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/delete.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/delete.json new file mode 100644 index 0000000..544bf5d --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/delete.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/delete.json#", + "type": "object", + "title": "Delete", + "description": "Indicates that the actor has deleted the object.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "delete" + }, + "title": { + "type": "string", + "default": "{actor.displayName} deleted {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/deliver.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/deliver.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/deliver.json new file mode 100644 index 0000000..4d3d2c1 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/deliver.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/deliver.json#", + "type": "object", + "title": "Deliver", + "description": "Indicates that the actor has delivered the object. For example, delivering a package.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "deliver" + }, + "title": { + "type": "string", + "default": "{actor.displayName} delivered {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/deny.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/deny.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/deny.json new file mode 100644 index 0000000..f880ad3 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/deny.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/deny.json#", + "type": "object", + "title": "Deny", + "description": "Indicates that the actor has denied the object. For example, a manager may deny a travel request.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "deny" + }, + "title": { + "type": "string", + "default": "{actor.displayName} denied {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/disagree.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/disagree.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/disagree.json new file mode 100644 index 0000000..17f0c4c --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/disagree.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/disagree.json#", + "type": "object", + "title": "Disagree", + "description": "Indicates that the actor disagrees with the object.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "disagree" + }, + "title": { + "type": "string", + "default": "{actor.displayName} disagrees with {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/dislike.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/dislike.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/dislike.json new file mode 100644 index 0000000..308d5eb --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/dislike.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/dislike.json#", + "type": "object", + "title": "Dislike", + "description": "Indicates that the actor dislikes the object. Note that the \"dislike\" verb is distinct from the \"unlike\" verb which assumes that the object had been previously \"liked\".", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "dislike" + }, + "title": { + "type": "string", + "default": "{actor.displayName} dislikes {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/experience.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/experience.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/experience.json new file mode 100644 index 0000000..543ac2c --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/experience.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/experience.json#", + "type": "object", + "title": "Experience", + "description": "Indicates that the actor has experienced the object in some manner. Note that, depending on the specific object types used for both the actor and object, the meaning of this verb can overlap that of the \"consume\" and \"play\" verbs. For instance, a person might \"experience\" a movie; or \"play\" the movie; or \"consume\" the movie. The \"experience\" verb can be considered a more generic form of other more specific verbs as \"consume\", \"play\", \"watch\", \"listen\", and \"read\"", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "experience" + }, + "title": { + "type": "string", + "default": "{actor.displayName} experienced {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/favorite.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/favorite.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/favorite.json new file mode 100644 index 0000000..17e2490 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/favorite.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/favorite.json#", + "type": "object", + "title": "Favorite", + "description": "Indicates that the actor marked the object as an item of special interest.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "favorite" + }, + "title": { + "type": "string", + "default": "{actor.displayName} marked {object.displayName} as a favorite" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/find.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/find.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/find.json new file mode 100644 index 0000000..79ebbe8 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/find.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/find.json#", + "type": "object", + "title": "Find", + "description": "Indicates that the actor has found the object.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "find" + }, + "title": { + "type": "string", + "default": "{actor.displayName} found {object.displayName}." + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/flag-as-inappropriate.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/flag-as-inappropriate.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/flag-as-inappropriate.json new file mode 100644 index 0000000..f7b5785 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/flag-as-inappropriate.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/flag-as-inappropriate.json#", + "type": "object", + "title": "Flag-As-Inappropriate", + "description": "Indicates that the actor has flagged the object as being inappropriate for some reason. When using this verb, the context property can be used to provide additional detail about why the object has been flagged.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "flag-as-inappropriate" + }, + "title": { + "type": "string", + "default": "{actor.displayName} flagged {object.displayName} as inappropriate." + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/follow.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/follow.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/follow.json new file mode 100644 index 0000000..2a922f9 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/follow.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/follow.json#", + "type": "object", + "title": "Follow", + "description": "Indicates that the actor began following the activity of the object. In most cases, the objectType will be a \"person\", but it can potentially be of any type that can sensibly generate activity. Processors MAY ignore (silently drop) successive identical \"follow\" activities.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "follow" + }, + "title": { + "type": "string", + "default": "{actor.displayName} started following {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/give.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/give.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/give.json new file mode 100644 index 0000000..952fa59 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/give.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/give.json#", + "type": "object", + "title": "Give", + "description": "Indicates that the actor is giving an object to the target. Examples include one person giving a badge object to another person. The object identifies the object being given. The target identifies the receiver.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "give" + }, + "title": { + "type": "string", + "default": "{actor.displayName} gave {object.displayName} to {target.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/host.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/host.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/host.json new file mode 100644 index 0000000..9661abe --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/host.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/host.json#", + "type": "object", + "title": "Host", + "description": "Indicates that the actor is hosting the object. As in hosting an event, or hosting a service.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "host" + }, + "title": { + "type": "string", + "default": "{actor.displayName} is hosting {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/ignore.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/ignore.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/ignore.json new file mode 100644 index 0000000..ae0ea6a --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/ignore.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/ignore.json#", + "type": "object", + "title": "Ignore", + "description": "Indicates that the actor has ignored the object. For instance, this verb may be used when an actor has ignored a friend request, in which case the object may be the request-friend activity.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "ignore" + }, + "title": { + "type": "string", + "default": "{actor.displayName} ignored {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/insert.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/insert.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/insert.json new file mode 100644 index 0000000..8dcd756 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/insert.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/insert.json#", + "type": "object", + "title": "Insert", + "description": "Indicates that the actor has inserted the object into the target.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "insert" + }, + "title": { + "type": "string", + "default": "{actor.displayName} inserted {object.displayName} into {target.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/install.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/install.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/install.json new file mode 100644 index 0000000..6b270fa --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/install.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/install.json#", + "type": "object", + "title": "Install", + "description": "Indicates that the actor has installed the object, as in installing an application.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "install" + }, + "title": { + "type": "string", + "default": "{actor.displayName} installed {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/interact.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/interact.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/interact.json new file mode 100644 index 0000000..5098ee3 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/interact.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/interact.json#", + "type": "object", + "title": "Interact", + "description": "Indicates that the actor has interacted with the object. For instance, when one person interacts with another.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "interact" + }, + "title": { + "type": "string", + "default": "{actor.displayName} interacted with {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/invite.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/invite.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/invite.json new file mode 100644 index 0000000..625a170 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/invite.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/invite.json#", + "type": "object", + "title": "Invite", + "description": "Indicates that the actor has invited the object, typically a person object, to join or participate in the object described by the target. The target could, for instance, be an event, group or a service.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "invite" + }, + "title": { + "type": "string", + "default": "{actor.displayName} invited {object.displayName} to {target.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/join.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/join.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/join.json new file mode 100644 index 0000000..5276072 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/join.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/join.json#", + "type": "object", + "title": "Join", + "description": "Indicates that the actor has become a member of the object.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "join" + }, + "title": { + "type": "string", + "default": "{actor.displayName} joined {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/leave.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/leave.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/leave.json new file mode 100644 index 0000000..9995099 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/leave.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/leave.json#", + "type": "object", + "title": "Leave", + "description": "Indicates that the actor has left the object. For instance, a Person leaving a Group or checking-out of a Place.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "leave" + }, + "title": { + "type": "string", + "default": "{actor.displayName} left {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/like.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/like.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/like.json new file mode 100644 index 0000000..d583305 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/like.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/like.json#", + "type": "object", + "title": "Like", + "description": "Indicates that the actor marked the object as an item of special interest.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "like" + }, + "title": { + "type": "string", + "default": "{actor.displayName} likes {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/listen.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/listen.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/listen.json new file mode 100644 index 0000000..9982ac6 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/listen.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/listen.json#", + "type": "object", + "title": "Listen", + "description": "Indicates that the actor has listened to the object. This is typically only applicable for objects representing audio content, such as music, an audio-book, or a radio broadcast.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "listen" + }, + "title": { + "type": "string", + "default": "{actor.displayName} listened to {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/lose.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/lose.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/lose.json new file mode 100644 index 0000000..1d959a4 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/lose.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/lose.json#", + "type": "object", + "title": "Lose", + "description": "Indicates that the actor has lost the object. For instance, if a person loses a game.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "lose" + }, + "title": { + "type": "string", + "default": "{actor.displayName} lost {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/make-friend.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/make-friend.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/make-friend.json new file mode 100644 index 0000000..141aba7 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/make-friend.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/make-friend.json#", + "type": "object", + "title": "Befriend", + "description": "Indicates the creation of a friendship that is reciprocated by the object.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "make-friend" + }, + "title": { + "type": "string", + "default": "{actor.displayName} is now friends with {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/open.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/open.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/open.json new file mode 100644 index 0000000..6c06529 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/open.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/open.json#", + "type": "object", + "title": "Open", + "description": "Indicates that the actor has opened the object. For instance, the object could represent a ticket being tracked in an issue management system.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "open" + }, + "title": { + "type": "string", + "default": "{actor.displayName} opened {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/play.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/play.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/play.json new file mode 100644 index 0000000..115ac11 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/play.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/play.json#", + "type": "object", + "title": "Play", + "description": "Indicates that the actor spent some time enjoying the object. For example, if the object is a video this indicates that the subject watched all or part of the video.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "play" + }, + "title": { + "type": "string", + "default": "{actor.displayName} played {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/post.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/post.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/post.json new file mode 100644 index 0000000..20a5feb --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/post.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/post.json#", + "type": "object", + "title": "Post", + "description": "To publish an object", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "post" + }, + "title": { + "type": "string", + "default": "{actor.displayName} posted {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/present.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/present.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/present.json new file mode 100644 index 0000000..0cf7154 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/present.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/present.json#", + "type": "object", + "title": "Present", + "description": "Indicates that the actor has presented the object. For instance, when a person gives a presentation at a conference.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "present" + }, + "title": { + "type": "string", + "default": "{actor.displayName} presented {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/purchase.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/purchase.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/purchase.json new file mode 100644 index 0000000..e867ad9 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/purchase.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/purchase.json#", + "type": "object", + "title": "Purchase", + "description": "Indicates that the actor has purchased the object. If a target is specified, in indicates the entity from which the object was purchased.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "purchase" + }, + "title": { + "type": "string", + "default": "{actor.displayName} purchased {object.displayName} from {target.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/qualify.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/qualify.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/qualify.json new file mode 100644 index 0000000..8bc5248 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/qualify.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/qualify.json#", + "type": "object", + "title": "Qualify", + "description": "Indicates that the actor has qualified for the object. If a target is specified, it indicates the context within which the qualification applies.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "qualify" + }, + "title": { + "type": "string", + "default": "{actor.displayName} qualified {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/read.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/read.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/read.json new file mode 100644 index 0000000..2776a4e --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/read.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/read.json#", + "type": "object", + "title": "Read", + "description": "Indicates that the actor read the object. This is typically only applicable for objects representing printed or written content, such as a book, a message or a comment.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "read" + }, + "title": { + "type": "string", + "default": "{actor.displayName} read {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/receive.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/receive.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/receive.json new file mode 100644 index 0000000..da88b34 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/receive.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/receive.json#", + "type": "object", + "title": "Receive", + "description": "Indicates that the actor is receiving an object. Examples include a person receiving a badge object. The object identifies the object being received.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "receive" + }, + "title": { + "type": "string", + "default": "{actor.displayName} received {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/reject.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/reject.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/reject.json new file mode 100644 index 0000000..d8a8bb4 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/reject.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/reject.json#", + "type": "object", + "title": "Reject", + "description": "Indicates that the actor has rejected the object.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "reject" + }, + "title": { + "type": "string", + "default": "{actor.displayName} rejected {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/remove-friend.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/remove-friend.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/remove-friend.json new file mode 100644 index 0000000..84f6b78 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/remove-friend.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/remove-friend.json#", + "type": "object", + "title": "UnFriend", + "description": "Indicates that the actor has removed the object from the collection of friends.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "remove-friend" + }, + "title": { + "type": "string", + "default": "{actor.displayName} removed friend {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/remove.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/remove.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/remove.json new file mode 100644 index 0000000..367da5d --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/remove.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/remove.json#", + "type": "object", + "title": "Remove", + "description": "Indicates that the actor has removed the object from the target.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "remove" + }, + "title": { + "type": "string", + "default": "{actor.displayName} removed {object.displayName} from {target.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/replace.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/replace.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/replace.json new file mode 100644 index 0000000..418ea94 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/replace.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/replace.json#", + "type": "object", + "title": "Replace", + "description": "Indicates that the actor has replaced the target with the object.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "replace" + }, + "title": { + "type": "string", + "default": "{actor.displayName} replaced {target.displayName} with {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/request-friend.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/request-friend.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/request-friend.json new file mode 100644 index 0000000..51333e2 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/request-friend.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/request-friend.json#", + "type": "object", + "title": "RequestFriend", + "description": "Indicates the creation of a friendship that has not yet been reciprocated by the object.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "request-friend" + }, + "title": { + "type": "string", + "default": "{actor.displayName} sent a friend request to {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/request.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/request.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/request.json new file mode 100644 index 0000000..f15104c --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/request.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/request.json#", + "type": "object", + "title": "Request", + "description": "Indicates that the actor has requested the object. If a target is specified, it indicates the entity from which the object is being requested.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "request" + }, + "title": { + "type": "string", + "default": "{actor.displayName} requested {object.displayName} from {target.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/resolve.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/resolve.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/resolve.json new file mode 100644 index 0000000..2b8365d --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/resolve.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/resolve.json#", + "type": "object", + "title": "Resolve", + "description": "Indicates that the actor has resolved the object. For instance, the object could represent a ticket being tracked in an issue management system.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "resolve" + }, + "title": { + "type": "string", + "default": "{actor.displayName} resolved {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/retract.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/retract.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/retract.json new file mode 100644 index 0000000..8ddbcbc --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/retract.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/retract.json#", + "type": "object", + "title": "Retract", + "description": "Indicates that the actor has retracted the object. For instance, if an actor wishes to retract a previously published activity, the object would be the previously published activity that is being retracted.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "retract" + }, + "title": { + "type": "string", + "default": "{actor.displayName} retracted {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/return.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/return.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/return.json new file mode 100644 index 0000000..40426cf --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/return.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/return.json#", + "type": "object", + "title": "Return", + "description": "Indicates that the actor has returned the object. If a target is specified, it indicates the entity to which the object was returned.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "return" + }, + "title": { + "type": "string", + "default": "{actor.displayName} returned {object.displayName} to {target.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/rsvp-maybe.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/rsvp-maybe.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/rsvp-maybe.json new file mode 100644 index 0000000..6e9e8f5 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/rsvp-maybe.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/rsvp-maybe.json#", + "type": "object", + "title": "Rsvp Maybe", + "description": "To indicate that the actor may attend an event", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "rsvp-maybe" + }, + "title": { + "type": "string", + "default": "{actor.displayName} might attend {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/rsvp-no.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/rsvp-no.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/rsvp-no.json new file mode 100644 index 0000000..6339f1e --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/rsvp-no.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/rsvp-no.json#", + "type": "object", + "title": "Rsvp No", + "description": "To indicate that the actor will not attend an event", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "rsvp-no" + }, + "title": { + "type": "string", + "default": "{actor.displayName} will not attend {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/rsvp-yes.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/rsvp-yes.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/rsvp-yes.json new file mode 100644 index 0000000..7fecc78 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/rsvp-yes.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/rsvp-yes.json#", + "type": "object", + "title": "Rsvp Yes", + "description": "To indicate that the actor will attend an event", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "rsvp-yes" + }, + "title": { + "type": "string", + "default": "{actor.displayName} is attending {object.displayName}" + } + } +} http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/d9674f7c/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/satisfy.json ---------------------------------------------------------------------- diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/satisfy.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/satisfy.json new file mode 100644 index 0000000..9c36006 --- /dev/null +++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/satisfy.json @@ -0,0 +1,24 @@ +{ + "$schema": "http://json-schema.org/draft-03/schema", + "$license": [ + "http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "id": "http://streams.incubator.apache.org/site/0.3-incubating-SNAPSHOT/streams-schemas/verbs/satisfy.json#", + "type": "object", + "title": "Satisfy", + "description": "Indicates that the actor has satisfied the object. If a target is specified, it indicate the context within which the object was satisfied. For instance, if a person satisfies the requirements for a particular challenge, the person is the actor; the requirement is the object; and the challenge is the target.", + "extends": { + "$ref": "../activity.json" + }, + "properties": { + "verb": { + "type": "string", + "default": "satisfy" + }, + "title": { + "type": "string", + "default": "{actor.displayName} has satisfied {object.displayName}" + } + } +}