You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streams.apache.org by sb...@apache.org on 2015/05/08 23:20:42 UTC

[06/50] [abbrv] incubator-streams git commit: [maven-release-plugin] prepare release streams-project-0.2-incubating-rc2

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/media_link.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/media_link.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/media_link.json
deleted file mode 100644
index 056d467..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/media_link.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "media_link",
-    "javaType": "org.apache.streams.pojo.json.MediaLink",
-    "description": "Visual representation of an object in the form of an image, video or embedded HTML fragments",
-    "properties": {
-        "duration": {
-            "title": "duration",
-            "type": "number",
-            "description": "A hint to the consumer about the length, in seconds, of the media resource identified by the url property. A media link MAY contain a \"duration\" property when the target resource is a time-based media item such as an audio or video."
-        },
-        "height": {
-            "title": "height",
-            "type": "number",
-            "description": "A hint to the consumer about the height, in pixels, of the media resource identified by the url property. A media link MAY contain a height property when the target resource is a visual media item such as an image, video or embeddable HTML page."
-        },
-        "width": {
-            "title": "width",
-            "type": "number",
-            "description": "A hint to the consumer about the width, in pixels, of the media resource identified by the url property. A media link MAY contain a width property when the target resource is a visual media item such as an image, video or embeddable HTML page."
-        },
-        "url": {
-            "type": "string",
-            "required": true,
-            "description": "The IRI of the media resource being linked. A media link MUST have a url property."
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/object.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/object.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/object.json
deleted file mode 100644
index be9b7cd..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/object.json
+++ /dev/null
@@ -1,96 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "object",
-    "javaType": "org.apache.streams.pojo.json.ActivityObject",
-    "javaInterfaces": ["java.io.Serializable"],
-    "description": "Basic object on the web. The only required property is the id",
-    "properties": {
-        "id": {
-            "type": "string",
-            "description": "Provides a permanent, universally unique identifier for the object in the form of an absolute IRI [RFC3987]. An object SHOULD contain a single id property. If an object does not contain an id property, consumers MAY use the value of the url property as a less-reliable, non-unique identifier.",
-            "required": true
-        },
-        "image": {
-            "format": "image",
-            "type": "object",
-            "extends": {
-                "$ref": "./media_link.json"
-            },
-            "description": "Description of a resource providing a visual representation of the object, intended for human consumption. An object MAY contain an image property whose value is a Media Link."
-        },
-        "displayName": {
-            "type": "string",
-            "description": "A natural-language, human-readable and plain-text name for the object. HTML markup MUST NOT be included. An object MAY contain a displayName property. If the object does not specify an objectType property, the object SHOULD specify a displayName"
-        },
-        "summary": {
-            "type": "string",
-            "description": "Natural-language summary of the object encoded as a single JSON String containing HTML markup. Visual elements such as thumbnail images MAY be included. An activity MAY contain a summary property"
-        },
-        "content": {
-            "type": "string",
-            "description": "Natural-language description of the object encoded as a single JSON String containing HTML markup. Visual elements such as thumbnail images MAY be included. An object MAY contain a content property"
-        },
-        "url": {
-            "type": "string",
-            "format": "url",
-            "description": "An IRI [RFC3987] identifying a resource providing an HTML representation of the object. An object MAY contain a url property"
-        },
-        "objectType": {
-            "type": "string",
-            "description": "Identifies the type of object. An object MAY contain an objectType property whose value is a JSON String that is non-empty and matches either the \"isegment-nz-nc\" or the \"IRI\" production in [RFC3987]. Note that the use of a relative reference other than a simple name is not allowed. If no objectType property is contained, the object has no specific type."
-        },
-        "author": {
-            "type": "object",
-            "description": "Describes the entity that created or authored the object. An object MAY contain a single author property whose value is an Object of any type. Note that the author field identifies the entity that created the object and does not necessarily identify the entity that published the object. For instance, it may be the case that an object created by one person is posted and published to a system by an entirely different entity",
-            "extends": {
-                "$ref": "./object.json"
-            }
-        },
-        "published": {
-            "type": "string",
-            "description": "[RFC3339] date-time. The date and time at which the object was published. An object MAY contain a published property",
-            "format": "date-time"
-        },
-        "updated": {
-            "type": "string",
-            "description": "[RFC3339] date-time. The date and time at which a previously published object has been modified. An Object MAY contain an updated property.",
-            "format": "date-time"
-        },
-        "attachments": {
-            "title": "Related objects",
-            "description": "A collection of one or more additional, associated objects, similar to the concept of attached files in an email message. An object MAY have an attachedObjects property whose value is a JSON Array of Objects.",
-            "type": "array",
-            "items": {
-                "type": "object",
-                "$ref": "./object.json"
-            }
-        },
-        "upstreamDuplicates": {
-            "type": "array",
-            "description": "A JSON Array of one or more absolute IRI's [RFC3987] identifying objects that duplicate this object's content. An object SHOULD contain an upstreamDuplicates property when a publisher is knowingly duplicating with a new ID the content from another object. This MAY be used as a hint for consumers to use when resolving duplicates between objects received from different sources",
-            "items": {
-                "type": "string"
-            }
-        },
-        "downstreamDuplicates": {
-            "type": "array",
-            "description": "A JSON Array of one or more absolute IRI's [RFC3987] identifying objects that duplicate this object's content. An object SHOULD contain a downstreamDuplicates property when there are known objects, possibly in a different system, that duplicate the content in this object. This MAY be used as a hint for consumers to use when resolving duplicates between objects received from different sources.",
-            "items": {
-                "type": "string"
-            }
-        }
-    },
-    "additionalProperties": true,
-    "links": [
-        {
-            "rel": "describedby",
-            "href": "./objectType/{objectType}.json"
-        }
-    ]
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/alert.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/alert.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/alert.json
deleted file mode 100644
index 0ace5de..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/alert.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "alert",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "alert"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/application.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/application.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/application.json
deleted file mode 100644
index ceb1208..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/application.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "application",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "application"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/article.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/article.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/article.json
deleted file mode 100644
index 8abc7f7..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/article.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "article",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "article"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/audio.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/audio.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/audio.json
deleted file mode 100644
index 92cef7f..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/audio.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "audio",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "audio"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/badge.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/badge.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/badge.json
deleted file mode 100644
index b743236..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/badge.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "badge",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "badge"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/binary.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/binary.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/binary.json
deleted file mode 100644
index 8915633..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/binary.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "binary",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "binary"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/bookmark.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/bookmark.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/bookmark.json
deleted file mode 100644
index 3d3e3f1..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/bookmark.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "bookmark",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "bookmark"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/comment.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/comment.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/comment.json
deleted file mode 100644
index 90249c4..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/comment.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "comment",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "comment"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/device.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/device.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/device.json
deleted file mode 100644
index faea368..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/device.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "device",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "device"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/event.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/event.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/event.json
deleted file mode 100644
index 479213f..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/event.json
+++ /dev/null
@@ -1,51 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "event",
-    "description": "xCal fromat for vevent",
-    "extends": [
-        {
-            "$ref": "../object.json"
-        },
-        {
-            "$ref": "http://www.json-schema.org/calendar"
-        }
-    ],
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "event"
-        },
-        "attendedBy": {
-            "type": "../collection.json"
-        },
-        "attending": {
-          "type": "../collection.json"
-        },
-        "endTime": {
-          "type": "string",
-          "format": "date-time"
-        },
-        "invited": {
-          "type": "../collection.json"
-        },
-        "maybeAttending": {
-          "type": "../collection.json"
-        },
-        "notAttendedBy": {
-          "type": "../collection.json"
-        },
-        "notAttending": {
-          "type": "../collection.json"
-        },
-        "startTime": {
-          "type": "string",
-          "format": "date-time"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/file.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/file.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/file.json
deleted file mode 100644
index 695ef98..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/file.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "file",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "file"
-        },
-        "fileUrl": {
-          "type": "string"
-        },
-        "mimeType": {
-          "type": "string"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/folder.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/folder.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/folder.json
deleted file mode 100644
index a319efe..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/folder.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "folder",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "folder"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/game.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/game.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/game.json
deleted file mode 100644
index 5f13dfc..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/game.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "game",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "game"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/group.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/group.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/group.json
deleted file mode 100644
index b67d88d..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/group.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "group",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "group"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/image.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/image.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/image.json
deleted file mode 100644
index 8a19fd1..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/image.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "image",
-    "extends": {
-        "$ref": "../media_link.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "image"
-        },
-        "fullImage": {
-          "type": "string"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/issue.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/issue.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/issue.json
deleted file mode 100644
index 29bfe44..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/issue.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "issue",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "issue"
-        },
-        "types": {
-          "type": "array",
-          "items": {
-            "type": "string"
-          }
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/job.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/job.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/job.json
deleted file mode 100644
index 2d82975..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/job.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "job",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "job"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/list.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/list.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/list.json
deleted file mode 100644
index d7c164a..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/list.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "list",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "list"
-        },
-        "items": {
-            "type": "array",
-            "items": {
-                "type": "object",
-                "properties": {
-                    "$ref": "../object.json"
-                }
-            }
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/note.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/note.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/note.json
deleted file mode 100644
index 09de97c..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/note.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "note",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "note"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/offer.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/offer.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/offer.json
deleted file mode 100644
index 38db718..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/offer.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "offer",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "offer"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/organization.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/organization.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/organization.json
deleted file mode 100644
index a3fd5a2..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/organization.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "organization",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "organization"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/page.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/page.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/page.json
deleted file mode 100644
index 4f76aa2..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/page.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "page",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "page"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/permission.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/permission.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/permission.json
deleted file mode 100644
index 32b395c..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/permission.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "permission",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "permission"
-        },
-        "scope": {
-            "type": "object",
-            "extends": {
-              "$ref": "../object.json"
-            }
-        },
-        "actions": {
-            "type": "array",
-            "items": {
-               "type": "string",
-               "enumeration": [
-                  "create",
-                  "delete",
-                  "modify"
-               ]
-            }
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/person.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/person.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/person.json
deleted file mode 100644
index f42eb8e..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/person.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "person",
-    "description": "vCard Format. Does not match PoCO",
-    "extends": [
-        {
-            "$ref": "../object.json"
-        },
-        {
-            "$ref": "http://www.json-schema.org/card"
-        }
-    ],
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "person"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/photo-album.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/photo-album.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/photo-album.json
deleted file mode 100644
index 933804b..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/photo-album.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "article",
-    "extends": {
-        "$ref": "../objectTypes/list.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "photo-album"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/photo.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/photo.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/photo.json
deleted file mode 100644
index 347f25c..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/photo.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "photo",
-    "extends": {
-        "$ref": "../objectTypes/file.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "photo"
-        },
-        "displayName": {
-            "type": "string",
-            "default": "a photo"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/place.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/place.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/place.json
deleted file mode 100644
index bb96a79..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/place.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "place",
-    "extends": [
-        {
-            "$ref": "../object.json"
-        }
-    ],
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "place"
-        },
-        "address": {
-          "type": "object",
-          "extends": [
-            {
-              "$ref": "http://www.json-schema.org/address"
-            }
-          ]
-        },
-        "position": {
-          "type": "object",
-          "properties": {
-            "altitude": {
-              "type": "number"
-            },
-            "latitude": {
-              "type": "number"
-            },
-            "longitude": {
-              "type": "number"
-            }
-          }
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/playlist.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/playlist.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/playlist.json
deleted file mode 100644
index 6ce9dd2..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/playlist.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "playlist",
-    "extends": {
-        "$ref": "../objectTypes/list.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "playlist"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/process.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/process.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/process.json
deleted file mode 100644
index d717cc7..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/process.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "process",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "process"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/product.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/product.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/product.json
deleted file mode 100644
index 4e035cf..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/product.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "product",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "product"
-        },
-        "fullImage": {
-            "type": "object",
-            "extends": {
-              "$ref": "../media_link.json"
-            }
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/property.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/property.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/property.json
deleted file mode 100644
index 0cd630e..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/property.json
+++ /dev/null
@@ -1,48 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "property",
-    "description": "A property describes name, path and value. Can be used with delete, update or post verbs",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "property"
-        },
-        "displayName": {
-            "type": "string",
-            "description": "The human readable name of the property in the appropriate language",
-            "optional": true
-        },
-        "path": {
-            "type": "string",
-            "description": "dot delimited path to the property in the target. Ex: streetAddress"
-        }
-    },
-    "example": {
-        "actor": {
-            "id": 1212,
-            "displayName": "Peter"
-        },
-        "verb": "update",
-        "time": "2010-08-02T15:29:00Z",
-        "object": {
-            "objectType": "property",
-            "displayName": "street address",
-            "path": "streetAddress",
-            "content": "234 Amazing St"
-        },
-        "target": {
-            "id": 12121,
-            "time": "2010-08-02T15:29:00Z",
-            "displayName": "Peter's House"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/question.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/question.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/question.json
deleted file mode 100644
index cccdfe0..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/question.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "question",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "question"
-        },
-        "options": {
-            "type": "array",
-            "items": {
-               "type": "object",
-                "extends": {
-                  "$ref": "../object.json"
-                }
-            }
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/review.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/review.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/review.json
deleted file mode 100644
index 7629cb6..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/review.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "review",
-    "extends": {
-        "$ref": "../objectTypes/article.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "review"
-        },
-        "rating": {
-           "type": "number"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/role.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/role.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/role.json
deleted file mode 100644
index 25524ab..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/role.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "role",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "role"
-        },
-        "members": {
-            "type": "object",
-            "extends": {
-              "$ref": "../collection.json"
-            }
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/service.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/service.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/service.json
deleted file mode 100644
index 3d4a496..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/service.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "service",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "service"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/song.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/song.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/song.json
deleted file mode 100644
index 46d6eb0..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/song.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "song",
-    "extends": {
-        "$ref": "../objectTypes/audio.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "song"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/status.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/status.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/status.json
deleted file mode 100644
index a029f19..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/status.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "status",
-    "extends": {
-        "$ref": "../objectTypes/note.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "song"
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/task.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/task.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/task.json
deleted file mode 100644
index 9bd0043..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/task.json
+++ /dev/null
@@ -1,44 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "task",
-    "extends": {
-        "$ref": "../activity.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "task"
-        },
-        "by": {
-          "type": "string",
-          "format": "date-time"
-        },
-        "prerequisites": {
-          "type": "array",
-          "items": {
-            "type": "object",
-            "extends": {
-              "$ref": "./task.json"
-            }
-          }
-        },
-        "required": {
-          "type": "boolean"
-        },
-        "supersedes": {
-          "type": "array",
-          "items": {
-            "type": "object",
-            "extends": {
-              "$ref": "./task.json"
-            }
-          }
-        }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/team.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/team.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/team.json
deleted file mode 100644
index 37419a0..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/team.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "team",
-    "extends": {
-        "$ref": "../object.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "team"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/video.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/video.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/video.json
deleted file mode 100644
index 7ac63d8..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/objectTypes/video.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "video",
-    "extends": {
-        "$ref": "../objectTypes/file.json"
-    },
-    "properties": {
-        "objectType": {
-            "type": "string",
-            "default": "video"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/accept.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/accept.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/accept.json
deleted file mode 100644
index a9f91fe..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/accept.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "Accept",
-    "description": "Indicates that that the actor has accepted the object. For instance, a person accepting an award, or accepting an assignment.",
-    "extends": {
-        "$ref": "../activity.json"
-    },
-    "properties": {
-        "verb": {
-            "type": "string",
-            "default": "accept"
-        },
-        "title": {
-            "type": "string",
-            "default": "{actor.displayName} accepted {object.displayName}"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/access.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/access.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/access.json
deleted file mode 100644
index 156e3cb..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/access.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "Access",
-    "description": "Indicates that the actor has accessed the object. For instance, a person accessing a room, or accessing a file.",
-    "extends": {
-        "$ref": "../activity.json"
-    },
-    "properties": {
-        "verb": {
-            "type": "string",
-            "default": "access"
-        },
-        "title": {
-            "type": "string",
-            "default": "{actor.displayName} accessed {object.displayName}"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/acknowledge.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/acknowledge.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/acknowledge.json
deleted file mode 100644
index 2e84c43..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/acknowledge.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "Acknowledge",
-    "description": "Indicates that the actor has acknowledged the object. This effectively signals that the actor is aware of the object's existence.",
-    "extends": {
-        "$ref": "../activity.json"
-    },
-    "properties": {
-        "verb": {
-            "type": "string",
-            "default": "acknowledge"
-        },
-        "title": {
-            "type": "string",
-            "default": "{actor.displayName} acknowledge {object.displayName}"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/add.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/add.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/add.json
deleted file mode 100644
index cec0c58..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/add.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "Add",
-    "description": "Indicates that the actor has added the object to the target. For instance, adding a photo to an album.",
-    "extends": {
-        "$ref": "../activity.json"
-    },
-    "properties": {
-        "verb": {
-            "type": "string",
-            "default": "add"
-        },
-        "title": {
-            "type": "string",
-            "default": "{actor.displayName} added {object.displayName} to {target.displayName}"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/agree.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/agree.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/agree.json
deleted file mode 100644
index 5095153..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/agree.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "Agree",
-    "description": "Indicates that the actor agrees with the object. For example, a person agreeing with an argument, or expressing agreement with a particular issue.",
-    "extends": {
-        "$ref": "../activity.json"
-    },
-    "properties": {
-        "verb": {
-            "type": "string",
-            "default": "agree"
-        },
-        "title": {
-            "type": "string",
-            "default": "{actor.displayName} agrees with {object.displayName}"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/append.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/append.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/append.json
deleted file mode 100644
index 648d192..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/append.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "Append",
-    "description": "Indicates that the actor has appended the object to the target. For instance, a person appending a new record to a database.",
-    "extends": {
-        "$ref": "../activity.json"
-    },
-    "properties": {
-        "verb": {
-            "type": "string",
-            "default": "append"
-        },
-        "title": {
-            "type": "string",
-            "default": "{actor.displayName} append {object.displayName} to {target.displayName}"
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/approve.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/approve.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/approve.json
deleted file mode 100644
index ec66f9b..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/approve.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/archive.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/archive.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/archive.json
deleted file mode 100644
index 24aea16..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/archive.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/assign.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/assign.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/assign.json
deleted file mode 100644
index 8fe5458..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/assign.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/at.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/at.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/at.json
deleted file mode 100644
index 42c1222..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/at.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/attach.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/attach.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/attach.json
deleted file mode 100644
index 77ff605..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/attach.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/attend.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/attend.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/attend.json
deleted file mode 100644
index 07e60fd..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/attend.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/author.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/author.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/author.json
deleted file mode 100644
index 32a8297..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/author.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
-    "$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": "#",
-    "type": "object",
-    "title": "Author",
-    "javaType": "org.apache.streams.pojo.json.verb.Author",
-    "description": "Indicates that the actor has authored the object. Note that this is a more specific form of the verb \"create\".",
-    "extends": {
-        "$ref": "./create.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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/authorize.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/authorize.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/authorize.json
deleted file mode 100644
index 7439b06..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/authorize.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/borrow.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/borrow.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/borrow.json
deleted file mode 100644
index ede59c1..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/borrow.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/build.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/build.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/build.json
deleted file mode 100644
index a90441f..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/build.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/cancel.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/cancel.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/cancel.json
deleted file mode 100644
index 4ab2406..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/cancel.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/checkin.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/checkin.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/checkin.json
deleted file mode 100644
index d59a8c2..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/checkin.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/close.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/close.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/close.json
deleted file mode 100644
index 7aa049d..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/close.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/complete.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/complete.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/complete.json
deleted file mode 100644
index 4a95d48..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/complete.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/confirm.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/confirm.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/confirm.json
deleted file mode 100644
index aa8d45c..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/confirm.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/consume.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/consume.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/consume.json
deleted file mode 100644
index 3dc558a..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/consume.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/create.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/create.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/create.json
deleted file mode 100644
index dda3012..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/create.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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/434848fa/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/delete.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/delete.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/delete.json
deleted file mode 100644
index 39966c9..0000000
--- a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/json/verbs/delete.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "$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": "#",
-    "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}"
-        }
-    }
-}