You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streams.apache.org by mf...@apache.org on 2016/10/17 20:08:36 UTC

[1/8] incubator-streams git commit: resolves STREAMS-407

Repository: incubator-streams
Updated Branches:
  refs/heads/invalid_headers b8f36f7b9 -> 1766f34c4


resolves STREAMS-407


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/1f5f5e7b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/1f5f5e7b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/1f5f5e7b

Branch: refs/heads/invalid_headers
Commit: 1f5f5e7b8f38c5f39a7a2fbe3e69aaf486365558
Parents: a726b3c
Author: Steve Blackmon @steveblackmon <sb...@apache.org>
Authored: Tue Oct 11 15:58:19 2016 -0500
Committer: Steve Blackmon @steveblackmon <sb...@apache.org>
Committed: Tue Oct 11 15:58:19 2016 -0500

----------------------------------------------------------------------
 streams-pojo/pom.xml                            |  1 +
 .../jackson/StreamsDateTimeDeserializer.java    | 13 +++++-
 .../streams/jackson/StreamsJacksonMapper.java   | 42 ++++++++++++++++----
 .../pojo/StreamsJacksonMapperConfiguration.json | 22 ++++++++++
 4 files changed, 69 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/1f5f5e7b/streams-pojo/pom.xml
----------------------------------------------------------------------
diff --git a/streams-pojo/pom.xml b/streams-pojo/pom.xml
index d9fc264..2453a24 100644
--- a/streams-pojo/pom.xml
+++ b/streams-pojo/pom.xml
@@ -191,6 +191,7 @@
                 <configuration>
                     <sourcePaths>
                         <sourcePath>${basedir}/src/main/jsonschema</sourcePath>
+                        <sourcePath>${basedir}/src/main/jsonschema/org/apache/streams/pojo</sourcePath>
                         <sourcePath>${basedir}/src/main/jsonschema/verbs</sourcePath>
                         <sourcePath>${basedir}/src/main/jsonschema/objectTypes</sourcePath>
                     </sourcePaths>

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/1f5f5e7b/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsDateTimeDeserializer.java
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsDateTimeDeserializer.java b/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsDateTimeDeserializer.java
index 639c5ad..43813d2 100644
--- a/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsDateTimeDeserializer.java
+++ b/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsDateTimeDeserializer.java
@@ -26,6 +26,8 @@ import org.apache.streams.data.util.RFC3339Utils;
 import org.joda.time.DateTime;
 import org.joda.time.format.DateTimeFormat;
 import org.joda.time.format.DateTimeFormatter;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 import java.io.IOException;
 import java.io.Serializable;
@@ -43,14 +45,21 @@ public class StreamsDateTimeDeserializer extends StdDeserializer<DateTime> imple
 
     List<DateTimeFormatter> formatters = Lists.newArrayList();
 
+    private final static Logger LOGGER = LoggerFactory.getLogger(StreamsDateTimeDeserializer.class);
+
     protected StreamsDateTimeDeserializer(Class<DateTime> dateTimeClass) {
         super(dateTimeClass);
     }
 
     protected StreamsDateTimeDeserializer(Class<DateTime> dateTimeClass, List<String> formats) {
         super(dateTimeClass);
-        for( String format : formats )
-            formatters.add(DateTimeFormat.forPattern(format));
+        for( String format : formats ) {
+            try {
+                formatters.add(DateTimeFormat.forPattern(format));
+            } catch (Exception e) {
+                LOGGER.warn("Exception parsing format " + format);
+            }
+        }
     }
 
     /**

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/1f5f5e7b/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsJacksonMapper.java
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsJacksonMapper.java b/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsJacksonMapper.java
index ada50e8..2492b2f 100644
--- a/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsJacksonMapper.java
+++ b/streams-pojo/src/main/java/org/apache/streams/jackson/StreamsJacksonMapper.java
@@ -27,8 +27,11 @@ import com.fasterxml.jackson.databind.ObjectMapper;
 import com.fasterxml.jackson.databind.SerializationFeature;
 import com.fasterxml.jackson.module.scala.DefaultScalaModule;
 import com.google.common.collect.Lists;
+import com.google.common.collect.Maps;
+import org.apache.streams.pojo.StreamsJacksonMapperConfiguration;
 
 import java.util.List;
+import java.util.Map;
 
 /**
  * StreamsJacksonMapper is the recommended interface to jackson for any streams component.
@@ -39,10 +42,22 @@ import java.util.List;
  */
 public class StreamsJacksonMapper extends ObjectMapper {
 
-    private static final StreamsJacksonMapper INSTANCE = new StreamsJacksonMapper();
+    private static Map<StreamsJacksonMapperConfiguration, StreamsJacksonMapper> INSTANCE_MAP = Maps.newConcurrentMap();
 
-    public static StreamsJacksonMapper getInstance(){
-        return INSTANCE;
+    private StreamsJacksonMapperConfiguration configuration = new StreamsJacksonMapperConfiguration();
+
+    public static StreamsJacksonMapper getInstance() {
+        return getInstance(new StreamsJacksonMapperConfiguration());
+    }
+
+    public static StreamsJacksonMapper getInstance(StreamsJacksonMapperConfiguration configuration) {
+        if( INSTANCE_MAP.containsKey(configuration) &&
+                INSTANCE_MAP.get(configuration) != null)
+            return INSTANCE_MAP.get(configuration);
+        else {
+            INSTANCE_MAP.put(configuration, new StreamsJacksonMapper(configuration));
+            return INSTANCE_MAP.get(configuration);
+        }
     }
 
     public static StreamsJacksonMapper getInstance(String format){
@@ -68,22 +83,35 @@ public class StreamsJacksonMapper extends ObjectMapper {
      */
     protected StreamsJacksonMapper() {
         super();
-        registerModule(new DefaultScalaModule());
-        registerModule(new StreamsJacksonModule());
+        registerModule(new StreamsJacksonModule(configuration.getDateFormats()));
+        if( configuration.getEnableScala())
+            registerModule(new DefaultScalaModule());
         configure();
     }
 
+    @Deprecated
     public StreamsJacksonMapper(String format) {
         super();
-        registerModule(new DefaultScalaModule());
         registerModule(new StreamsJacksonModule(Lists.newArrayList(format)));
+        if( configuration.getEnableScala())
+            registerModule(new DefaultScalaModule());
         configure();
     }
 
+    @Deprecated
     public StreamsJacksonMapper(List<String> formats) {
         super();
-        registerModule(new DefaultScalaModule());
         registerModule(new StreamsJacksonModule(formats));
+        if( configuration.getEnableScala())
+            registerModule(new DefaultScalaModule());
+        configure();
+    }
+
+    public StreamsJacksonMapper(StreamsJacksonMapperConfiguration configuration) {
+        super();
+        registerModule(new StreamsJacksonModule(configuration.getDateFormats()));
+        if( configuration.getEnableScala())
+            registerModule(new DefaultScalaModule());
         configure();
     }
 

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/1f5f5e7b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/StreamsJacksonMapperConfiguration.json
----------------------------------------------------------------------
diff --git a/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/StreamsJacksonMapperConfiguration.json b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/StreamsJacksonMapperConfiguration.json
new file mode 100644
index 0000000..5bfd082
--- /dev/null
+++ b/streams-pojo/src/main/jsonschema/org/apache/streams/pojo/StreamsJacksonMapperConfiguration.json
@@ -0,0 +1,22 @@
+{
+  "$schema": "http://json-schema.org/draft-03/schema",
+  "$license": [
+    "http://www.apache.org/licenses/LICENSE-2.0"
+  ],
+  "id": "#",
+  "type": "object",
+  "javaType" : "org.apache.streams.pojo.StreamsJacksonMapperConfiguration",
+  "javaInterfaces": ["java.io.Serializable"],
+  "properties": {
+    "dateFormats": {
+      "type": "array",
+      "items": {
+        "type": "string"
+      }
+    },
+    "enableScala": {
+      "type": "boolean",
+      "default": false
+    }
+  }
+}
\ No newline at end of file


[2/8] incubator-streams git commit: resolves STREAMS-427

Posted by mf...@apache.org.
resolves STREAMS-427


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/57541e8b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/57541e8b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/57541e8b

Branch: refs/heads/invalid_headers
Commit: 57541e8b8bb61da98fe1f8a52ff7f85fe55f31cd
Parents: a726b3c
Author: Steve Blackmon @steveblackmon <sb...@apache.org>
Authored: Tue Oct 11 18:15:30 2016 -0500
Committer: Steve Blackmon @steveblackmon <sb...@apache.org>
Committed: Tue Oct 11 18:15:30 2016 -0500

----------------------------------------------------------------------
 .../converter/BaseDocumentClassifier.java       |  3 -
 .../converter/TwitterDocumentClassifier.java    |  5 +-
 .../utils/TwitterActivityConvertersTest.java    | 60 +++++++++++++++++---
 .../TwitterActivityObjectsConvertersTest.java   | 21 ++++++-
 4 files changed, 73 insertions(+), 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/57541e8b/streams-components/streams-converters/src/main/java/org/apache/streams/converter/BaseDocumentClassifier.java
----------------------------------------------------------------------
diff --git a/streams-components/streams-converters/src/main/java/org/apache/streams/converter/BaseDocumentClassifier.java b/streams-components/streams-converters/src/main/java/org/apache/streams/converter/BaseDocumentClassifier.java
index 6451aba..4c38a5f 100644
--- a/streams-components/streams-converters/src/main/java/org/apache/streams/converter/BaseDocumentClassifier.java
+++ b/streams-components/streams-converters/src/main/java/org/apache/streams/converter/BaseDocumentClassifier.java
@@ -45,9 +45,6 @@ public class BaseDocumentClassifier implements DocumentClassifier {
     @Override
     @SuppressWarnings("unchecked")
     public List<Class> detectClasses(Object document) {
-        Preconditions.checkArgument(
-                document instanceof String
-             || document instanceof ObjectNode);
 
         Activity activity = null;
         ObjectNode node = null;

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/57541e8b/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/converter/TwitterDocumentClassifier.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/converter/TwitterDocumentClassifier.java b/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/converter/TwitterDocumentClassifier.java
index 7c8ed8c..8af3470 100644
--- a/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/converter/TwitterDocumentClassifier.java
+++ b/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/converter/TwitterDocumentClassifier.java
@@ -45,7 +45,6 @@ public class TwitterDocumentClassifier implements DocumentClassifier {
     public List<Class> detectClasses(Object document) {
 
         Preconditions.checkNotNull(document);
-        Preconditions.checkArgument(document instanceof String || document instanceof ObjectNode);
 
         mapper = new StreamsJacksonMapper(Lists.newArrayList(StreamsTwitterMapper.TWITTER_FORMAT));
 
@@ -56,7 +55,7 @@ public class TwitterDocumentClassifier implements DocumentClassifier {
             else if( document instanceof ObjectNode )
                 objectNode = (ObjectNode) document;
             else
-                return Lists.newArrayList();
+                objectNode = mapper.convertValue(document, ObjectNode.class);
         } catch (IOException e) {
             return Lists.newArrayList();
         }
@@ -68,7 +67,7 @@ public class TwitterDocumentClassifier implements DocumentClassifier {
         else if( objectNode.findValue("delete") != null )
             classList.add(Delete.class);
         else if( objectNode.findValue("friends") != null ||
-                objectNode.findValue("friends_str") != null )
+                 objectNode.findValue("friends_str") != null )
             classList.add(FriendList.class);
         else if( objectNode.findValue("target_object") != null )
             classList.add(UserstreamEvent.class);

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/57541e8b/streams-contrib/streams-provider-twitter/src/test/java/org/apache/streams/twitter/test/utils/TwitterActivityConvertersTest.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-twitter/src/test/java/org/apache/streams/twitter/test/utils/TwitterActivityConvertersTest.java b/streams-contrib/streams-provider-twitter/src/test/java/org/apache/streams/twitter/test/utils/TwitterActivityConvertersTest.java
index 755a98e..2bd3fa9 100644
--- a/streams-contrib/streams-provider-twitter/src/test/java/org/apache/streams/twitter/test/utils/TwitterActivityConvertersTest.java
+++ b/streams-contrib/streams-provider-twitter/src/test/java/org/apache/streams/twitter/test/utils/TwitterActivityConvertersTest.java
@@ -25,6 +25,10 @@ import org.apache.streams.data.util.ActivityUtil;
 import org.apache.streams.jackson.StreamsJacksonMapper;
 import org.apache.streams.pojo.json.Activity;
 import org.apache.streams.twitter.converter.TwitterDateTimeFormat;
+import org.apache.streams.twitter.pojo.Delete;
+import org.apache.streams.twitter.pojo.Follow;
+import org.apache.streams.twitter.pojo.Retweet;
+import org.apache.streams.twitter.pojo.Tweet;
 import org.junit.Assert;
 import org.junit.Test;
 import org.slf4j.Logger;
@@ -43,13 +47,14 @@ public class TwitterActivityConvertersTest {
 
     private ActivityConverterUtil activityConverterUtil = ActivityConverterUtil.getInstance();
 
-    private String tweet = "{\"created_at\":\"Wed Dec 11 22:27:34 +0000 2013\",\"id\":12345,\"id_str\":\"12345\",\"text\":\"text\",\"source\":\"source\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":91407775,\"id_str\":\"12345\",\"name\":\"name\",\"screen_name\":\"screen_name\",\"location\":\"\",\"url\":null,\"description\":null,\"protected\":false,\"followers_count\":136,\"friends_count\":0,\"listed_count\":1,\"created_at\":\"Fri Nov 20 19:29:02 +0000 2009\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1793,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/profile_background_image_url.png\",\"profile_background_image_url_https\":\"https:\\/\\/profile_b
 ackground_image_url_https.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/profile_image_url.jpg\",\"profile_image_url_https\":\"https:\\/\\/profile_image_url_https.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/url\",\"expanded_url\":\"http:\\/\\/expanded_url\",\"display_url\":\"display_url\",\"indices\":[118,140]}],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"medium\",\"lang\":\"en\"}\n";
-    private String retweet = "{\"created_at\":\"Wed Dec 11 22:27:34 +0000 2013\",\"id\":23456,\"id_str\":\"23456\",\"text\":\"text\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":163149656,\"id_str\":\"34567\",\"name\":\"name\",\"screen_name\":\"screen_name\",\"location\":\"location\",\"url\":\"http:\\/\\/www.youtube.com\\/watch?v=url\",\"description\":\"description\\u00ed\",\"protected\":false,\"followers_count\":41,\"friends_count\":75,\"listed_count\":2,\"created_at\":\"Mon Jul 05 17:35:49 +0000 2010\",\"favourites_count\":4697,\"utc_offset\":-10800,\"time_zone\":\"Buenos Aires\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5257,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C4A64B\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.com\\
 /profile_background_images\\/12345\\/12345.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/12345\\/12345.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/12345\\/12345.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/12345\\/12345.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/12345\\/12345\",\"profile_link_color\":\"BF415A\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"B17CED\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Dec 11 22:25:06 +0000 2013\",\"id\":34567,\"id_str\":\"34567\",\"text\":\"text\",\"sourc
 e\":\"source\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":34567,\"id_str\":\"34567\",\"name\":\"name\",\"screen_name\":\"screen_name\",\"location\":\"\",\"url\":\"http:\\/\\/www.web.com\",\"description\":\"description\",\"protected\":false,\"followers_count\":34307,\"friends_count\":325,\"listed_count\":361,\"created_at\":\"Fri Apr 13 19:00:11 +0000 2012\",\"favourites_count\":44956,\"utc_offset\":3600,\"time_zone\":\"Madrid\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24011,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/profile_background_image_url.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/34567\\/34567.jpeg\",\"profile_background_tile\":false,
 \"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/34567\\/34567.gif\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/34567\\/34567.gif\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/34567\\/34567\",\"profile_link_color\":\"FF00E1\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F3F3F3\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":9,\"favorite_count\":6,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"es\"},\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"screen_name\",\"name\
 ":\"name emocional\",\"id\":45678,\"id_str\":\"45678\",\"indices\":[3,14]}]},\"favorited\":false,\"retweeted\":false,\"filter_level\":\"medium\",\"lang\":\"es\"}\n";
-    private String delete = "{\"delete\":{\"status\":{\"id\":56789,\"user_id\":67890,\"id_str\":\"56789\",\"user_id_str\":\"67890\"}}}\n";
-    private String follow = "{\"follower\":{\"id\":12345},\"followee\":{\"id\":56789}}\n";
+    private String tweetJson = "{\"created_at\":\"Wed Dec 11 22:27:34 +0000 2013\",\"id\":12345,\"id_str\":\"12345\",\"text\":\"text\",\"source\":\"source\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":91407775,\"id_str\":\"12345\",\"name\":\"name\",\"screen_name\":\"screen_name\",\"location\":\"\",\"url\":null,\"description\":null,\"protected\":false,\"followers_count\":136,\"friends_count\":0,\"listed_count\":1,\"created_at\":\"Fri Nov 20 19:29:02 +0000 2009\",\"favourites_count\":0,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"verified\":false,\"statuses_count\":1793,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/profile_background_image_url.png\",\"profile_background_image_url_https\":\"https:\\/\\/profi
 le_background_image_url_https.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/profile_image_url.jpg\",\"profile_image_url_https\":\"https:\\/\\/profile_image_url_https.jpg\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[{\"url\":\"http:\\/\\/url\",\"expanded_url\":\"http:\\/\\/expanded_url\",\"display_url\":\"display_url\",\"indices\":[118,140]}],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"medium\",\"lang\":\"en\"}\n";
+    private String retweetJson = "{\"created_at\":\"Wed Dec 11 22:27:34 +0000 2013\",\"id\":23456,\"id_str\":\"23456\",\"text\":\"text\",\"source\":\"web\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":163149656,\"id_str\":\"34567\",\"name\":\"name\",\"screen_name\":\"screen_name\",\"location\":\"location\",\"url\":\"http:\\/\\/www.youtube.com\\/watch?v=url\",\"description\":\"description\\u00ed\",\"protected\":false,\"followers_count\":41,\"friends_count\":75,\"listed_count\":2,\"created_at\":\"Mon Jul 05 17:35:49 +0000 2010\",\"favourites_count\":4697,\"utc_offset\":-10800,\"time_zone\":\"Buenos Aires\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":5257,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C4A64B\",\"profile_background_image_url\":\"http:\\/\\/a0.twimg.c
 om\\/profile_background_images\\/12345\\/12345.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/12345\\/12345.jpeg\",\"profile_background_tile\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/12345\\/12345.jpeg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/12345\\/12345.jpeg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/12345\\/12345\",\"profile_link_color\":\"BF415A\",\"profile_sidebar_border_color\":\"000000\",\"profile_sidebar_fill_color\":\"B17CED\",\"profile_text_color\":\"3D1957\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Wed Dec 11 22:25:06 +0000 2013\",\"id\":34567,\"id_str\":\"34567\",\"text\":\"text\",\"s
 ource\":\"source\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":34567,\"id_str\":\"34567\",\"name\":\"name\",\"screen_name\":\"screen_name\",\"location\":\"\",\"url\":\"http:\\/\\/www.web.com\",\"description\":\"description\",\"protected\":false,\"followers_count\":34307,\"friends_count\":325,\"listed_count\":361,\"created_at\":\"Fri Apr 13 19:00:11 +0000 2012\",\"favourites_count\":44956,\"utc_offset\":3600,\"time_zone\":\"Madrid\",\"geo_enabled\":false,\"verified\":false,\"statuses_count\":24011,\"lang\":\"es\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"000000\",\"profile_background_image_url\":\"http:\\/\\/profile_background_image_url.jpeg\",\"profile_background_image_url_https\":\"https:\\/\\/si0.twimg.com\\/profile_background_images\\/34567\\/34567.jpeg\",\"profile_background_tile\":fa
 lse,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/34567\\/34567.gif\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/34567\\/34567.gif\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/34567\\/34567\",\"profile_link_color\":\"FF00E1\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"F3F3F3\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":9,\"favorite_count\":6,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[]},\"favorited\":false,\"retweeted\":false,\"lang\":\"es\"},\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"symbols\":[],\"urls\":[],\"user_mentions\":[{\"screen_name\":\"screen_name\",\"n
 ame\":\"name emocional\",\"id\":45678,\"id_str\":\"45678\",\"indices\":[3,14]}]},\"favorited\":false,\"retweeted\":false,\"filter_level\":\"medium\",\"lang\":\"es\"}\n";
+    private String deleteJson = "{\"delete\":{\"status\":{\"id\":56789,\"user_id\":67890,\"id_str\":\"56789\",\"user_id_str\":\"67890\"}}}\n";
+    private String followJson = "{\"follower\":{\"id\":12345},\"followee\":{\"id\":56789}}\n";
 
     @Test
-    public void testConvertTweet() {
+    public void testConvertTweet() throws Exception  {
+        Tweet tweet = mapper.readValue(tweetJson, Tweet.class);
         List<Activity> activityList = activityConverterUtil.convert(tweet);
         Assert.assertTrue(activityList.size() == 1);
         Activity activity = activityList.get(0);
@@ -58,7 +63,8 @@ public class TwitterActivityConvertersTest {
     }
 
     @Test
-    public void testConvertRetweet() {
+    public void testConvertRetweet() throws Exception  {
+        Retweet retweet = mapper.readValue(retweetJson, Retweet.class);
         List<Activity> activityList = activityConverterUtil.convert(retweet);
         Assert.assertTrue(activityList.size() == 1);
         Activity activity = activityList.get(0);
@@ -67,7 +73,8 @@ public class TwitterActivityConvertersTest {
     }
 
     @Test
-    public void testConvertDelete() {
+    public void testConvertDelete() throws Exception  {
+        Delete delete = mapper.readValue(retweetJson, Delete.class);
         List<Activity> activityList = activityConverterUtil.convert(delete);
         Assert.assertTrue(activityList.size() == 1);
         Activity activity = activityList.get(0);
@@ -76,11 +83,48 @@ public class TwitterActivityConvertersTest {
     }
 
     @Test
-    public void testConvertFollow() {
+    public void testConvertFollow() throws Exception {
+        Follow follow = mapper.readValue(retweetJson, Follow.class);
         List<Activity> activityList = activityConverterUtil.convert(follow);
         Assert.assertTrue(activityList.size() == 1);
         Activity activity = activityList.get(0);
         if( !ActivityUtil.isValid(activity) )
             Assert.fail();
     }
+
+    @Test
+    public void testConvertTweetString() {
+        List<Activity> activityList = activityConverterUtil.convert(tweetJson);
+        Assert.assertTrue(activityList.size() == 1);
+        Activity activity = activityList.get(0);
+        if( !ActivityUtil.isValid(activity) )
+            Assert.fail();
+    }
+
+    @Test
+    public void testConvertRetweetString() {
+        List<Activity> activityList = activityConverterUtil.convert(retweetJson);
+        Assert.assertTrue(activityList.size() == 1);
+        Activity activity = activityList.get(0);
+        if( !ActivityUtil.isValid(activity) )
+            Assert.fail();
+    }
+
+    @Test
+    public void testConvertDeleteString() {
+        List<Activity> activityList = activityConverterUtil.convert(deleteJson);
+        Assert.assertTrue(activityList.size() == 1);
+        Activity activity = activityList.get(0);
+        if( !ActivityUtil.isValid(activity) )
+            Assert.fail();
+    }
+
+    @Test
+    public void testConvertFollowString() {
+        List<Activity> activityList = activityConverterUtil.convert(followJson);
+        Assert.assertTrue(activityList.size() == 1);
+        Activity activity = activityList.get(0);
+        if( !ActivityUtil.isValid(activity) )
+            Assert.fail();
+    }
 }

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/57541e8b/streams-contrib/streams-provider-twitter/src/test/java/org/apache/streams/twitter/test/utils/TwitterActivityObjectsConvertersTest.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-twitter/src/test/java/org/apache/streams/twitter/test/utils/TwitterActivityObjectsConvertersTest.java b/streams-contrib/streams-provider-twitter/src/test/java/org/apache/streams/twitter/test/utils/TwitterActivityObjectsConvertersTest.java
index 11cd1e0..07dbbd2 100644
--- a/streams-contrib/streams-provider-twitter/src/test/java/org/apache/streams/twitter/test/utils/TwitterActivityObjectsConvertersTest.java
+++ b/streams-contrib/streams-provider-twitter/src/test/java/org/apache/streams/twitter/test/utils/TwitterActivityObjectsConvertersTest.java
@@ -18,9 +18,15 @@
 
 package org.apache.streams.twitter.test.utils;
 
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.google.common.collect.Lists;
 import org.apache.streams.converter.ActivityObjectConverterUtil;
 import org.apache.streams.data.util.ActivityUtil;
+import org.apache.streams.jackson.StreamsJacksonMapper;
 import org.apache.streams.pojo.json.ActivityObject;
+import org.apache.streams.twitter.converter.TwitterDateTimeFormat;
+import org.apache.streams.twitter.pojo.Retweet;
+import org.apache.streams.twitter.pojo.User;
 import org.junit.Assert;
 import org.junit.Test;
 import org.slf4j.Logger;
@@ -33,15 +39,26 @@ public class TwitterActivityObjectsConvertersTest {
 
     private final static Logger LOGGER = LoggerFactory.getLogger(TwitterActivityObjectsConvertersTest.class);
 
+    private ObjectMapper mapper = StreamsJacksonMapper.getInstance(Lists.newArrayList(TwitterDateTimeFormat.TWITTER_FORMAT));
+
     private ActivityObjectConverterUtil activityObjectConverterUtil = ActivityObjectConverterUtil.getInstance();
 
-    private String user = "{\"id\":1663018644,\"id_str\":\"1663018644\",\"name\":\"M.R. Clark\",\"screen_name\":\"cantennisfan\",\"location\":\"\",\"url\":null,\"description\":null,\"protected\":false,\"verified\":false,\"followers_count\":0,\"friends_count\":5,\"listed_count\":0,\"favourites_count\":2,\"statuses_count\":72,\"created_at\":\"Sun Aug 11 17:23:47 +0000 2013\",\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http://abs.twimg.com/images/themes/theme1/bg.png\",\"profile_background_image_url_https\":\"https://abs.twimg.com/images/themes/theme1/bg.png\",\"profile_background_tile\":false,\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_
 url\":\"http://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png\",\"profile_image_url_https\":\"https://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png\",\"default_profile\":true,\"default_profile_image\":true,\"following\":null,\"follow_request_sent\":null,\"notifications\":null,\"status\":{\"created_at\":\"Thu Jan 01 14:11:48 +0000 2015\",\"id\":550655634706669568,\"id_str\":\"550655634706669568\",\"text\":\"CBC Media Centre - CBC - Air Farce New Year's Eve 2014/2015: http://t.co/lMlL9VbC5e\",\"source\":\"<a href=\\\"https://dev.twitter.com/docs/tfw\\\" rel=\\\"nofollow\\\">Twitter for Websites</a>\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"trends\":[],\
 "urls\":[{\"url\":\"http://t.co/lMlL9VbC5e\",\"expanded_url\":\"http://www.cbc.ca/mediacentre/air-farce-new-years-eve-20142015.html#.VKVVarDhVxR.twitter\",\"display_url\":\"cbc.ca/mediacentre/ai\u2026\",\"indices\":[61,83]}],\"user_mentions\":[],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"medium\",\"lang\":\"en\",\"timestamp_ms\":\"1420121508658\"}}\n";
+    private String userJson = "{\"id\":1663018644,\"id_str\":\"1663018644\",\"name\":\"M.R. Clark\",\"screen_name\":\"cantennisfan\",\"location\":\"\",\"url\":null,\"description\":null,\"protected\":false,\"verified\":false,\"followers_count\":0,\"friends_count\":5,\"listed_count\":0,\"favourites_count\":2,\"statuses_count\":72,\"created_at\":\"Sun Aug 11 17:23:47 +0000 2013\",\"utc_offset\":-18000,\"time_zone\":\"Eastern Time (US & Canada)\",\"geo_enabled\":false,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http://abs.twimg.com/images/themes/theme1/bg.png\",\"profile_background_image_url_https\":\"https://abs.twimg.com/images/themes/theme1/bg.png\",\"profile_background_tile\":false,\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_im
 age_url\":\"http://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png\",\"profile_image_url_https\":\"https://abs.twimg.com/sticky/default_profile_images/default_profile_0_normal.png\",\"default_profile\":true,\"default_profile_image\":true,\"following\":null,\"follow_request_sent\":null,\"notifications\":null,\"status\":{\"created_at\":\"Thu Jan 01 14:11:48 +0000 2015\",\"id\":550655634706669568,\"id_str\":\"550655634706669568\",\"text\":\"CBC Media Centre - CBC - Air Farce New Year's Eve 2014/2015: http://t.co/lMlL9VbC5e\",\"source\":\"<a href=\\\"https://dev.twitter.com/docs/tfw\\\" rel=\\\"nofollow\\\">Twitter for Websites</a>\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"trends\":
 [],\"urls\":[{\"url\":\"http://t.co/lMlL9VbC5e\",\"expanded_url\":\"http://www.cbc.ca/mediacentre/air-farce-new-years-eve-20142015.html#.VKVVarDhVxR.twitter\",\"display_url\":\"cbc.ca/mediacentre/ai\u2026\",\"indices\":[61,83]}],\"user_mentions\":[],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"medium\",\"lang\":\"en\",\"timestamp_ms\":\"1420121508658\"}}\n";
 
     @Test
-    public void testConvertUser() {
+    public void testConvertUser() throws Exception {
+        User user = mapper.readValue(userJson, User.class);
         ActivityObject activityObject = activityObjectConverterUtil.convert(user);
         assert( activityObject != null );
         if( !ActivityUtil.isValid(activityObject) )
             Assert.fail();
     }
+
+    @Test
+    public void testConvertUserString() {
+        ActivityObject activityObject = activityObjectConverterUtil.convert(userJson);
+        assert( activityObject != null );
+        if( !ActivityUtil.isValid(activityObject) )
+            Assert.fail();
+    }
 }


[8/8] incubator-streams git commit: Merge branch 'master' into invalid_headers

Posted by mf...@apache.org.
Merge branch 'master' into invalid_headers


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/1766f34c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/1766f34c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/1766f34c

Branch: refs/heads/invalid_headers
Commit: 1766f34c4b524166b18fc10e53f3066436691eb5
Parents: b8f36f7 2c12724
Author: Matt Franklin <mf...@apache.org>
Authored: Mon Oct 17 16:06:12 2016 -0400
Committer: Matt Franklin <mf...@apache.org>
Committed: Mon Oct 17 16:06:12 2016 -0400

----------------------------------------------------------------------
 .../converter/BaseDocumentClassifier.java       |   3 -
 .../test/data/InstagramActivitySerDeIT.java     | 131 +++++++++++++++++++
 .../twitter/test/InstagramActivitySerDeIT.java  | 131 -------------------
 .../converter/TwitterDocumentClassifier.java    |   5 +-
 .../utils/TwitterActivityConvertersTest.java    |  60 +++++++--
 .../TwitterActivityObjectsConvertersTest.java   |  21 ++-
 streams-pojo/pom.xml                            |   1 +
 .../jackson/StreamsDateTimeDeserializer.java    |  13 +-
 .../streams/jackson/StreamsJacksonMapper.java   |  42 +++++-
 .../pojo/StreamsJacksonMapperConfiguration.json |  22 ++++
 .../src/main/jsonschema/activity.json           |   2 +-
 .../src/main/jsonschema/collection.json         |   2 +-
 .../src/main/jsonschema/media_link.json         |   2 +-
 .../src/main/jsonschema/object.json             |   2 +-
 .../src/main/jsonschema/objectTypes/alert.json  |   2 +-
 .../jsonschema/objectTypes/application.json     |   2 +-
 .../main/jsonschema/objectTypes/article.json    |   2 +-
 .../src/main/jsonschema/objectTypes/audio.json  |   2 +-
 .../src/main/jsonschema/objectTypes/badge.json  |   2 +-
 .../src/main/jsonschema/objectTypes/binary.json |   2 +-
 .../main/jsonschema/objectTypes/bookmark.json   |   2 +-
 .../main/jsonschema/objectTypes/comment.json    |   2 +-
 .../src/main/jsonschema/objectTypes/device.json |   2 +-
 .../src/main/jsonschema/objectTypes/event.json  |   2 +-
 .../src/main/jsonschema/objectTypes/file.json   |   2 +-
 .../src/main/jsonschema/objectTypes/folder.json |   2 +-
 .../src/main/jsonschema/objectTypes/game.json   |   2 +-
 .../src/main/jsonschema/objectTypes/group.json  |   2 +-
 .../src/main/jsonschema/objectTypes/image.json  |   2 +-
 .../src/main/jsonschema/objectTypes/issue.json  |   2 +-
 .../src/main/jsonschema/objectTypes/job.json    |   2 +-
 .../src/main/jsonschema/objectTypes/list.json   |   2 +-
 .../src/main/jsonschema/objectTypes/note.json   |   2 +-
 .../src/main/jsonschema/objectTypes/offer.json  |   2 +-
 .../jsonschema/objectTypes/organization.json    |   2 +-
 .../src/main/jsonschema/objectTypes/page.json   |   2 +-
 .../main/jsonschema/objectTypes/permission.json |   2 +-
 .../src/main/jsonschema/objectTypes/person.json |   2 +-
 .../jsonschema/objectTypes/photo-album.json     |   2 +-
 .../src/main/jsonschema/objectTypes/photo.json  |   2 +-
 .../src/main/jsonschema/objectTypes/place.json  |   2 +-
 .../main/jsonschema/objectTypes/playlist.json   |   2 +-
 .../main/jsonschema/objectTypes/process.json    |   2 +-
 .../main/jsonschema/objectTypes/product.json    |   2 +-
 .../main/jsonschema/objectTypes/property.json   |   2 +-
 .../main/jsonschema/objectTypes/question.json   |   2 +-
 .../src/main/jsonschema/objectTypes/review.json |   2 +-
 .../src/main/jsonschema/objectTypes/role.json   |   2 +-
 .../main/jsonschema/objectTypes/service.json    |   2 +-
 .../src/main/jsonschema/objectTypes/song.json   |   2 +-
 .../src/main/jsonschema/objectTypes/status.json |   2 +-
 .../src/main/jsonschema/objectTypes/task.json   |   2 +-
 .../src/main/jsonschema/objectTypes/team.json   |   2 +-
 .../src/main/jsonschema/objectTypes/video.json  |   2 +-
 .../src/main/jsonschema/verbs/accept.json       |   2 +-
 .../src/main/jsonschema/verbs/access.json       |   2 +-
 .../src/main/jsonschema/verbs/acknowledge.json  |   2 +-
 .../src/main/jsonschema/verbs/add.json          |   2 +-
 .../src/main/jsonschema/verbs/agree.json        |   2 +-
 .../src/main/jsonschema/verbs/append.json       |   2 +-
 .../src/main/jsonschema/verbs/approve.json      |   2 +-
 .../src/main/jsonschema/verbs/archive.json      |   2 +-
 .../src/main/jsonschema/verbs/assign.json       |   2 +-
 .../src/main/jsonschema/verbs/at.json           |   2 +-
 .../src/main/jsonschema/verbs/attach.json       |   2 +-
 .../src/main/jsonschema/verbs/attend.json       |   2 +-
 .../src/main/jsonschema/verbs/author.json       |   2 +-
 .../src/main/jsonschema/verbs/authorize.json    |   2 +-
 .../src/main/jsonschema/verbs/borrow.json       |   2 +-
 .../src/main/jsonschema/verbs/build.json        |   2 +-
 .../src/main/jsonschema/verbs/cancel.json       |   2 +-
 .../src/main/jsonschema/verbs/checkin.json      |   2 +-
 .../src/main/jsonschema/verbs/close.json        |   2 +-
 .../src/main/jsonschema/verbs/complete.json     |   2 +-
 .../src/main/jsonschema/verbs/confirm.json      |   2 +-
 .../src/main/jsonschema/verbs/consume.json      |   2 +-
 .../src/main/jsonschema/verbs/create.json       |   2 +-
 .../src/main/jsonschema/verbs/delete.json       |   2 +-
 .../src/main/jsonschema/verbs/deliver.json      |   2 +-
 .../src/main/jsonschema/verbs/deny.json         |   2 +-
 .../src/main/jsonschema/verbs/disagree.json     |   2 +-
 .../src/main/jsonschema/verbs/dislike.json      |   2 +-
 .../src/main/jsonschema/verbs/experience.json   |   2 +-
 .../src/main/jsonschema/verbs/favorite.json     |   2 +-
 .../src/main/jsonschema/verbs/find.json         |   2 +-
 .../jsonschema/verbs/flag-as-inappropriate.json |   2 +-
 .../src/main/jsonschema/verbs/follow.json       |   2 +-
 .../src/main/jsonschema/verbs/give.json         |   2 +-
 .../src/main/jsonschema/verbs/host.json         |   2 +-
 .../src/main/jsonschema/verbs/ignore.json       |   2 +-
 .../src/main/jsonschema/verbs/insert.json       |   2 +-
 .../src/main/jsonschema/verbs/install.json      |   2 +-
 .../src/main/jsonschema/verbs/interact.json     |   2 +-
 .../src/main/jsonschema/verbs/invite.json       |   2 +-
 .../src/main/jsonschema/verbs/join.json         |   2 +-
 .../src/main/jsonschema/verbs/leave.json        |   2 +-
 .../src/main/jsonschema/verbs/like.json         |   2 +-
 .../src/main/jsonschema/verbs/listen.json       |   2 +-
 .../src/main/jsonschema/verbs/lose.json         |   2 +-
 .../src/main/jsonschema/verbs/make-friend.json  |   2 +-
 .../src/main/jsonschema/verbs/open.json         |   2 +-
 .../src/main/jsonschema/verbs/play.json         |   2 +-
 .../src/main/jsonschema/verbs/post.json         |   2 +-
 .../src/main/jsonschema/verbs/present.json      |   2 +-
 .../src/main/jsonschema/verbs/purchase.json     |   2 +-
 .../src/main/jsonschema/verbs/qualify.json      |   2 +-
 .../src/main/jsonschema/verbs/read.json         |   2 +-
 .../src/main/jsonschema/verbs/receive.json      |   2 +-
 .../src/main/jsonschema/verbs/reject.json       |   2 +-
 .../main/jsonschema/verbs/remove-friend.json    |   2 +-
 .../src/main/jsonschema/verbs/remove.json       |   2 +-
 .../src/main/jsonschema/verbs/replace.json      |   2 +-
 .../main/jsonschema/verbs/request-friend.json   |   2 +-
 .../src/main/jsonschema/verbs/request.json      |   2 +-
 .../src/main/jsonschema/verbs/resolve.json      |   2 +-
 .../src/main/jsonschema/verbs/retract.json      |   2 +-
 .../src/main/jsonschema/verbs/return.json       |   2 +-
 .../src/main/jsonschema/verbs/rsvp-maybe.json   |   2 +-
 .../src/main/jsonschema/verbs/rsvp-no.json      |   2 +-
 .../src/main/jsonschema/verbs/rsvp-yes.json     |   2 +-
 .../src/main/jsonschema/verbs/satisfy.json      |   2 +-
 .../src/main/jsonschema/verbs/save.json         |   2 +-
 .../src/main/jsonschema/verbs/schedule.json     |   2 +-
 .../src/main/jsonschema/verbs/search.json       |   2 +-
 .../src/main/jsonschema/verbs/sell.json         |   2 +-
 .../src/main/jsonschema/verbs/send.json         |   2 +-
 .../src/main/jsonschema/verbs/share.json        |   2 +-
 .../src/main/jsonschema/verbs/sponsor.json      |   2 +-
 .../src/main/jsonschema/verbs/start.json        |   2 +-
 .../main/jsonschema/verbs/stop-following.json   |   2 +-
 .../src/main/jsonschema/verbs/submit.json       |   2 +-
 .../src/main/jsonschema/verbs/tag.json          |   2 +-
 .../src/main/jsonschema/verbs/terminate.json    |   2 +-
 .../src/main/jsonschema/verbs/tie.json          |   2 +-
 .../src/main/jsonschema/verbs/unfavorite.json   |   2 +-
 .../src/main/jsonschema/verbs/unlike.json       |   2 +-
 .../src/main/jsonschema/verbs/unsatisfy.json    |   2 +-
 .../src/main/jsonschema/verbs/unsave.json       |   2 +-
 .../src/main/jsonschema/verbs/unshare.json      |   2 +-
 .../src/main/jsonschema/verbs/update.json       |   2 +-
 .../src/main/jsonschema/verbs/use.json          |   2 +-
 .../src/main/jsonschema/verbs/watch.json        |   2 +-
 .../src/main/jsonschema/verbs/win.json          |   2 +-
 143 files changed, 406 insertions(+), 289 deletions(-)
----------------------------------------------------------------------



[6/8] incubator-streams git commit: Merge branch 'STREAMS-427'

Posted by mf...@apache.org.
Merge branch 'STREAMS-427'


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/3c390fd9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/3c390fd9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/3c390fd9

Branch: refs/heads/invalid_headers
Commit: 3c390fd98c4b4c0479d82c8f8c8c7a7165dcd1cd
Parents: 3234cdb 57541e8
Author: Steve Blackmon @steveblackmon <sb...@apache.org>
Authored: Fri Oct 14 09:34:09 2016 -0500
Committer: Steve Blackmon @steveblackmon <sb...@apache.org>
Committed: Fri Oct 14 09:34:09 2016 -0500

----------------------------------------------------------------------
 .../converter/BaseDocumentClassifier.java       |  3 -
 .../converter/TwitterDocumentClassifier.java    |  5 +-
 .../utils/TwitterActivityConvertersTest.java    | 60 +++++++++++++++++---
 .../TwitterActivityObjectsConvertersTest.java   | 21 ++++++-
 4 files changed, 73 insertions(+), 16 deletions(-)
----------------------------------------------------------------------



[3/8] incubator-streams git commit: update ids to match final destination of schemata

Posted by mf...@apache.org.
update ids to match final destination of schemata


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/c16c2b6b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/c16c2b6b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/c16c2b6b

Branch: refs/heads/invalid_headers
Commit: c16c2b6bd2da655c54f105a76c7a7d8a35e63770
Parents: b21ec4b
Author: Steve Blackmon @steveblackmon <sb...@apache.org>
Authored: Wed Oct 12 13:40:56 2016 -0500
Committer: Steve Blackmon @steveblackmon <sb...@apache.org>
Committed: Wed Oct 12 13:40:56 2016 -0500

----------------------------------------------------------------------
 .../src/main/jsonschema/objectTypes/alert.json                     | 2 +-
 .../src/main/jsonschema/objectTypes/application.json               | 2 +-
 .../src/main/jsonschema/objectTypes/article.json                   | 2 +-
 .../src/main/jsonschema/objectTypes/audio.json                     | 2 +-
 .../src/main/jsonschema/objectTypes/badge.json                     | 2 +-
 .../src/main/jsonschema/objectTypes/binary.json                    | 2 +-
 .../src/main/jsonschema/objectTypes/bookmark.json                  | 2 +-
 .../src/main/jsonschema/objectTypes/comment.json                   | 2 +-
 .../src/main/jsonschema/objectTypes/device.json                    | 2 +-
 .../src/main/jsonschema/objectTypes/event.json                     | 2 +-
 .../src/main/jsonschema/objectTypes/file.json                      | 2 +-
 .../src/main/jsonschema/objectTypes/folder.json                    | 2 +-
 .../src/main/jsonschema/objectTypes/game.json                      | 2 +-
 .../src/main/jsonschema/objectTypes/group.json                     | 2 +-
 .../src/main/jsonschema/objectTypes/image.json                     | 2 +-
 .../src/main/jsonschema/objectTypes/issue.json                     | 2 +-
 .../src/main/jsonschema/objectTypes/job.json                       | 2 +-
 .../src/main/jsonschema/objectTypes/list.json                      | 2 +-
 .../src/main/jsonschema/objectTypes/note.json                      | 2 +-
 .../src/main/jsonschema/objectTypes/offer.json                     | 2 +-
 .../src/main/jsonschema/objectTypes/organization.json              | 2 +-
 .../src/main/jsonschema/objectTypes/page.json                      | 2 +-
 .../src/main/jsonschema/objectTypes/permission.json                | 2 +-
 .../src/main/jsonschema/objectTypes/person.json                    | 2 +-
 .../src/main/jsonschema/objectTypes/photo-album.json               | 2 +-
 .../src/main/jsonschema/objectTypes/photo.json                     | 2 +-
 .../src/main/jsonschema/objectTypes/place.json                     | 2 +-
 .../src/main/jsonschema/objectTypes/playlist.json                  | 2 +-
 .../src/main/jsonschema/objectTypes/process.json                   | 2 +-
 .../src/main/jsonschema/objectTypes/product.json                   | 2 +-
 .../src/main/jsonschema/objectTypes/property.json                  | 2 +-
 .../src/main/jsonschema/objectTypes/question.json                  | 2 +-
 .../src/main/jsonschema/objectTypes/review.json                    | 2 +-
 .../src/main/jsonschema/objectTypes/role.json                      | 2 +-
 .../src/main/jsonschema/objectTypes/service.json                   | 2 +-
 .../src/main/jsonschema/objectTypes/song.json                      | 2 +-
 .../src/main/jsonschema/objectTypes/status.json                    | 2 +-
 .../src/main/jsonschema/objectTypes/task.json                      | 2 +-
 .../src/main/jsonschema/objectTypes/team.json                      | 2 +-
 .../src/main/jsonschema/objectTypes/video.json                     | 2 +-
 40 files changed, 40 insertions(+), 40 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/alert.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/alert.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/alert.json
index 0fa4d60..e85dc1b 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/alert.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/alert.json
@@ -4,7 +4,7 @@
         "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/objectTypes/alert.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/alert.json#",
     "type": "object",
     "title": "alert",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/application.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/application.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/application.json
index ea3219d..108bb49 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/application.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/application.json
@@ -4,7 +4,7 @@
         "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/objectTypes/application.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/application.json#",
     "type": "object",
     "title": "application",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/article.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/article.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/article.json
index 2260532..f519750 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/article.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/article.json
@@ -4,7 +4,7 @@
         "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/objectTypes/article.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/article.json#",
     "type": "object",
     "title": "article",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/audio.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/audio.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/audio.json
index 1e94405..88db093 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/audio.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/audio.json
@@ -4,7 +4,7 @@
         "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/objectTypes/audio.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/audio.json#",
     "type": "object",
     "title": "audio",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/badge.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/badge.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/badge.json
index 08af422..037128c 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/badge.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/badge.json
@@ -4,7 +4,7 @@
         "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/objectTypes/badge.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/badge.json#",
     "type": "object",
     "title": "badge",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/binary.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/binary.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/binary.json
index 8723f51..5028094 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/binary.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/binary.json
@@ -4,7 +4,7 @@
         "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/objectTypes/binary.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/binary.json#",
     "type": "object",
     "title": "binary",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/bookmark.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/bookmark.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/bookmark.json
index 808555f..e8e4603 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/bookmark.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/bookmark.json
@@ -4,7 +4,7 @@
         "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/objectTypes/badge.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/badge.json#",
     "type": "object",
     "title": "bookmark",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/comment.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/comment.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/comment.json
index 1ec2dc2..f79105f 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/comment.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/comment.json
@@ -4,7 +4,7 @@
         "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/objectTypes/comment.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/comment.json#",
     "type": "object",
     "title": "comment",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/device.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/device.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/device.json
index 74dfb39..b9e890b 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/device.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/device.json
@@ -4,7 +4,7 @@
         "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/objectTypes/device.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/device.json#",
     "type": "object",
     "title": "device",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/event.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/event.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/event.json
index f6e5fb6..481334c 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/event.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/event.json
@@ -4,7 +4,7 @@
         "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/objectTypes/event.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/event.json#",
     "type": "object",
     "title": "event",
     "description": "xCal fromat for vevent",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/file.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/file.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/file.json
index 50ec239..38de4e9 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/file.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/file.json
@@ -4,7 +4,7 @@
         "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/objectTypes/file.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/file.json#",
     "type": "object",
     "title": "file",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/folder.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/folder.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/folder.json
index 35592c1..b5d2f05 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/folder.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/folder.json
@@ -4,7 +4,7 @@
         "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/objectTypes/folder.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/folder.json#",
     "type": "object",
     "title": "folder",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/game.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/game.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/game.json
index ca761ed..c3b3617 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/game.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/game.json
@@ -4,7 +4,7 @@
         "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/objectTypes/game.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/game.json#",
     "type": "object",
     "title": "game",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/group.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/group.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/group.json
index 8623922..194a5f7 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/group.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/group.json
@@ -4,7 +4,7 @@
         "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/objectTypes/group.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/group.json#",
     "type": "object",
     "title": "group",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/image.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/image.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/image.json
index 7eca770..45b60ab 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/image.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/image.json
@@ -4,7 +4,7 @@
         "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/objectTypes/image.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/image.json#",
     "type": "object",
     "title": "image",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/issue.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/issue.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/issue.json
index 29f2fad..4e6e8f7 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/issue.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/issue.json
@@ -4,7 +4,7 @@
         "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/objectTypes/issue.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/issue.json#",
     "type": "object",
     "title": "issue",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/job.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/job.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/job.json
index b832f16..1c7ffa5 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/job.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/job.json
@@ -4,7 +4,7 @@
         "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/objectTypes/job.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/job.json#",
     "type": "object",
     "title": "job",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/list.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/list.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/list.json
index c93a5e8..ae2451c 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/list.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/list.json
@@ -4,7 +4,7 @@
         "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/objectTypes/list.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/list.json#",
     "type": "object",
     "title": "list",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/note.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/note.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/note.json
index 63445d5..afd702a 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/note.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/note.json
@@ -4,7 +4,7 @@
         "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/objectTypes/note.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/note.json#",
     "type": "object",
     "title": "note",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/offer.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/offer.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/offer.json
index 6d4b5f2..78292af 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/offer.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/offer.json
@@ -4,7 +4,7 @@
         "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/objectTypes/offer.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/offer.json#",
     "type": "object",
     "title": "offer",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/organization.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/organization.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/organization.json
index 7ee7513..fad7e60 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/organization.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/organization.json
@@ -4,7 +4,7 @@
         "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/objectTypes/organization.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/organization.json#",
     "type": "object",
     "title": "organization",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/page.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/page.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/page.json
index 4f18fcf..c690ff5 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/page.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/page.json
@@ -4,7 +4,7 @@
         "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/objectTypes/page.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/page.json#",
     "type": "object",
     "title": "page",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/permission.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/permission.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/permission.json
index 2a156dc..653ad16 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/permission.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/permission.json
@@ -4,7 +4,7 @@
         "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/objectTypes/permission.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/permission.json#",
     "type": "object",
     "title": "permission",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/person.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/person.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/person.json
index 6855634..cde9b77 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/person.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/person.json
@@ -4,7 +4,7 @@
         "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/objectTypes/person.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/person.json#",
     "type": "object",
     "title": "person",
     "description": "vCard Format. Does not match PoCO",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/photo-album.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/photo-album.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/photo-album.json
index 1ad4b18..a9b2929 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/photo-album.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/photo-album.json
@@ -4,7 +4,7 @@
         "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/objectTypes/photo-album.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/photo-album.json#",
     "type": "object",
     "title": "article",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/photo.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/photo.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/photo.json
index ab44aad..5328812 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/photo.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/photo.json
@@ -4,7 +4,7 @@
         "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/objectTypes/photo.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/photo.json#",
     "type": "object",
     "title": "photo",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/place.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/place.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/place.json
index 02d5fe4..3e698a8 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/place.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/place.json
@@ -4,7 +4,7 @@
         "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/objectTypes/place.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/place.json#",
     "type": "object",
     "title": "place",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/playlist.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/playlist.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/playlist.json
index d40b109..1c9d047 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/playlist.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/playlist.json
@@ -4,7 +4,7 @@
         "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/objectTypes/playlist.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/playlist.json#",
     "type": "object",
     "title": "playlist",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/process.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/process.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/process.json
index 343ff38..f06c1b9 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/process.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/process.json
@@ -4,7 +4,7 @@
         "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/objectTypes/process.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/process.json#",
     "type": "object",
     "title": "process",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/product.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/product.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/product.json
index 7614cb9..a71ffc1 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/product.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/product.json
@@ -4,7 +4,7 @@
         "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/objectTypes/product.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/product.json#",
     "type": "object",
     "title": "product",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/property.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/property.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/property.json
index ff2e73b..3e291ac 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/property.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/property.json
@@ -4,7 +4,7 @@
         "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/objectTypes/property.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/property.json#",
     "type": "object",
     "title": "property",
     "description": "A property describes name, path and value. Can be used with delete, update or post verbs",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/question.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/question.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/question.json
index 9383caf..dc14cba 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/question.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/question.json
@@ -4,7 +4,7 @@
         "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/objectTypes/question.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/question.json#",
     "type": "object",
     "title": "question",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/review.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/review.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/review.json
index 5b5ab58..a6dd637 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/review.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/review.json
@@ -4,7 +4,7 @@
         "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/objectTypes/review.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/review.json#",
     "type": "object",
     "title": "review",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/role.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/role.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/role.json
index 0521f93..234eba8 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/role.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/role.json
@@ -4,7 +4,7 @@
         "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/objectTypes/role.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/role.json#",
     "type": "object",
     "title": "role",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/service.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/service.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/service.json
index ff89fae..3b9adaf 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/service.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/service.json
@@ -4,7 +4,7 @@
         "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/objectTypes/service.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/service.json#",
     "type": "object",
     "title": "service",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/song.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/song.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/song.json
index 2b89d4b..4e4be73 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/song.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/song.json
@@ -4,7 +4,7 @@
         "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/objectTypes/song.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/song.json#",
     "type": "object",
     "title": "song",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/status.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/status.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/status.json
index ac7a844..2360613 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/status.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/status.json
@@ -4,7 +4,7 @@
         "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/objectTypes/status.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/status.json#",
     "type": "object",
     "title": "status",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/task.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/task.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/task.json
index 2c8a3ea..460470e 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/task.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/task.json
@@ -4,7 +4,7 @@
         "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/objectTypes/task.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/task.json#",
     "type": "object",
     "title": "task",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/team.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/team.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/team.json
index f4f7494..d093c5e 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/team.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/team.json
@@ -4,7 +4,7 @@
         "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/objectTypes/team.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/team.json#",
     "type": "object",
     "title": "team",
     "extends": {

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/c16c2b6b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/video.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/video.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/video.json
index 88a528d..955eadc 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/video.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/objectTypes/video.json
@@ -4,7 +4,7 @@
         "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/objectTypes/video.json#",
+    "id": "http://streams.incubator.apache.org/site/0.4-incubating-SNAPSHOT/streams-project/streams-schemas/objectTypes/video.json#",
     "type": "object",
     "title": "video",
     "extends": {


[4/8] incubator-streams git commit: update ids to match final destination of schemata

Posted by mf...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index d8a8bb4..4ccca93 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/reject.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/reject.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/reject.json#",
     "type": "object",
     "title": "Reject",
     "description": "Indicates that the actor has rejected the object.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 84f6b78..41d0966 100644
--- 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
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/remove-friend.json#",
     "type": "object",
     "title": "UnFriend",
     "description": "Indicates that the actor has removed the object from the collection of friends.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 367da5d..49e3fd3 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/remove.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/remove.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/remove.json#",
     "type": "object",
     "title": "Remove",
     "description": "Indicates that the actor has removed the object from the target.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 418ea94..e324d0d 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/replace.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/replace.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/replace.json#",
     "type": "object",
     "title": "Replace",
     "description": "Indicates that the actor has replaced the target with the object.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 51333e2..c0af949 100644
--- 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
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index f15104c..6d22d96 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/request.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/request.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 2b8365d..06c54c6 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/resolve.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/resolve.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 8ddbcbc..d369bad 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/retract.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/retract.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 40426cf..ce28b48 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/return.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/return.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 6e9e8f5..42999b0 100644
--- 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
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/rsvp-maybe.json#",
     "type": "object",
     "title": "Rsvp Maybe",
     "description": "To indicate that the actor may attend an event",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 6339f1e..4f798f5 100644
--- 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
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/rsvp-no.json#",
     "type": "object",
     "title": "Rsvp No",
     "description": "To indicate that the actor will not attend an event",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 7fecc78..51cf299 100644
--- 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
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/rsvp-yes.json#",
     "type": "object",
     "title": "Rsvp Yes",
     "description": "To indicate that the actor will attend an event",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 9c36006..a7e811f 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/satisfy.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/satisfy.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/save.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/save.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/save.json
index 06ec16f..a7f7eaa 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/save.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/save.json
@@ -4,7 +4,7 @@
         "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/save.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/save.json#",
     "type": "object",
     "title": "Save",
     "description": "Indicates that the actor has called out the object as being of interest primarily to him- or herself. Though this action MAY be shared publicly, the implication is that the object has been saved primarily for the actor's own benefit rather than to show it to others as would be indicated by the \"share\" verb.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/schedule.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/schedule.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/schedule.json
index a42d955..603ba7d 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/schedule.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/schedule.json
@@ -4,7 +4,7 @@
         "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/schedule.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/schedule.json#",
     "type": "object",
     "title": "Schedule",
     "description": "Indicates that the actor has scheduled the object. For instance, scheduling a meeting.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/search.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/search.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/search.json
index 1cb8572..979f89c 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/search.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/search.json
@@ -4,7 +4,7 @@
         "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/search.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/search.json#",
     "type": "object",
     "title": "Search",
     "description": "Indicates that the actor is or has searched for the object. If a target is specified, it indicates the context within which the search is or has been conducted.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/sell.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/sell.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/sell.json
index 4ec46b6..e43e7e3 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/sell.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/sell.json
@@ -4,7 +4,7 @@
         "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/sell.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/sell.json#",
     "type": "object",
     "title": "Sell",
     "description": "Indicates that the actor has sold the object. If a target is specified, it indicates the entity to which the object was sold.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/send.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/send.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/send.json
index 69f565c..9977571 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/send.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/send.json
@@ -4,7 +4,7 @@
         "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/send.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/send.json#",
     "type": "object",
     "title": "Send",
     "description": "Indicates that the actor has sent the object to the target.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/share.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/share.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/share.json
index 576f5fb..7f5930f 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/share.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/share.json
@@ -4,7 +4,7 @@
         "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/share.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/share.json#",
     "type": "object",
     "title": "Share",
     "description": "To share an object.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/sponsor.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/sponsor.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/sponsor.json
index 55445b7..a9fead9 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/sponsor.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/sponsor.json
@@ -4,7 +4,7 @@
         "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/sponsor.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/sponsor.json#",
     "type": "object",
     "title": "Sponsor",
     "description": "Indicates that the actor has sponsored the object. If a target is specified, it indicates the context within which the sponsorship is offered. For instance, a company can sponsor an event; or an individual can sponsor a project; etc.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/start.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/start.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/start.json
index 3e52c12..bf93396 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/start.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/start.json
@@ -4,7 +4,7 @@
         "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/start.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/start.json#",
     "type": "object",
     "title": "Start",
     "description": "Indicates that the actor has started the object. For instance, when a person starts a project.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/stop-following.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/stop-following.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/stop-following.json
index cd7c521..5989aca 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/stop-following.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/stop-following.json
@@ -4,7 +4,7 @@
         "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/stop-following.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/stop-following.json#",
     "type": "object",
     "title": "UnFollow",
     "description": "Indicates that the actor has stopped following the object.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/submit.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/submit.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/submit.json
index 58582ee..1fef2e0 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/submit.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/submit.json
@@ -4,7 +4,7 @@
         "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/submit.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/submit.json#",
     "type": "object",
     "title": "Submit",
     "description": "Indicates that the actor has submitted the object. If a target is specified, it indicates the entity to which the object was submitted.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/tag.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/tag.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/tag.json
index 6ed1632..914fca4 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/tag.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/tag.json
@@ -4,7 +4,7 @@
         "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/tag.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/tag.json#",
     "type": "object",
     "title": "Tag",
     "description": "Indicates that the actor has associated the object with the target. For example, if the actor specifies that a particular user appears in a photo. the object is the user and the target is the photo.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/terminate.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/terminate.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/terminate.json
index 9a4d94c..53af5c6 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/terminate.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/terminate.json
@@ -4,7 +4,7 @@
         "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/terminate.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/terminate.json#",
     "type": "object",
     "title": "Terminate",
     "description": "Indicates that the actor has terminated the object.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/tie.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/tie.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/tie.json
index 6637fb9..0e22af9 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/tie.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/tie.json
@@ -4,7 +4,7 @@
         "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/tie.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/tie.json#",
     "type": "object",
     "title": "Tie",
     "description": "Indicates that the actor has neither won or lost the object. This verb is generally only applicable when the object represents some form of competition, such as a game.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unfavorite.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unfavorite.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unfavorite.json
index 2b642b4..3a66f18 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unfavorite.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unfavorite.json
@@ -4,7 +4,7 @@
         "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/unfavorite.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/unfavorite.json#",
     "type": "object",
     "title": "UnFavorite",
     "description": "Indicates that the actor has removed the object from the collection of favorited items.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unlike.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unlike.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unlike.json
index db0b7bc..288673a 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unlike.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unlike.json
@@ -4,7 +4,7 @@
         "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/unlike.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/unlike.json#",
     "type": "object",
     "title": "UnLike",
     "description": "Indicates that the actor has removed the object from the collection of liked items.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unsatisfy.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unsatisfy.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unsatisfy.json
index 381818a..d0a3f05 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unsatisfy.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unsatisfy.json
@@ -4,7 +4,7 @@
         "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/unsatisfy.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/unsatisfy.json#",
     "type": "object",
     "title": "UnSatisfy",
     "description": "Indicates that the actor has not satisfied the object. If a target is specified, it indicates the context within which the object was not satisfied. For instance, if a person fails to satisfy the requirements of some particular challenge, the person is the actor; the requirement is the object and the challenge is the target.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unsave.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unsave.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unsave.json
index 09f7123..1519023 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unsave.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unsave.json
@@ -4,7 +4,7 @@
         "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/unsave.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/unsave.json#",
     "type": "object",
     "title": "UnSave",
     "description": "Indicates that the actor has removed the object from the collection of saved items.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unshare.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unshare.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unshare.json
index 9aceb25..018c4fd 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unshare.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/unshare.json
@@ -4,7 +4,7 @@
         "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/unshare.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/unshare.json#",
     "type": "object",
     "title": "UnSave",
     "description": "Indicates that the actor is no longer sharing the object. If a target is specified, it indicates the entity with whom the object is no longer being shared.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/update.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/update.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/update.json
index 4272bb4..bc6b828 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/update.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/update.json
@@ -4,7 +4,7 @@
         "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/update.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/update.json#",
     "type": "object",
     "title": "Update",
     "description": "The \"update\" verb indicates that the actor has modified the object. Use of the \"update\" verb is generally reserved to indicate modifications to existing objects or data such as changing an existing user's profile information.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/use.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/use.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/use.json
index 26c69a6..eff4113 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/use.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/use.json
@@ -4,7 +4,7 @@
         "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/use.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/use.json#",
     "type": "object",
     "title": "Use",
     "description": "Indicates that the actor has used the object in some manner.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/watch.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/watch.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/watch.json
index 08d7eb0..bf49609 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/watch.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/watch.json
@@ -4,7 +4,7 @@
         "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/watch.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/watch.json#",
     "type": "object",
     "title": "Watch",
     "description": "Indicates that the actor has watched the object. This verb is typically applicable only when the object represents dynamic, visible content such as a movie, a television show or a public performance.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/win.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/win.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/win.json
index baedbaa..dc182ec 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/win.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/win.json
@@ -4,7 +4,7 @@
         "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/win.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/win.json#",
     "type": "object",
     "title": "Win",
     "description": "Indicates that the actor has won the object.  For instance, if a person wins a game.",



[7/8] incubator-streams git commit: Merge branch 'STREAMS-407'

Posted by mf...@apache.org.
Merge branch 'STREAMS-407'


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/2c127244
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/2c127244
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/2c127244

Branch: refs/heads/invalid_headers
Commit: 2c1272444ccd2823df251fbeeda880d41ddd3e4d
Parents: 3c390fd 1f5f5e7
Author: Steve Blackmon @steveblackmon <sb...@apache.org>
Authored: Fri Oct 14 09:37:02 2016 -0500
Committer: Steve Blackmon @steveblackmon <sb...@apache.org>
Committed: Fri Oct 14 09:37:02 2016 -0500

----------------------------------------------------------------------
 streams-pojo/pom.xml                            |  1 +
 .../jackson/StreamsDateTimeDeserializer.java    | 13 +++++-
 .../streams/jackson/StreamsJacksonMapper.java   | 42 ++++++++++++++++----
 .../pojo/StreamsJacksonMapperConfiguration.json | 22 ++++++++++
 4 files changed, 69 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/2c127244/streams-pojo/pom.xml
----------------------------------------------------------------------


[5/8] incubator-streams git commit: update ids to match final destination of schemata

Posted by mf...@apache.org.
update ids to match final destination of schemata


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/3234cdb8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/3234cdb8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/3234cdb8

Branch: refs/heads/invalid_headers
Commit: 3234cdb8bc792ade270dcc868a75915af2bf4e16
Parents: c16c2b6
Author: Steve Blackmon @steveblackmon <sb...@apache.org>
Authored: Wed Oct 12 15:39:50 2016 -0500
Committer: Steve Blackmon @steveblackmon <sb...@apache.org>
Committed: Wed Oct 12 15:39:50 2016 -0500

----------------------------------------------------------------------
 .../test/data/InstagramActivitySerDeIT.java     | 131 +++++++++++++++++++
 .../twitter/test/InstagramActivitySerDeIT.java  | 131 -------------------
 .../src/main/jsonschema/activity.json           |   2 +-
 .../src/main/jsonschema/collection.json         |   2 +-
 .../src/main/jsonschema/media_link.json         |   2 +-
 .../src/main/jsonschema/object.json             |   2 +-
 .../src/main/jsonschema/verbs/accept.json       |   2 +-
 .../src/main/jsonschema/verbs/access.json       |   2 +-
 .../src/main/jsonschema/verbs/acknowledge.json  |   2 +-
 .../src/main/jsonschema/verbs/add.json          |   2 +-
 .../src/main/jsonschema/verbs/agree.json        |   2 +-
 .../src/main/jsonschema/verbs/append.json       |   2 +-
 .../src/main/jsonschema/verbs/approve.json      |   2 +-
 .../src/main/jsonschema/verbs/archive.json      |   2 +-
 .../src/main/jsonschema/verbs/assign.json       |   2 +-
 .../src/main/jsonschema/verbs/at.json           |   2 +-
 .../src/main/jsonschema/verbs/attach.json       |   2 +-
 .../src/main/jsonschema/verbs/attend.json       |   2 +-
 .../src/main/jsonschema/verbs/author.json       |   2 +-
 .../src/main/jsonschema/verbs/authorize.json    |   2 +-
 .../src/main/jsonschema/verbs/borrow.json       |   2 +-
 .../src/main/jsonschema/verbs/build.json        |   2 +-
 .../src/main/jsonschema/verbs/cancel.json       |   2 +-
 .../src/main/jsonschema/verbs/checkin.json      |   2 +-
 .../src/main/jsonschema/verbs/close.json        |   2 +-
 .../src/main/jsonschema/verbs/complete.json     |   2 +-
 .../src/main/jsonschema/verbs/confirm.json      |   2 +-
 .../src/main/jsonschema/verbs/consume.json      |   2 +-
 .../src/main/jsonschema/verbs/create.json       |   2 +-
 .../src/main/jsonschema/verbs/delete.json       |   2 +-
 .../src/main/jsonschema/verbs/deliver.json      |   2 +-
 .../src/main/jsonschema/verbs/deny.json         |   2 +-
 .../src/main/jsonschema/verbs/disagree.json     |   2 +-
 .../src/main/jsonschema/verbs/dislike.json      |   2 +-
 .../src/main/jsonschema/verbs/experience.json   |   2 +-
 .../src/main/jsonschema/verbs/favorite.json     |   2 +-
 .../src/main/jsonschema/verbs/find.json         |   2 +-
 .../jsonschema/verbs/flag-as-inappropriate.json |   2 +-
 .../src/main/jsonschema/verbs/follow.json       |   2 +-
 .../src/main/jsonschema/verbs/give.json         |   2 +-
 .../src/main/jsonschema/verbs/host.json         |   2 +-
 .../src/main/jsonschema/verbs/ignore.json       |   2 +-
 .../src/main/jsonschema/verbs/insert.json       |   2 +-
 .../src/main/jsonschema/verbs/install.json      |   2 +-
 .../src/main/jsonschema/verbs/interact.json     |   2 +-
 .../src/main/jsonschema/verbs/invite.json       |   2 +-
 .../src/main/jsonschema/verbs/join.json         |   2 +-
 .../src/main/jsonschema/verbs/leave.json        |   2 +-
 .../src/main/jsonschema/verbs/like.json         |   2 +-
 .../src/main/jsonschema/verbs/listen.json       |   2 +-
 .../src/main/jsonschema/verbs/lose.json         |   2 +-
 .../src/main/jsonschema/verbs/make-friend.json  |   2 +-
 .../src/main/jsonschema/verbs/open.json         |   2 +-
 .../src/main/jsonschema/verbs/play.json         |   2 +-
 .../src/main/jsonschema/verbs/post.json         |   2 +-
 .../src/main/jsonschema/verbs/present.json      |   2 +-
 .../src/main/jsonschema/verbs/purchase.json     |   2 +-
 .../src/main/jsonschema/verbs/qualify.json      |   2 +-
 .../src/main/jsonschema/verbs/read.json         |   2 +-
 .../src/main/jsonschema/verbs/receive.json      |   2 +-
 .../src/main/jsonschema/verbs/reject.json       |   2 +-
 .../main/jsonschema/verbs/remove-friend.json    |   2 +-
 .../src/main/jsonschema/verbs/remove.json       |   2 +-
 .../src/main/jsonschema/verbs/replace.json      |   2 +-
 .../main/jsonschema/verbs/request-friend.json   |   2 +-
 .../src/main/jsonschema/verbs/request.json      |   2 +-
 .../src/main/jsonschema/verbs/resolve.json      |   2 +-
 .../src/main/jsonschema/verbs/retract.json      |   2 +-
 .../src/main/jsonschema/verbs/return.json       |   2 +-
 .../src/main/jsonschema/verbs/rsvp-maybe.json   |   2 +-
 .../src/main/jsonschema/verbs/rsvp-no.json      |   2 +-
 .../src/main/jsonschema/verbs/rsvp-yes.json     |   2 +-
 .../src/main/jsonschema/verbs/satisfy.json      |   2 +-
 .../src/main/jsonschema/verbs/save.json         |   2 +-
 .../src/main/jsonschema/verbs/schedule.json     |   2 +-
 .../src/main/jsonschema/verbs/search.json       |   2 +-
 .../src/main/jsonschema/verbs/sell.json         |   2 +-
 .../src/main/jsonschema/verbs/send.json         |   2 +-
 .../src/main/jsonschema/verbs/share.json        |   2 +-
 .../src/main/jsonschema/verbs/sponsor.json      |   2 +-
 .../src/main/jsonschema/verbs/start.json        |   2 +-
 .../main/jsonschema/verbs/stop-following.json   |   2 +-
 .../src/main/jsonschema/verbs/submit.json       |   2 +-
 .../src/main/jsonschema/verbs/tag.json          |   2 +-
 .../src/main/jsonschema/verbs/terminate.json    |   2 +-
 .../src/main/jsonschema/verbs/tie.json          |   2 +-
 .../src/main/jsonschema/verbs/unfavorite.json   |   2 +-
 .../src/main/jsonschema/verbs/unlike.json       |   2 +-
 .../src/main/jsonschema/verbs/unsatisfy.json    |   2 +-
 .../src/main/jsonschema/verbs/unsave.json       |   2 +-
 .../src/main/jsonschema/verbs/unshare.json      |   2 +-
 .../src/main/jsonschema/verbs/update.json       |   2 +-
 .../src/main/jsonschema/verbs/use.json          |   2 +-
 .../src/main/jsonschema/verbs/watch.json        |   2 +-
 .../src/main/jsonschema/verbs/win.json          |   2 +-
 95 files changed, 224 insertions(+), 224 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/instagram/test/data/InstagramActivitySerDeIT.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/instagram/test/data/InstagramActivitySerDeIT.java b/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/instagram/test/data/InstagramActivitySerDeIT.java
new file mode 100644
index 0000000..6d1bebd
--- /dev/null
+++ b/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/instagram/test/data/InstagramActivitySerDeIT.java
@@ -0,0 +1,131 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.streams.twitter.test;
+
+import org.apache.commons.lang.StringUtils;
+import org.apache.streams.instagram.serializer.util.InstagramDeserializer;
+import org.apache.streams.pojo.json.Activity;
+import org.jinstagram.entity.users.basicinfo.UserInfoData;
+import org.jinstagram.entity.users.feed.MediaFeedData;
+import org.junit.Assert;
+import org.junit.Test;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.io.BufferedReader;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.util.Map;
+
+import static org.apache.streams.instagram.serializer.util.InstagramActivityUtil.updateActivity;
+import static org.hamcrest.CoreMatchers.*;
+import static org.junit.Assert.assertThat;
+
+/**
+ * Tests conversion of instagram inputs to Activity
+ */
+public class InstagramActivitySerDeIT {
+
+    private final static Logger LOGGER = LoggerFactory.getLogger(InstagramActivitySerDeIT.class);
+
+    @Test
+    public void TestMediaFeedObjects() {
+        InstagramDeserializer instagramDeserializer = new InstagramDeserializer("");
+        InputStream is = InstagramActivitySerDeIT.class.getResourceAsStream("/testMediaFeedObjects.txt");
+        InputStreamReader isr = new InputStreamReader(is);
+        BufferedReader br = new BufferedReader(isr);
+
+        try {
+            while (br.ready()) {
+                String line = br.readLine();
+                if(!StringUtils.isEmpty(line))
+                {
+                    LOGGER.info("raw: {}", line);
+
+                    MediaFeedData mediaFeedData = instagramDeserializer.createObjectFromResponse(MediaFeedData.class, line);
+
+                    Activity activity = new Activity();
+
+                    LOGGER.info("activity: {}", activity.toString());
+
+                    updateActivity(mediaFeedData, activity);
+                    assertThat(activity, is(not(nullValue())));
+
+                    assertThat(activity.getId(), is(not(nullValue())));
+                    assertThat(activity.getActor(), is(not(nullValue())));
+                    assertThat(activity.getActor().getId(), is(not(nullValue())));
+                    assertThat(activity.getVerb(), is(not(nullValue())));
+                    assertThat(activity.getProvider(), is(not(nullValue())));
+                }
+            }
+        } catch( Exception e ) {
+            LOGGER.error("Exception: ", e);
+            Assert.fail();
+        }
+    }
+
+    @Test
+    public void TestUserInfoData() {
+        InstagramDeserializer instagramDeserializer = new InstagramDeserializer("");
+        InputStream is = InstagramActivitySerDeIT.class.getResourceAsStream("/testUserInfoData.txt");
+        InputStreamReader isr = new InputStreamReader(is);
+        BufferedReader br = new BufferedReader(isr);
+
+        try {
+            while (br.ready()) {
+                String line = br.readLine();
+                if(!StringUtils.isEmpty(line))
+                {
+                    LOGGER.info("raw: {}", line);
+
+                    UserInfoData userInfoData = instagramDeserializer.createObjectFromResponse(UserInfoData.class, line);
+
+                    Activity activity = new Activity();
+
+                    LOGGER.info("activity: {}", activity.toString());
+
+                    updateActivity(userInfoData, activity);
+                    assertThat(activity, is(not(nullValue())));
+
+                    assertThat(activity.getId(), is(nullValue()));
+                    assertThat(activity.getActor(), is(not(nullValue())));
+                    assertThat(activity.getActor().getImage(), is(not(nullValue())));
+                    assertThat(activity.getActor().getDisplayName(), is(not(nullValue())));
+                    assertThat(activity.getActor().getSummary(), is(not(nullValue())));
+
+                    Map<String, Object> extensions = (Map<String, Object>)activity.getActor().getAdditionalProperties().get("extensions");
+                    assertThat(extensions, is(not(nullValue())));
+                    assertThat(extensions.get("follows"), is(not(nullValue())));
+                    assertThat(extensions.get("followers"), is(not(nullValue())));
+                    assertThat(extensions.get("screenName"), is(not(nullValue())));
+                    assertThat(extensions.get("posts"), is(not(nullValue())));
+
+                    assertThat(activity.getActor().getAdditionalProperties().get("handle"), is(not(nullValue())));
+                    assertThat(activity.getActor().getId(), is(not(nullValue())));
+                    assertThat(activity.getActor().getUrl(), is(not(nullValue())));
+                    assertThat(activity.getVerb(), is(not(nullValue())));
+                    assertThat(activity.getProvider(), is(not(nullValue())));
+                }
+            }
+        } catch( Exception e ) {
+            LOGGER.error("Exception: ", e);
+            Assert.fail();
+        }
+    }
+}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/twitter/test/InstagramActivitySerDeIT.java
----------------------------------------------------------------------
diff --git a/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/twitter/test/InstagramActivitySerDeIT.java b/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/twitter/test/InstagramActivitySerDeIT.java
deleted file mode 100644
index 6d1bebd..0000000
--- a/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/twitter/test/InstagramActivitySerDeIT.java
+++ /dev/null
@@ -1,131 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.streams.twitter.test;
-
-import org.apache.commons.lang.StringUtils;
-import org.apache.streams.instagram.serializer.util.InstagramDeserializer;
-import org.apache.streams.pojo.json.Activity;
-import org.jinstagram.entity.users.basicinfo.UserInfoData;
-import org.jinstagram.entity.users.feed.MediaFeedData;
-import org.junit.Assert;
-import org.junit.Test;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-import java.io.BufferedReader;
-import java.io.InputStream;
-import java.io.InputStreamReader;
-import java.util.Map;
-
-import static org.apache.streams.instagram.serializer.util.InstagramActivityUtil.updateActivity;
-import static org.hamcrest.CoreMatchers.*;
-import static org.junit.Assert.assertThat;
-
-/**
- * Tests conversion of instagram inputs to Activity
- */
-public class InstagramActivitySerDeIT {
-
-    private final static Logger LOGGER = LoggerFactory.getLogger(InstagramActivitySerDeIT.class);
-
-    @Test
-    public void TestMediaFeedObjects() {
-        InstagramDeserializer instagramDeserializer = new InstagramDeserializer("");
-        InputStream is = InstagramActivitySerDeIT.class.getResourceAsStream("/testMediaFeedObjects.txt");
-        InputStreamReader isr = new InputStreamReader(is);
-        BufferedReader br = new BufferedReader(isr);
-
-        try {
-            while (br.ready()) {
-                String line = br.readLine();
-                if(!StringUtils.isEmpty(line))
-                {
-                    LOGGER.info("raw: {}", line);
-
-                    MediaFeedData mediaFeedData = instagramDeserializer.createObjectFromResponse(MediaFeedData.class, line);
-
-                    Activity activity = new Activity();
-
-                    LOGGER.info("activity: {}", activity.toString());
-
-                    updateActivity(mediaFeedData, activity);
-                    assertThat(activity, is(not(nullValue())));
-
-                    assertThat(activity.getId(), is(not(nullValue())));
-                    assertThat(activity.getActor(), is(not(nullValue())));
-                    assertThat(activity.getActor().getId(), is(not(nullValue())));
-                    assertThat(activity.getVerb(), is(not(nullValue())));
-                    assertThat(activity.getProvider(), is(not(nullValue())));
-                }
-            }
-        } catch( Exception e ) {
-            LOGGER.error("Exception: ", e);
-            Assert.fail();
-        }
-    }
-
-    @Test
-    public void TestUserInfoData() {
-        InstagramDeserializer instagramDeserializer = new InstagramDeserializer("");
-        InputStream is = InstagramActivitySerDeIT.class.getResourceAsStream("/testUserInfoData.txt");
-        InputStreamReader isr = new InputStreamReader(is);
-        BufferedReader br = new BufferedReader(isr);
-
-        try {
-            while (br.ready()) {
-                String line = br.readLine();
-                if(!StringUtils.isEmpty(line))
-                {
-                    LOGGER.info("raw: {}", line);
-
-                    UserInfoData userInfoData = instagramDeserializer.createObjectFromResponse(UserInfoData.class, line);
-
-                    Activity activity = new Activity();
-
-                    LOGGER.info("activity: {}", activity.toString());
-
-                    updateActivity(userInfoData, activity);
-                    assertThat(activity, is(not(nullValue())));
-
-                    assertThat(activity.getId(), is(nullValue()));
-                    assertThat(activity.getActor(), is(not(nullValue())));
-                    assertThat(activity.getActor().getImage(), is(not(nullValue())));
-                    assertThat(activity.getActor().getDisplayName(), is(not(nullValue())));
-                    assertThat(activity.getActor().getSummary(), is(not(nullValue())));
-
-                    Map<String, Object> extensions = (Map<String, Object>)activity.getActor().getAdditionalProperties().get("extensions");
-                    assertThat(extensions, is(not(nullValue())));
-                    assertThat(extensions.get("follows"), is(not(nullValue())));
-                    assertThat(extensions.get("followers"), is(not(nullValue())));
-                    assertThat(extensions.get("screenName"), is(not(nullValue())));
-                    assertThat(extensions.get("posts"), is(not(nullValue())));
-
-                    assertThat(activity.getActor().getAdditionalProperties().get("handle"), is(not(nullValue())));
-                    assertThat(activity.getActor().getId(), is(not(nullValue())));
-                    assertThat(activity.getActor().getUrl(), is(not(nullValue())));
-                    assertThat(activity.getVerb(), is(not(nullValue())));
-                    assertThat(activity.getProvider(), is(not(nullValue())));
-                }
-            }
-        } catch( Exception e ) {
-            LOGGER.error("Exception: ", e);
-            Assert.fail();
-        }
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/activity.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/activity.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/activity.json
index 2edd759..27089b9 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/activity.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/activity.json
@@ -4,7 +4,7 @@
         "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/activity.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/activity.json#",
     "type": "object",
     "title": "activity",
     "javaInterfaces": ["java.io.Serializable"],

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/collection.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/collection.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/collection.json
index 38f83e7..d73b2fb 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/collection.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/collection.json
@@ -4,7 +4,7 @@
         "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/collection.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/collection.json#",
     "type": "object",
     "title": "collection",
     "javaInterfaces": ["java.io.Serializable"],

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/media_link.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/media_link.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/media_link.json
index e7eece0..50c2107 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/media_link.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/media_link.json
@@ -4,7 +4,7 @@
         "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/media_link.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/media_link.json#",
     "type": "object",
     "title": "media_link",
     "javaInterfaces": ["java.io.Serializable"],

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/object.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/object.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/object.json
index 94f6719..0baf0ca 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/object.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/object.json
@@ -4,7 +4,7 @@
         "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/object.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/object.json#",
     "type": "object",
     "title": "object",
     "javaInterfaces": ["java.io.Serializable"],

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/accept.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/accept.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/accept.json
index 04efee5..b0b9e97 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/accept.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/accept.json
@@ -4,7 +4,7 @@
         "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/accept.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/accept.json#",
     "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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/access.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/access.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/access.json
index eb08184..fec12b6 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/access.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/access.json
@@ -4,7 +4,7 @@
         "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/access.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/access.json#",
     "type": "object",
     "title": "Access",
     "description": "Indicates that the actor has accessed the object. For instance, a person accessing a room, or accessing a file.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/acknowledge.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/acknowledge.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/acknowledge.json
index aae6209..1113209 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/acknowledge.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/acknowledge.json
@@ -4,7 +4,7 @@
         "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/acknowledge.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/acknowledge.json#",
     "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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/add.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/add.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/add.json
index 4d99411..0589a57 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/add.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/add.json
@@ -4,7 +4,7 @@
         "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/add.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/add.json#",
     "type": "object",
     "title": "Add",
     "description": "Indicates that the actor has added the object to the target. For instance, adding a photo to an album.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/agree.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/agree.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/agree.json
index 9e79c2a..05f70a0 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/agree.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/agree.json
@@ -4,7 +4,7 @@
         "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/agree.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/agree.json#",
     "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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/append.json
----------------------------------------------------------------------
diff --git a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/append.json b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/append.json
index 60e1a82..e10caae 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/append.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/append.json
@@ -4,7 +4,7 @@
         "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/append.json#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/append.json#",
     "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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 247871c..925f4fb 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/approve.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/approve.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 7ee2226..e9fb278 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/archive.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/archive.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/archive.json#",
     "type": "object",
     "title": "Archive",
     "description": "Indicates that the actor has archived the object.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 1d43041..825772c 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/assign.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/assign.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/assign.json#",
     "type": "object",
     "title": "Assign",
     "description": "Indicates that the actor has assigned the object to the target.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 34497e2..5086942 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/at.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/at.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 76c5a4f..1bc578c 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/attach.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/attach.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 6b02d07..b691beb 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/attend.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/attend.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 4898139..73e1825 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/author.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/author.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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\".",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 661e32c..5f98fb2 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/authorize.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/authorize.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 74eee36..f43e7cb 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/borrow.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/borrow.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index d8e7d25..da57314 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/build.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/build.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 0d82c8e..90db9df 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/cancel.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/cancel.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/cancel.json#",
     "type": "object",
     "title": "Cancel",
     "description": "Indicates that the actor has canceled the object. For instance, canceling a calendar event.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 88a9c86..2695b54 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/checkin.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/checkin.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 88a31b6..fa97fb8 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/close.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/close.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index ddffd0e..f7a704d 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/complete.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/complete.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/complete.json#",
     "type": "object",
     "title": "Complete",
     "description": "Indicates that the actor has completed the object",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 5148c8c..0af2167 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/confirm.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/confirm.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 661b40b..fd4ede5 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/consume.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/consume.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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\".",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index c5ad298..14ac78f 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/create.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/create.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/create.json#",
     "type": "object",
     "title": "Create",
     "description": "Indicates that the actor has created the object.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 544bf5d..7545781 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/delete.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/delete.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/delete.json#",
     "type": "object",
     "title": "Delete",
     "description": "Indicates that the actor has deleted the object.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 4d3d2c1..282c2a3 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/deliver.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/deliver.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/deliver.json#",
     "type": "object",
     "title": "Deliver",
     "description": "Indicates that the actor has delivered the object. For example, delivering a package.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index f880ad3..b79dfd8 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/deny.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/deny.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 17f0c4c..292fdb2 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/disagree.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/disagree.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/disagree.json#",
     "type": "object",
     "title": "Disagree",
     "description": "Indicates that the actor disagrees with the object.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 308d5eb..2a1038d 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/dislike.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/dislike.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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\".",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 543ac2c..d35e75b 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/experience.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/experience.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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\"",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 17e2490..12385a4 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/favorite.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/favorite.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/favorite.json#",
     "type": "object",
     "title": "Favorite",
     "description": "Indicates that the actor marked the object as an item of special interest.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 79ebbe8..e1e4937 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/find.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/find.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/find.json#",
     "type": "object",
     "title": "Find",
     "description": "Indicates that the actor has found the object.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index f7b5785..550a8d6 100644
--- 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
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 2a922f9..e84332f 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/follow.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/follow.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 952fa59..6db134c 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/give.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/give.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 9661abe..fe47e77 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/host.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/host.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index ae0ea6a..ccb5bbc 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/ignore.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/ignore.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 8dcd756..d083c5d 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/insert.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/insert.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/insert.json#",
     "type": "object",
     "title": "Insert",
     "description": "Indicates that the actor has inserted the object into the target.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 6b270fa..9748f2d 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/install.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/install.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/install.json#",
     "type": "object",
     "title": "Install",
     "description": "Indicates that the actor has installed the object, as in installing an application.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 5098ee3..a042a03 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/interact.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/interact.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 625a170..2fba0ba 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/invite.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/invite.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 5276072..4e09653 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/join.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/join.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/join.json#",
     "type": "object",
     "title": "Join",
     "description": "Indicates that the actor has become a member of the object.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 9995099..65e1a7b 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/leave.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/leave.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index d583305..1bd009f 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/like.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/like.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/like.json#",
     "type": "object",
     "title": "Like",
     "description": "Indicates that the actor marked the object as an item of special interest.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 9982ac6..589eefe 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/listen.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/listen.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 1d959a4..3f4d2ba 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/lose.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/lose.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 141aba7..dcc10c0 100644
--- 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
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/make-friend.json#",
     "type": "object",
     "title": "Befriend",
     "description": "Indicates the creation of a friendship that is reciprocated by the object.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 6c06529..d92d96f 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/open.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/open.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 115ac11..94a7aba 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/play.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/play.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 20a5feb..03eb33e 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/post.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/post.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/streams-schemas/verbs/post.json#",
     "type": "object",
     "title": "Post",
     "description": "To publish an object",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 0cf7154..b0f968e 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/present.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/present.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index e867ad9..d31db8b 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/purchase.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/purchase.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 8bc5248..6a135d3 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/qualify.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/qualify.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index 2776a4e..95aee49 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/read.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/read.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",

http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/3234cdb8/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
index da88b34..3837619 100644
--- a/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/receive.json
+++ b/streams-schemas/streams-schema-activitystreams/src/main/jsonschema/verbs/receive.json
@@ -4,7 +4,7 @@
         "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#",
+    "id": "http://streams.incubator.apache.org/site/latest/streams-project/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.",