[atlas] branch master updated: Missing AtlasEntityDef constructor for serviceType

2019-03-25 Thread apoorvnaik
This is an automated email from the ASF dual-hosted git repository.

apoorvnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/master by this push:
 new b2a77d0  Missing AtlasEntityDef constructor for serviceType
 new dcf0404  Merge pull request #33 from ZepHakase22/miss-service-type
b2a77d0 is described below

commit b2a77d0f657e321c6e2d54f73ac9b6a0fec59cad
Author: Diego Marino Monetti 
AuthorDate: Fri Mar 22 12:48:06 2019 +0100

Missing AtlasEntityDef constructor for serviceType
---
 .../apache/atlas/model/typedef/AtlasEntityDef.java | 39 ++
 1 file changed, 33 insertions(+), 6 deletions(-)

diff --git 
a/intg/src/main/java/org/apache/atlas/model/typedef/AtlasEntityDef.java 
b/intg/src/main/java/org/apache/atlas/model/typedef/AtlasEntityDef.java
index 36bb3df..29dbf09 100644
--- a/intg/src/main/java/org/apache/atlas/model/typedef/AtlasEntityDef.java
+++ b/intg/src/main/java/org/apache/atlas/model/typedef/AtlasEntityDef.java
@@ -22,6 +22,7 @@ import com.fasterxml.jackson.annotation.JsonAutoDetect;
 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
 
+
 import org.apache.atlas.model.PList;
 import org.apache.atlas.model.SearchFilter.SortType;
 import org.apache.atlas.model.TypeCategory;
@@ -60,29 +61,44 @@ public class AtlasEntityDef extends AtlasStructDef 
implements java.io.Serializab
 
 
 public AtlasEntityDef() {
-this(null, null, null, null, null, null);
+this(null, null, null, null, null, null, null);
 }
 
 public AtlasEntityDef(String name) {
-this(name, null, null, null, null, null);
+this(name, null, null, null, null, null, null);
 }
 
 public AtlasEntityDef(String name, String description) {
-this(name, description, null, null, null, null);
+this(name, description, null, null, null, null, null);
 }
 
 public AtlasEntityDef(String name, String description, String typeVersion) 
{
-this(name, description, typeVersion, null, null, null);
+this(name, description, typeVersion, null, null, null, null);
+}
+
+public AtlasEntityDef(String name, String description, String typeVersion, 
String serviceType) {
+this(name, description, typeVersion, serviceType, null, null, null);
 }
 
+
 public AtlasEntityDef(String name, String description, String typeVersion, 
List attributeDefs) {
-this(name, description, typeVersion, attributeDefs, null, null);
+this(name, description, typeVersion, attributeDefs, null);
+}
+
+public AtlasEntityDef(String name, String description, String typeVersion, 
String serviceType, List attributeDefs) {
+this(name, description, typeVersion, serviceType, attributeDefs, null, 
null);
 }
 
 public AtlasEntityDef(String name, String description, String typeVersion, 
List attributeDefs,
   Set superTypes) {
 this(name, description, typeVersion, attributeDefs, superTypes, null);
 }
+
+public AtlasEntityDef(String name, String description, String typeVersion, 
String serviceType, List attributeDefs,
+Set superTypes) {
+   this(name, description, typeVersion, serviceType, attributeDefs, 
superTypes, null);
+}
+
 
 public AtlasEntityDef(String name, String description, String typeVersion, 
List attributeDefs,
   Set superTypes, Map options) 
{
@@ -90,6 +106,14 @@ public class AtlasEntityDef extends AtlasStructDef 
implements java.io.Serializab
 
 setSuperTypes(superTypes);
 }
+
+public AtlasEntityDef(String name, String description, String typeVersion, 
String serviceType, List attributeDefs,
+Set superTypes, Map options) {
+   super(TypeCategory.ENTITY, name, description, typeVersion, 
attributeDefs, serviceType, options);
+
+   setSuperTypes(superTypes);
+   }
+
 
 public AtlasEntityDef(AtlasEntityDef other) {
 super(other);
@@ -97,7 +121,10 @@ public class AtlasEntityDef extends AtlasStructDef 
implements java.io.Serializab
 setSuperTypes(other != null ? other.getSuperTypes() : null);
 }
 
-public Set getSuperTypes() {
+
+
+
+   public Set getSuperTypes() {
 return superTypes;
 }
 



[atlas] branch master updated (b455040 -> b7d113d)

2019-01-10 Thread apoorvnaik
This is an automated email from the ASF dual-hosted git repository.

apoorvnaik pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git.


from b455040  ATLAS-3025 : UI - If go to page is more/less then the 
available page limit then an error appears in the console
 add 5496b7a  word wrong
 new b7d113d  Merge pull request #10 from WangJ1an/patch-1

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../org/apache/atlas/repository/store/graph/v1/HardDeleteHandlerV1.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[atlas] 01/01: Merge pull request #10 from WangJ1an/patch-1

2019-01-10 Thread apoorvnaik
This is an automated email from the ASF dual-hosted git repository.

apoorvnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git

commit b7d113dc8eb1525e03e4497346db5da54350370b
Merge: b455040 5496b7a
Author: Apoorv Naik <21226970+apoorv-n...@users.noreply.github.com>
AuthorDate: Thu Jan 10 16:05:01 2019 -0800

Merge pull request #10 from WangJ1an/patch-1

Typo in debug logs of HardDeleteHandler

 .../org/apache/atlas/repository/store/graph/v1/HardDeleteHandlerV1.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



atlas git commit: ATLAS-2520: Introduce JanusGraphTraversal to deprecate use of GremlinScriptEngine

2018-10-25 Thread apoorvnaik
Repository: atlas
Updated Branches:
  refs/heads/master 927753159 -> 5317a7215


ATLAS-2520: Introduce JanusGraphTraversal to deprecate use of 
GremlinScriptEngine


Project: http://git-wip-us.apache.org/repos/asf/atlas/repo
Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/5317a721
Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/5317a721
Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/5317a721

Branch: refs/heads/master
Commit: 5317a7215e21321235c1b9cc99d61d78b10659eb
Parents: 9277531
Author: apoorvnaik 
Authored: Tue Oct 23 15:39:29 2018 -0700
Committer: apoorvnaik 
Committed: Thu Oct 25 11:29:55 2018 -0700

--
 graphdb/api/pom.xml |   5 +
 .../atlas/repository/graphdb/AtlasGraph.java|  21 +-
 .../repository/graphdb/AtlasGraphTraversal.java |  91 
 .../graphdb/AtlasGraphTraversalSource.java  |  40 
 .../graphdb/janus/AtlasJanusGraph.java  |  19 ++
 .../graphdb/janus/AtlasJanusGraphTraversal.java | 232 +++
 .../org/apache/atlas/query/GremlinQuery.java|  38 ---
 7 files changed, 401 insertions(+), 45 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/5317a721/graphdb/api/pom.xml
--
diff --git a/graphdb/api/pom.xml b/graphdb/api/pom.xml
index 14b273f..58ca51a 100644
--- a/graphdb/api/pom.xml
+++ b/graphdb/api/pom.xml
@@ -46,6 +46,11 @@
 org.codehaus.jettison
 jettison
 
+
+org.apache.tinkerpop
+gremlin-core
+3.3.3
+
 
 
 

http://git-wip-us.apache.org/repos/asf/atlas/blob/5317a721/graphdb/api/src/main/java/org/apache/atlas/repository/graphdb/AtlasGraph.java
--
diff --git 
a/graphdb/api/src/main/java/org/apache/atlas/repository/graphdb/AtlasGraph.java 
b/graphdb/api/src/main/java/org/apache/atlas/repository/graphdb/AtlasGraph.java
index 31d2085..09eab28 100644
--- 
a/graphdb/api/src/main/java/org/apache/atlas/repository/graphdb/AtlasGraph.java
+++ 
b/graphdb/api/src/main/java/org/apache/atlas/repository/graphdb/AtlasGraph.java
@@ -17,18 +17,17 @@
  */
 package org.apache.atlas.repository.graphdb;
 
+import org.apache.atlas.exception.AtlasBaseException;
+import org.apache.atlas.groovy.GroovyExpression;
+import org.apache.atlas.type.AtlasType;
+
+import javax.script.ScriptEngine;
+import javax.script.ScriptException;
 import java.io.IOException;
 import java.io.OutputStream;
 import java.util.Map;
 import java.util.Set;
 
-import javax.script.ScriptEngine;
-import javax.script.ScriptException;
-
-import org.apache.atlas.exception.AtlasBaseException;
-import org.apache.atlas.groovy.GroovyExpression;
-import org.apache.atlas.type.AtlasType;
-
 /**
  * Represents a graph.
  *
@@ -144,6 +143,14 @@ public interface AtlasGraph {
 AtlasGraphQuery query();
 
 /**
+ * Start a graph traversal
+ * @return
+ */
+AtlasGraphTraversal V(Object ... vertexIds);
+
+AtlasGraphTraversal E(Object ... edgeIds);
+
+/**
  * Creates an index query.
  *
  * @param indexName index name

http://git-wip-us.apache.org/repos/asf/atlas/blob/5317a721/graphdb/api/src/main/java/org/apache/atlas/repository/graphdb/AtlasGraphTraversal.java
--
diff --git 
a/graphdb/api/src/main/java/org/apache/atlas/repository/graphdb/AtlasGraphTraversal.java
 
b/graphdb/api/src/main/java/org/apache/atlas/repository/graphdb/AtlasGraphTraversal.java
new file mode 100644
index 000..881bb1e
--- /dev/null
+++ 
b/graphdb/api/src/main/java/org/apache/atlas/repository/graphdb/AtlasGraphTraversal.java
@@ -0,0 +1,91 @@
+/**
+ * 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
+ * with the License.  You may obtain a copy of the License at
+ * 
+ * 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.atlas.repository.graphdb;
+
+import 
org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.DefaultGraphTraversal;
+import 
org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphT

atlas git commit: Fix for generating correct REST API docs

2018-10-24 Thread apoorvnaik
Repository: atlas
Updated Branches:
  refs/heads/master 93bd535eb -> 756c272ef


Fix for generating correct REST API docs


Project: http://git-wip-us.apache.org/repos/asf/atlas/repo
Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/756c272e
Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/756c272e
Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/756c272e

Branch: refs/heads/master
Commit: 756c272ef0db175b3b6aca09d86b8a4acafd27ca
Parents: 93bd535
Author: apoorvnaik 
Authored: Mon Oct 22 09:22:45 2018 -0700
Committer: apoorvnaik 
Committed: Wed Oct 24 21:49:59 2018 -0700

--
 build-tools/src/main/resources/enunciate.xml|  8 ++--
 pom.xml |  4 +-
 .../apache/atlas/web/rest/DiscoveryREST.java| 29 ++
 .../org/apache/atlas/web/rest/EntityREST.java   | 41 +---
 .../org/apache/atlas/web/rest/GlossaryREST.java |  7 ++--
 .../org/apache/atlas/web/rest/LineageREST.java  |  6 +--
 .../apache/atlas/web/rest/RelationshipREST.java | 22 ++-
 .../org/apache/atlas/web/rest/TypesREST.java| 35 ++---
 8 files changed, 32 insertions(+), 120 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/756c272e/build-tools/src/main/resources/enunciate.xml
--
diff --git a/build-tools/src/main/resources/enunciate.xml 
b/build-tools/src/main/resources/enunciate.xml
index dafd66f..e01d696 100755
--- a/build-tools/src/main/resources/enunciate.xml
+++ b/build-tools/src/main/resources/enunciate.xml
@@ -16,8 +16,7 @@
   ~ limitations under the License.
   -->
 
-http://www.w3.org/2001/XMLSchema-instance;
-   
xsi:noNamespaceSchemaLocation="http://enunciate.webcohesion.com/schemas/enunciate-2.8.0.xsd;>
+http://www.w3.org/2001/XMLSchema-instance; 
xsi:noNamespaceSchemaLocation="http://enunciate.webcohesion.com/schemas/enunciate-2.11.0.xsd;>
 Atlas REST API
  Atlas exposes a variety of REST endpoints to work with 
types, entities, lineage and data discovery.
 
@@ -26,8 +25,9 @@
 
 
 
-
-
+
+
+
 
 
 

http://git-wip-us.apache.org/repos/asf/atlas/blob/756c272e/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 91ec2c8..887d3ba 100644
--- a/pom.xml
+++ b/pom.xml
@@ -693,7 +693,7 @@
 1.3.7
 2.7
 0.8
-2.10.1
+2.11.1
 4.5
 3.7
 1.8
@@ -716,7 +716,7 @@
 false
 true
 true
-true
+false
 ${project.basedir}
 10
 

http://git-wip-us.apache.org/repos/asf/atlas/blob/756c272e/webapp/src/main/java/org/apache/atlas/web/rest/DiscoveryREST.java
--
diff --git a/webapp/src/main/java/org/apache/atlas/web/rest/DiscoveryREST.java 
b/webapp/src/main/java/org/apache/atlas/web/rest/DiscoveryREST.java
index 82d6f35..64da211 100644
--- a/webapp/src/main/java/org/apache/atlas/web/rest/DiscoveryREST.java
+++ b/webapp/src/main/java/org/apache/atlas/web/rest/DiscoveryREST.java
@@ -51,6 +51,7 @@ import javax.ws.rs.PathParam;
 import javax.ws.rs.Produces;
 import javax.ws.rs.QueryParam;
 import javax.ws.rs.core.Context;
+import javax.ws.rs.core.MediaType;
 import java.io.IOException;
 import java.util.List;
 
@@ -60,6 +61,8 @@ import java.util.List;
 @Path("v2/search")
 @Singleton
 @Service
+@Consumes({Servlets.JSON_MEDIA_TYPE, MediaType.APPLICATION_JSON})
+@Produces({Servlets.JSON_MEDIA_TYPE, MediaType.APPLICATION_JSON})
 public class DiscoveryREST {
 private static final Logger PERF_LOG = 
AtlasPerfTracer.getPerfLogger("rest.DiscoveryREST");
 
@@ -95,8 +98,6 @@ public class DiscoveryREST {
  */
 @GET
 @Path("/dsl")
-@Consumes(Servlets.JSON_MEDIA_TYPE)
-@Produces(Servlets.JSON_MEDIA_TYPE)
 public AtlasSearchResult searchUsingDSL(@QueryParam("query")  
String query,
 @QueryParam("typeName")   
String typeName,
 @QueryParam("classification") 
String classification,
@@ -144,8 +145,6 @@ public class DiscoveryREST {
  */
 @GET
 @Path("/fulltext")
-@Consumes(Servlets.JSON_MEDIA_TYPE)
-@Produces(Servlets.JSON_MEDIA_TYPE)
 public AtlasSearchResult searchUsingFullText(@QueryParam("query")  
String  query,
  
@QueryParam("excludeDeletedEntities") boolean excludeDeletedEntities,
  @QueryParam("limit")  

[21/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.0.0/api/v2/resource_TypesREST.html
--
diff --git a/1.0.0/api/v2/resource_TypesREST.html 
b/1.0.0/api/v2/resource_TypesREST.html
index 17064fa..764df82 100644
--- a/1.0.0/api/v2/resource_TypesREST.html
+++ b/1.0.0/api/v2/resource_TypesREST.html
@@ -67,6 +67,7 @@
   GET 
/v2/types/structdef/name/{name}
   GET 
/v2/types/typedef/guid/{guid}
   GET 
/v2/types/typedef/name/{name}
+  DELETE 
/v2/types/typedef/name/{typeName}
   
   Back to 
Top
 
@@ -99,10 +100,15 @@
   
   
   
+application/json
+AtlasTypesDef
+ (JSON)
+A composite object that captures all types to be 
deleted
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-A composite object that 
captures all types to be deleted
   
   
 
@@ -134,10 +140,624 @@
   Request
   
 DELETE /v2/types/typedefs
-Content-Type: application/json;charset=UTF-8
-
-
-...
+Content-Type: application/json
+
+
+{
+  classificationDefs : [ {
+entityTypes : [ ..., ... ],
+subTypes : [ ..., ... ],
+superTypes : [ ..., ... ],
+attributeDefs : [ {
+  cardinality : SET,
+  constraints : [ { }, { } ],
+  defaultValue : ...,
+  description : ...,
+  includeInNotification : true,
+  isIndexable : true,
+  isOptional : true,
+  isUnique : true,
+  name : ...,
+  options : {
+property1 : ...,
+property2 : ...
+  },
+  typeName : ...,
+  valuesMaxCount : 12345,
+  valuesMinCount : 12345
+}, {
+  cardinality : SINGLE,
+  constraints : [ { }, { } ],
+  defaultValue : ...,
+  description : ...,
+  includeInNotification : true,
+  isIndexable : true,
+  isOptional : true,
+  isUnique : true,
+  name : ...,
+  options : {
+property1 : ...,
+property2 : ...
+  },
+  typeName : ...,
+  valuesMaxCount : 12345,
+  valuesMinCount : 12345
+} ],
+category : RELATIONSHIP,
+createTime : 12345,
+createdBy : ...,
+dateFormatter : {
+  availableLocales : [ ..., ... ],
+  calendar : 12345,
+  dateInstance : { },
+  dateTimeInstance : { },
+  instance : { },
+  lenient : true,
+  numberFormat : { },
+  timeInstance : { },
+  timeZone : { }
+},
+description : ...,
+guid : ...,
+name : ...,
+options : {
+  property1 : ...,
+  property2 : ...
+},
+typeVersion : ...,
+updateTime : 12345,
+updatedBy : ...,
+version : 12345
+  }, {
+entityTypes : [ ..., ... ],
+subTypes : [ ..., ... ],
+superTypes : [ ..., ... ],
+attributeDefs : [ {
+  cardinality : SINGLE,
+  constraints : [ { }, { } ],
+  defaultValue : ...,
+  description : ...,
+  includeInNotification : true,
+  isIndexable : true,
+  isOptional : true,
+  isUnique : true,
+  name : ...,
+  options : {
+property1 : ...,
+property2 : ...
+  },
+  typeName : ...,
+  valuesMaxCount : 12345,
+  valuesMinCount : 12345
+}, {
+  cardinality : SINGLE,
+  constraints : [ { }, { } ],
+  defaultValue : ...,
+  description : ...,
+  includeInNotification : true,
+  isIndexable : true,
+  isOptional : true,
+  isUnique : true,
+  name : ...,
+  options : {
+property1 : ...,
+property2 : ...
+  },
+  typeName : ...,
+  valuesMaxCount : 12345,
+  valuesMinCount : 12345
+} ],
+category : ENUM,
+createTime : 12345,
+createdBy : ...,
+dateFormatter : {
+  availableLocales : [ ..., ... ],
+  calendar : 12345,
+  dateInstance : { },
+  dateTimeInstance : { },
+  instance : { },
+  lenient : true,
+  numberFormat : { },
+  timeInstance : { },
+  timeZone : { }
+},
+description : ...,
+guid : ...,
+name : ...,
+options : {
+  property1 : ...,
+  property2 : ...
+},
+typeVersion : ...,
+updateTime : 12345,
+updatedBy : ...,
+version : 12345
+  } ],
+  entityDefs : [ {
+subTypes : [ ..., ... ],
+superTypes : [ ..., ... ],
+attributeDefs : [ {
+  cardinality : SINGLE,
+  constraints : [ { }, { } ],
+  defaultValue : ...,
+  description : ...,
+  includeInNotification : true,
+  isIndexable : true,
+  isOptional : true,
+  isUnique : true,
+  name : ...,
+  options : {
+property1 : ...,
+property2 : ...
+  },
+  typeName : ...,
+  valuesMaxCount : 12345,
+  valuesMinCount : 12345
+}, {
+  cardinality : LIST,
+  constraints : [ { }, { } ],
+  defaultValue : ...,
+  

[07/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/api/v2/resource_DiscoveryREST.html
--
diff --git a/api/v2/resource_DiscoveryREST.html 
b/api/v2/resource_DiscoveryREST.html
index cea178c..e26c89a 100644
--- a/api/v2/resource_DiscoveryREST.html
+++ b/api/v2/resource_DiscoveryREST.html
@@ -160,10 +160,15 @@ without any results
   
   
   
+application/json
+AtlasSearchResult
+ (JSON)
+Search results
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-Search results
   
   
 
@@ -175,8 +180,8 @@ without any results
   Request
   
 GET /v2/search/attribute
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
+Content-Type: application/json
+Accept: application/json
 
 
 ...
@@ -187,10 +192,312 @@ Accept: application/json;charset=UTF-8
   Response
   
 HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-
-
-...
+Content-Type: application/json
+
+
+{
+  attributes : {
+name : [ ..., ... ],
+values : [ ]
+  },
+  classification : ...,
+  entities : [ {
+classificationNames : [ ..., ... ],
+classifications : [ {
+  entityGuid : ...,
+  entityStatus : ACTIVE,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+}, {
+  entityGuid : ...,
+  entityStatus : DELETED,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+} ],
+displayText : ...,
+guid : ...,
+meaningNames : [ ..., ... ],
+meanings : [ {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : OTHER,
+  steward : ...,
+  termGuid : ...
+}, {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : PROPOSED,
+  steward : ...,
+  termGuid : ...
+} ],
+status : DELETED,
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+classificationNames : [ ..., ... ],
+classifications : [ {
+  entityGuid : ...,
+  entityStatus : DELETED,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+}, {
+  entityGuid : ...,
+  entityStatus : ACTIVE,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+} ],
+displayText : ...,
+guid : ...,
+meaningNames : [ ..., ... ],
+meanings : [ {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : PROPOSED,
+  steward : ...,
+  termGuid : ...
+}, {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : OTHER,
+  steward : ...,
+  termGuid : ...
+} ],
+status : DELETED,
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  fullTextResult : [ {
+entity : {
+  classificationNames : [ ..., ... ],
+  classifications : [ { }, { } ],
+  displayText : ...,
+  guid : ...,
+  meaningNames : [ ..., ... ],
+  meanings : [ { }, { } ],
+  status : DELETED,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+},
+score : 12345.0
+  }, {
+entity : {
+  classificationNames : [ ..., ... ],
+  classifications : [ { }, { } ],
+  displayText : ...,
+  guid : ...,
+  meaningNames : [ ..., ... ],
+  meanings : [ { }, { } ],
+  status : ACTIVE,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+},
+score : 12345.0
+  } ],
+  queryText : ...,
+  queryType : ATTRIBUTE,
+  referredEntities : {
+property1 : {
+  classificationNames : [ ..., ... ],
+  classifications : [ {
+ 

[24/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.0.0/api/v2/resource_EntityREST.html
--
diff --git a/1.0.0/api/v2/resource_EntityREST.html 
b/1.0.0/api/v2/resource_EntityREST.html
index af806cf..e3743fc 100644
--- a/1.0.0/api/v2/resource_EntityREST.html
+++ b/1.0.0/api/v2/resource_EntityREST.html
@@ -103,6 +103,11 @@ Existing entity is matched using its unique guid if 
supplied or by its unique at
   
   
   
+application/json
+AtlasEntityWithExtInfo
+ (JSON)
+  
+  
 application/json;charset=UTF-8
 (custom)
 
@@ -121,10 +126,15 @@ Existing entity is matched using its unique guid if 
supplied or by its unique at
   
   
   
+application/json
+EntityMutationResponse
+ (JSON)
+EntityMutationResponse
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-EntityMutationResponse
   
   
 
@@ -136,11 +146,212 @@ Existing entity is matched using its unique guid if 
supplied or by its unique at
   Request
   
 POST /v2/entity
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
+Content-Type: application/json
+Accept: application/json
 
-
-...
+
+{
+  entity : {
+classifications : [ {
+  entityGuid : ...,
+  entityStatus : DELETED,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+}, {
+  entityGuid : ...,
+  entityStatus : DELETED,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+} ],
+createTime : 12345,
+createdBy : ...,
+guid : ...,
+homeId : ...,
+meanings : [ {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : DISCOVERED,
+  steward : ...,
+  termGuid : ...
+}, {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : DEPRECATED,
+  steward : ...,
+  termGuid : ...
+} ],
+proxy : true,
+relationshipAttributes : {
+  property1 : { },
+  property2 : { }
+},
+status : ACTIVE,
+updateTime : 12345,
+updatedBy : ...,
+version : 12345,
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  },
+  referredEntities : {
+property1 : {
+  classifications : [ {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  createTime : 12345,
+  createdBy : ...,
+  guid : ...,
+  homeId : ...,
+  meanings : [ {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : VALIDATED,
+steward : ...,
+termGuid : ...
+  }, {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : IMPORTED,
+steward : ...,
+termGuid : ...
+  } ],
+  proxy : true,
+  relationshipAttributes : {
+property1 : { },
+property2 : { }
+  },
+  status : DELETED,
+  updateTime : 12345,
+  updatedBy : ...,
+  version : 12345,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+},
+property2 : {
+  classifications : [ {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : 

[05/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/api/v2/resource_GlossaryREST.html
--
diff --git a/api/v2/resource_GlossaryREST.html 
b/api/v2/resource_GlossaryREST.html
index 3f0feef..4f6ec88 100644
--- a/api/v2/resource_GlossaryREST.html
+++ b/api/v2/resource_GlossaryREST.html
@@ -159,10 +159,15 @@
   
   
   
+application/json
+array of AtlasGlossary
+ (JSON)
+List of glossary entities fitting the above 
criteria
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-List of glossary entities 
fitting the above criteria
   
   
 
@@ -174,8 +179,8 @@
   Request
   
 GET /v2/glossary
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
+Content-Type: application/json
+Accept: application/json
 
 
 ...
@@ -186,10 +191,89 @@ Accept: application/json;charset=UTF-8
   Response
   
 HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-
-
-...
+Content-Type: application/json
+
+
+[ {
+  categories : [ {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  }, {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  } ],
+  language : ...,
+  terms : [ {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : OTHER,
+steward : ...,
+termGuid : ...
+  }, {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : DRAFT,
+steward : ...,
+termGuid : ...
+  } ],
+  usage : ...,
+  classifications : [ {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+}, {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+} ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+}, {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+} ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  longDescription : ...,
+  name : ...,
+  qualifiedName : ...,
+  shortDescription : ...,
+  guid : ...
+} ]
 
   
 
@@ -213,11 +297,16 @@ Content-Type: application/json;charset=UTF-8
   
   
   
+application/json
+AtlasGlossary
+ (JSON)
+Glossary definition, terms & categories can be 
anchored to a glossary
+using the anchor attribute when creating the Term/Category
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-Glossary definition, terms & 
categories can be anchored to a glossary
-using the anchor attribute when creating the Term/Category
   
   
 
@@ -257,10 +346,15 @@ using the anchor attribute when creating the 
Term/Category
   
   
   
+application/json
+AtlasGlossary
+ (JSON)
+
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-
   
   
 
@@ -272,11 +366,90 @@ using the anchor attribute when creating the 
Term/Category
   Request
   
 POST /v2/glossary
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
-
-
-...
+Content-Type: application/json
+Accept: application/json
+
+
+{
+  categories : [ {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  }, {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  } ],
+  language : ...,
+  terms : [ {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : ACTIVE,
+steward : ...,
+termGuid : ...
+  }, {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : DRAFT,
+steward : ...,
+termGuid : ...
+  } ],
+  usage : ...,
+  classifications : [ {
+entityGuid : ...,
+entityStatus : 

[04/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/api/v2/resource_LineageREST.html
--
diff --git a/api/v2/resource_LineageREST.html b/api/v2/resource_LineageREST.html
index 93e5769..7320f3c 100644
--- a/api/v2/resource_LineageREST.html
+++ b/api/v2/resource_LineageREST.html
@@ -143,10 +143,15 @@
   
   
   
+application/json
+AtlasLineageInfo
+ (JSON)
+AtlasLineageInfo
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-AtlasLineageInfo
   
   
 
@@ -158,8 +163,8 @@
   Request
   
 GET /v2/lineage/{guid}
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
+Content-Type: application/json
+Accept: application/json
 
 
 ...
@@ -170,10 +175,141 @@ Accept: application/json;charset=UTF-8
   Response
   
 HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
+Content-Type: application/json
 
-
-...
+
+{
+  baseEntityGuid : ...,
+  guidEntityMap : {
+property1 : {
+  classificationNames : [ ..., ... ],
+  classifications : [ {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  displayText : ...,
+  guid : ...,
+  meaningNames : [ ..., ... ],
+  meanings : [ {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : PROPOSED,
+steward : ...,
+termGuid : ...
+  }, {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : OTHER,
+steward : ...,
+termGuid : ...
+  } ],
+  status : ACTIVE,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+},
+property2 : {
+  classificationNames : [ ..., ... ],
+  classifications : [ {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  displayText : ...,
+  guid : ...,
+  meaningNames : [ ..., ... ],
+  meanings : [ {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : VALIDATED,
+steward : ...,
+termGuid : ...
+  }, {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : OTHER,
+steward : ...,
+termGuid : ...
+  } ],
+  status : ACTIVE,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+}
+  },
+  lineageDepth : 12345,
+  lineageDirection : OUTPUT,
+  relations : [ {
+fromEntityId : ...,
+relationshipId : ...,
+toEntityId : ...
+  }, {
+fromEntityId : ...,
+relationshipId : ...,
+toEntityId : ...
+  } ]
+}
 
   
 

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/api/v2/resource_RelationshipREST.html
--
diff --git a/api/v2/resource_RelationshipREST.html 
b/api/v2/resource_RelationshipREST.html
index c95271d..8239ae9 100644
--- a/api/v2/resource_RelationshipREST.html
+++ b/api/v2/resource_RelationshipREST.html
@@ -85,6 +85,11 @@
   
   
   
+application/json
+AtlasRelationship
+ 

[25/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.0.0/api/v2/resource_DiscoveryREST.html
--
diff --git a/1.0.0/api/v2/resource_DiscoveryREST.html 
b/1.0.0/api/v2/resource_DiscoveryREST.html
index cea178c..e26c89a 100644
--- a/1.0.0/api/v2/resource_DiscoveryREST.html
+++ b/1.0.0/api/v2/resource_DiscoveryREST.html
@@ -160,10 +160,15 @@ without any results
   
   
   
+application/json
+AtlasSearchResult
+ (JSON)
+Search results
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-Search results
   
   
 
@@ -175,8 +180,8 @@ without any results
   Request
   
 GET /v2/search/attribute
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
+Content-Type: application/json
+Accept: application/json
 
 
 ...
@@ -187,10 +192,312 @@ Accept: application/json;charset=UTF-8
   Response
   
 HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-
-
-...
+Content-Type: application/json
+
+
+{
+  attributes : {
+name : [ ..., ... ],
+values : [ ]
+  },
+  classification : ...,
+  entities : [ {
+classificationNames : [ ..., ... ],
+classifications : [ {
+  entityGuid : ...,
+  entityStatus : ACTIVE,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+}, {
+  entityGuid : ...,
+  entityStatus : DELETED,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+} ],
+displayText : ...,
+guid : ...,
+meaningNames : [ ..., ... ],
+meanings : [ {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : OTHER,
+  steward : ...,
+  termGuid : ...
+}, {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : PROPOSED,
+  steward : ...,
+  termGuid : ...
+} ],
+status : DELETED,
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+classificationNames : [ ..., ... ],
+classifications : [ {
+  entityGuid : ...,
+  entityStatus : DELETED,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+}, {
+  entityGuid : ...,
+  entityStatus : ACTIVE,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+} ],
+displayText : ...,
+guid : ...,
+meaningNames : [ ..., ... ],
+meanings : [ {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : PROPOSED,
+  steward : ...,
+  termGuid : ...
+}, {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : OTHER,
+  steward : ...,
+  termGuid : ...
+} ],
+status : DELETED,
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  fullTextResult : [ {
+entity : {
+  classificationNames : [ ..., ... ],
+  classifications : [ { }, { } ],
+  displayText : ...,
+  guid : ...,
+  meaningNames : [ ..., ... ],
+  meanings : [ { }, { } ],
+  status : DELETED,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+},
+score : 12345.0
+  }, {
+entity : {
+  classificationNames : [ ..., ... ],
+  classifications : [ { }, { } ],
+  displayText : ...,
+  guid : ...,
+  meaningNames : [ ..., ... ],
+  meanings : [ { }, { } ],
+  status : ACTIVE,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+},
+score : 12345.0
+  } ],
+  queryText : ...,
+  queryType : ATTRIBUTE,
+  referredEntities : {
+property1 : {
+  classificationNames : [ ..., ... ],

[06/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/api/v2/resource_EntityREST.html
--
diff --git a/api/v2/resource_EntityREST.html b/api/v2/resource_EntityREST.html
index af806cf..e3743fc 100644
--- a/api/v2/resource_EntityREST.html
+++ b/api/v2/resource_EntityREST.html
@@ -103,6 +103,11 @@ Existing entity is matched using its unique guid if 
supplied or by its unique at
   
   
   
+application/json
+AtlasEntityWithExtInfo
+ (JSON)
+  
+  
 application/json;charset=UTF-8
 (custom)
 
@@ -121,10 +126,15 @@ Existing entity is matched using its unique guid if 
supplied or by its unique at
   
   
   
+application/json
+EntityMutationResponse
+ (JSON)
+EntityMutationResponse
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-EntityMutationResponse
   
   
 
@@ -136,11 +146,212 @@ Existing entity is matched using its unique guid if 
supplied or by its unique at
   Request
   
 POST /v2/entity
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
+Content-Type: application/json
+Accept: application/json
 
-
-...
+
+{
+  entity : {
+classifications : [ {
+  entityGuid : ...,
+  entityStatus : DELETED,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+}, {
+  entityGuid : ...,
+  entityStatus : DELETED,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+} ],
+createTime : 12345,
+createdBy : ...,
+guid : ...,
+homeId : ...,
+meanings : [ {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : DISCOVERED,
+  steward : ...,
+  termGuid : ...
+}, {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : DEPRECATED,
+  steward : ...,
+  termGuid : ...
+} ],
+proxy : true,
+relationshipAttributes : {
+  property1 : { },
+  property2 : { }
+},
+status : ACTIVE,
+updateTime : 12345,
+updatedBy : ...,
+version : 12345,
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  },
+  referredEntities : {
+property1 : {
+  classifications : [ {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  createTime : 12345,
+  createdBy : ...,
+  guid : ...,
+  homeId : ...,
+  meanings : [ {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : VALIDATED,
+steward : ...,
+termGuid : ...
+  }, {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : IMPORTED,
+steward : ...,
+termGuid : ...
+  } ],
+  proxy : true,
+  relationshipAttributes : {
+property1 : { },
+property2 : { }
+  },
+  status : DELETED,
+  updateTime : 12345,
+  updatedBy : ...,
+  version : 12345,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+},
+property2 : {
+  classifications : [ {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+

[23/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.0.0/api/v2/resource_GlossaryREST.html
--
diff --git a/1.0.0/api/v2/resource_GlossaryREST.html 
b/1.0.0/api/v2/resource_GlossaryREST.html
index 3f0feef..4f6ec88 100644
--- a/1.0.0/api/v2/resource_GlossaryREST.html
+++ b/1.0.0/api/v2/resource_GlossaryREST.html
@@ -159,10 +159,15 @@
   
   
   
+application/json
+array of AtlasGlossary
+ (JSON)
+List of glossary entities fitting the above 
criteria
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-List of glossary entities 
fitting the above criteria
   
   
 
@@ -174,8 +179,8 @@
   Request
   
 GET /v2/glossary
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
+Content-Type: application/json
+Accept: application/json
 
 
 ...
@@ -186,10 +191,89 @@ Accept: application/json;charset=UTF-8
   Response
   
 HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-
-
-...
+Content-Type: application/json
+
+
+[ {
+  categories : [ {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  }, {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  } ],
+  language : ...,
+  terms : [ {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : OTHER,
+steward : ...,
+termGuid : ...
+  }, {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : DRAFT,
+steward : ...,
+termGuid : ...
+  } ],
+  usage : ...,
+  classifications : [ {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+}, {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+} ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+}, {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+} ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  longDescription : ...,
+  name : ...,
+  qualifiedName : ...,
+  shortDescription : ...,
+  guid : ...
+} ]
 
   
 
@@ -213,11 +297,16 @@ Content-Type: application/json;charset=UTF-8
   
   
   
+application/json
+AtlasGlossary
+ (JSON)
+Glossary definition, terms & categories can be 
anchored to a glossary
+using the anchor attribute when creating the Term/Category
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-Glossary definition, terms & 
categories can be anchored to a glossary
-using the anchor attribute when creating the Term/Category
   
   
 
@@ -257,10 +346,15 @@ using the anchor attribute when creating the 
Term/Category
   
   
   
+application/json
+AtlasGlossary
+ (JSON)
+
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-
   
   
 
@@ -272,11 +366,90 @@ using the anchor attribute when creating the 
Term/Category
   Request
   
 POST /v2/glossary
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
-
-
-...
+Content-Type: application/json
+Accept: application/json
+
+
+{
+  categories : [ {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  }, {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  } ],
+  language : ...,
+  terms : [ {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : ACTIVE,
+steward : ...,
+termGuid : ...
+  }, {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : DRAFT,
+steward : ...,
+termGuid : ...
+  } ],
+  usage : ...,
+  classifications : [ {
+entityGuid : 

[14/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.1.0/api/v2/resource_GlossaryREST.html
--
diff --git a/1.1.0/api/v2/resource_GlossaryREST.html 
b/1.1.0/api/v2/resource_GlossaryREST.html
index 3f0feef..4f6ec88 100644
--- a/1.1.0/api/v2/resource_GlossaryREST.html
+++ b/1.1.0/api/v2/resource_GlossaryREST.html
@@ -159,10 +159,15 @@
   
   
   
+application/json
+array of AtlasGlossary
+ (JSON)
+List of glossary entities fitting the above 
criteria
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-List of glossary entities 
fitting the above criteria
   
   
 
@@ -174,8 +179,8 @@
   Request
   
 GET /v2/glossary
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
+Content-Type: application/json
+Accept: application/json
 
 
 ...
@@ -186,10 +191,89 @@ Accept: application/json;charset=UTF-8
   Response
   
 HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-
-
-...
+Content-Type: application/json
+
+
+[ {
+  categories : [ {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  }, {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  } ],
+  language : ...,
+  terms : [ {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : OTHER,
+steward : ...,
+termGuid : ...
+  }, {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : DRAFT,
+steward : ...,
+termGuid : ...
+  } ],
+  usage : ...,
+  classifications : [ {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+}, {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+} ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+}, {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+} ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  longDescription : ...,
+  name : ...,
+  qualifiedName : ...,
+  shortDescription : ...,
+  guid : ...
+} ]
 
   
 
@@ -213,11 +297,16 @@ Content-Type: application/json;charset=UTF-8
   
   
   
+application/json
+AtlasGlossary
+ (JSON)
+Glossary definition, terms & categories can be 
anchored to a glossary
+using the anchor attribute when creating the Term/Category
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-Glossary definition, terms & 
categories can be anchored to a glossary
-using the anchor attribute when creating the Term/Category
   
   
 
@@ -257,10 +346,15 @@ using the anchor attribute when creating the 
Term/Category
   
   
   
+application/json
+AtlasGlossary
+ (JSON)
+
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-
   
   
 
@@ -272,11 +366,90 @@ using the anchor attribute when creating the 
Term/Category
   Request
   
 POST /v2/glossary
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
-
-
-...
+Content-Type: application/json
+Accept: application/json
+
+
+{
+  categories : [ {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  }, {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  } ],
+  language : ...,
+  terms : [ {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : ACTIVE,
+steward : ...,
+termGuid : ...
+  }, {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : DRAFT,
+steward : ...,
+termGuid : ...
+  } ],
+  usage : ...,
+  classifications : [ {
+entityGuid : 

[27/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
Updated REST docs for 1.x releases (part 2)


Project: http://git-wip-us.apache.org/repos/asf/atlas-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/atlas-website/commit/d115dad8
Tree: http://git-wip-us.apache.org/repos/asf/atlas-website/tree/d115dad8
Diff: http://git-wip-us.apache.org/repos/asf/atlas-website/diff/d115dad8

Branch: refs/heads/asf-site
Commit: d115dad8ecaba6cc6b51145bbef060141c646e89
Parents: 3fad5df
Author: apoorvnaik 
Authored: Mon Oct 22 09:13:44 2018 -0700
Committer: apoorvnaik 
Committed: Mon Oct 22 09:13:44 2018 -0700

--
 1.0.0/api/v2/application.wadl   |   154 +-
 1.0.0/api/v2/data.html  |18 -
 1.0.0/api/v2/index.html |20 +-
 1.0.0/api/v2/json_AtlasBaseTypeDef.html | 4 +-
 1.0.0/api/v2/json_AtlasClassification.html  | 2 +-
 1.0.0/api/v2/json_AtlasClassificationDef.html   | 2 +-
 1.0.0/api/v2/json_AtlasClassifications.html | 2 +-
 1.0.0/api/v2/json_AtlasEntitiesWithExtInfo.html |34 +-
 1.0.0/api/v2/json_AtlasEntity.html  | 6 +-
 1.0.0/api/v2/json_AtlasEntityDef.html   | 4 +-
 1.0.0/api/v2/json_AtlasEntityExtInfo.html   | 8 +-
 1.0.0/api/v2/json_AtlasEntityHeader.html| 2 +-
 1.0.0/api/v2/json_AtlasEntityWithExtInfo.html   |28 +-
 1.0.0/api/v2/json_AtlasEnumDef.html | 4 +-
 1.0.0/api/v2/json_AtlasFullTextResult.html  | 6 +-
 1.0.0/api/v2/json_AtlasGlossary.html| 6 +-
 1.0.0/api/v2/json_AtlasGlossaryBaseObject.html  | 4 +-
 1.0.0/api/v2/json_AtlasGlossaryCategory.html| 6 +-
 1.0.0/api/v2/json_AtlasGlossaryExtInfo.html |   116 +-
 1.0.0/api/v2/json_AtlasGlossaryTerm.html|50 +-
 1.0.0/api/v2/json_AtlasLineageInfo.html |18 +-
 1.0.0/api/v2/json_AtlasRelatedObjectId.html | 2 +-
 1.0.0/api/v2/json_AtlasRelatedTermHeader.html   | 2 +-
 1.0.0/api/v2/json_AtlasRelationship.html| 6 +-
 1.0.0/api/v2/json_AtlasRelationshipDef.html |12 +-
 1.0.0/api/v2/json_AtlasRelationshipEndDef.html  | 2 +-
 .../v2/json_AtlasRelationshipWithExtInfo.html   |18 +-
 1.0.0/api/v2/json_AtlasSearchResult.html|38 +-
 1.0.0/api/v2/json_AtlasStructDef.html   | 6 +-
 .../api/v2/json_AtlasTermAssignmentHeader.html  | 2 +-
 1.0.0/api/v2/json_AtlasTypeDefHeader.html   | 2 +-
 1.0.0/api/v2/json_AtlasTypesDef.html|52 +-
 1.0.0/api/v2/json_AtlasUserSavedSearch.html | 4 +-
 .../v2/json_ClassificationAssociateRequest.html | 2 +-
 1.0.0/api/v2/json_DateFormat.html   |10 +-
 1.0.0/api/v2/json_EntityAuditEventV2.html   |10 +-
 1.0.0/api/v2/json_EntityMutationResponse.html   |36 +-
 1.0.0/api/v2/json_FilterCriteria.html   | 8 +-
 1.0.0/api/v2/json_NumberFormat.html |12 +-
 1.0.0/api/v2/json_SearchFilter.html | 2 +-
 1.0.0/api/v2/json_SearchParameters.html | 4 +-
 1.0.0/api/v2/ns0.xsd|66 -
 1.0.0/api/v2/resource_DiscoveryREST.html|  2905 +-
 1.0.0/api/v2/resource_EntityREST.html   |  4255 +-
 1.0.0/api/v2/resource_GlossaryREST.html |  6101 +-
 1.0.0/api/v2/resource_LineageREST.html  |   148 +-
 1.0.0/api/v2/resource_RelationshipREST.html |   709 +-
 1.0.0/api/v2/resource_TypesREST.html|  5214 +-
 1.0.0/api/v2/resources.html | 2 +
 1.0.0/api/v2/syntax_xml.html|18 -
 1.0.0/api/v2/ui/swagger.json| 28439 +-
 1.1.0/api/v2/application.wadl   |   136 +-
 1.1.0/api/v2/data.html  |18 -
 1.1.0/api/v2/index.html |20 +-
 1.1.0/api/v2/json_AtlasBaseTypeDef.html | 4 +-
 1.1.0/api/v2/json_AtlasClassification.html  | 2 +-
 1.1.0/api/v2/json_AtlasClassificationDef.html   | 2 +-
 1.1.0/api/v2/json_AtlasClassifications.html | 2 +-
 1.1.0/api/v2/json_AtlasEntitiesWithExtInfo.html |34 +-
 1.1.0/api/v2/json_AtlasEntity.html  | 6 +-
 1.1.0/api/v2/json_AtlasEntityDef.html   | 4 +-
 1.1.0/api/v2/json_AtlasEntityExtInfo.html   | 8 +-
 1.1.0/api/v2/json_AtlasEntityHeader.html| 2 +-
 1.1.0/api/v2/json_AtlasEntityWithExtInfo.html   |28 +-
 1.1.0/api/v2/json_AtlasEnumDef.html | 4 +-
 1.1.0/api/v2/json_AtlasFullTextResult.html  | 6 +-
 1.1.0/api/v2/json_AtlasGlossary.html| 6 +-
 1.1.0/api/v2/json_AtlasGlossaryBaseObject.html  | 4 +-
 1.1.0/api/v2/json_AtlasGlossaryCategory.html| 6 +-
 1.1.0/api/v2/json_AtlasGlossaryExtInfo.html |   116 +-
 1.1.0/api/v2/json_AtlasGlossaryTerm.html|50 +-
 1.1.0/api/v2/json_AtlasLineageInfo.html |18 +-
 1.1.0/api/v2/json_AtlasRelatedObjectId.html

[17/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.1.0/api/v2/json_AtlasGlossaryExtInfo.html
--
diff --git a/1.1.0/api/v2/json_AtlasGlossaryExtInfo.html 
b/1.1.0/api/v2/json_AtlasGlossaryExtInfo.html
index 58b5bd2..a543a6f 100644
--- a/1.1.0/api/v2/json_AtlasGlossaryExtInfo.html
+++ b/1.1.0/api/v2/json_AtlasGlossaryExtInfo.html
@@ -210,7 +210,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : ACTIVE,
 steward : ...,
 termGuid : ...
   }, {
@@ -225,7 +225,7 @@
   } ],
   classifications : [ {
 entityGuid : ...,
-entityStatus : DELETED,
+entityStatus : ACTIVE,
 propagate : true,
 removePropagationsOnEntityDelete : true,
 validityPeriods : [ { }, { } ],
@@ -284,7 +284,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : OBSOLETE,
+status : OTHER,
 steward : ...,
 termGuid : ...
   }, {
@@ -293,13 +293,13 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : OBSOLETE,
 steward : ...,
 termGuid : ...
   } ],
   classifications : [ {
 entityGuid : ...,
-entityStatus : ACTIVE,
+entityStatus : DELETED,
 propagate : true,
 removePropagationsOnEntityDelete : true,
 validityPeriods : [ { }, { } ],
@@ -310,7 +310,7 @@
 typeName : ...
   }, {
 entityGuid : ...,
-entityStatus : DELETED,
+entityStatus : ACTIVE,
 propagate : true,
 removePropagationsOnEntityDelete : true,
 validityPeriods : [ { }, { } ],
@@ -341,7 +341,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DRAFT,
+status : OTHER,
 steward : ...,
 termGuid : ...
   }, {
@@ -350,16 +350,16 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : ACTIVE,
 steward : ...,
 termGuid : ...
   } ],
   assignedEntities : [ {
 displayText : ...,
-entityStatus : ACTIVE,
+entityStatus : DELETED,
 relationshipAttributes : { },
 relationshipGuid : ...,
-relationshipStatus : ACTIVE,
+relationshipStatus : DELETED,
 guid : ...,
 typeName : ...,
 uniqueAttributes : {
@@ -384,13 +384,13 @@
 description : ...,
 displayText : ...,
 relationGuid : ...,
-status : OTHER
+status : DEPRECATED
   }, {
 categoryGuid : ...,
 description : ...,
 displayText : ...,
 relationGuid : ...,
-status : ACTIVE
+status : DRAFT
   } ],
   classifies : [ {
 description : ...,
@@ -407,7 +407,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : DRAFT,
 steward : ...,
 termGuid : ...
   } ],
@@ -427,7 +427,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : DRAFT,
 steward : ...,
 termGuid : ...
   } ],
@@ -437,7 +437,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : OTHER,
 steward : ...,
 termGuid : ...
   }, {
@@ -446,7 +446,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DRAFT,
+status : OBSOLETE,
 steward : ...,
 termGuid : ...
   } ],
@@ -465,7 +465,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : DRAFT,
 steward : ...,
 termGuid : ...
   } ],
@@ -475,7 +475,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : OTHER,
 steward : ...,
 termGuid : ...
   }, {
@@ -494,7 +494,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : OBSOLETE,
+status : DRAFT,
 steward : ...,
 termGuid : ...
   }, {
@@ -503,7 +503,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : OTHER,
 steward : ...,
 termGuid : ...
   } ],
@@ -541,7 +541,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : OTHER,
 steward : ...,
 termGuid : ...
   } ],
@@ -551,7 +551,7 @@
 expression : ...,
 relationGuid : ...,
 

[19/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.0.0/api/v2/ui/swagger.json
--
diff --git a/1.0.0/api/v2/ui/swagger.json b/1.0.0/api/v2/ui/swagger.json
index 96c3204..27f757d 100644
--- a/1.0.0/api/v2/ui/swagger.json
+++ b/1.0.0/api/v2/ui/swagger.json
@@ -9,6 +9,7 @@
 "version" : "1.0.0",
 "title" : "Atlas REST API"
   },
+  "host" : "localhost:21000",
   "schemes" : [],
   "tags" : [
 {
@@ -124,7 +125,7 @@
 }
   },
   "example" : {
-  "cardinality" : "SET",
+  "cardinality" : "LIST",
   "constraints" : [ {
 "params" : {
   "property1" : { },
@@ -239,7 +240,7 @@
 }
   },
   "example" : {
-  "category" : "STRUCT",
+  "category" : "CLASSIFICATION",
   "createTime" : 12345,
   "createdBy" : "...",
   "dateFormatter" : {
@@ -263,7 +264,7 @@
   "numberInstance" : { },
   "parseIntegerOnly" : true,
   "percentInstance" : { },
-  "roundingMode" : "DOWN"
+  "roundingMode" : "HALF_EVEN"
 },
 "timeInstance" : { },
 "timeZone" : {
@@ -331,7 +332,7 @@
   ],
   "example" : {
   "entityGuid" : "...",
-  "entityStatus" : "ACTIVE",
+  "entityStatus" : "DELETED",
   "propagate" : true,
   "removePropagationsOnEntityDelete" : true,
   "validityPeriods" : [ {
@@ -422,7 +423,7 @@
 "valuesMaxCount" : 12345,
 "valuesMinCount" : 12345
   }, {
-"cardinality" : "LIST",
+"cardinality" : "SET",
 "constraints" : [ {
   "params" : {
 "property1" : { },
@@ -451,7 +452,7 @@
 "valuesMaxCount" : 12345,
 "valuesMinCount" : 12345
   } ],
-  "category" : "RELATIONSHIP",
+  "category" : "ENUM",
   "createTime" : 12345,
   "createdBy" : "...",
   "dateFormatter" : {
@@ -475,7 +476,7 @@
   "numberInstance" : { },
   "parseIntegerOnly" : true,
   "percentInstance" : { },
-  "roundingMode" : "UNNECESSARY"
+  "roundingMode" : "DOWN"
 },
 "timeInstance" : { },
 "timeZone" : {
@@ -619,7 +620,7 @@
   "expression" : "...",
   "relationGuid" : "...",
   "source" : "...",
-  "status" : "DEPRECATED",
+  "status" : "VALIDATED",
   "steward" : "...",
   "termGuid" : "..."
 } ],
@@ -640,7 +641,7 @@
   }, {
 "classifications" : [ {
   "entityGuid" : "...",
-  "entityStatus" : "DELETED",
+  "entityStatus" : "ACTIVE",
   "propagate" : true,
   "removePropagationsOnEntityDelete" : true,
   "validityPeriods" : [ { }, { } ],
@@ -651,7 +652,7 @@
   "typeName" : "..."
 }, {
   "entityGuid" : "...",
-  "entityStatus" : "DELETED",
+  "entityStatus" : "ACTIVE",
   "propagate" : true,
   "removePropagationsOnEntityDelete" : true,
   "validityPeriods" : [ { }, { } ],
@@ -673,7 +674,7 @@
   "expression" : "...",
   "relationGuid" : "...",
   "source" : "...",
-  "status" : "DEPRECATED",
+  "status" : "OTHER",
   "steward" : "...",
   "termGuid" : "..."
 }, {
@@ -684,7 +685,7 @@
   "expression" : "...",
   "relationGuid" : "...",
   "source" : "...",
-  "status" : "OBSOLETE",
+  "status" : "DISCOVERED",
   "steward" : "...",
   "termGuid" : "..."
 } ],
@@ -693,7 +694,7 @@
   "property1" : { },
   "property2" : { }
 },
-"status" : "ACTIVE",
+"status" : "DELETED",
 "updateTime" : 12345,
 "updatedBy" : "...",
 "version" : 12345,
@@ -751,7 +752,7 @@
 "expression" : "...",
 "relationGuid" : "...",
 "source" : "...",
-"status" : "DISCOVERED",
+"status" : "OBSOLETE",
 "steward" : "...",
 "termGuid" : "..."
   } ],
@@ -760,7 +761,7 @@
 "property1" : { },
 "property2" : { }
   },
-  "status" : "DELETED",
+  "status" : "ACTIVE",
   "updateTime" : 12345,
   "updatedBy" : "...",
   "version" : 12345,
@@ -773,7 +774,7 @@
 "property2" : {
   "classifications" : [ {
 "entityGuid" : "...",
-"entityStatus" : "ACTIVE",
+"entityStatus" : "DELETED",
 "propagate" : true,
 "removePropagationsOnEntityDelete" : true,
 "validityPeriods" : [ { }, { } ],
@@ -784,7 +785,7 @@
 "typeName" : "..."
   }, {
 "entityGuid" : "...",
-"entityStatus" : "DELETED",
+"entityStatus" : "ACTIVE",
 "propagate" : true,
 "removePropagationsOnEntityDelete" : true,
 "validityPeriods" : [ { }, { } ],
@@ -806,7 +807,7 @@
 "expression" : "...",
 "relationGuid" : "...",
 "source" : "...",
-"status" : "VALIDATED",
+"status" : "DEPRECATED",
 "steward" : "...",
 "termGuid" : "..."
   }, {
@@ -817,7 +818,7 @@
 "expression" : "...",
 "relationGuid" : "...",
 "source" : "...",
-"status" : "IMPORTED",
+"status" : "VALIDATED",
 "steward" : "...",
 "termGuid" 

[15/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.1.0/api/v2/resource_EntityREST.html
--
diff --git a/1.1.0/api/v2/resource_EntityREST.html 
b/1.1.0/api/v2/resource_EntityREST.html
index af806cf..e3743fc 100644
--- a/1.1.0/api/v2/resource_EntityREST.html
+++ b/1.1.0/api/v2/resource_EntityREST.html
@@ -103,6 +103,11 @@ Existing entity is matched using its unique guid if 
supplied or by its unique at
   
   
   
+application/json
+AtlasEntityWithExtInfo
+ (JSON)
+  
+  
 application/json;charset=UTF-8
 (custom)
 
@@ -121,10 +126,15 @@ Existing entity is matched using its unique guid if 
supplied or by its unique at
   
   
   
+application/json
+EntityMutationResponse
+ (JSON)
+EntityMutationResponse
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-EntityMutationResponse
   
   
 
@@ -136,11 +146,212 @@ Existing entity is matched using its unique guid if 
supplied or by its unique at
   Request
   
 POST /v2/entity
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
+Content-Type: application/json
+Accept: application/json
 
-
-...
+
+{
+  entity : {
+classifications : [ {
+  entityGuid : ...,
+  entityStatus : DELETED,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+}, {
+  entityGuid : ...,
+  entityStatus : DELETED,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+} ],
+createTime : 12345,
+createdBy : ...,
+guid : ...,
+homeId : ...,
+meanings : [ {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : DISCOVERED,
+  steward : ...,
+  termGuid : ...
+}, {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : DEPRECATED,
+  steward : ...,
+  termGuid : ...
+} ],
+proxy : true,
+relationshipAttributes : {
+  property1 : { },
+  property2 : { }
+},
+status : ACTIVE,
+updateTime : 12345,
+updatedBy : ...,
+version : 12345,
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  },
+  referredEntities : {
+property1 : {
+  classifications : [ {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  createTime : 12345,
+  createdBy : ...,
+  guid : ...,
+  homeId : ...,
+  meanings : [ {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : VALIDATED,
+steward : ...,
+termGuid : ...
+  }, {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : IMPORTED,
+steward : ...,
+termGuid : ...
+  } ],
+  proxy : true,
+  relationshipAttributes : {
+property1 : { },
+property2 : { }
+  },
+  status : DELETED,
+  updateTime : 12345,
+  updatedBy : ...,
+  version : 12345,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+},
+property2 : {
+  classifications : [ {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : 

[22/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.0.0/api/v2/resource_LineageREST.html
--
diff --git a/1.0.0/api/v2/resource_LineageREST.html 
b/1.0.0/api/v2/resource_LineageREST.html
index 93e5769..7320f3c 100644
--- a/1.0.0/api/v2/resource_LineageREST.html
+++ b/1.0.0/api/v2/resource_LineageREST.html
@@ -143,10 +143,15 @@
   
   
   
+application/json
+AtlasLineageInfo
+ (JSON)
+AtlasLineageInfo
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-AtlasLineageInfo
   
   
 
@@ -158,8 +163,8 @@
   Request
   
 GET /v2/lineage/{guid}
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
+Content-Type: application/json
+Accept: application/json
 
 
 ...
@@ -170,10 +175,141 @@ Accept: application/json;charset=UTF-8
   Response
   
 HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
+Content-Type: application/json
 
-
-...
+
+{
+  baseEntityGuid : ...,
+  guidEntityMap : {
+property1 : {
+  classificationNames : [ ..., ... ],
+  classifications : [ {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  displayText : ...,
+  guid : ...,
+  meaningNames : [ ..., ... ],
+  meanings : [ {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : PROPOSED,
+steward : ...,
+termGuid : ...
+  }, {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : OTHER,
+steward : ...,
+termGuid : ...
+  } ],
+  status : ACTIVE,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+},
+property2 : {
+  classificationNames : [ ..., ... ],
+  classifications : [ {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  displayText : ...,
+  guid : ...,
+  meaningNames : [ ..., ... ],
+  meanings : [ {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : VALIDATED,
+steward : ...,
+termGuid : ...
+  }, {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : OTHER,
+steward : ...,
+termGuid : ...
+  } ],
+  status : ACTIVE,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+}
+  },
+  lineageDepth : 12345,
+  lineageDirection : OUTPUT,
+  relations : [ {
+fromEntityId : ...,
+relationshipId : ...,
+toEntityId : ...
+  }, {
+fromEntityId : ...,
+relationshipId : ...,
+toEntityId : ...
+  } ]
+}
 
   
 

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.0.0/api/v2/resource_RelationshipREST.html
--
diff --git a/1.0.0/api/v2/resource_RelationshipREST.html 
b/1.0.0/api/v2/resource_RelationshipREST.html
index c95271d..8239ae9 100644
--- a/1.0.0/api/v2/resource_RelationshipREST.html
+++ b/1.0.0/api/v2/resource_RelationshipREST.html
@@ -85,6 +85,11 @@
   
   
   
+  

[01/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
Repository: atlas-website
Updated Branches:
  refs/heads/asf-site 3fad5df3c -> d115dad8e


http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/api/v2/ui/swagger.json
--
diff --git a/api/v2/ui/swagger.json b/api/v2/ui/swagger.json
index 6a40008..38687ce 100644
--- a/api/v2/ui/swagger.json
+++ b/api/v2/ui/swagger.json
@@ -1,10667 +1,41295 @@
 {
   "swagger": "2.0",
-  "info" : {
-"description" : "Atlas exposes a variety of REST endpoints to work with 
types, entities, lineage and data discovery.",
-"license" : {
-  "url" : "http://www.apache.org/licenses/LICENSE-2.0.txt;,
-  "name" : "The Apache Software License, Version 2.0"
-},
-"version" : "2.0.0-SNAPSHOT",
-"title" : "Atlas REST API"
+  "info": {
+"description": "Atlas exposes a variety of REST endpoints to work with 
types, entities, lineage and data discovery.",
+"license": {
+  "url": "http://www.apache.org/licenses/LICENSE-2.0.txt;,
+  "name": "The Apache Software License, Version 2.0"
+},
+"version": "2.0.0-SNAPSHOT",
+"title": "Atlas REST API"
   },
-  "schemes" : [],
-  "tags" : [
+  "host": "localhost:21000",
+  "schemes": [],
+  "tags": [
 {
-  "name" : "DiscoveryREST"
-  ,
-  "description" : "REST interface for data discovery using dsl or full 
text search."
-}
-,
+  "name": "DiscoveryREST",
+  "description": "REST interface for data discovery using dsl or full text 
search."
+},
 {
-  "name" : "EntityREST"
-  ,
-  "description" : "REST for a single entity."
-}
-,
+  "name": "EntityREST",
+  "description": "REST for a single entity."
+},
 {
-  "name" : "GlossaryREST"
-}
-,
+  "name": "GlossaryREST"
+},
 {
-  "name" : "LineageREST"
-  ,
-  "description" : "REST interface for an entity's lineage information."
-}
-,
+  "name": "LineageREST",
+  "description": "REST interface for an entity's lineage information."
+},
 {
-  "name" : "RelationshipREST"
-  ,
-  "description" : "REST interface for entity relationships."
-}
-,
+  "name": "RelationshipREST",
+  "description": "REST interface for entity relationships."
+},
 {
-  "name" : "TypesREST"
-  ,
-  "description" : "REST interface for CRUD operations on type definitions."
+  "name": "TypesREST",
+  "description": "REST interface for CRUD operations on type definitions."
 }
   ],
-  "definitions" : {
-"json_AtlasAttributeDef" : {
-  "type" : "object",
-  "title" : "AtlasAttributeDef",
-  "properties" : {
-"cardinality" : {
-"readOnly" : false,
-"$ref" : "#/definitions/json_Cardinality"
-},
-"constraints" : {
-"readOnly" : false,
-"description" : "",
-"type" : "array",
-"items" : {
-  "$ref" : "#/definitions/json_AtlasConstraintDef"
-}
-},
-"defaultValue" : {
-"readOnly" : false,
-"description" : "",
-"type" : "string"
-},
-"description" : {
-"readOnly" : false,
-"description" : "",
-"type" : "string"
-},
-"includeInNotification" : {
-"readOnly" : false,
-"description" : "",
-"type" : "boolean"
-},
-"isIndexable" : {
-"readOnly" : false,
-"description" : "",
-"type" : "boolean"
-},
-"isOptional" : {
-"readOnly" : false,
-"description" : "",
-"type" : "boolean"
-},
-"isUnique" : {
-"readOnly" : false,
-"description" : "",
-"type" : "boolean"
-},
-"name" : {
-"readOnly" : false,
-"description" : "",
-"type" : "string"
-},
-"options" : {
-"readOnly" : false,
-"description" : "",
-"type" : "object",
-"additionalProperties" : {
-  "type" : "string"
-}
+  "definitions": {
+"json_AtlasAttributeDef": {
+  "type": "object",
+  "title": "AtlasAttributeDef",
+  "properties": {
+"cardinality": {
+  "readOnly": false,
+  "$ref": "#/definitions/json_Cardinality"
+},
+"constraints": {
+  "readOnly": false,
+  "description": "",
+  "type": "array",
+  "items": {
+"$ref": "#/definitions/json_AtlasConstraintDef"
+  }
+},
+"defaultValue": {
+  "readOnly": false,
+  "description": "",
+  "type": "string"
+},
+"description": {
+  "readOnly": false,
+  "description": "",
+  "type": "string"
+},
+"includeInNotification": {
+  "readOnly": false,
+  "description": "",
+  "type": "boolean"
+},
+"isIndexable": {
+  "readOnly": false,
+  "description": "",
+  "type": 

[18/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.1.0/api/v2/application.wadl
--
diff --git a/1.1.0/api/v2/application.wadl b/1.1.0/api/v2/application.wadl
index 5478ea3..ee44ccb 100644
--- a/1.1.0/api/v2/application.wadl
+++ b/1.1.0/api/v2/application.wadl
@@ -15,11 +15,14 @@
 
 
+  
+  
   
   
 
 
   
+  
   
 
   
@@ -41,6 +44,7 @@ Existing entity is matched using its unique guid if supplied 
or by its unique at
 
 
   
+  
   
 
   
@@ -52,6 +56,8 @@ Existing entity is matched using its unique guid if supplied 
or by its unique at
 
   
+  
+  
   
   
 
@@ -63,6 +69,7 @@ using the anchor attribute when creating the 
Term/Category]]>
 
 
   
+  
   
 
   
@@ -72,11 +79,14 @@ using the anchor attribute when creating the 
Term/Category]]>
   
 
 
+  
+  
   
   
 
 
   
+  
   
 
   
@@ -86,11 +96,14 @@ using the anchor attribute when creating the 
Term/Category]]>
   
 
 
+  
+  
   
   
 
 
   
+  
   
 
   
@@ -109,6 +122,7 @@ using the anchor attribute when creating the 
Term/Category]]>
 
 
   
+  
   
 
   
@@ -119,11 +133,14 @@ using the anchor attribute when creating the 
Term/Category]]>
 
 
+  
+  
   
   
 
 
   
+  
   
 
   
@@ -139,6 +156,7 @@ Existing entity is matched using its unique guid if 
supplied or by its unique at
 
 
   
+  
   
 
   
@@ -149,6 +167,8 @@ Existing entity is matched using its unique guid if 
supplied or by its unique at
 
 
   
+  
+  
   
   
 
@@ -157,6 +177,7 @@ Existing entity is matched using its unique guid if 
supplied or by its unique at
 
 
   
+  
   
 
   
@@ -168,6 +189,8 @@ Existing entity is matched using its unique guid if 
supplied or by its unique at
 
   
+  
+  
   
   
 
@@ -179,6 +202,7 @@ Optionally, terms belonging to the category and the 
hierarchy can also be define
 
 
   
+  
   
 
   
@@ -190,6 +214,8 @@ Optionally, terms belonging to the category and the 
hierarchy can also be define
 
   
+  
+  
   
   
 
@@ -201,6 +227,7 @@ optionally it can be categorized as well]]>
 
 
   
+  
   
 
   
@@ -211,6 +238,8 @@ optionally it can be categorized as well]]>
 
 
   
+  
+  
   
   
 
@@ -219,6 +248,7 @@ optionally it can be categorized as well]]>
 
 
   
+  
   
 
   
@@ -234,6 +264,7 @@ optionally it can be categorized as well]]>
 
 
   
+  
   
 
   
@@ -247,6 +278,8 @@ optionally it can be categorized as well]]>
 
 
   
+  
+  
   
   
 
@@ -258,6 +291,7 @@ optionally it can be categorized as well]]>
 
 
   
+  
   
 
   
@@ -299,6 +333,7 @@ optionally it can be categorized as well]]>
 
 
   
+  
   
 
   
@@ -332,6 +367,7 @@ optionally it can be categorized as well]]>
 
 
   
+  
   
 
   
@@ -365,6 +401,7 @@ optionally it can be categorized as well]]>
 
 
   
+  
   
 
   
@@ -375,6 +412,8 @@ optionally it can be categorized as well]]>
 
 
   
+  
+  
   
   
 
@@ -383,6 +422,7 @@ optionally it can be categorized as well]]>
 
 
   
+  
   
 
   
@@ -413,6 +453,7 @@ optionally it can be categorized as well]]>
 
 
   
+  
   
 
   
@@ -440,6 +481,7 @@ optionally it can be categorized as well]]>
 
 
   
+  
   
 
   
@@ -476,6 +518,7 @@ optionally it can be categorized as well]]>
 
 
   
+  
   
 
   
@@ -485,11 +528,14 @@ optionally it can be categorized as well]]>
   

[26/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.0.0/api/v2/json_AtlasGlossaryExtInfo.html
--
diff --git a/1.0.0/api/v2/json_AtlasGlossaryExtInfo.html 
b/1.0.0/api/v2/json_AtlasGlossaryExtInfo.html
index 58b5bd2..a543a6f 100644
--- a/1.0.0/api/v2/json_AtlasGlossaryExtInfo.html
+++ b/1.0.0/api/v2/json_AtlasGlossaryExtInfo.html
@@ -210,7 +210,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : ACTIVE,
 steward : ...,
 termGuid : ...
   }, {
@@ -225,7 +225,7 @@
   } ],
   classifications : [ {
 entityGuid : ...,
-entityStatus : DELETED,
+entityStatus : ACTIVE,
 propagate : true,
 removePropagationsOnEntityDelete : true,
 validityPeriods : [ { }, { } ],
@@ -284,7 +284,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : OBSOLETE,
+status : OTHER,
 steward : ...,
 termGuid : ...
   }, {
@@ -293,13 +293,13 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : OBSOLETE,
 steward : ...,
 termGuid : ...
   } ],
   classifications : [ {
 entityGuid : ...,
-entityStatus : ACTIVE,
+entityStatus : DELETED,
 propagate : true,
 removePropagationsOnEntityDelete : true,
 validityPeriods : [ { }, { } ],
@@ -310,7 +310,7 @@
 typeName : ...
   }, {
 entityGuid : ...,
-entityStatus : DELETED,
+entityStatus : ACTIVE,
 propagate : true,
 removePropagationsOnEntityDelete : true,
 validityPeriods : [ { }, { } ],
@@ -341,7 +341,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DRAFT,
+status : OTHER,
 steward : ...,
 termGuid : ...
   }, {
@@ -350,16 +350,16 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : ACTIVE,
 steward : ...,
 termGuid : ...
   } ],
   assignedEntities : [ {
 displayText : ...,
-entityStatus : ACTIVE,
+entityStatus : DELETED,
 relationshipAttributes : { },
 relationshipGuid : ...,
-relationshipStatus : ACTIVE,
+relationshipStatus : DELETED,
 guid : ...,
 typeName : ...,
 uniqueAttributes : {
@@ -384,13 +384,13 @@
 description : ...,
 displayText : ...,
 relationGuid : ...,
-status : OTHER
+status : DEPRECATED
   }, {
 categoryGuid : ...,
 description : ...,
 displayText : ...,
 relationGuid : ...,
-status : ACTIVE
+status : DRAFT
   } ],
   classifies : [ {
 description : ...,
@@ -407,7 +407,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : DRAFT,
 steward : ...,
 termGuid : ...
   } ],
@@ -427,7 +427,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : DRAFT,
 steward : ...,
 termGuid : ...
   } ],
@@ -437,7 +437,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : OTHER,
 steward : ...,
 termGuid : ...
   }, {
@@ -446,7 +446,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DRAFT,
+status : OBSOLETE,
 steward : ...,
 termGuid : ...
   } ],
@@ -465,7 +465,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : DRAFT,
 steward : ...,
 termGuid : ...
   } ],
@@ -475,7 +475,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : OTHER,
 steward : ...,
 termGuid : ...
   }, {
@@ -494,7 +494,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : OBSOLETE,
+status : DRAFT,
 steward : ...,
 termGuid : ...
   }, {
@@ -503,7 +503,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : OTHER,
 steward : ...,
 termGuid : ...
   } ],
@@ -541,7 +541,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : OTHER,
 steward : ...,
 termGuid : ...
   } ],
@@ -551,7 +551,7 @@
 expression : ...,
 relationGuid : ...,
 

[02/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/api/v2/resources.html
--
diff --git a/api/v2/resources.html b/api/v2/resources.html
index e0cbaa5..2a957d0 100644
--- a/api/v2/resources.html
+++ b/api/v2/resources.html
@@ -226,6 +226,7 @@
   /v2/types/structdef/name/{name}
   /v2/types/typedef/guid/{guid}
   /v2/types/typedef/name/{name}
+  /v2/types/typedef/name/{typeName}
 
 DELETE GET POST PUT 
   GET 
@@ -241,6 +242,7 @@
   GET 
   GET 
   GET 
+  DELETE 
 
 REST interface for CRUD 
operations on type definitions
 

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/api/v2/syntax_xml.html
--
diff --git a/api/v2/syntax_xml.html b/api/v2/syntax_xml.html
index 48ef265..6adcbd4 100644
--- a/api/v2/syntax_xml.html
+++ b/api/v2/syntax_xml.html
@@ -95,24 +95,6 @@
 Captures time-boundary 
details
 
 
-
-atlasClassification
-
-An instance of a 
classification; it doesn't have an identity, this object exists only when 
associated with an entity.
-
-
-
-status
-
-Status of the entity - can be 
active or deleted. Deleted entities are not removed from Atlas store.
-
-
-
-atlasStruct
-
-Captures details of struct 
contents. Not instantiated directly, used only via AtlasEntity, 
AtlasClassification.
-
-
   
   
 



[20/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.0.0/api/v2/resources.html
--
diff --git a/1.0.0/api/v2/resources.html b/1.0.0/api/v2/resources.html
index e0cbaa5..2a957d0 100644
--- a/1.0.0/api/v2/resources.html
+++ b/1.0.0/api/v2/resources.html
@@ -226,6 +226,7 @@
   /v2/types/structdef/name/{name}
   /v2/types/typedef/guid/{guid}
   /v2/types/typedef/name/{name}
+  /v2/types/typedef/name/{typeName}
 
 DELETE GET POST PUT 
   GET 
@@ -241,6 +242,7 @@
   GET 
   GET 
   GET 
+  DELETE 
 
 REST interface for CRUD 
operations on type definitions
 

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.0.0/api/v2/syntax_xml.html
--
diff --git a/1.0.0/api/v2/syntax_xml.html b/1.0.0/api/v2/syntax_xml.html
index 48ef265..6adcbd4 100644
--- a/1.0.0/api/v2/syntax_xml.html
+++ b/1.0.0/api/v2/syntax_xml.html
@@ -95,24 +95,6 @@
 Captures time-boundary 
details
 
 
-
-atlasClassification
-
-An instance of a 
classification; it doesn't have an identity, this object exists only when 
associated with an entity.
-
-
-
-status
-
-Status of the entity - can be 
active or deleted. Deleted entities are not removed from Atlas store.
-
-
-
-atlasStruct
-
-Captures details of struct 
contents. Not instantiated directly, used only via AtlasEntity, 
AtlasClassification.
-
-
   
   
 



[16/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.1.0/api/v2/resource_DiscoveryREST.html
--
diff --git a/1.1.0/api/v2/resource_DiscoveryREST.html 
b/1.1.0/api/v2/resource_DiscoveryREST.html
index cea178c..e26c89a 100644
--- a/1.1.0/api/v2/resource_DiscoveryREST.html
+++ b/1.1.0/api/v2/resource_DiscoveryREST.html
@@ -160,10 +160,15 @@ without any results
   
   
   
+application/json
+AtlasSearchResult
+ (JSON)
+Search results
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-Search results
   
   
 
@@ -175,8 +180,8 @@ without any results
   Request
   
 GET /v2/search/attribute
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
+Content-Type: application/json
+Accept: application/json
 
 
 ...
@@ -187,10 +192,312 @@ Accept: application/json;charset=UTF-8
   Response
   
 HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-
-
-...
+Content-Type: application/json
+
+
+{
+  attributes : {
+name : [ ..., ... ],
+values : [ ]
+  },
+  classification : ...,
+  entities : [ {
+classificationNames : [ ..., ... ],
+classifications : [ {
+  entityGuid : ...,
+  entityStatus : ACTIVE,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+}, {
+  entityGuid : ...,
+  entityStatus : DELETED,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+} ],
+displayText : ...,
+guid : ...,
+meaningNames : [ ..., ... ],
+meanings : [ {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : OTHER,
+  steward : ...,
+  termGuid : ...
+}, {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : PROPOSED,
+  steward : ...,
+  termGuid : ...
+} ],
+status : DELETED,
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+classificationNames : [ ..., ... ],
+classifications : [ {
+  entityGuid : ...,
+  entityStatus : DELETED,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+}, {
+  entityGuid : ...,
+  entityStatus : ACTIVE,
+  propagate : true,
+  removePropagationsOnEntityDelete : true,
+  validityPeriods : [ { }, { } ],
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+} ],
+displayText : ...,
+guid : ...,
+meaningNames : [ ..., ... ],
+meanings : [ {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : PROPOSED,
+  steward : ...,
+  termGuid : ...
+}, {
+  confidence : 12345,
+  createdBy : ...,
+  description : ...,
+  displayText : ...,
+  expression : ...,
+  relationGuid : ...,
+  source : ...,
+  status : OTHER,
+  steward : ...,
+  termGuid : ...
+} ],
+status : DELETED,
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  fullTextResult : [ {
+entity : {
+  classificationNames : [ ..., ... ],
+  classifications : [ { }, { } ],
+  displayText : ...,
+  guid : ...,
+  meaningNames : [ ..., ... ],
+  meanings : [ { }, { } ],
+  status : DELETED,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+},
+score : 12345.0
+  }, {
+entity : {
+  classificationNames : [ ..., ... ],
+  classifications : [ { }, { } ],
+  displayText : ...,
+  guid : ...,
+  meaningNames : [ ..., ... ],
+  meanings : [ { }, { } ],
+  status : ACTIVE,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+},
+score : 12345.0
+  } ],
+  queryText : ...,
+  queryType : ATTRIBUTE,
+  referredEntities : {
+property1 : {
+  classificationNames : [ ..., ... ],

[13/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.1.0/api/v2/resource_LineageREST.html
--
diff --git a/1.1.0/api/v2/resource_LineageREST.html 
b/1.1.0/api/v2/resource_LineageREST.html
index 93e5769..7320f3c 100644
--- a/1.1.0/api/v2/resource_LineageREST.html
+++ b/1.1.0/api/v2/resource_LineageREST.html
@@ -143,10 +143,15 @@
   
   
   
+application/json
+AtlasLineageInfo
+ (JSON)
+AtlasLineageInfo
+  
+  
 application/json;charset=UTF-8
 (custom)
 
-AtlasLineageInfo
   
   
 
@@ -158,8 +163,8 @@
   Request
   
 GET /v2/lineage/{guid}
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
+Content-Type: application/json
+Accept: application/json
 
 
 ...
@@ -170,10 +175,141 @@ Accept: application/json;charset=UTF-8
   Response
   
 HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
+Content-Type: application/json
 
-
-...
+
+{
+  baseEntityGuid : ...,
+  guidEntityMap : {
+property1 : {
+  classificationNames : [ ..., ... ],
+  classifications : [ {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  displayText : ...,
+  guid : ...,
+  meaningNames : [ ..., ... ],
+  meanings : [ {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : PROPOSED,
+steward : ...,
+termGuid : ...
+  }, {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : OTHER,
+steward : ...,
+termGuid : ...
+  } ],
+  status : ACTIVE,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+},
+property2 : {
+  classificationNames : [ ..., ... ],
+  classifications : [ {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  displayText : ...,
+  guid : ...,
+  meaningNames : [ ..., ... ],
+  meanings : [ {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : VALIDATED,
+steward : ...,
+termGuid : ...
+  }, {
+confidence : 12345,
+createdBy : ...,
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : OTHER,
+steward : ...,
+termGuid : ...
+  } ],
+  status : ACTIVE,
+  attributes : {
+property1 : { },
+property2 : { }
+  },
+  typeName : ...
+}
+  },
+  lineageDepth : 12345,
+  lineageDirection : OUTPUT,
+  relations : [ {
+fromEntityId : ...,
+relationshipId : ...,
+toEntityId : ...
+  }, {
+fromEntityId : ...,
+relationshipId : ...,
+toEntityId : ...
+  } ]
+}
 
   
 

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.1.0/api/v2/resource_RelationshipREST.html
--
diff --git a/1.1.0/api/v2/resource_RelationshipREST.html 
b/1.1.0/api/v2/resource_RelationshipREST.html
index c95271d..8239ae9 100644
--- a/1.1.0/api/v2/resource_RelationshipREST.html
+++ b/1.1.0/api/v2/resource_RelationshipREST.html
@@ -85,6 +85,11 @@
   
   
   
+  

[08/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/api/v2/json_AtlasGlossaryExtInfo.html
--
diff --git a/api/v2/json_AtlasGlossaryExtInfo.html 
b/api/v2/json_AtlasGlossaryExtInfo.html
index 58b5bd2..a543a6f 100644
--- a/api/v2/json_AtlasGlossaryExtInfo.html
+++ b/api/v2/json_AtlasGlossaryExtInfo.html
@@ -210,7 +210,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : ACTIVE,
 steward : ...,
 termGuid : ...
   }, {
@@ -225,7 +225,7 @@
   } ],
   classifications : [ {
 entityGuid : ...,
-entityStatus : DELETED,
+entityStatus : ACTIVE,
 propagate : true,
 removePropagationsOnEntityDelete : true,
 validityPeriods : [ { }, { } ],
@@ -284,7 +284,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : OBSOLETE,
+status : OTHER,
 steward : ...,
 termGuid : ...
   }, {
@@ -293,13 +293,13 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : OBSOLETE,
 steward : ...,
 termGuid : ...
   } ],
   classifications : [ {
 entityGuid : ...,
-entityStatus : ACTIVE,
+entityStatus : DELETED,
 propagate : true,
 removePropagationsOnEntityDelete : true,
 validityPeriods : [ { }, { } ],
@@ -310,7 +310,7 @@
 typeName : ...
   }, {
 entityGuid : ...,
-entityStatus : DELETED,
+entityStatus : ACTIVE,
 propagate : true,
 removePropagationsOnEntityDelete : true,
 validityPeriods : [ { }, { } ],
@@ -341,7 +341,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DRAFT,
+status : OTHER,
 steward : ...,
 termGuid : ...
   }, {
@@ -350,16 +350,16 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : ACTIVE,
 steward : ...,
 termGuid : ...
   } ],
   assignedEntities : [ {
 displayText : ...,
-entityStatus : ACTIVE,
+entityStatus : DELETED,
 relationshipAttributes : { },
 relationshipGuid : ...,
-relationshipStatus : ACTIVE,
+relationshipStatus : DELETED,
 guid : ...,
 typeName : ...,
 uniqueAttributes : {
@@ -384,13 +384,13 @@
 description : ...,
 displayText : ...,
 relationGuid : ...,
-status : OTHER
+status : DEPRECATED
   }, {
 categoryGuid : ...,
 description : ...,
 displayText : ...,
 relationGuid : ...,
-status : ACTIVE
+status : DRAFT
   } ],
   classifies : [ {
 description : ...,
@@ -407,7 +407,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : DRAFT,
 steward : ...,
 termGuid : ...
   } ],
@@ -427,7 +427,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : DRAFT,
 steward : ...,
 termGuid : ...
   } ],
@@ -437,7 +437,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : OTHER,
 steward : ...,
 termGuid : ...
   }, {
@@ -446,7 +446,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DRAFT,
+status : OBSOLETE,
 steward : ...,
 termGuid : ...
   } ],
@@ -465,7 +465,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : DRAFT,
 steward : ...,
 termGuid : ...
   } ],
@@ -475,7 +475,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : OTHER,
 steward : ...,
 termGuid : ...
   }, {
@@ -494,7 +494,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : OBSOLETE,
+status : DRAFT,
 steward : ...,
 termGuid : ...
   }, {
@@ -503,7 +503,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : ACTIVE,
+status : OTHER,
 steward : ...,
 termGuid : ...
   } ],
@@ -541,7 +541,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status : DEPRECATED,
+status : OTHER,
 steward : ...,
 termGuid : ...
   } ],
@@ -551,7 +551,7 @@
 expression : ...,
 relationGuid : ...,
 source : ...,
-status 

[11/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.1.0/api/v2/resources.html
--
diff --git a/1.1.0/api/v2/resources.html b/1.1.0/api/v2/resources.html
index e0cbaa5..2a957d0 100644
--- a/1.1.0/api/v2/resources.html
+++ b/1.1.0/api/v2/resources.html
@@ -226,6 +226,7 @@
   /v2/types/structdef/name/{name}
   /v2/types/typedef/guid/{guid}
   /v2/types/typedef/name/{name}
+  /v2/types/typedef/name/{typeName}
 
 DELETE GET POST PUT 
   GET 
@@ -241,6 +242,7 @@
   GET 
   GET 
   GET 
+  DELETE 
 
 REST interface for CRUD 
operations on type definitions
 

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.1.0/api/v2/syntax_xml.html
--
diff --git a/1.1.0/api/v2/syntax_xml.html b/1.1.0/api/v2/syntax_xml.html
index 48ef265..6adcbd4 100644
--- a/1.1.0/api/v2/syntax_xml.html
+++ b/1.1.0/api/v2/syntax_xml.html
@@ -95,24 +95,6 @@
 Captures time-boundary 
details
 
 
-
-atlasClassification
-
-An instance of a 
classification; it doesn't have an identity, this object exists only when 
associated with an entity.
-
-
-
-status
-
-Status of the entity - can be 
active or deleted. Deleted entities are not removed from Atlas store.
-
-
-
-atlasStruct
-
-Captures details of struct 
contents. Not instantiated directly, used only via AtlasEntity, 
AtlasClassification.
-
-
   
   
 



[10/27] atlas-website git commit: Updated REST docs for 1.x releases (part 2)

2018-10-22 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/d115dad8/1.1.0/api/v2/ui/swagger.json
--
diff --git a/1.1.0/api/v2/ui/swagger.json b/1.1.0/api/v2/ui/swagger.json
index f43db49..58d85e6 100644
--- a/1.1.0/api/v2/ui/swagger.json
+++ b/1.1.0/api/v2/ui/swagger.json
@@ -9,6 +9,7 @@
 "version" : "1.1.0",
 "title" : "Atlas REST API"
   },
+  "host" : "localhost:21000",
   "schemes" : [],
   "tags" : [
 {
@@ -124,7 +125,7 @@
 }
   },
   "example" : {
-  "cardinality" : "SET",
+  "cardinality" : "LIST",
   "constraints" : [ {
 "params" : {
   "property1" : { },
@@ -239,7 +240,7 @@
 }
   },
   "example" : {
-  "category" : "STRUCT",
+  "category" : "CLASSIFICATION",
   "createTime" : 12345,
   "createdBy" : "...",
   "dateFormatter" : {
@@ -263,7 +264,7 @@
   "numberInstance" : { },
   "parseIntegerOnly" : true,
   "percentInstance" : { },
-  "roundingMode" : "DOWN"
+  "roundingMode" : "HALF_EVEN"
 },
 "timeInstance" : { },
 "timeZone" : {
@@ -331,7 +332,7 @@
   ],
   "example" : {
   "entityGuid" : "...",
-  "entityStatus" : "ACTIVE",
+  "entityStatus" : "DELETED",
   "propagate" : true,
   "removePropagationsOnEntityDelete" : true,
   "validityPeriods" : [ {
@@ -422,7 +423,7 @@
 "valuesMaxCount" : 12345,
 "valuesMinCount" : 12345
   }, {
-"cardinality" : "LIST",
+"cardinality" : "SET",
 "constraints" : [ {
   "params" : {
 "property1" : { },
@@ -451,7 +452,7 @@
 "valuesMaxCount" : 12345,
 "valuesMinCount" : 12345
   } ],
-  "category" : "RELATIONSHIP",
+  "category" : "ENUM",
   "createTime" : 12345,
   "createdBy" : "...",
   "dateFormatter" : {
@@ -475,7 +476,7 @@
   "numberInstance" : { },
   "parseIntegerOnly" : true,
   "percentInstance" : { },
-  "roundingMode" : "UNNECESSARY"
+  "roundingMode" : "DOWN"
 },
 "timeInstance" : { },
 "timeZone" : {
@@ -619,7 +620,7 @@
   "expression" : "...",
   "relationGuid" : "...",
   "source" : "...",
-  "status" : "DEPRECATED",
+  "status" : "VALIDATED",
   "steward" : "...",
   "termGuid" : "..."
 } ],
@@ -640,7 +641,7 @@
   }, {
 "classifications" : [ {
   "entityGuid" : "...",
-  "entityStatus" : "DELETED",
+  "entityStatus" : "ACTIVE",
   "propagate" : true,
   "removePropagationsOnEntityDelete" : true,
   "validityPeriods" : [ { }, { } ],
@@ -651,7 +652,7 @@
   "typeName" : "..."
 }, {
   "entityGuid" : "...",
-  "entityStatus" : "DELETED",
+  "entityStatus" : "ACTIVE",
   "propagate" : true,
   "removePropagationsOnEntityDelete" : true,
   "validityPeriods" : [ { }, { } ],
@@ -673,7 +674,7 @@
   "expression" : "...",
   "relationGuid" : "...",
   "source" : "...",
-  "status" : "DEPRECATED",
+  "status" : "OTHER",
   "steward" : "...",
   "termGuid" : "..."
 }, {
@@ -684,7 +685,7 @@
   "expression" : "...",
   "relationGuid" : "...",
   "source" : "...",
-  "status" : "OBSOLETE",
+  "status" : "DISCOVERED",
   "steward" : "...",
   "termGuid" : "..."
 } ],
@@ -693,7 +694,7 @@
   "property1" : { },
   "property2" : { }
 },
-"status" : "ACTIVE",
+"status" : "DELETED",
 "updateTime" : 12345,
 "updatedBy" : "...",
 "version" : 12345,
@@ -751,7 +752,7 @@
 "expression" : "...",
 "relationGuid" : "...",
 "source" : "...",
-"status" : "DISCOVERED",
+"status" : "OBSOLETE",
 "steward" : "...",
 "termGuid" : "..."
   } ],
@@ -760,7 +761,7 @@
 "property1" : { },
 "property2" : { }
   },
-  "status" : "DELETED",
+  "status" : "ACTIVE",
   "updateTime" : 12345,
   "updatedBy" : "...",
   "version" : 12345,
@@ -773,7 +774,7 @@
 "property2" : {
   "classifications" : [ {
 "entityGuid" : "...",
-"entityStatus" : "ACTIVE",
+"entityStatus" : "DELETED",
 "propagate" : true,
 "removePropagationsOnEntityDelete" : true,
 "validityPeriods" : [ { }, { } ],
@@ -784,7 +785,7 @@
 "typeName" : "..."
   }, {
 "entityGuid" : "...",
-"entityStatus" : "DELETED",
+"entityStatus" : "ACTIVE",
 "propagate" : true,
 "removePropagationsOnEntityDelete" : true,
 "validityPeriods" : [ { }, { } ],
@@ -806,7 +807,7 @@
 "expression" : "...",
 "relationGuid" : "...",
 "source" : "...",
-"status" : "VALIDATED",
+"status" : "DEPRECATED",
 "steward" : "...",
 "termGuid" : "..."
   }, {
@@ -817,7 +818,7 @@
 "expression" : "...",
 "relationGuid" : "...",
 "source" : "...",
-"status" : "IMPORTED",
+"status" : "VALIDATED",
 "steward" : "...",
 "termGuid" 

atlas git commit: ATLAS-2919: Fixed issue with Cassandra and Netty

2018-10-21 Thread apoorvnaik
Repository: atlas
Updated Branches:
  refs/heads/branch-1.0 95ac4f489 -> 23e61364f


ATLAS-2919: Fixed issue with Cassandra and Netty

Signed-off-by: apoorvnaik 

(cherry picked from commit 3b8a34c51eeadb54adeed78bea1e1ec3b03e279f)


Project: http://git-wip-us.apache.org/repos/asf/atlas/repo
Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/23e61364
Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/23e61364
Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/23e61364

Branch: refs/heads/branch-1.0
Commit: 23e61364f8ce2a56a859c98affbbd3bcaf6170c0
Parents: 95ac4f4
Author: Zinovii Dmytriv 
Authored: Sun Oct 21 10:45:47 2018 -0700
Committer: apoorvnaik 
Committed: Sun Oct 21 10:47:11 2018 -0700

--
 repository/pom.xml |  8 
 webapp/pom.xml | 12 
 2 files changed, 20 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/23e61364/repository/pom.xml
--
diff --git a/repository/pom.xml b/repository/pom.xml
index 9896c73..92edf96 100755
--- a/repository/pom.xml
+++ b/repository/pom.xml
@@ -97,6 +97,10 @@
 ch.qos.logback
 *
 
+
+io.netty
+netty-handler
+
 
 2.1.8
 
@@ -189,6 +193,10 @@
 io.dropwizard.metrics
 metrics-core
 
+
+io.netty
+netty-handler
+
 
 
 

http://git-wip-us.apache.org/repos/asf/atlas/blob/23e61364/webapp/pom.xml
--
diff --git a/webapp/pom.xml b/webapp/pom.xml
index a1bb4c8..7c14f7c 100755
--- a/webapp/pom.xml
+++ b/webapp/pom.xml
@@ -76,6 +76,12 @@
 
 org.apache.atlas
 atlas-graphdb-impls
+
+
+io.netty
+netty-handler
+
+
 pom
 
 
@@ -93,6 +99,12 @@
 
 org.apache.atlas
 atlas-repository
+
+
+io.netty
+netty-handler
+
+
 
 
 



atlas git commit: ATLAS-2919: Fixed issue with Cassandra and Netty

2018-10-21 Thread apoorvnaik
Repository: atlas
Updated Branches:
  refs/heads/master f5fd57475 -> 3b8a34c51


ATLAS-2919: Fixed issue with Cassandra and Netty

Signed-off-by: apoorvnaik 


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

Branch: refs/heads/master
Commit: 3b8a34c51eeadb54adeed78bea1e1ec3b03e279f
Parents: f5fd574
Author: Zinovii Dmytriv 
Authored: Sun Oct 21 10:45:47 2018 -0700
Committer: apoorvnaik 
Committed: Sun Oct 21 10:46:08 2018 -0700

--
 repository/pom.xml |  8 
 webapp/pom.xml | 12 
 2 files changed, 20 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/atlas/blob/3b8a34c5/repository/pom.xml
--
diff --git a/repository/pom.xml b/repository/pom.xml
index 8dcc019..8198610 100755
--- a/repository/pom.xml
+++ b/repository/pom.xml
@@ -97,6 +97,10 @@
 ch.qos.logback
 *
 
+
+io.netty
+netty-handler
+
 
 2.1.8
 
@@ -189,6 +193,10 @@
 io.dropwizard.metrics
 metrics-core
 
+
+io.netty
+netty-handler
+
 
 
 

http://git-wip-us.apache.org/repos/asf/atlas/blob/3b8a34c5/webapp/pom.xml
--
diff --git a/webapp/pom.xml b/webapp/pom.xml
index 78aa81e..e1988c3 100755
--- a/webapp/pom.xml
+++ b/webapp/pom.xml
@@ -76,6 +76,12 @@
 
 org.apache.atlas
 atlas-graphdb-impls
+
+
+io.netty
+netty-handler
+
+
 pom
 
 
@@ -93,6 +99,12 @@
 
 org.apache.atlas
 atlas-repository
+
+
+io.netty
+netty-handler
+
+
 
 
 



[51/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
Updated REST docs for 1.x releases


Project: http://git-wip-us.apache.org/repos/asf/atlas-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/atlas-website/commit/3fad5df3
Tree: http://git-wip-us.apache.org/repos/asf/atlas-website/tree/3fad5df3
Diff: http://git-wip-us.apache.org/repos/asf/atlas-website/diff/3fad5df3

Branch: refs/heads/asf-site
Commit: 3fad5df3c2dc64cfd942c271b2c7be2c7f7b
Parents: ab60d06
Author: apoorvnaik 
Authored: Sun Oct 21 10:23:32 2018 -0700
Committer: apoorvnaik 
Committed: Sun Oct 21 10:32:27 2018 -0700

--
 1.0.0/api/v2/data.html  |   452 +
 1.0.0/api/v2/index.html |   454 +
 1.0.0/api/v2/json_AtlasAttributeDef.html|   265 +
 1.0.0/api/v2/json_AtlasBaseModelObject.html |   136 +
 1.0.0/api/v2/json_AtlasBaseTypeDef.html |   281 +
 1.0.0/api/v2/json_AtlasClassification.html  |42 +-
 1.0.0/api/v2/json_AtlasClassificationDef.html   |   353 +
 1.0.0/api/v2/json_AtlasClassifications.html |   167 +
 1.0.0/api/v2/json_AtlasConstraintDef.html   |   143 +
 1.0.0/api/v2/json_AtlasEntitiesWithExtInfo.html |   405 +
 1.0.0/api/v2/json_AtlasEntity.html  |   325 +
 1.0.0/api/v2/json_AtlasEntityDef.html   |   334 +
 1.0.0/api/v2/json_AtlasEntityExtInfo.html   |   265 +
 1.0.0/api/v2/json_AtlasEntityHeader.html|   272 +
 1.0.0/api/v2/json_AtlasEntityWithExtInfo.html   |   340 +
 1.0.0/api/v2/json_AtlasEnumDef.html |   272 +
 1.0.0/api/v2/json_AtlasEnumElementDef.html  |   150 +
 1.0.0/api/v2/json_AtlasFullTextResult.html  |   197 +
 1.0.0/api/v2/json_AtlasGlossary.html|   282 +
 1.0.0/api/v2/json_AtlasGlossaryBaseObject.html  |   226 +
 1.0.0/api/v2/json_AtlasGlossaryCategory.html|   290 +
 1.0.0/api/v2/json_AtlasGlossaryExtInfo.html |  1089 +
 1.0.0/api/v2/json_AtlasGlossaryHeader.html  |   150 +
 1.0.0/api/v2/json_AtlasGlossaryTerm.html|   686 +
 1.0.0/api/v2/json_AtlasLineageInfo.html |   295 +
 1.0.0/api/v2/json_AtlasObjectId.html|   155 +
 1.0.0/api/v2/json_AtlasQueryType.html   |   145 +
 .../api/v2/json_AtlasRelatedCategoryHeader.html |   170 +
 1.0.0/api/v2/json_AtlasRelatedObjectId.html |   205 +
 1.0.0/api/v2/json_AtlasRelatedTermHeader.html   |   200 +
 1.0.0/api/v2/json_AtlasRelationship.html|   372 +
 1.0.0/api/v2/json_AtlasRelationshipDef.html |   408 +
 1.0.0/api/v2/json_AtlasRelationshipEndDef.html  |   181 +
 .../v2/json_AtlasRelationshipWithExtInfo.html   |   335 +
 1.0.0/api/v2/json_AtlasSearchResult.html|   502 +
 1.0.0/api/v2/json_AtlasStruct.html  |14 +-
 1.0.0/api/v2/json_AtlasStructDef.html   |   314 +
 .../api/v2/json_AtlasTermAssignmentHeader.html  |   220 +
 .../api/v2/json_AtlasTermAssignmentStatus.html  |   150 +
 .../v2/json_AtlasTermCategorizationHeader.html  |   170 +
 .../v2/json_AtlasTermRelationshipStatus.html|   140 +
 1.0.0/api/v2/json_AtlasTypeDefHeader.html   |   150 +
 1.0.0/api/v2/json_AtlasTypesDef.html|   778 +
 1.0.0/api/v2/json_AtlasUserSavedSearch.html |   208 +
 1.0.0/api/v2/json_AttributeSearchResult.html|   140 +
 1.0.0/api/v2/json_Cardinality.html  |   130 +
 .../v2/json_ClassificationAssociateRequest.html |14 +-
 1.0.0/api/v2/json_Condition.html|   125 +
 1.0.0/api/v2/json_DateFormat.html   |   364 +
 1.0.0/api/v2/json_EntityAuditActionV2.html  |   185 +
 1.0.0/api/v2/json_EntityAuditEventV2.html   |   265 +
 1.0.0/api/v2/json_EntityAuditType.html  |   125 +
 1.0.0/api/v2/json_EntityMutationResponse.html   |   498 +
 1.0.0/api/v2/json_EntityOperation.html  |   135 +
 1.0.0/api/v2/json_FilterCriteria.html   |   182 +
 1.0.0/api/v2/json_Format.html   |   125 +
 1.0.0/api/v2/json_LineageDirection.html |   130 +
 1.0.0/api/v2/json_LineageRelation.html  |   150 +
 1.0.0/api/v2/json_NumberFormat.html |   339 +
 1.0.0/api/v2/json_Operator.html |   192 +
 1.0.0/api/v2/json_PList.html|28 +-
 1.0.0/api/v2/json_PropagateTags.html|   150 +
 1.0.0/api/v2/json_Relation.html |   180 +
 1.0.0/api/v2/json_RelationshipCategory.html |   138 +
 1.0.0/api/v2/json_RoundingMode.html |   155 +
 1.0.0/api/v2/json_SavedSearchType.html  |   125 +
 1.0.0/api/v2/json_SearchFilter.html |30 +-
 1.0.0/api/v2/json_SearchParameters.html |   262 +
 1.0.0/api/v2/json_Status.html   |   125 +
 1.0.0/api/v2/json_Status_AtlasRelationship.html |   125 +
 1.0.0/api/v2/json_TimeBoundary.html | 8 +-
 1.0.0/api/v2/json_TimeZone.html |   191 +
 1.0.0/api/v2/json_TypeCategory.html |   160 +
 1.0.0/api/v2/ns0.xsd|18 +
 1.0.0

[41/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/ui/swagger.json
--
diff --git a/1.0.0/api/v2/ui/swagger.json b/1.0.0/api/v2/ui/swagger.json
index 4ce3caf..96c3204 100644
--- a/1.0.0/api/v2/ui/swagger.json
+++ b/1.0.0/api/v2/ui/swagger.json
@@ -46,6 +46,250 @@
 }
   ],
   "definitions" : {
+"json_AtlasAttributeDef" : {
+  "type" : "object",
+  "title" : "AtlasAttributeDef",
+  "properties" : {
+"cardinality" : {
+"readOnly" : false,
+"$ref" : "#/definitions/json_Cardinality"
+},
+"constraints" : {
+"readOnly" : false,
+"description" : "",
+"type" : "array",
+"items" : {
+  "$ref" : "#/definitions/json_AtlasConstraintDef"
+}
+},
+"defaultValue" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"description" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"includeInNotification" : {
+"readOnly" : false,
+"description" : "",
+"type" : "boolean"
+},
+"isIndexable" : {
+"readOnly" : false,
+"description" : "",
+"type" : "boolean"
+},
+"isOptional" : {
+"readOnly" : false,
+"description" : "",
+"type" : "boolean"
+},
+"isUnique" : {
+"readOnly" : false,
+"description" : "",
+"type" : "boolean"
+},
+"name" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"options" : {
+"readOnly" : false,
+"description" : "",
+"type" : "object",
+"additionalProperties" : {
+  "type" : "string"
+}
+},
+"typeName" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"valuesMaxCount" : {
+"readOnly" : false,
+"description" : "",
+"type" : "integer",
+"format" : "int32"
+},
+"valuesMinCount" : {
+"readOnly" : false,
+"description" : "",
+"type" : "integer",
+"format" : "int32"
+}
+  },
+  "example" : {
+  "cardinality" : "SET",
+  "constraints" : [ {
+"params" : {
+  "property1" : { },
+  "property2" : { }
+},
+"type" : "..."
+  }, {
+"params" : {
+  "property1" : { },
+  "property2" : { }
+},
+"type" : "..."
+  } ],
+  "defaultValue" : "...",
+  "description" : "...",
+  "includeInNotification" : true,
+  "isIndexable" : true,
+  "isOptional" : true,
+  "isUnique" : true,
+  "name" : "...",
+  "options" : {
+"property1" : "...",
+"property2" : "..."
+  },
+  "typeName" : "...",
+  "valuesMaxCount" : 12345,
+  "valuesMinCount" : 12345
+},
+  "description" : "class that captures details of a struct-attribute."
+}
+,
+"json_AtlasBaseModelObject" : {
+  "type" : "object",
+  "title" : "AtlasBaseModelObject",
+  "properties" : {
+"guid" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+}
+  },
+  "example" : {
+  "guid" : "..."
+},
+  "description" : ""
+}
+,
+"json_AtlasBaseTypeDef" : {
+  "type" : "object",
+  "title" : "AtlasBaseTypeDef",
+  "properties" : {
+"category" : {
+"readOnly" : false,
+"$ref" : "#/definitions/json_TypeCategory"
+},
+"createTime" : {
+"readOnly" : false,
+"description" : "",
+"type" : "number"
+},
+"createdBy" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"dateFormatter" : {
+"readOnly" : false,
+"$ref" : "#/definitions/json_DateFormat"
+},
+"description" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"guid" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"name" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"options" : {
+"readOnly" : false,
+"description" : "",
+"type" : "object",
+"additionalProperties" : {
+  "type" : "string"
+}
+},
+"typeVersion" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"updateTime" : {
+"readOnly" : false,
+"description" : "",
+"type" : "number"
+},
+"updatedBy" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"version" : {
+"readOnly" : false,
+"description" : "",
+"type" : "number"
+}
+  },
+  "example" : {
+  "category" : "STRUCT",
+  "createTime" : 12345,
+  

[42/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/resource_EntityREST.html
--
diff --git a/1.0.0/api/v2/resource_EntityREST.html 
b/1.0.0/api/v2/resource_EntityREST.html
index 68ab99c..af806cf 100644
--- a/1.0.0/api/v2/resource_EntityREST.html
+++ b/1.0.0/api/v2/resource_EntityREST.html
@@ -62,6 +62,7 @@
   GET 
/v2/entity/guid/{guid}/classifications
   POST 
/v2/entity/guid/{guid}/classifications
   PUT 
/v2/entity/guid/{guid}/classifications
+  GET 
/v2/entity/guid/{guid}/header
   DELETE 
/v2/entity/uniqueAttribute/type/{typeName}
   GET 
/v2/entity/uniqueAttribute/type/{typeName}
   PUT 
/v2/entity/uniqueAttribute/type/{typeName}
@@ -209,8 +210,12 @@ Content-Type: application/json;charset=UTF-8
   Request
   
 DELETE /v2/entity/bulk
+Content-Type: application/json;charset=UTF-8
 Accept: application/json;charset=UTF-8
 
+
+...
+
   
 
 
@@ -240,6 +245,8 @@ Content-Type: application/json;charset=UTF-8
 name
 type
 description
+default
+constraints
 multivalued
   
   
@@ -248,8 +255,18 @@ Content-Type: application/json;charset=UTF-8
 guid
 query
 
+
+
 yes
   
+  
+minExtInfo
+query
+
+false
+boolean
+no
+  
   
 
 
@@ -279,8 +296,12 @@ Content-Type: application/json;charset=UTF-8
   Request
   
 GET /v2/entity/bulk
+Content-Type: application/json;charset=UTF-8
 Accept: application/json;charset=UTF-8
 
+
+...
+
   
 
 
@@ -410,21 +431,23 @@ Content-Type: application/json
 {
   classification : {
 entityGuid : ...,
+entityStatus : DELETED,
 propagate : true,
+removePropagationsOnEntityDelete : true,
 validityPeriods : [ {
-  startTime : ...,
   endTime : ...,
+  startTime : ...,
   timeZone : ...
 }, {
-  startTime : ...,
   endTime : ...,
+  startTime : ...,
   timeZone : ...
 } ],
-typeName : ...,
 attributes : {
   property1 : { },
   property2 : { }
-}
+},
+typeName : ...
   },
   entityGuids : [ ..., ... ]
 }
@@ -491,8 +514,12 @@ HTTP/1.1 201 Created
   Request
   
 DELETE /v2/entity/guid/{guid}
+Content-Type: application/json
 Accept: application/json;charset=UTF-8
 
+
+...
+
   
 
 
@@ -522,6 +549,8 @@ Content-Type: application/json;charset=UTF-8
 name
 type
 description
+default
+constraints
   
   
   
@@ -529,6 +558,15 @@ Content-Type: application/json;charset=UTF-8
 guid
 path
 GUID for the 
entity
+
+
+  
+  
+minExtInfo
+query
+
+false
+boolean
   
   
 
@@ -559,8 +597,12 @@ Content-Type: application/json;charset=UTF-8
   Request
   
 GET /v2/entity/guid/{guid}
+Content-Type: application/json;charset=UTF-8
 Accept: application/json;charset=UTF-8
 
+
+...
+
   
 
 
@@ -742,8 +784,12 @@ Content-Type: application/json;charset=UTF-8
   Request
   
 GET /v2/entity/{guid}/audit
+Content-Type: application/json;charset=UTF-8
 Accept: application/json;charset=UTF-8
 
+
+...
+
   
 
 
@@ -810,8 +856,12 @@ Content-Type: application/json;charset=UTF-8
   Request
   
 GET /v2/entity/guid/{guid}/classifications
+Content-Type: */*
 Accept: application/json;charset=UTF-8
 
+
+...
+
   
 
 
@@ -886,21 +936,23 @@ Content-Type: application/json
 
 [ {
   entityGuid : ...,
+  entityStatus : DELETED,
   propagate : true,
+  removePropagationsOnEntityDelete : true,
   validityPeriods : [ {
-startTime : ...,
 endTime : ...,
+startTime : ...,
 timeZone : ...
   }, {
-startTime : ...,
 endTime : ...,
+startTime : ...,
 timeZone : ...
   } ],
-  typeName : ...,
   attributes : {
 property1 : { },
 property2 : { }
-  }
+  },
+  typeName : ...
 } ]
 
   
@@ -973,21 +1025,23 @@ Content-Type: application/json
 
 [ {
   entityGuid : ...,
+  entityStatus : ACTIVE,
   propagate : true,
+  removePropagationsOnEntityDelete : true,
   

[18/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/ui/swagger-ui.js
--
diff --git a/1.1.0/api/v2/apidocs/ui/swagger-ui.js 
b/1.1.0/api/v2/apidocs/ui/swagger-ui.js
deleted file mode 100644
index 5219d03..000
--- a/1.1.0/api/v2/apidocs/ui/swagger-ui.js
+++ /dev/null
@@ -1,25344 +0,0 @@
-/**
- * swagger-ui - Swagger UI is a dependency-free collection of HTML, 
JavaScript, and CSS assets that dynamically generate beautiful documentation 
from a Swagger-compliant API
- * @version v2.2.10
- * @link http://swagger.io
- * @license Apache-2.0
- */
-(function(){/* jshint ignore:start */ 
- {(function() {
-  var template = Handlebars.template, templates = Handlebars.templates = 
Handlebars.templates || {};
-templates['apikey_auth'] = 
template({"1":function(container,depth0,helpers,partials,data) {
-var stack1;
-
-  return ""
-+ ((stack1 = (helpers.sanitize || (depth0 && depth0.sanitize) || 
helpers.helperMissing).call(depth0 != null ? depth0 : {},(depth0 != null ? 
depth0.value : depth0),{"name":"sanitize","hash":{},"data":data})) != null ? 
stack1 : "")
-+ "\n";
-},"3":function(container,depth0,helpers,partials,data) {
-return "\n";
-},"compiler":[7,">= 
4.0.0"],"main":function(container,depth0,helpers,partials,data) {
-var stack1, alias1=depth0 != null ? depth0 : {}, 
alias2=helpers.helperMissing;
-
-  return "\nApi key authorization\n"
-+ ((stack1 = (helpers.sanitize || (depth0 && depth0.sanitize) || 
alias2).call(alias1,(depth0 != null ? depth0.description : 
depth0),{"name":"sanitize","hash":{},"data":data})) != null ? stack1 : "")
-+ "\n\n\n
name:\n"
-+ ((stack1 = (helpers.escape || (depth0 && depth0.escape) || 
alias2).call(alias1,(depth0 != null ? depth0.name : 
depth0),{"name":"escape","hash":{},"data":data})) != null ? stack1 : "")
-+ "\n\n\n  
  in:\n"
-+ ((stack1 = (helpers.escape || (depth0 && depth0.escape) || 
alias2).call(alias1,(depth0 != null ? depth0["in"] : 
depth0),{"name":"escape","hash":{},"data":data})) != null ? stack1 : "")
-+ "\n\n\n  
  value:\n"
-+ ((stack1 = helpers["if"].call(alias1,(depth0 != null ? depth0.isLogout : 
depth0),{"name":"if","hash":{},"fn":container.program(1, data, 
0),"inverse":container.program(3, data, 0),"data":data})) != null ? stack1 : "")
-+ "\n\n\n";
-},"useData":true});
-templates['auth_button'] = template({"compiler":[7,">= 
4.0.0"],"main":function(container,depth0,helpers,partials,data) {
-return "Authorize\n";
-},"useData":true});
-templates['auth_button_operation'] = 
template({"1":function(container,depth0,helpers,partials,data) {
-return "authorize__btn_operation_login\n";
-},"3":function(container,depth0,helpers,partials,data) {
-return "authorize__btn_operation_logout\n";
-},"5":function(container,depth0,helpers,partials,data) {
-var stack1;
-
-  return "\n"
-+ ((stack1 = helpers.each.call(depth0 != null ? depth0 : {},(depth0 != 
null ? depth0.scopes : 
depth0),{"name":"each","hash":{},"fn":container.program(6, data, 
0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
-+ "\n";
-},"6":function(container,depth0,helpers,partials,data) {
-var stack1, alias1=depth0 != null ? depth0 : {}, 
alias2=helpers.helperMissing;
-
-  return ""
-+ ((stack1 = (helpers.escape || (depth0 && depth0.escape) || 
alias2).call(alias1,(depth0 != null ? depth0.scope : 
depth0),{"name":"escape","hash":{},"data":data})) != null ? stack1 : "")
-+ "\n";
-},"compiler":[7,">= 
4.0.0"],"main":function(container,depth0,helpers,partials,data) {
-var stack1, alias1=depth0 != null ? depth0 : {};
-
-  return "\n"
-+ ((stack1 = helpers["if"].call(alias1,(depth0 != null ? depth0.scopes : 
depth0),{"name":"if","hash":{},"fn":container.program(5, data, 
0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
-+ "\n";
-},"useData":true});
-templates['auth_view'] = 
template({"1":function(container,depth0,helpers,partials,data) {
-return "Authorize\n";
-},"3":function(container,depth0,helpers,partials,data) {
-return "Logout\n";
-},"compiler":[7,">= 
4.0.0"],"main":function(container,depth0,helpers,partials,data) {
-var stack1, alias1=depth0 != null ? depth0 : {};
-
-  return "\n\n\n\n"
-+ ((stack1 = helpers.unless.call(alias1,(depth0 != null ? depth0.isLogout 
: depth0),{"name":"unless","hash":{},"fn":container.program(1, data, 
0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
-+ ((stack1 = helpers["if"].call(alias1,(depth0 != null ? 
depth0.isAuthorized : depth0),{"name":"if","hash":{},"fn":container.program(3, 
data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
-+ "\n\n\n";

[25/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/ui/lib/handlebars-4.0.5.js
--
diff --git a/1.1.0/api/v2/apidocs/ui/lib/handlebars-4.0.5.js 
b/1.1.0/api/v2/apidocs/ui/lib/handlebars-4.0.5.js
deleted file mode 100644
index 57025bc..000
--- a/1.1.0/api/v2/apidocs/ui/lib/handlebars-4.0.5.js
+++ /dev/null
@@ -1,3 +0,0 @@
-!function(t,e){"object"==typeof exports&&"object"==typeof 
module?module.exports=e():"function"==typeof 
define&?define([],e):"object"==typeof 
exports?exports.Handlebars=e():t.Handlebars=e()}(this,function(){return 
function(t){function e(s){if(r[s])return r[s].exports;var 
i=r[s]={exports:{},id:s,loaded:!1};return 
t[s].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var r={};return 
e.m=t,e.c=r,e.p="",e(0)}([function(t,e,r){"use strict";function s(){var 
t=v();return t.compile=function(e,r){return 
l.compile(e,r,t)},t.precompile=function(e,r){return 
l.precompile(e,r,t)},t.AST=c["default"],t.Compiler=l.Compiler,t.JavaScriptCompiler=u["default"],t.Parser=h.parser,t.parse=h.parse,t}var
 i=r(1)["default"];e.__esModule=!0;var 
a=r(2),n=i(a),o=r(21),c=i(o),h=r(22),l=r(27),p=r(28),u=i(p),f=r(25),d=i(f),m=r(20),g=i(m),v=n["default"].create,y=s();y.create=s,g["default"](y),y.Visitor=d["default"],y["default"]=y,e["default"]=y,t.exports=e["default"]},function(t,e){"use
 strict";e["defaul
 t"]=function(t){return 
t&__esModule?t:{"default":t}},e.__esModule=!0},function(t,e,r){"use 
strict";function s(){var t=new o.HandlebarsEnvironment;return 
f.extend(t,o),t.SafeString=h["default"],t.Exception=p["default"],t.Utils=f,t.escapeExpression=f.escapeExpression,t.VM=m,t.template=function(e){return
 m.template(e,t)},t}var i=r(3)["default"],a=r(1)["default"];e.__esModule=!0;var 
n=r(4),o=i(n),c=r(18),h=a(c),l=r(6),p=a(l),u=r(5),f=i(u),d=r(19),m=i(d),g=r(20),v=a(g),y=s();y.create=s,v["default"](y),y["default"]=y,e["default"]=y,t.exports=e["default"]},function(t,e){"use
 strict";e["default"]=function(t){if(t&__esModule)return t;var 
e={};if(null!=t)for(var r in 
t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return 
e["default"]=t,e},e.__esModule=!0},function(t,e,r){"use strict";function 
s(t,e,r){this.helpers=t||{},this.partials=e||{},this.decorators=r||{},c.registerDefaultHelpers(this),h.registerDefaultDecorators(this)}var
 i=r(1)["default"];e.__esModule=!0,e.HandlebarsEnv
 ironment=s;var 
a=r(5),n=r(6),o=i(n),c=r(7),h=r(15),l=r(17),p=i(l),u="4.0.5";e.VERSION=u;var 
f=7;e.COMPILER_REVISION=f;var d={1:"<= 1.0.rc.2",2:"== 1.0.0-rc.3",3:"== 
1.0.0-rc.4",4:"== 1.x.x",5:"== 2.0.0-alpha.x",6:">= 2.0.0-beta.1",7:">= 
4.0.0"};e.REVISION_CHANGES=d;var m="[object 
Object]";s.prototype={constructor:s,logger:p["default"],log:p["default"].log,registerHelper:function(t,e){if(a.toString.call(t)===m){if(e)throw
 new o["default"]("Arg not supported with multiple 
helpers");a.extend(this.helpers,t)}else 
this.helpers[t]=e},unregisterHelper:function(t){delete 
this.helpers[t]},registerPartial:function(t,e){if(a.toString.call(t)===m)a.extend(this.partials,t);else{if("undefined"==typeof
 e)throw new o["default"]('Attempting to register a partial called "'+t+'" as 
undefined');this.partials[t]=e}},unregisterPartial:function(t){delete 
this.partials[t]},registerDecorator:function(t,e){if(a.toString.call(t)===m){if(e)throw
 new o["default"]("Arg not supported with multiple decorators");a.
 extend(this.decorators,t)}else 
this.decorators[t]=e},unregisterDecorator:function(t){delete 
this.decorators[t]}};var 
g=p["default"].log;e.log=g,e.createFrame=a.createFrame,e.logger=p["default"]},function(t,e){"use
 strict";function r(t){return l[t]}function s(t){for(var 

[50/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/json_AtlasAttributeDef.html
--
diff --git a/1.0.0/api/v2/json_AtlasAttributeDef.html 
b/1.0.0/api/v2/json_AtlasAttributeDef.html
new file mode 100644
index 000..ef93a3a
--- /dev/null
+++ b/1.0.0/api/v2/json_AtlasAttributeDef.html
@@ -0,0 +1,265 @@
+
+
+
+  
+  
+  
+  
+
+  Atlas REST API: AtlasAttributeDef
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: 
AtlasAttributeDef
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  AtlasAttributeDef
+
+
+  AtlasAttributeDef Data Type
+
+  class that captures details of a struct-attribute.
+
+  
+  
+
+  
+Properties
+
+
+  name
+  data type
+  description
+
+
+
+
+cardinality
+
+Cardinality
+
+
+
+
+
+
+constraints
+
+array of AtlasConstraintDef
+
+
+
+
+
+
+defaultValue
+
+string
+
+
+
+
+
+
+description
+
+string
+
+
+
+
+
+
+includeInNotification
+
+boolean
+
+
+
+
+
+
+isIndexable
+
+boolean
+
+
+
+
+
+
+isOptional
+
+boolean
+
+
+
+
+
+
+isUnique
+
+boolean
+
+
+
+
+
+
+name
+
+string
+
+
+
+
+
+
+options
+
+map of string
+
+
+
+
+
+
+typeName
+
+string
+
+
+
+
+
+
+valuesMaxCount
+
+number
+
+
+
+
+
+
+valuesMinCount
+
+number
+
+
+
+
+
+
+  
+
+  Example
+  
+  {
+  cardinality : SET,
+  constraints : [ {
+params : {
+  property1 : { },
+  property2 : { }
+},
+type : ...
+  }, {
+params : {
+  property1 : { },
+  property2 : { }
+},
+type : ...
+  } ],
+  defaultValue : ...,
+  description : ...,
+  includeInNotification : true,
+  isIndexable : true,
+  isOptional : true,
+  isUnique : true,
+  name : ...,
+  options : {
+property1 : ...,
+property2 : ...
+  },
+  typeName : ...,
+  valuesMaxCount : 12345,
+  valuesMinCount : 12345
+}
+
+
+  
+Generated by http://enunciate.webcohesion.com;>Enunciate.
+  
+
+
+  
+
+  
+
+
+  
+  https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js";>
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js";>
+
+  
+  https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"; 
type="text/javascript">
+  
+$(function() {
+  $(".clickable-row").click(function() {
+window.document.location = $(this).data("href");
+  });
+
+  $('[data-toggle="tooltip"]').tooltip()
+});
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/json_AtlasBaseModelObject.html
--
diff --git a/1.0.0/api/v2/json_AtlasBaseModelObject.html 
b/1.0.0/api/v2/json_AtlasBaseModelObject.html
new file mode 100644
index 000..322057b
--- /dev/null
+++ b/1.0.0/api/v2/json_AtlasBaseModelObject.html
@@ -0,0 +1,136 @@
+
+
+
+  
+  
+  
+  
+
+  Atlas REST API: AtlasBaseModelObject
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: 
AtlasBaseModelObject
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  AtlasBaseModelObject
+
+
+  AtlasBaseModelObject Data 
Type
+
+  
+
+  
+Abstract Type
+
+Subtypes
+AtlasGlossaryBaseObject, AtlasUserSavedSearch, AtlasGlossary, AtlasGlossaryCategory, AtlasGlossaryExtInfo, AtlasGlossaryTerm
+  
+
+  
+Properties
+
+
+  name
+  data type
+  

[46/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/json_AtlasRelationshipDef.html
--
diff --git a/1.0.0/api/v2/json_AtlasRelationshipDef.html 
b/1.0.0/api/v2/json_AtlasRelationshipDef.html
new file mode 100644
index 000..16d58a4
--- /dev/null
+++ b/1.0.0/api/v2/json_AtlasRelationshipDef.html
@@ -0,0 +1,408 @@
+
+
+
+  
+  
+  
+  
+
+  Atlas REST API: AtlasRelationshipDef
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: 
AtlasRelationshipDef
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  AtlasRelationshipDef
+
+
+  AtlasRelationshipDef Data 
Type
+
+  AtlasRelationshipDef is a TypeDef that defines a relationship.
+
+As with other typeDefs the AtlasRelationshipDef has a name. Once created the 
RelationshipDef has a guid.
+The name and the guid are the 2 ways that the RelationshipDef is identified.
+
+RelationshipDefs have 2 ends, each of which specify cardinality, an EntityDef 
type name and name and optionally
+whether the end is a container.
+
+RelationshipDefs can have AttributeDefs - though only primitive types are 
allowed. 
+RelationshipDefs have a relationshipCategory specifying the UML type of 
relationship required 
+RelationshipDefs also have a PropogateTag - indicating which way tags could 
flow over the relationships.
+
+The way EntityDefs and RelationshipDefs are intended to be used is that 
EntityDefs will define AttributeDefs these AttributeDefs
+will not specify an EntityDef type name as their types.
+
+RelationshipDefs introduce new atributes to the entity instances. For example
+
+EntityDef A might have attributes attr1,attr2,attr3 
+EntityDef B might have attributes attr4,attr5,attr6 
+RelationshipDef AtoB might define 2 ends 
+
+
+   end1:  type A, name attr7
+   end2:  type B, name attr8  
+
+
+When an instance of EntityDef A is created, it will have attributes 
attr1,attr2,attr3,attr7 
+When an instance of EntityDef B is created, it will have attributes 
attr4,attr5,attr6,attr8
+
+In this way relationshipDefs can be authored separately from entityDefs and 
can inject relationship attributes into
+the entity instances
+
+  
+  
+
+  
+Properties
+
+
+  name
+  data type
+  description
+
+
+
+
+endDef1
+
+AtlasRelationshipEndDef
+
+
+
+
+
+
+endDef2
+
+AtlasRelationshipEndDef
+
+
+
+
+
+
+propagateTags
+
+PropagateTags
+
+
+
+
+
+
+relationshipCategory
+
+RelationshipCategory
+
+
+
+
+
+
+relationshipLabel
+
+string
+
+
+
+
+
+
+
+  Properties inherited from AtlasStructDef
+
+
+
+  attributeDefs
+  array of AtlasAttributeDef
+
+  
+
+
+
+  Properties inherited from AtlasBaseTypeDef
+
+
+
+  category
+  TypeCategory
+
+  
+
+
+  createTime
+  number
+
+  
+
+
+  createdBy
+  string
+
+  
+
+
+  dateFormatter
+  DateFormat
+
+  
+
+
+  description
+  string
+
+  
+
+
+  guid
+  string
+
+  
+
+
+  name
+  string
+
+  
+
+
+  options
+  map of string
+
+  
+
+
+  typeVersion
+  string
+
+  
+
+
+  updateTime
+  number
+
+  
+
+
+  updatedBy
+  string
+
+  
+
+
+  version
+  number
+
+  
+
+
+  
+
+  Example
+  
+  {
+  endDef1 : {
+cardinality : SET,
+description : ...,
+isContainer : true,
+isLegacyAttribute : true,
+name : ...,
+type : ...
+  },
+  endDef2 : {
+cardinality : LIST,
+description : ...,
+isContainer : true,
+isLegacyAttribute : true,
+name : ...,
+type : ...
+  },
+  propagateTags : BOTH,
+  relationshipCategory : ASSOCIATION,
+  relationshipLabel : ...,
+  attributeDefs : [ {
+cardinality : LIST,
+constraints : [ {
+  params : {
+property1 : { },
+property2 : 

[34/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/application.wadl
--
diff --git a/1.1.0/api/v2/apidocs/application.wadl 
b/1.1.0/api/v2/apidocs/application.wadl
deleted file mode 100644
index 5478ea3..000
--- a/1.1.0/api/v2/apidocs/application.wadl
+++ /dev/null
@@ -1,1671 +0,0 @@
-
-
-http://wadl.dev.java.net/2009/02; 
xmlns:xs="http://www.w3.org/2001/XMLSchema;>
-
-  http://enunciate.webcohesion.com/; 
enunciate:generatedBy="Enunciate-2.0"/>
-  
-  
-
-  
-
-  
-
-
-  
-
-
-  
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-
-  
-  
-
-  
-  
-
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-  
-  
-
-
-  
-
-
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-
-  
-  
-
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-  
-  
-
-
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-  
-  
-
-
-  
-
-
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-  
-  
-
-
-  
-
-
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-  
-  
-
-
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-
-
-  
-
-
-  
-  
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-  
-  
-
-
-  
-
-
-  
-
-
-  
-  
-
-  
-  
-
-  
-
-
-
-  
-
-
-
-
-  
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-
-  
-  
-
-  
-
-
-  
-
-
-  
-
-
-  
-  
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-
-  
-  
-
-  
-  
-
-  
-  
-
-  
-  
-
-  
-
-
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-
-  
-  
-
-  
-  
-
-  
-  
-
-  
-  
-
-  
-  
-
-  
-
-
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-  
-  
-
-
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-
-  
-  
-
-  
-  
-
-  
-  
-
-  
-  
-
-  
-
-
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-
-  
-  
-
-  
-  
-
-  
-  
-
-  
-
-
-  
-
-
-  
-  
-
-  
-
-
-
-  
-
-
-  
-
-  
-  
-
-  
-  
-
-  
- 

[19/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/ui/lib/swagger-oauth.js
--
diff --git a/1.1.0/api/v2/apidocs/ui/lib/swagger-oauth.js 
b/1.1.0/api/v2/apidocs/ui/lib/swagger-oauth.js
deleted file mode 100644
index 7160291..000
--- a/1.1.0/api/v2/apidocs/ui/lib/swagger-oauth.js
+++ /dev/null
@@ -1 +0,0 @@
-function handleLogin(){var 
e=[],o=window.swaggerUiAuth.authSchemes||window.swaggerUiAuth.securityDefinitions;if(o){var
 i,n=o;for(i in n){var a=n[i];if("oauth2"===a.type&){var 
t;if(Array.isArray(a.scopes)){var 
p;for(p=0;p','Select OAuth2.0 
Scopes','',"Scopes are used to grant an 
application different levels of access to data on behalf of the end user. Each 
API may declare one or more scopes.",'Learn how to 
use',"",""+appName+" API requires the following 
scopes. Select which ones you want to grant to Swagger UI.",'',"",'','AuthorizeCancel',"",""].join("")),$(document.body).append(popupDialog),popup=popupDialog.find("ul.api-popup-scopes").empty(),p=0;p'+t.scope,t.description&&($.map(o,function(e,o){return 
o}).length>1?str+=''+t.description+" 
("+t.OAuthSchemeKey+")":str+=''+t.description+""),str+="",popup.append(str);var
 
r=$(window),s=r.width(),c=r.height(),l=r.scrollTop(),d=popupDialog.outerWidth(),u=popupDialog.outerHeight(),h=(c-u)/2+l,g=(s-d)/2;popupDialog.css({top:(h<0?0:h)+"px",left:(g<0?0:g)+"px"}),popupDialog.find("button.api-popup-cancel").click(function
 
(){popupMask.hide(),popupDialog.hide(),popupDialog.empty(),popupDialog=[]}),$("button.api-popup-authbtn").unbind(),popupDialog.find("button.api-popup-authbtn").click(function(){function
 e(e){return 
e.vendorExtensions["x-tokenName"]||e.tokenName}popupMask.hide(),popupDialog.hide();var
 
o,i=window.swaggerUi.api.authSchemes,n=window.location,a=location.pathname.substring(0,location.pathname.lastIndexOf("/")),t=n.protocol+"//"+n.host+a+"/o2c.html",p=window.oAuthRedirectUrl||t,r=null,s=[],c=popup.find("input:checked"),l=[];for(k=0;k0?void 
log("auth unable initialize oauth: "+i):($("pre 
code").each(function(e,o){hljs.highlightBlock(o)}),$(".api-ic").unbind(),void 
$(".api-ic").click(function(e){$(e.target).hasClass("ic-off")?handleLogin():handleLogout()}))}function
 clientCredentialsFlow(e,o,i){var n={client_id:clientId,cli
 ent_secret:clientSecret,scope:e.join(" 
"),grant_type:"client_credentials"};$.ajax({url:o,type:"POST",data:n,success:function(e,o,n){onOAuthComplete(e,i)},error:function(e,o,i){onOAuthComplete("")}})}var
 
appName,popupMask,popupDialog,clientId,realm,redirect_uri,clientSecret,scopeSeparator,additionalQueryStringParams;window.processOAuthCode=function(e){var
 
o=e.state,i=window.location,n=location.pathname.substring(0,location.pathname.lastIndexOf("/")),a=i.protocol+"//"+i.host+n+"/o2c.html",t=window.oAuthRedirectUrl||a,p={client_id:clientId,code:e.code,grant_type:"authorization_code",redirect_uri:t};clientSecret&&(p.client_secret=clientSecret),$.ajax({url:window.swaggerUiAuth.tokenUrl,type:"POST",data:p,success:function(e,i,n){onOAuthComplete(e,o)},error:function(e,o,i){onOAuthComplete("")}})},window.onOAuthComplete=function(e,o){if(e)if(e.error){var
 
i=$("input[type=checkbox],.secured");i.each(function(e){i[e].checked=!1}),alert(e.error)}else{var
 n=e[window.swaggerUiAuth.tokenName];if(o
 ||(o=e.state),n){var a=null;$.each($(".auth .api-ic 
.api_information_panel"),function(e,o){var i=o;if(i&){var 
n=[];$.each(i.childNodes,function(e,o){var i=o.innerHTML;i&(i)});for(var 
t=[],p=0;p0?(a=o.parentNode.parentNode,$(a.parentNode).find(".api-ic.ic-on").addClass("ic-off"),$(a.parentNode).find(".api-ic.ic-on").removeClass("ic-on"),$(a).find(".api-ic").addClass("ic-warning"),$(a).find(".api-ic").removeClass("ic-error")):(a=o.parentNode.parentNode,$(a.parentNode).find(".api-ic.ic-off").addClass("ic-on"),$(a.parentNode).find(".api-ic.ic-off").removeClass("ic-off"),$(a).find(".api-ic").addClass("ic-info"),$(a).find(".api-ic").removeClass("ic-warning"),$(a).find(".api-ic").removeClass("ic-error"))}}),"undefined"!=typeof
 
window.swaggerUi&&(window.swaggerUi.api.clientAuthorizations.add(window.swaggerUiAuth.OAuthSchemeKey,new
 SwaggerClient.ApiKeyAuthorization("Aut
 horization","Bearer "+n,"header")),window.swaggerUi.load())}}};
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/ui/o2c.html
--
diff --git a/1.1.0/api/v2/apidocs/ui/o2c.html b/1.1.0/api/v2/apidocs/ui/o2c.html
deleted file mode 100644
index 0cde1d3..000
--- a/1.1.0/api/v2/apidocs/ui/o2c.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-var qp = null;
-if(/code|token|error/.test(window.location.hash)) {
-  qp = location.hash.substring(1);
-}
-else {
-  qp = location.search.substring(1);
-}
-qp = qp ? JSON.parse('{"' + qp.replace(/&/g, '","').replace(/=/g,'":"') + '"}',
-  function(key, value) {
-return 

[30/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/resource_GlossaryREST.html
--
diff --git a/1.1.0/api/v2/apidocs/resource_GlossaryREST.html 
b/1.1.0/api/v2/apidocs/resource_GlossaryREST.html
deleted file mode 100644
index f3e5717..000
--- a/1.1.0/api/v2/apidocs/resource_GlossaryREST.html
+++ /dev/null
@@ -1,2967 +0,0 @@
-
-
-
-  
-  
-  
-  
-
-  Atlas REST API: GlossaryREST
-
-  
-  
-
-  
-  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
-
-  
-  
-
-  
-  
-
-
-
-
-  
-
-  
-
-  Toggle navigation
-  
-  
-  
-
-Atlas REST API: 
GlossaryREST
-  
-  
-
-  Resources
-  Data Types
-
-  
-
-  
-
-  
-
-  
-
-  GET 
/v2/glossary
-  POST 
/v2/glossary
-  POST 
/v2/glossary/categories
-  POST 
/v2/glossary/category
-  POST 
/v2/glossary/term
-  POST 
/v2/glossary/terms
-  DELETE 
/v2/glossary/{glossaryGuid}
-  GET 
/v2/glossary/{glossaryGuid}
-  PUT 
/v2/glossary/{glossaryGuid}
-  DELETE 
/v2/glossary/category/{categoryGuid}
-  GET 
/v2/glossary/category/{categoryGuid}
-  PUT 
/v2/glossary/category/{categoryGuid}
-  DELETE 
/v2/glossary/term/{termGuid}
-  GET 
/v2/glossary/term/{termGuid}
-  PUT 
/v2/glossary/term/{termGuid}
-  GET 
/v2/glossary/{glossaryGuid}/categories
-  GET 
/v2/glossary/{glossaryGuid}/detailed
-  PUT 
/v2/glossary/{glossaryGuid}/partial
-  GET 
/v2/glossary/{glossaryGuid}/terms
-  PUT 
/v2/glossary/category/{categoryGuid}/partial
-  GET 
/v2/glossary/category/{categoryGuid}/related
-  GET 
/v2/glossary/category/{categoryGuid}/terms
-  PUT 
/v2/glossary/term/{termGuid}/partial
-  DELETE 
/v2/glossary/terms/{termGuid}/assignedEntities
-  GET 
/v2/glossary/terms/{termGuid}/assignedEntities
-  POST 
/v2/glossary/terms/{termGuid}/assignedEntities
-  GET 
/v2/glossary/terms/{termGuid}/related
-  GET 
/v2/glossary/{glossaryGuid}/categories/headers
-  GET 
/v2/glossary/{glossaryGuid}/terms/headers
-  
-  Back to 
Top
-
-  
-
-  
-
-  Home
-  Resources
-  GlossaryREST
-
-
-  GlossaryREST Resource
-
-  
-
-  
-GET /v2/glossary 
-
-Retrieve all glossaries registered with Atlas
-
-
-  Request Parameters
-  
-  
-name
-type
-description
-default
-  
-  
-  
-  
-limit
-query
-page size - by default 
there is no paging
--1
-  
-  
-offset
-query
-offset for pagination 
purpose
-0
-  
-  
-sort
-query
-Sort order, ASC (default) 
or DESC
-ASC
-  
-  
-
-
-
-  Response Codes
-  
-  
-code
-condition
-  
-  
-  
-  
-200
-List of existing glossaries 
fitting the search criteria or empty list if nothing matches
-  
-  
-
-
-
-  Response Body
-  
-  
-media type
-data type
-description
-  
-  
-  
-  
-application/json;charset=UTF-8
-(custom)
-
-List of glossary entities 
fitting the above criteria
-  
-  
-
-Example
-
-
-  
-
-  Request
-  
-GET /v2/glossary
-Accept: application/json;charset=UTF-8
-
-  
-
-
-  Response
-  
-HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-
-
-...
-
-  
-
-  
-
-  
-
-  
-POST 
/v2/glossary 
-
-Create a glossary
-
-
-  Request Body
-  
-  
-media type
-data type
-description
-  
-  
-  
-  
-application/json;charset=UTF-8
-(custom)
-
-Glossary definition, terms & 
categories can be anchored to a glossary
-using the anchor attribute when creating the Term/Category
-  
-  
-
-
-
-  Response Codes
-  
-  
-code
-condition
-  
-  
-  
-  
-200
-If glossary creation was 
successful
-  
-  
- 

[22/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/ui/lib/jsoneditor.min.js
--
diff --git a/1.1.0/api/v2/apidocs/ui/lib/jsoneditor.min.js 
b/1.1.0/api/v2/apidocs/ui/lib/jsoneditor.min.js
deleted file mode 100644
index 21db1ab..000
--- a/1.1.0/api/v2/apidocs/ui/lib/jsoneditor.min.js
+++ /dev/null
@@ -1,5 +0,0 @@
-!function(){var t;!function(){var 
e=!1,i=/xyz/.test(function(){window.postMessage("xyz")})?/\b_super\b/:/.*/;return
 t=function(){},t.extend=function(t){function 
s(){!e&&(this,arguments)}var 
r=this.prototype;e=!0;var n=new this;e=!1;for(var o in 
t)n[o]="function"==typeof t[o]&&"function"==typeof 
r[o]&(t[o])?function(t,e){return function(){var 
i=this._super;this._super=r[t];var s=e.apply(this,arguments);return 
this._super=i,s}}(o,t[o]):t[o];return 
s.prototype=n,s.prototype.constructor=s,s.extend=arguments.callee,s},t}(),function(){function
 t(t,e){e=e||{bubbles:!1,cancelable:!1,detail:void 0};var 
i=document.createEvent("CustomEvent");return 
i.initCustomEvent(t,e.bubbles,e.cancelable,e.detail),i}t.prototype=window.Event.prototype,window.CustomEvent=t}(),function(){for(var
 
t=0,e=["ms","moz","webkit","o"],i=0;i0& in 
t){for(i=0;i=o&&!a&&(a=
 
!0,e())})}},s.send()}}),o||e()},expandRefs:function(t){for(t=i({},t);t.$ref;){var
 e=t.$ref;delete 
t.$ref,this.refs[e]||(e=decodeURIComponent(e)),t=this.extendSchemas(t,this.refs[e])}return
 t},expandSchema:function(t){var e,r=this,n=i({},t);if("object"==typeof 
t.type&&(Array.isArray(t.type)?s(t.type,function(e,i){"object"==typeof 
i&&(t.type[e]=r.expandSchema(i))}):t.type=r.expandSchema(t.type)),"object"==typeof
 
t.disallow&&(Array.isArray(t.disallow)?s(t.disallow,function(e,i){"object"==typeof
 
i&&(t.disallow[e]=r.expandSchema(i))}):t.disallow=r.expandSchema(t.disallow)),t.anyOf&(t.anyOf,function(e,i){t.anyOf[e]=r.expandSchema(i)}),t.dependencies&(t.dependencies,function(e,i){"object"!=typeof
 
i||Array.isArray(i)||(t.dependencies[e]=r.expandSchema(i))}),t.not&&(t.not=this.expandSchema(t.not)),t.allOf){for(e=0;e=t.maximum?d.push({path:r,property:"maximum",message:this.translate("error_maximum_excl",[t.maximum])}):!t.exclusiveMaximum&>t.maximum&({path:r,property:"maximum",message:this.translate("error_maximum_incl",[t.maximum])})),t.hasOwnProperty("minimum")&&(t.exclusiveMinimum&<
 
=t.minimum?d.push({path:r,property:"minimum",message:this.translate("error_minimum_excl",[t.minimum])}):!t.exclusiveMinimum&t.maxLength&({path:r,property:"maxLength",message:this.translate("error_maxLength",[t.maxLength])}),t.minLength&&(e+"").lengtht.maxItems&({path:r,property:"maxItems",message:this.translate("error_maxItems",[t.maxItems])}),t.minItems&t.maxProperties&({path:r,property:"maxProperties",message:this.translate("error_maxProperties",[t.maxProperties])})}if(t.minProperties){o=0;for(a
 in 
e)e.hasOwnProperty(a)&++;o=0){e=this.theme.getBlockLinkHolder(),i=this.theme.getBlockLink(),i.setAttribute("target","_blank");var
 
a=document.createElement(r);a.setAttribute("controls","controls"),this.theme.createMediaLink(e,i,a),this.link_watchers.pus
 h(function(e){var 
s=n(e);i.setAttribute("href",s),i.textContent=t.rel||s,a.setAttribute("src",s)})}else
 
e=this.theme.getBlockLink(),e.setAttribute("target","_blank"),e.textContent=t.rel,this.link_watchers.push(function(i){var
 s=n(i);e.setAttribute("href",s),e.textContent=t.rel||s});return 
e},refreshWatchedFieldValues:function(){if(this.watched_values){var 
t={},e=!1,i=this;if(this.watched){var s,r;for(var n in 
this.watched)this.watched.hasOwnProperty(n)&&(r=i.jsoneditor.getEditor(this.watched[n]),s=r?r.getValue():null,i.watched_values[n]!==s&&(e=!0),t[n]=s)}return
 
t.self=this.getValue(),this.watched_values.self!==t.self&&(e=!0),this.watched_values=t,e}},getWatchedFieldValues:function(){return
 
this.watched_values},updateHeaderText:function(){if(this.header)if(this.header.children.length){for(var
 
t=0;t-1:!!this.jsoneditor.options.requir
 ed_by_default},getDisplayText:function(t){var 
e=[],i={};s(t,function(t,e){e.title&&(i[e.title]=i[e.title]||0,i[e.title]++),e.description&&(i[e.description]=i[e.description]||0,i[e.description]++),e.format&&(i[e.format]=i[e.format]||0,i[e.format]++),e.type&&(i[e.type]=i[e.type]||0,i[e.type]++)}),s(t,function(t,s){var
 r;r="string"==typeof 
s?s:s.title&[s.title]<=1?s.title:s.format&[s.format]<=1?s.format:s.type&[s.type]<=1?s.type:s.description&[s.description]<=1?s.descripton:s.title?s.title:s.format?s.format:s.type?s.type:s.description?s.description:JSON.stringify(s).length<50?JSON.stringify(s):"type",e.push(r)});var
 r={};return s(e,function(t,s){r[s]=r[s]||0,r[s]++,i[s]>1&&(e[t]=s+" 
"+r[s])}),e},getOption:function(t){try{throw"getOption is 
deprecated"}catch(e){window.console.error(e)}return 
this.options[t]},showValidationErrors:function(t){}}),n.defaults.editors["null"]=n.AbstractEditor.extend({getValue:function(){return
 

[02/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/ui/swagger.json
--
diff --git a/1.1.0/api/v2/ui/swagger.json b/1.1.0/api/v2/ui/swagger.json
index 4ce3caf..f43db49 100644
--- a/1.1.0/api/v2/ui/swagger.json
+++ b/1.1.0/api/v2/ui/swagger.json
@@ -6,7 +6,7 @@
   "url" : "http://www.apache.org/licenses/LICENSE-2.0.txt;,
   "name" : "The Apache Software License, Version 2.0"
 },
-"version" : "1.0.0",
+"version" : "1.1.0",
 "title" : "Atlas REST API"
   },
   "schemes" : [],
@@ -46,6 +46,250 @@
 }
   ],
   "definitions" : {
+"json_AtlasAttributeDef" : {
+  "type" : "object",
+  "title" : "AtlasAttributeDef",
+  "properties" : {
+"cardinality" : {
+"readOnly" : false,
+"$ref" : "#/definitions/json_Cardinality"
+},
+"constraints" : {
+"readOnly" : false,
+"description" : "",
+"type" : "array",
+"items" : {
+  "$ref" : "#/definitions/json_AtlasConstraintDef"
+}
+},
+"defaultValue" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"description" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"includeInNotification" : {
+"readOnly" : false,
+"description" : "",
+"type" : "boolean"
+},
+"isIndexable" : {
+"readOnly" : false,
+"description" : "",
+"type" : "boolean"
+},
+"isOptional" : {
+"readOnly" : false,
+"description" : "",
+"type" : "boolean"
+},
+"isUnique" : {
+"readOnly" : false,
+"description" : "",
+"type" : "boolean"
+},
+"name" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"options" : {
+"readOnly" : false,
+"description" : "",
+"type" : "object",
+"additionalProperties" : {
+  "type" : "string"
+}
+},
+"typeName" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"valuesMaxCount" : {
+"readOnly" : false,
+"description" : "",
+"type" : "integer",
+"format" : "int32"
+},
+"valuesMinCount" : {
+"readOnly" : false,
+"description" : "",
+"type" : "integer",
+"format" : "int32"
+}
+  },
+  "example" : {
+  "cardinality" : "SET",
+  "constraints" : [ {
+"params" : {
+  "property1" : { },
+  "property2" : { }
+},
+"type" : "..."
+  }, {
+"params" : {
+  "property1" : { },
+  "property2" : { }
+},
+"type" : "..."
+  } ],
+  "defaultValue" : "...",
+  "description" : "...",
+  "includeInNotification" : true,
+  "isIndexable" : true,
+  "isOptional" : true,
+  "isUnique" : true,
+  "name" : "...",
+  "options" : {
+"property1" : "...",
+"property2" : "..."
+  },
+  "typeName" : "...",
+  "valuesMaxCount" : 12345,
+  "valuesMinCount" : 12345
+},
+  "description" : "class that captures details of a struct-attribute."
+}
+,
+"json_AtlasBaseModelObject" : {
+  "type" : "object",
+  "title" : "AtlasBaseModelObject",
+  "properties" : {
+"guid" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+}
+  },
+  "example" : {
+  "guid" : "..."
+},
+  "description" : ""
+}
+,
+"json_AtlasBaseTypeDef" : {
+  "type" : "object",
+  "title" : "AtlasBaseTypeDef",
+  "properties" : {
+"category" : {
+"readOnly" : false,
+"$ref" : "#/definitions/json_TypeCategory"
+},
+"createTime" : {
+"readOnly" : false,
+"description" : "",
+"type" : "number"
+},
+"createdBy" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"dateFormatter" : {
+"readOnly" : false,
+"$ref" : "#/definitions/json_DateFormat"
+},
+"description" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"guid" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"name" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"options" : {
+"readOnly" : false,
+"description" : "",
+"type" : "object",
+"additionalProperties" : {
+  "type" : "string"
+}
+},
+"typeVersion" : {
+"readOnly" : false,
+"description" : "",
+"type" : "string"
+},
+"updateTime" : {
+"readOnly" : false,
+"description" : "",
+"type" : "number"
+},
+"updatedBy" : {
+"readOnly" : false,

[21/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/ui/lib/lodash.min.js
--
diff --git a/1.1.0/api/v2/apidocs/ui/lib/lodash.min.js 
b/1.1.0/api/v2/apidocs/ui/lib/lodash.min.js
deleted file mode 100644
index 3625da8..000
--- a/1.1.0/api/v2/apidocs/ui/lib/lodash.min.js
+++ /dev/null
@@ -1,2 +0,0 @@
-(function(){function n(n,t){if(n!==t){var 
r=null===n,e=n===x,u=n===n,o=null===t,i=t===x,f=t===t;if(n>t&&!o||!u||r&&!i&||e&)return
 1;if(n=n&&9<=n&&13>=n||32==n||
 
160==n||5760==n||6158==n||8192<=n&&(8202>=n||8232==n||8233==n||8239==n||8287==n||12288==n||65279==n)}function
 v(n,t){for(var 
r=-1,e=n.length,u=-1,o=[];++r=F&&?new 
Dn(t):null,a=t.length;c&&(i=Mn,f=!1,t=c);n:for(;++oi(t,c,0)&(c);return 
u}function lt(n,t){var r=!0;return zu(n,function(n,e,u){return 
r=!!t(n,e,u)}),r}function st(n,t,r,e){var u=e,o=u;return 
zu(n,function(n,i,f){i=+t(n,i,f),(r(i,u)||i===e&===o)&&(u=i,o=n)}),o}function 
pt(n,t){var r=[];return zu(n,function(n,e,u){t(n,e,u)&(n)}),r}function 
ht(n,t,r,e){var u;return r(n,function(n,r,o){return t(n,r,o)?(u=e?r:n,!1):void 
0}),u}function _t(n,t,r,e){e||(e=[]);for(var u=-1,o=n.length;++ut&&(t=-t>u?0:u+t),r=r===x||r>u?u:+r||0,0>r&&(r+=u),u=t>r?0:r-t>>>0,t>>>=0,r=De(u);++e=a)break 
n;o=e[o],u*="asc"===o||!0===o?1:-1;break n}u=t.b-r.b}return u})}function 
Ft(n,t){var r=0;return zu(n,function(n,e,u){r+=+t(n,e,u)||0}),r}function 
Lt(n,t){var e=-
 1,u=jr(),o=n.length,i=u===r,f=i&>=F,c=f&&?new Dn((void 
0)):null,a=[];c?(u=Mn,i=!1):(f=!1,c=t?[]:a);n:for(;++eu(c,s,0)&&((t||f)&(s),a.push(l))}return 
a}function Nt(n,t){for(var r=-1,e=t.length,u=De(e);++r>>1,i=n[o];(r?i<=t:iu?x:o,u=1);++e=F)return 
t.plant(e).value();for(var 
u=0,n=r?o[u].apply(this,n):e;++uarguments.length;return"function"==typeof 
e&===x&(r)?n(r,e,u,i):Ct(r,mr(e,o,4),u,i,t)}}function 
hr(n,t,r,e,u,o,i,f,c,a){function l(){for(var 
w=arguments.length,b=w,j=De(w);b--;)j[b]=arguments[b];if(e&&(j=qt(j,e,u)),o&&(j=Kt(j,o,i)),_||y){var
 b=l.placeholder,k=v(j,b),w=w-k.length;if(wt?0:t)):[]}function 
Vr(n,t,r){var e=n?n.length:0;return 
e?((r?$r(n,t,r):null==t)&&(t=1),t=e-(+t||0),St(n,0,0>t?0:t)):[]}function 
Zr(n){return n?n[0]:x}function Yr(n,t,e){var 
u=n?n.length:0;if(!u)return-1;if("number"==typeof e)e=0>
 e?ju(u+e,0):e;else if(e)return 
e=zt(n,t),er?ju(u+r,0):r||0,"string"==typeof 
n||!Wo(n)&(n)?r<=u&&-1t?0:+t||0,e);++r=n&&(t=x),r}}function 
le(n,t,r){function e(t,r){r&(r),c=p=h=x,t&&(_=xo(),a=
 n.apply(s,f),p||c||(f=s=x))}function u(){var 
n=t-(xo()-l);0>=n||n>t?e(h,c):p=_u(u,n)}function o(){e(g,p)}function 
i(){if(f=arguments,l=xo(),s=this,h=g&&(p||!y),!1===v)var 
r=y&&!p;else{c||y||(_=l);var 
e=v-(l-_),i=0>=e||e>v;i?(c&&(c=au(c)),_=l,a=n.apply(s,f)):c||(c=_u(o,e))}return 
i&?p=au(p):p||t===v||(p=_u(u,t)),r&&(i=!0,a=n.apply(s,f)),!i||p||c||(f=s=x),a}var
 f,c,a,l,s,p,h,_=0,v=!1,g=!0;if("function"!=typeof n)throw new 
Xe(T);if(t=0>t?0:+t||0,!0===r)var y=!0,g=!1;else 
de(r)&&(y=!!r.leading,v="maxWait"in r&(+r.maxWait||0,t),g="trailing"in 
r?!!r.trailing:g);return 
i.cancel=function(){p&(p),c&(c),_=0,c=p=h=x},i}function 
se(n,t){if("function"!=typeof n||t&&"function"!=typeof t)throw new Xe(T);var 
r=function(){var e=arguments,u=t?t.apply(this,e):e[0],o=r.cache;return 
o.has(u)?o.get(u):(e=n.apply(this,e),r.cache=o.set(u,e),e)};return r.cache=new 
se.Cache,r}function pe(n,t){if("function"!=typeof n)throw new Xe(T);return 
t=ju(t===x?n.length-1:+t||0,0),function(){for(var r=argumen
 ts,e=-1,u=ju(r.length-t,0),o=De(u);++et}function _e(n){return 
h(n)&(n)&(n,"callee")&&!pu.call(n,"callee")}function 
ve(n,t,r,e){return e=(r="function"==typeof 
r?Dt(r,e,3):x)?r(n,t):x,e===x?xt(n,t,r):!!e}function ge(n){return 
h(n)&&"string"==typeof n.message&(n)==q}function ye(n){return 
de(n)&(n)==K}function de(n){var t=typeof 
n;return!!n&&("object"==t||"function"==t)}function we(n){return 
null!=n&&(ye(n)?fu.test(ru.call(n)):h(n)&&(Gn(n)?fu:In).test(n))}function 
xe(n){return"number"==typeof n||h(n)&(n)==V}function be(n){var 
t;if(!h(n)||ou.call(n)!=Z||Gn(n)||_e(n)||!(eu.call(n,"constructor")||(t=n.constructor,"function"!=typeof
 t||t instanceof t)))return!1;var r;return 
Nn.support.ownLast?(vt(n,function(n,t,e){return r=eu.call(e,t),!1}
 ),!1!==r):(vt(n,function(n,t){r=t}),r===x||eu.call(n,r))}function me(n){return 
de(n)&(n)==Y}function Ae(n){return"string"==typeof 
n||h(n)&(n)==G}function je(n){return 
h(n)&(n.length)&&!!Fn[ou.call(n)]}function ke(n,t){return nt||!n||!mu(t))return r;do 
t%2&&(r+=n),t=xu(t/2),n+=n;while(t);return r}function We(n,t,r){var 
e=n;return(n=u(n))?(r?$r(e,t,r):null==t)?n.slice(g(n),y(n)+1):(t+="",n.slice(o(n,t),i(n,t)+1)):n}function
 Fe(n,t,r){return r&&$r(n,t,r)&&(t=x),n=u(n),n.match(t||Un)||[]}function 
Le(n,t,r){return r&&$r(n,t,r)&&(t=x),h(n)?Te(n):it(n,t)}function Ne(n){return 
n}function Te(n){return At(ft(n,!0))}function Pe(n,t,r){if(null==r){var 

[33/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/index.html
--
diff --git a/1.1.0/api/v2/apidocs/index.html b/1.1.0/api/v2/apidocs/index.html
deleted file mode 100644
index f1e1665..000
--- a/1.1.0/api/v2/apidocs/index.html
+++ /dev/null
@@ -1,410 +0,0 @@
-
-
-
-  
-  
-  
-  
-
-  Atlas REST API
-
-  
-  
-
-  
-  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
-
-  
-  
-
-  
-  
-
-
-
-
-  
-
-  
-
-  Toggle navigation
-  
-  
-  
-
-Atlas REST API
-  
-  
-
-  Resources
-  Data Types
-
-  
-
-  
-
-  
-
-  
-
-  Resources
-  JSON
-  XML
-  
-  Back to 
Top
-
-  
-
-  
-
-  Home
-
-
-  
-Atlas exposes a variety of REST endpoints to work with types, entities, 
lineage and data discovery.
-  
-
-  Resources
-
-  
-There is a WADL document available that 
describes the resources API.
-  
-
-  
-You may also enjoy the interactive interface 
provided for this API by http://swagger.io;>Swagger.
-  
-  
-Try it out!
-  
-
-  
-
-
-  name
-  path
-  methods
-  description
-
-
-
-
-DiscoveryREST
-
-/v2/search/attribute
-  /v2/search/basic
-  /v2/search/dsl
-  /v2/search/fulltext
-  /v2/search/relationship
-  /v2/search/saved
-  /v2/search/saved/{guid}
-  /v2/search/saved/{name}
-  /v2/search/saved/execute/{name}
-  /v2/search/saved/execute/guid/{guid}
-
-GET 
-  GET POST 
-  GET 
-  GET 
-  GET 
-  GET POST PUT 
-  DELETE 
-  GET 
-  GET 
-  GET 
-
-REST interface for data 
discovery using dsl or full text search
-
-
-
-EntityREST
-
-/v2/entity
-  /v2/entity/bulk
-  /v2/entity/bulk/classification
-  /v2/entity/guid/{guid}
-  /v2/entity/{guid}/audit
-  /v2/entity/guid/{guid}/classifications
-  /v2/entity/guid/{guid}/header
-  /v2/entity/uniqueAttribute/type/{typeName}
-  /v2/entity/guid/{guid}/classification/{classificationName}
-  /v2/entity/uniqueAttribute/type/{typeName}/classifications
-  /v2/entity/uniqueAttribute/type/{typeName}/classification/{classificationName}
-
-POST 
-  DELETE GET POST 
-  POST 
-  DELETE GET PUT 
-  GET 
-  GET POST PUT 
-  GET 
-  DELETE GET PUT 
-  DELETE GET 
-  POST PUT 
-  DELETE 
-
-REST for a single entity
-
-
-
-GlossaryREST
-
-/v2/glossary
-  /v2/glossary/categories
-  /v2/glossary/category
-  /v2/glossary/term
-  /v2/glossary/terms
-  /v2/glossary/{glossaryGuid}
-  /v2/glossary/category/{categoryGuid}
-  /v2/glossary/term/{termGuid}
-  /v2/glossary/{glossaryGuid}/categories
-  /v2/glossary/{glossaryGuid}/detailed
-  /v2/glossary/{glossaryGuid}/partial
-  /v2/glossary/{glossaryGuid}/terms
-  /v2/glossary/category/{categoryGuid}/partial
-  /v2/glossary/category/{categoryGuid}/related
-  /v2/glossary/category/{categoryGuid}/terms
-  /v2/glossary/term/{termGuid}/partial
-  /v2/glossary/terms/{termGuid}/assignedEntities
-  /v2/glossary/terms/{termGuid}/related
-  /v2/glossary/{glossaryGuid}/categories/headers
-  /v2/glossary/{glossaryGuid}/terms/headers
-
-GET POST 
-  POST 
-  POST 
-  POST 
-  POST 
-  DELETE GET PUT 
-  DELETE GET PUT 
-  DELETE GET PUT 
-  GET 
-  GET 
-  PUT 
-  GET 
-  PUT 
-  GET 
-  GET 
-  PUT 
-  DELETE GET POST 
-  GET 
-  GET 
-  GET 
-
-
-
-
-
-LineageREST
-
-/v2/lineage/{guid}
-
-GET 
-
-REST interface for an entity's 
lineage information
-
-
-
-RelationshipREST
-
-/v2/relationship
-  /v2/relationship/guid/{guid}
-
-POST PUT 
-  DELETE GET 
-
-REST interface for entity 
relationships.
-
-
-
-TypesREST
-
-/v2/types/typedefs
-  /v2/types/typedefs/headers
-  /v2/types/classificationdef/guid/{guid}
-  /v2/types/classificationdef/name/{name}
-  /v2/types/entitydef/guid/{guid}
-  /v2/types/entitydef/name/{name}
-  /v2/types/enumdef/guid/{guid}
-  /v2/types/enumdef/name/{name}
-  /v2/types/relationshipdef/guid/{guid}
-  /v2/types/relationshipdef/name/{name}
-  /v2/types/structdef/guid/{guid}
-  /v2/types/structdef/name/{name}
-  /v2/types/typedef/guid/{guid}
-  /v2/types/typedef/name/{name}
-
-DELETE GET POST PUT 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-
-REST interface for CRUD 
operations on type definitions
-
-
-
-  
-
-  Data Types
-
-  JSON
-
-  
-
-  
-type
-description
-  
-
-
-
-AtlasClassification
-
-An instance of a 
classification; it doesn't have an identity, this object exists only when 
associated with an entity.
-
-
-
-AtlasStruct
-
-Captures details of struct 
contents. 

[35/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/resource_TaxonomyService.html
--
diff --git a/1.1.0/api/resource_TaxonomyService.html 
b/1.1.0/api/resource_TaxonomyService.html
deleted file mode 100644
index 78df42f..000
--- a/1.1.0/api/resource_TaxonomyService.html
+++ /dev/null
@@ -1,758 +0,0 @@
-
-
-
-
-
-  
-
-  
-
-  
-  
-
-  TaxonomyService
-
-  
-  
-
-  
-  
-  
-
-  
-  
-
-
-
-
-
-  
-
-  
-TaxonomyService
-
-  
-REST
-Data Model
-Files and 
Libraries
-  
-
-
-  
-
-  Home 
-
-
-  REST 
-  
-Data Model
-REST
-Files and Libraries
-  
-
-
-  TaxonomyService
-  
-AdminResource
-DataSetLineageResource
-EntityResource
-EntityService
-LineageResource
-MetadataDiscoveryResource
-TaxonomyService
-TypesResource
-  
-
-  
-
-  
-
-
-  TaxonomyService
-
-  Service which handles API requests for taxonomy and term 
resources.
-  The following resources are applicable:
-  
-
-/v1/taxonomies
-
-
-/v1/taxonomies/{taxonomyName}
-
-
-/v1/taxonomies/{taxonomyName}/terms
-
-
-/v1/taxonomies/{taxonomyName}/terms/{rootTerm}/{remainder}
-
-
-/v1/taxonomies/{taxonomyName}/terms/{termName}
-
-
-/v1/taxonomies/{taxonomyName}/terms/{termName}/{remainder}
-
-  
-
-  /v1/taxonomies
-  
-  GET
-  Response Body
-  
-
-  element:
-  (custom)
-
-
-  media types:
-  application/json
-
-  
-  (no documentation provided)
-
-  /v1/taxonomies/{taxonomyName}
-  
-The following operations are supported on this resource:
-  
-  
-GET
-POST
-PUT
-DELETE
-  
-  
-  GET
-  Parameters
-  
-
-  name
-  description
-  type
-  default
-
-
-  taxonomyName
-  
-(no documentation provided)
-  
-  path
-  
-
-  
-  Response Body
-  
-
-  element:
-  (custom)
-
-
-  media types:
-  application/json
-
-  
-  (no documentation provided)
-  
-  POST
-  Parameters
-  
-
-  name
-  description
-  type
-  default
-
-
-  taxonomyName
-  
-(no documentation provided)
-  
-  path
-  
-
-  
-  Request Body
-  
-
-  element:
-body
-
-
-  media types:
-  */*application/xml
-
-  
-  (no documentation provided)
-  Response Body
-  
-
-  element:
-  (custom)
-
-
-  media types:
-  application/json
-
-  
-  (no documentation provided)
-  
-  PUT
-  Parameters
-  
-
-  name
-  description
-  type
-  default
-
-
-  taxonomyName
-  
-(no documentation provided)
-  
-  path
-  
-
-  
-  Request Body
-  
-
-  element:
-body
-
-
-  media types:
-  */*application/xml
-
-  
-  (no documentation provided)
-  Response Body
-  
-
-  element:
-  (custom)
-
-
-  media types:
-  application/json
-
-  
-  (no documentation provided)
-  
-  DELETE
-  Parameters
-  
-
-  name
-  description
-  type
-  default
-
-
-  taxonomyName
-  
-(no documentation provided)
-  
-  path
-  
-
-  
-  Response Body
-  
-
-  element:
-  (custom)
-
-
-  media types:
-  application/json
-
-  
-  (no documentation provided)
-
-  /v1/taxonomies/{taxonomyName}/terms
-  
-  GET
-  Parameters
-  
-
-  name
-  description
-  type
-  default
-
-
-  taxonomyName
-  
-(no documentation provided)
-  
- 

[13/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/json_AtlasEntityDef.html
--
diff --git a/1.1.0/api/v2/json_AtlasEntityDef.html 
b/1.1.0/api/v2/json_AtlasEntityDef.html
index 98ddd09..59ba2eb 100644
--- a/1.1.0/api/v2/json_AtlasEntityDef.html
+++ b/1.1.0/api/v2/json_AtlasEntityDef.html
@@ -15,7 +15,7 @@
   https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
 
   
-  
+  
 
   
   
-  
+  
 
   
   
-  
+  
 
   
   
-  
+  
 
   
   
-  
+  
 
   
   
-  
+  
 
   
   
-  
+  
 
   
   
+
+  Atlas REST API: AtlasGlossary
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: 
AtlasGlossary
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  AtlasGlossary
+
+
+  AtlasGlossary Data Type
+
+  
+
+  
+Subtypes
+AtlasGlossaryExtInfo
+  
+
+  
+Properties
+
+
+  name
+  data type
+  description
+
+
+
+
+categories
+
+array of AtlasRelatedCategoryHeader
+
+
+
+
+
+
+language
+
+string
+
+
+
+
+
+
+terms
+
+array of AtlasRelatedTermHeader
+
+
+
+
+
+
+usage
+
+string
+
+
+
+
+
+
+
+  Properties inherited from AtlasGlossaryBaseObject
+
+
+
+  classifications
+  array of AtlasClassification
+
+  
+
+
+  longDescription
+  string
+
+  
+
+
+  name
+  string
+
+  
+
+
+  qualifiedName
+  string
+
+  
+
+
+  shortDescription
+  string
+
+  
+
+
+
+  Properties inherited from AtlasBaseModelObject
+
+
+
+  guid
+  string
+
+  
+
+
+  
+
+  Example
+  
+  {
+  categories : [ {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  }, {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  } ],
+  language : ...,
+  terms : [ {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : OTHER,
+steward : ...,
+termGuid : ...
+  }, {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : DRAFT,
+steward : ...,
+termGuid : ...
+  } ],
+  usage : ...,
+  classifications : [ {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+}, {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+} ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+}, {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+} ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  longDescription : ...,
+  name : ...,
+  qualifiedName : ...,
+  shortDescription : ...,
+  guid : ...
+}
+
+
+  
+Generated by http://enunciate.webcohesion.com;>Enunciate.
+  
+
+
+  
+
+  
+
+
+  
+  https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js";>
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js";>
+
+  
+  https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"; 
type="text/javascript">
+  
+$(function() {
+  $(".clickable-row").click(function() {
+window.document.location = $(this).data("href");
+  });
+
+  $('[data-toggle="tooltip"]').tooltip()
+});
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/json_AtlasGlossaryBaseObject.html

[40/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/xml_ns0_PList.html
--
diff --git a/1.0.0/api/v2/xml_ns0_PList.html b/1.0.0/api/v2/xml_ns0_PList.html
index 4d0f074..e622c1d 100644
--- a/1.0.0/api/v2/xml_ns0_PList.html
+++ b/1.0.0/api/v2/xml_ns0_PList.html
@@ -86,7 +86,7 @@
 
 
 
-list
+list
 
 list of anyType
 
@@ -104,7 +104,7 @@
 
 
 
-pageSize
+pageSize
 
 int
 
@@ -122,7 +122,7 @@
 
 
 
-sortBy
+sortBy
 
 string
 
@@ -140,7 +140,7 @@
 
 
 
-sortType
+sortType
 
 sortType
 
@@ -158,7 +158,7 @@
 
 
 
-startIndex
+startIndex
 
 long
 
@@ -176,7 +176,7 @@
 
 
 
-totalCount
+totalCount
 
 long
 

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/xml_ns0_atlasClassification.html
--
diff --git a/1.0.0/api/v2/xml_ns0_atlasClassification.html 
b/1.0.0/api/v2/xml_ns0_atlasClassification.html
index 85b8887..819ad19 100644
--- a/1.0.0/api/v2/xml_ns0_atlasClassification.html
+++ b/1.0.0/api/v2/xml_ns0_atlasClassification.html
@@ -86,7 +86,7 @@
 
 
 
-entityGuid
+entityGuid
 
 string
 
@@ -104,7 +104,43 @@
 
 
 
-propagate
+entityStatus
+
+status
+
+
+element
+
+
+
+
+
+0/1
+
+
+
+
+
+
+propagate
+
+boolean
+
+
+element
+
+
+
+
+
+0/1
+
+
+
+
+
+
+removePropagationsOnEntityDelete
 
 boolean
 
@@ -122,7 +158,7 @@
 
 
 
-validityPeriods
+validityPeriods
 
 list of timeBoundary
 
@@ -181,6 +217,8 @@
 endTime.../endTime
 timeZone.../timeZone
   /validityPeriods
+  entityStatus.../entityStatus
+  
removePropagationsOnEntityDelete.../removePropagationsOnEntityDelete
   typeName.../typeName
   attributes.../attributes
 /atlasClassification

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/xml_ns0_atlasStruct.html
--
diff --git a/1.0.0/api/v2/xml_ns0_atlasStruct.html 
b/1.0.0/api/v2/xml_ns0_atlasStruct.html
index 6c8dd3f..3a1fdc9 100644
--- a/1.0.0/api/v2/xml_ns0_atlasStruct.html
+++ b/1.0.0/api/v2/xml_ns0_atlasStruct.html
@@ -88,7 +88,7 @@
 
 
 
-attributes
+attributes
 
 (custom)
 
@@ -106,7 +106,7 @@
 
 
 
-typeName
+typeName
 
 string
 

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/xml_ns0_searchFilter.html
--
diff --git a/1.0.0/api/v2/xml_ns0_searchFilter.html 
b/1.0.0/api/v2/xml_ns0_searchFilter.html
index a07a303..1135e80 100644
--- a/1.0.0/api/v2/xml_ns0_searchFilter.html
+++ b/1.0.0/api/v2/xml_ns0_searchFilter.html
@@ -86,7 +86,7 @@
 
 
 
-getCount
+getCount
 
 boolean
 
@@ -104,7 +104,7 @@
 
 
 
-maxRows
+maxRows
 
 long
 
@@ -122,7 +122,7 @@
 
 
 
-params
+params
 
 (custom)
 
@@ -140,7 +140,7 @@
 
 
 
-sortBy
+sortBy
 
 string
 
@@ -158,7 +158,7 @@
 
 
 
-sortType
+sortType
 
 sortType
 
@@ -176,7 +176,7 @@
 
 
 
-startIndex
+startIndex
 
 long
 

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/xml_ns0_status.html
--
diff --git a/1.0.0/api/v2/xml_ns0_status.html b/1.0.0/api/v2/xml_ns0_status.html
new file mode 100644
index 000..d319f2c
--- /dev/null
+++ b/1.0.0/api/v2/xml_ns0_status.html
@@ -0,0 +1,129 @@
+
+
+
+  
+  
+  
+  
+
+  Atlas REST API: status
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: status
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  ACTIVE
+  DELETED
+  
+  Back to 
Top
+
+  
+
+  
+
+  

[49/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/json_AtlasEntityDef.html
--
diff --git a/1.0.0/api/v2/json_AtlasEntityDef.html 
b/1.0.0/api/v2/json_AtlasEntityDef.html
new file mode 100644
index 000..59ba2eb
--- /dev/null
+++ b/1.0.0/api/v2/json_AtlasEntityDef.html
@@ -0,0 +1,334 @@
+
+
+
+  
+  
+  
+  
+
+  Atlas REST API: AtlasEntityDef
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: 
AtlasEntityDef
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  AtlasEntityDef
+
+
+  AtlasEntityDef Data Type
+
+  class that captures details of a entity-type.
+
+  
+  
+
+  
+Properties
+
+
+  name
+  data type
+  description
+
+
+
+
+subTypes
+
+array of string
+
+
+
+
+
+
+superTypes
+
+array of string
+
+
+
+
+
+
+
+  Properties inherited from AtlasStructDef
+
+
+
+  attributeDefs
+  array of AtlasAttributeDef
+
+  
+
+
+
+  Properties inherited from AtlasBaseTypeDef
+
+
+
+  category
+  TypeCategory
+
+  
+
+
+  createTime
+  number
+
+  
+
+
+  createdBy
+  string
+
+  
+
+
+  dateFormatter
+  DateFormat
+
+  
+
+
+  description
+  string
+
+  
+
+
+  guid
+  string
+
+  
+
+
+  name
+  string
+
+  
+
+
+  options
+  map of string
+
+  
+
+
+  typeVersion
+  string
+
+  
+
+
+  updateTime
+  number
+
+  
+
+
+  updatedBy
+  string
+
+  
+
+
+  version
+  number
+
+  
+
+
+  
+
+  Example
+  
+  {
+  subTypes : [ ..., ... ],
+  superTypes : [ ..., ... ],
+  attributeDefs : [ {
+cardinality : SET,
+constraints : [ {
+  params : {
+property1 : { },
+property2 : { }
+  },
+  type : ...
+}, {
+  params : {
+property1 : { },
+property2 : { }
+  },
+  type : ...
+} ],
+defaultValue : ...,
+description : ...,
+includeInNotification : true,
+isIndexable : true,
+isOptional : true,
+isUnique : true,
+name : ...,
+options : {
+  property1 : ...,
+  property2 : ...
+},
+typeName : ...,
+valuesMaxCount : 12345,
+valuesMinCount : 12345
+  }, {
+cardinality : SINGLE,
+constraints : [ {
+  params : {
+property1 : { },
+property2 : { }
+  },
+  type : ...
+}, {
+  params : {
+property1 : { },
+property2 : { }
+  },
+  type : ...
+} ],
+defaultValue : ...,
+description : ...,
+includeInNotification : true,
+isIndexable : true,
+isOptional : true,
+isUnique : true,
+name : ...,
+options : {
+  property1 : ...,
+  property2 : ...
+},
+typeName : ...,
+valuesMaxCount : 12345,
+valuesMinCount : 12345
+  } ],
+  category : RELATIONSHIP,
+  createTime : 12345,
+  createdBy : ...,
+  dateFormatter : {
+availableLocales : [ ..., ... ],
+calendar : 12345,
+dateInstance : { },
+dateTimeInstance : { },
+instance : { },
+lenient : true,
+numberFormat : {
+  availableLocales : [ ..., ... ],
+  currency : ...,
+  currencyInstance : { },
+  groupingUsed : true,
+  instance : { },
+  integerInstance : { },
+  maximumFractionDigits : 12345,
+  maximumIntegerDigits : 12345,
+  minimumFractionDigits : 12345,
+  minimumIntegerDigits : 12345,
+  numberInstance : { },
+  parseIntegerOnly : true,
+  percentInstance : { },
+  roundingMode : HALF_DOWN
+},
+timeInstance : { },
+timeZone : {
+  DSTSavings : 12345,
+  ID : ...,
+  availableIDs : [ ..., ... ],
+  default : { },
+  displayName : ...,
+  rawOffset : 12345
+}
+  },
+  description : ...,
+  guid : ...,
+  name : ...,
+  options : {
+property1 : ...,
+property2 : ...
+  },
+  typeVersion : ...,
+  updateTime : 12345,
+  

[28/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/resources.html
--
diff --git a/1.1.0/api/v2/apidocs/resources.html 
b/1.1.0/api/v2/apidocs/resources.html
deleted file mode 100644
index e0cbaa5..000
--- a/1.1.0/api/v2/apidocs/resources.html
+++ /dev/null
@@ -1,282 +0,0 @@
-
-
-
-  
-  
-  
-  
-
-  Atlas REST API: Resources
-
-  
-  
-
-  
-  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
-
-  
-  
-
-  
-  
-
-
-
-
-  
-
-  
-
-  Toggle navigation
-  
-  
-  
-
-Atlas REST API: Resources
-  
-  
-
-  Resources
-  Data Types
-
-  
-
-  
-
-  
-
-  
-
-  Back to 
Top
-
-  
-
-  
-
-  Home
-  Resources
-
-
-  Resources
-
-  
-There is a WADL document available that 
describes the resources API.
-  
-  
-You may also enjoy the interactive interface 
provided for this API by http://swagger.io;>Swagger.
-  
-  
-Try it out!
-  
-  
-
-
-  name
-  path
-  methods
-  description
-
-
-
-
-DiscoveryREST
-
-/v2/search/attribute
-  /v2/search/basic
-  /v2/search/dsl
-  /v2/search/fulltext
-  /v2/search/relationship
-  /v2/search/saved
-  /v2/search/saved/{guid}
-  /v2/search/saved/{name}
-  /v2/search/saved/execute/{name}
-  /v2/search/saved/execute/guid/{guid}
-
-GET 
-  GET POST 
-  GET 
-  GET 
-  GET 
-  GET POST PUT 
-  DELETE 
-  GET 
-  GET 
-  GET 
-
-REST interface for data 
discovery using dsl or full text search
-
-
-
-EntityREST
-
-/v2/entity
-  /v2/entity/bulk
-  /v2/entity/bulk/classification
-  /v2/entity/guid/{guid}
-  /v2/entity/{guid}/audit
-  /v2/entity/guid/{guid}/classifications
-  /v2/entity/guid/{guid}/header
-  /v2/entity/uniqueAttribute/type/{typeName}
-  /v2/entity/guid/{guid}/classification/{classificationName}
-  /v2/entity/uniqueAttribute/type/{typeName}/classifications
-  /v2/entity/uniqueAttribute/type/{typeName}/classification/{classificationName}
-
-POST 
-  DELETE GET POST 
-  POST 
-  DELETE GET PUT 
-  GET 
-  GET POST PUT 
-  GET 
-  DELETE GET PUT 
-  DELETE GET 
-  POST PUT 
-  DELETE 
-
-REST for a single entity
-
-
-
-GlossaryREST
-
-/v2/glossary
-  /v2/glossary/categories
-  /v2/glossary/category
-  /v2/glossary/term
-  /v2/glossary/terms
-  /v2/glossary/{glossaryGuid}
-  /v2/glossary/category/{categoryGuid}
-  /v2/glossary/term/{termGuid}
-  /v2/glossary/{glossaryGuid}/categories
-  /v2/glossary/{glossaryGuid}/detailed
-  /v2/glossary/{glossaryGuid}/partial
-  /v2/glossary/{glossaryGuid}/terms
-  /v2/glossary/category/{categoryGuid}/partial
-  /v2/glossary/category/{categoryGuid}/related
-  /v2/glossary/category/{categoryGuid}/terms
-  /v2/glossary/term/{termGuid}/partial
-  /v2/glossary/terms/{termGuid}/assignedEntities
-  /v2/glossary/terms/{termGuid}/related
-  /v2/glossary/{glossaryGuid}/categories/headers
-  /v2/glossary/{glossaryGuid}/terms/headers
-
-GET POST 
-  POST 
-  POST 
-  POST 
-  POST 
-  DELETE GET PUT 
-  DELETE GET PUT 
-  DELETE GET PUT 
-  GET 
-  GET 
-  PUT 
-  GET 
-  PUT 
-  GET 
-  GET 
-  PUT 
-  DELETE GET POST 
-  GET 
-  GET 
-  GET 
-
-
-
-
-
-LineageREST
-
-/v2/lineage/{guid}
-
-GET 
-
-REST interface for an entity's 
lineage information
-
-
-
-RelationshipREST
-
-/v2/relationship
-  /v2/relationship/guid/{guid}
-
-POST PUT 
-  DELETE GET 
-
-REST interface for entity 
relationships.
-
-
-
-TypesREST
-
-/v2/types/typedefs
-  /v2/types/typedefs/headers
-  /v2/types/classificationdef/guid/{guid}
-  /v2/types/classificationdef/name/{name}
-  /v2/types/entitydef/guid/{guid}
-  /v2/types/entitydef/name/{name}
-  /v2/types/enumdef/guid/{guid}
-  /v2/types/enumdef/name/{name}
-  /v2/types/relationshipdef/guid/{guid}
-  /v2/types/relationshipdef/name/{name}
-  /v2/types/structdef/guid/{guid}
-  /v2/types/structdef/name/{name}
-  /v2/types/typedef/guid/{guid}
-  /v2/types/typedef/name/{name}
-
-DELETE GET POST PUT 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-  GET 
-
-REST interface for CRUD 
operations on type definitions
-
-
-
-  
-
-
-  
-Generated by http://enunciate.webcohesion.com;>Enunciate.
-  
-
-
-  
-
-  
-
-
-  
-  https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js";>
-
-  
-  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js";>
-
-  
-  https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"; 
type="text/javascript">
-  
-$(function() {
-  

[17/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/ui/swagger-ui.min.js
--
diff --git a/1.1.0/api/v2/apidocs/ui/swagger-ui.min.js 
b/1.1.0/api/v2/apidocs/ui/swagger-ui.min.js
deleted file mode 100644
index 678d9d8..000
--- a/1.1.0/api/v2/apidocs/ui/swagger-ui.min.js
+++ /dev/null
@@ -1,15 +0,0 @@
-(function(){function 
e(){e.history=e.history||[],e.history.push(arguments),this.console&(Array.prototype.slice.call(arguments)[0])}!function(){var
 
e=Handlebars.template,t=Handlebars.templates=Handlebars.templates||{};t.apikey_auth=e({1:function(e,t,n,r,i){var
 a;return''+(null!=(a=(n.sanitize||t&||n.helperMissing).call(null!=t?t:{},null!=t?t.value:t,{name:"sanitize",hash:{},data:i}))?a:"")+"\n"},3:function(e,t,n,r,i){return'
\n'},compiler:[7,">= 
4.0.0"],main:function(e,t,n,r,i){var 
a,o=null!=t?t:{},s=n.helperMissing;return'\n   
 Api key authorization\n'+(null!=(a=(n.sanitize||t&||s).call(o,null!=t?t.description:t,{name:"sanitize",hash:{},data:i}))?a:"")+'\n
\n\nname:\n   
 '+(null!=(a=(n.escape||t&||s).call(o,null!=t?t.name:t,{name:"escape",hash:{},data:i}))?a:"")+'\n
\n\nin:\n'+(null!=(a=(n.escape||t&||s).call(o,null!=t?t["in"]:t,{name:"escape",hash:{},data:i}))?a:"")+'\n
\n\nvalue:\n'+(null!=(a=n["if"].call(o,null!=t?t.isLogout:t,{name:"if",hash:{},fn:e.program(1,i,0),inverse:e.program(3,i,0),data:i}))?a:"")+"
\n
\n\n"},useData:!0}),t.auth_button=e({compiler:[7,">= 
4.0.0"],main:function(e,t,n,r,i){return"Authorize\n"},useData:!0}),t.auth_button_operation=e({1:function(e,t,n,r,i){return"
authorize
 __btn_operation_login\n"},3:function(e,t,n,r,i){return"
authorize__btn_operation_logout\n"},5:function(e,t,n,r,i){var a;return'
\n'+(null!=(a=n.each.call(null!=t?t:{},null!=t?t.scopes:t,{name:"each",hash:{},fn:e.program(6,i,0),inverse:e.noop,data:i}))?a:"")+"
\n"},6:function(e,t,n,r,i){var 
a,o=null!=t?t:{},s=n.helperMissing;return''+(null!=(a=(n.escape||t&||s).call(o,null!=t?t.scope:t,{name:"escape",hash:{},data:i}))?a:"")+"\n"},compiler:[7,">=
 4.0.0"],main:function(e,t,n,r,i){var a,o=null!=t?t:{};return'\n'+(null!=(a=n["if"].call(o,null!=t?t.scopes:t,{name:"if",hash:{},fn:
 
e.program(5,i,0),inverse:e.noop,data:i}))?a:"")+"\n"},useData:!0}),t.auth_view=e({1:function(e,t,n,r,i){return'
Authorize\n'},3:function(e,t,n,r,i){return'  
  Logout\n'},compiler:[7,">= 
4.0.0"],main:function(e,t,n,r,i){var a,o=null!=t?t:{};return'\n\n\n\n'+(null!=(a=n.unless.call(o,null!=t?t.isLogout:t,{name:"unless",hash:{},fn:e.program(1,i,0),inverse:e.noop,data:i}))?a:"")+(null!=(a=n["if"].call(o,null!=t?t.isAuthorized:t,{name:"if",hash:{},fn:e.program(3,i,0),inverse:e.noop,data:i}))?a:"")+"

\n\n\n"},useData:!0}),t.basic_auth=e({1:function(e,t,n,r,i){return" 
- authorized"},3:function(e,t,n,r,i){var a;return''+(null!=(a=(n.escap
 
e||t&||n.helperMissing).call(null!=t?t:{},null!=t?t.username:t,{name:"escape",hash:{},data:i}))?a:"")+"\n"},5:function(e,t,n,r,i){return'
\n'},7:function(e,t,n,r,i){return'\npassword:\n\n\n'},compiler:[7,">= 
4.0.0"],main:function(e,t,n,r,i){var a,o=null!=t?t:{};return"\nBasic 
authentication"+(null!=(a=n["if"].call(o,null!=t?t.isLogout:t,{name:"if",hash:{},fn:e.program(1,i,0),inverse:e.noop,data:i}))?a:"")+'\n
\n'+(null!=(a=(n.sanitize||t&
 
itize||n.helperMissing).call(o,null!=t?t.description:t,{name:"sanitize",hash:{},data:i}))?a:"")+'\n
\nusername:\n'+(null!=(a=n["if"].call(o,null!=t?t.isLogout:t,{name:"if",hash:{},fn:e.program(3,i,0),inverse:e.program(5,i,0),data:i}))?a:"")+"

\n"+(null!=(a=n.unless.call(o,null!=t?t.isLogout:t,{name:"unless",hash:{},fn:e.program(7,i,0),inverse:e.noop,data:i}))?a:"")+"

\n\n"},useData:!0}),t.content_type=e({1:function(e,t,n,r,i){var 
a;return 
null!=(a=n.each.call(null!=t?t:{},null!=t?t.produces:t,{name:"each",hash:{},fn:e.program(2,i,0),inverse:e.noop,data:i}))?a:""},2:function(e,t,n,r,i){var
 a,o=null!=t?t:{},s=n.helperMissing;return'\t'+(null!=(a=(n.sanitize||t&||s).call(o,t,{name:"sanitize",hash:{},data:i}))?a:"")+"\n"},4:f
 unction(e,t,n,r,i){return'  application/json\n'},compiler:[7,">= 
4.0.0"],main:function(e,t,n,r,i){var 
a,o=null!=t?t:{},s=n.helperMissing;return'Response
 Content Type\n\n'+(null!=(a=n["if"].call(o,null!=t?t.produces:t,{name:"if",hash:{},fn:e.program(1,i,0),inverse:e.program(4,i,0),data:i}))?a:"")+"\n"},useData:!0}),t.main=e({1:function(e,t,n,r,i){var
 a,o=null!=t?t:{},s=n.helperMissing;return'  '+(null!=(a=(n.sanitize||t&||s).call(o,null!=(a=null!=t?t.info:t)?a.title:a,{name:"sanitize",hash:{},data:i}))?a:"")+'\n
  '+(null!=(a=(n.sanitize||t&||s).call(o,n
 

[03/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/ui/lib/underscore-min.map
--
diff --git a/1.1.0/api/v2/ui/lib/underscore-min.map 
b/1.1.0/api/v2/ui/lib/underscore-min.map
deleted file mode 100644
index b31e435..000
--- a/1.1.0/api/v2/ui/lib/underscore-min.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"underscore-min.js","sources":["underscore.js"],"names":["createReduce","dir","iterator","obj","iteratee","memo","keys","index","length","currentKey","context","optimizeCb","isArrayLike","_","arguments","createIndexFinder","array","predicate","cb","collectNonEnumProps","nonEnumIdx","nonEnumerableProps","constructor","proto","isFunction","prototype","ObjProto","prop","has","contains","push","root","this","previousUnderscore","ArrayProto","Array","Object","FuncProto","Function","slice","toString","hasOwnProperty","nativeIsArray","isArray","nativeKeys","nativeBind","bind","nativeCreate","create","Ctor","_wrapped","exports","module","VERSION","func","argCount","value","call","other","collection","accumulator","apply","identity","isObject","matcher","property","Infinity","createAssigner","keysFunc","undefinedOnly","source","l","i","key","baseCreate","result","MAX_ARRAY_INDEX","Math","pow","each","forEach","map","collect","results","reduce","foldl","inject","reduceRigh
 
t","foldr","find","detect","findIndex","findKey","filter","select","list","reject","negate","every","all","some","any","includes","include","target","fromIndex","values","indexOf","invoke","method","args","isFunc","pluck","where","attrs","findWhere","max","computed","lastComputed","min","shuffle","rand","set","shuffled","random","sample","n","guard","sortBy","criteria","sort","left","right","a","b","group","behavior","groupBy","indexBy","countBy","toArray","size","partition","pass","fail","first","head","take","initial","last","rest","tail","drop","compact","flatten","input","shallow","strict","startIndex","output","idx","isArguments","j","len","without","difference","uniq","unique","isSorted","isBoolean","seen","union","intersection","argsLength","item","zip","unzip","object","sortedIndex","isNaN","lastIndexOf","from","findLastIndex","low","high","mid","floor","range","start","stop","step","ceil","executeBound","sourceFunc","boundFunc","callingContext","self","TypeError","bound","c
 
oncat","partial","boundArgs","position","bindAll","Error","memoize","hasher","cache","address","delay","wait","setTimeout","defer","throttle","options","timeout","previous","later","leading","now","remaining","clearTimeout","trailing","debounce","immediate","timestamp","callNow","wrap","wrapper","compose","after","times","before","once","hasEnumBug","propertyIsEnumerable","allKeys","mapObject","pairs","invert","functions","methods","names","extend","extendOwn","assign","pick","oiteratee","omit","String","defaults","clone","tap","interceptor","isMatch","eq","aStack","bStack","className","areArrays","aCtor","bCtor","pop","isEqual","isEmpty","isString","isElement","nodeType","type","name","Int8Array","isFinite","parseFloat","isNumber","isNull","isUndefined","noConflict","constant","noop","propertyOf","matches","accum","Date","getTime","escapeMap","&","<",">","\"","'","`","unescapeMap","createEscaper","escaper","match","join","testRegexp","RegExp","replaceRegexp","string","test","replac
 
e","escape","unescape","fallback","idCounter","uniqueId","prefix","id","templateSettings","evaluate","interpolate","noMatch","escapes","\\","\r","\n","
","
","escapeChar","template","text","settings","oldSettings","offset","variable","render","e","data","argument","chain","instance","_chain","mixin","valueOf","toJSON","define","amd"],"mappings":"CAKC,WAoKC,QAASA,GAAaC,GAGpB,QAASC,GAASC,EAAKC,EAAUC,EAAMC,EAAMC,EAAOC,GAClD,KAAOD,GAAS,GAAaC,EAARD,EAAgBA,GAASN,EAAK,CACjD,GAAIQ,GAAaH,EAAOA,EAAKC,GAASA,CACtCF,GAAOD,EAASC,EAAMF,EAAIM,GAAaA,EAAYN,GAErD,MAAOE,GAGT,MAAO,UAASF,EAAKC,EAAUC,EAAMK,GACnCN,EAAWO,EAAWP,EAAUM,EAAS,EACzC,IAAIJ,IAAQM,EAAYT,IAAQU,EAAEP,KAAKH,GACnCK,GAAUF,GAAQH,GAAKK,OACvBD,EAAQN,EAAM,EAAI,EAAIO,EAAS,CAMnC,OAJIM,WAAUN,OAAS,IACrBH,EAAOF,EAAIG,EAAOA,EAAKC,GAASA,GAChCA,GAASN,GAEJC,EAASC,EAAKC,EAAUC,EAAMC,EAAMC,EAAOC,IA+btD,QAASO,GAAkBd,GACzB,MAAO,UAASe,EAAOC,EAAWP,GAChCO,EAAYC,EAAGD,EAAWP,EAG1B,KAFA,GAAIF,GAAkB,MAATQ,GAAiBA,EAAMR,OAChCD,EAAQN,EAAM,EAAI,EAAIO,EAAS,EA
 

[31/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/resource_EntityREST.html
--
diff --git a/1.1.0/api/v2/apidocs/resource_EntityREST.html 
b/1.1.0/api/v2/apidocs/resource_EntityREST.html
deleted file mode 100644
index b5a9a82..000
--- a/1.1.0/api/v2/apidocs/resource_EntityREST.html
+++ /dev/null
@@ -1,1757 +0,0 @@
-
-
-
-  
-  
-  
-  
-
-  Atlas REST API: EntityREST
-
-  
-  
-
-  
-  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
-
-  
-  
-
-  
-  
-
-
-
-
-  
-
-  
-
-  Toggle navigation
-  
-  
-  
-
-Atlas REST API: 
EntityREST
-  
-  
-
-  Resources
-  Data Types
-
-  
-
-  
-
-  
-
-  
-
-  POST 
/v2/entity
-  DELETE 
/v2/entity/bulk
-  GET 
/v2/entity/bulk
-  POST 
/v2/entity/bulk
-  POST 
/v2/entity/bulk/classification
-  DELETE 
/v2/entity/guid/{guid}
-  GET 
/v2/entity/guid/{guid}
-  PUT 
/v2/entity/guid/{guid}
-  GET 
/v2/entity/{guid}/audit
-  GET 
/v2/entity/guid/{guid}/classifications
-  POST 
/v2/entity/guid/{guid}/classifications
-  PUT 
/v2/entity/guid/{guid}/classifications
-  GET 
/v2/entity/guid/{guid}/header
-  DELETE 
/v2/entity/uniqueAttribute/type/{typeName}
-  GET 
/v2/entity/uniqueAttribute/type/{typeName}
-  PUT 
/v2/entity/uniqueAttribute/type/{typeName}
-  DELETE 
/v2/entity/guid/{guid}/classification/{classificationName}
-  GET 
/v2/entity/guid/{guid}/classification/{classificationName}
-  POST 
/v2/entity/uniqueAttribute/type/{typeName}/classifications
-  PUT 
/v2/entity/uniqueAttribute/type/{typeName}/classifications
-  DELETE 
/v2/entity/uniqueAttribute/type/{typeName}/classification/{classificationName}
-  
-  Back to 
Top
-
-  
-
-  
-
-  Home
-  Resources
-  EntityREST
-
-
-  EntityREST Resource
-
-  REST for a single entity
-
-  
-POST 
/v2/entity 
-
-Create new entity or update existing entity in Atlas.
-Existing entity is matched using its unique guid if supplied or by its unique 
attributes eg: qualifiedName
-
-
-  Request Body
-  
-  
-media type
-data type
-  
-  
-  
-  
-application/json;charset=UTF-8
-(custom)
-
-  
-  
-
-
-
-  Response Body
-  
-  
-media type
-data type
-description
-  
-  
-  
-  
-application/json;charset=UTF-8
-(custom)
-
-EntityMutationResponse
-  
-  
-
-Example
-
-
-  
-
-  Request
-  
-POST /v2/entity
-Content-Type: application/json;charset=UTF-8
-Accept: application/json;charset=UTF-8
-
-
-...
-
-  
-
-
-  Response
-  
-HTTP/1.1 201 Created
-Content-Type: application/json;charset=UTF-8
-
-
-...
-
-  
-
-  
-
-  
-
-  
-DELETE 
/v2/entity/bulk 
-
-Bulk API to delete list of entities identified by its GUIDs
-
-
-  Request Parameters
-  
-  
-name
-type
-description
-multivalued
-  
-  
-  
-  
-guid
-query
-
-yes
-  
-  
-
-
-
-  Response Body
-  
-  
-media type
-data type
-description
-  
-  
-  
-  
-application/json;charset=UTF-8
-(custom)
-
-
-  
-  
-
-Example
-
-
-  
-
-  Request
-  
-DELETE /v2/entity/bulk
-Accept: application/json;charset=UTF-8
-
-  
-
-
-  Response
-  
-HTTP/1.1 204 No Content
-Content-Type: application/json;charset=UTF-8
-
-
-...
-
-  
-
-  
-
-  
-
-  
-GET /v2/entity/bulk 
-
-Bulk API to retrieve list of entities identified by its GUIDs.
-
-
-  Request Parameters
-  
-  
-name
-type
-description
-default
-constraints
-multivalued
-  
-  
-  
-  
-guid
- 

[24/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/ui/lib/jquery-1.8.0.min.js
--
diff --git a/1.1.0/api/v2/apidocs/ui/lib/jquery-1.8.0.min.js 
b/1.1.0/api/v2/apidocs/ui/lib/jquery-1.8.0.min.js
deleted file mode 100644
index e2e2b7f..000
--- a/1.1.0/api/v2/apidocs/ui/lib/jquery-1.8.0.min.js
+++ /dev/null
@@ -1,3 +0,0 @@
-!function(e,t){function n(e){var t=he[e]={};return 
K.each(e.split(te),function(e,n){t[n]=!0}),t}function 
r(e,n,r){if(r===t&&1===e.nodeType){var 
i="data-"+n.replace(me,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof
 
r){try{r="true"===r||"false"!==r&&("null"===r?null:+r+""===r?+r:ge.test(r)?K.parseJSON(r):r)}catch(o){}K.data(e,n,r)}else
 r=t}return r}function i(e){var t;for(t in 
e)if(("data"!==t||!K.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}function
 o(){return!1}function a(){return!0}function 
s(e){return!e||!e.parentNode||11===e.parentNode.nodeType}function l(e,t){do 
e=e[t];while(e&&1!==e.nodeType);return e}function 
u(e,t,n){if(t=t||0,K.isFunction(t))return K.grep(e,function(e,r){var 
i=!!t.call(e,r,e);return i===n});if(t.nodeType)return 
K.grep(e,function(e,r){return e===t===n});if("string"==typeof t){var 
r=K.grep(e,function(e){return 1===e.nodeType});if(_e.test(t))return 
K.filter(t,r,!n);t=K.filter(t,r)}return K.grep(e,function(e,r){return 
K.inArray(e,t)>=0===n}
 )}function c(e){var 
t=We.split("|"),n=e.createDocumentFragment();if(n.createElement)for(;t.length;)n.createElement(t.pop());return
 n}function f(e,t){return 
e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function
 p(e,t){if(1===t.nodeType&(e)){var 
n,r,i,o=K._data(e),a=K._data(t,o),s=o.events;if(s){delete 
a.handle,a.events={};for(n in 
s)for(r=0,i=s[n].length;r").appendTo(R.body),n=t.css("display");return 
t.remove(),"none"!==n&&""!==n||(rt=R.body.appendChild(rt||K.extend(R.createElement("iframe"),{frameBorder:0,width:0,height:0})),it&||(it=(rt.contentWindow||rt.contentDocument).document,it.write(
 ""),it.close()),t=it.body.appendChild(it.createElement(e)),n=nt(t,"display"),R.body.removeChild(rt)),pt[e]=n,n}function
 N(e,t,n,r){var 
i;if(K.isArray(t))K.each(t,function(t,i){n||bt.test(e)?r(e,i):N(e+"["+("object"==typeof
 i?t:"")+"]",i,n,r)});else if(n||"object"!==K.type(t))r(e,t);else for(i in 
t)N(e+"["+i+"]",t[i],n,r)}function C(e){return function(t,n){"string"!=typeof 
t&&(n=t,t="*");var 
r,i,o,a=t.toLowerCase().split(te),s=0,l=a.length;if(K.isFunction(n))for(;s)[^>]*$|#([\w\-]*)$)/,ie=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,oe=/^[\],:{}\s]*$/,ae=/(?:^|:|,)(?:\s*\[)+/g,se=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,le=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,ue=/^-ms-/,ce=/-([\da-z])/gi,fe=function(e,t){return(t+"").toUpperCase()},pe=function(){R.addEventListener?(R.removeEventListener("DOMContentLoaded",pe,!1),K.ready()):"complete"===R.readyState&&(R.detachEvent("onreadystatechange",pe),K.ready())},de={};K.fn=K.prototype={constructor:K,init:function(e,n,r){var
 i,o,a;if(!e)return this;if(e.nodeType)return 
this.context=this[0]=e,this.length=1,this;if(
 "string"==typeof 
e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&>=3?[null,e,null]:re.exec(e),i&&(i[1]||!n)){if(i[1])return
 n=n instanceof 
K?n[0]:n,a=n&?n.ownerDocument||n:R,e=K.parseHTML(i[1],a,!0),ie.test(i[1])&(n)&(e,n,!0),K.merge(this,e);if(o=R.getElementById(i[2]),o&){if(o.id!==i[2])return
 r.find(e);this.length=1,this[0]=o}return 
this.context=R,this.selector=e,this}return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e)}return
 
K.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),K.makeArray(e,this))},selector:"",jquery:"1.8.0",length:0,size:function(){return
 this.length},toArray:function(){return Y.call(this)},get:function(e){return 
null==e?this.toArray():e<0?this[this.length+e]:this[e]},pushStack:function(e,t,n){var
 r=K.merge(this.constructor(),e);return 
r.prevObject=this,r.context=this.context,"find"===t?r.selector=this.selector+(this.selector?"
 ":"")+n:t&&(r.s
 elector=this.selector+"."+t+"("+n+")"),r},each:function(e,t){return 
K.each(this,e,t)},ready:function(e){return 
K.ready.promise().done(e),this},eq:function(e){return 
e=+e,e===-1?this.slice(e):this.slice(e,e+1)},first:function(){return 
this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return 
this.pushStack(Y.apply(this,arguments),"slice",Y.call(arguments).join(","))},map:function(e){return
 this.pushStack(K.map(this,function(t,n){return 
e.call(t,n,t)}))},end:function(){return 
this.prevObject||this.constructor(null)},push:U,sort:[].sort,splice:[].splice},K.fn.init.prototype=K.fn,K.extend=K.fn.extend=function(){var
 
e,n,r,i,o,a,s=arguments[0]||{},l=1,u=arguments.length,c=!1;for("boolean"==typeof
 s&&(c=s,s=arguments[1]||{},l=2),"object"!=typeof 

[07/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/resource_EntityREST.html
--
diff --git a/1.1.0/api/v2/resource_EntityREST.html 
b/1.1.0/api/v2/resource_EntityREST.html
index 68ab99c..af806cf 100644
--- a/1.1.0/api/v2/resource_EntityREST.html
+++ b/1.1.0/api/v2/resource_EntityREST.html
@@ -62,6 +62,7 @@
   GET 
/v2/entity/guid/{guid}/classifications
   POST 
/v2/entity/guid/{guid}/classifications
   PUT 
/v2/entity/guid/{guid}/classifications
+  GET 
/v2/entity/guid/{guid}/header
   DELETE 
/v2/entity/uniqueAttribute/type/{typeName}
   GET 
/v2/entity/uniqueAttribute/type/{typeName}
   PUT 
/v2/entity/uniqueAttribute/type/{typeName}
@@ -209,8 +210,12 @@ Content-Type: application/json;charset=UTF-8
   Request
   
 DELETE /v2/entity/bulk
+Content-Type: application/json;charset=UTF-8
 Accept: application/json;charset=UTF-8
 
+
+...
+
   
 
 
@@ -240,6 +245,8 @@ Content-Type: application/json;charset=UTF-8
 name
 type
 description
+default
+constraints
 multivalued
   
   
@@ -248,8 +255,18 @@ Content-Type: application/json;charset=UTF-8
 guid
 query
 
+
+
 yes
   
+  
+minExtInfo
+query
+
+false
+boolean
+no
+  
   
 
 
@@ -279,8 +296,12 @@ Content-Type: application/json;charset=UTF-8
   Request
   
 GET /v2/entity/bulk
+Content-Type: application/json;charset=UTF-8
 Accept: application/json;charset=UTF-8
 
+
+...
+
   
 
 
@@ -410,21 +431,23 @@ Content-Type: application/json
 {
   classification : {
 entityGuid : ...,
+entityStatus : DELETED,
 propagate : true,
+removePropagationsOnEntityDelete : true,
 validityPeriods : [ {
-  startTime : ...,
   endTime : ...,
+  startTime : ...,
   timeZone : ...
 }, {
-  startTime : ...,
   endTime : ...,
+  startTime : ...,
   timeZone : ...
 } ],
-typeName : ...,
 attributes : {
   property1 : { },
   property2 : { }
-}
+},
+typeName : ...
   },
   entityGuids : [ ..., ... ]
 }
@@ -491,8 +514,12 @@ HTTP/1.1 201 Created
   Request
   
 DELETE /v2/entity/guid/{guid}
+Content-Type: application/json
 Accept: application/json;charset=UTF-8
 
+
+...
+
   
 
 
@@ -522,6 +549,8 @@ Content-Type: application/json;charset=UTF-8
 name
 type
 description
+default
+constraints
   
   
   
@@ -529,6 +558,15 @@ Content-Type: application/json;charset=UTF-8
 guid
 path
 GUID for the 
entity
+
+
+  
+  
+minExtInfo
+query
+
+false
+boolean
   
   
 
@@ -559,8 +597,12 @@ Content-Type: application/json;charset=UTF-8
   Request
   
 GET /v2/entity/guid/{guid}
+Content-Type: application/json;charset=UTF-8
 Accept: application/json;charset=UTF-8
 
+
+...
+
   
 
 
@@ -742,8 +784,12 @@ Content-Type: application/json;charset=UTF-8
   Request
   
 GET /v2/entity/{guid}/audit
+Content-Type: application/json;charset=UTF-8
 Accept: application/json;charset=UTF-8
 
+
+...
+
   
 
 
@@ -810,8 +856,12 @@ Content-Type: application/json;charset=UTF-8
   Request
   
 GET /v2/entity/guid/{guid}/classifications
+Content-Type: */*
 Accept: application/json;charset=UTF-8
 
+
+...
+
   
 
 
@@ -886,21 +936,23 @@ Content-Type: application/json
 
 [ {
   entityGuid : ...,
+  entityStatus : DELETED,
   propagate : true,
+  removePropagationsOnEntityDelete : true,
   validityPeriods : [ {
-startTime : ...,
 endTime : ...,
+startTime : ...,
 timeZone : ...
   }, {
-startTime : ...,
 endTime : ...,
+startTime : ...,
 timeZone : ...
   } ],
-  typeName : ...,
   attributes : {
 property1 : { },
 property2 : { }
-  }
+  },
+  typeName : ...
 } ]
 
   
@@ -973,21 +1025,23 @@ Content-Type: application/json
 
 [ {
   entityGuid : ...,
+  entityStatus : ACTIVE,
   propagate : true,
+  removePropagationsOnEntityDelete : true,
   

[05/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.svg
--
diff --git a/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.svg 
b/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.svg
deleted file mode 100644
index d9f2a21..000
--- a/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.svg
+++ /dev/null
@@ -1,403 +0,0 @@
-
-http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd;>
-http://www.w3.org/2000/svg;>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.ttf
--
diff --git a/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.ttf 
b/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.ttf
deleted file mode 100644
index fb8cea6..000
Binary files a/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.ttf and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.woff
--
diff --git a/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.woff 
b/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.woff
deleted file mode 100644
index abf1989..000
Binary files a/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.woff and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.woff2
--
diff --git a/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.woff2 
b/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.woff2
deleted file mode 100644
index 9f93f74..000
Binary files a/1.1.0/api/v2/ui/fonts/droid-sans-v6-latin-regular.woff2 and 
/dev/null differ



[45/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/json_AtlasTermCategorizationHeader.html
--
diff --git a/1.0.0/api/v2/json_AtlasTermCategorizationHeader.html 
b/1.0.0/api/v2/json_AtlasTermCategorizationHeader.html
new file mode 100644
index 000..a4015d7
--- /dev/null
+++ b/1.0.0/api/v2/json_AtlasTermCategorizationHeader.html
@@ -0,0 +1,170 @@
+
+
+
+  
+  
+  
+  
+
+  Atlas REST API: AtlasTermCategorizationHeader
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: 
AtlasTermCategorizationHeader
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  AtlasTermCategorizationHeader
+
+
+  AtlasTermCategorizationHeader Data 
Type
+
+  
+
+  
+  
+
+  
+Properties
+
+
+  name
+  data type
+  description
+
+
+
+
+categoryGuid
+
+string
+
+
+
+
+
+
+description
+
+string
+
+
+
+
+
+
+displayText
+
+string
+
+
+
+
+
+
+relationGuid
+
+string
+
+
+
+
+
+
+status
+
+AtlasTermRelationshipStatus
+
+
+
+
+
+
+  
+
+  Example
+  
+  {
+  categoryGuid : ...,
+  description : ...,
+  displayText : ...,
+  relationGuid : ...,
+  status : OTHER
+}
+
+
+  
+Generated by http://enunciate.webcohesion.com;>Enunciate.
+  
+
+
+  
+
+  
+
+
+  
+  https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js";>
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js";>
+
+  
+  https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"; 
type="text/javascript">
+  
+$(function() {
+  $(".clickable-row").click(function() {
+window.document.location = $(this).data("href");
+  });
+
+  $('[data-toggle="tooltip"]').tooltip()
+});
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/json_AtlasTermRelationshipStatus.html
--
diff --git a/1.0.0/api/v2/json_AtlasTermRelationshipStatus.html 
b/1.0.0/api/v2/json_AtlasTermRelationshipStatus.html
new file mode 100644
index 000..a9afad7
--- /dev/null
+++ b/1.0.0/api/v2/json_AtlasTermRelationshipStatus.html
@@ -0,0 +1,140 @@
+
+
+
+  
+  
+  
+  
+
+  Atlas REST API: AtlasTermRelationshipStatus
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: 
AtlasTermRelationshipStatus
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  DRAFT
+  ACTIVE
+  DEPRECATED
+  OBSOLETE
+  OTHER
+  
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  AtlasTermRelationshipStatus
+
+
+  AtlasTermRelationshipStatus Data 
Type
+
+  
+
+  
+  
+
+  
+Values
+
+
+  value
+  description
+
+
+
+
+  DRAFT
+  
+
+
+  ACTIVE
+  
+
+
+  DEPRECATED
+  
+
+
+  OBSOLETE
+  
+
+
+  OTHER
+  
+
+
+  
+
+
+  
+Generated by http://enunciate.webcohesion.com;>Enunciate.
+  
+
+
+  
+
+  
+
+
+  
+  https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js";>
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js";>
+
+  
+  https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"; 
type="text/javascript">
+  
+$(function() {
+  $(".clickable-row").click(function() {
+window.document.location = $(this).data("href");
+  });
+
+  $('[data-toggle="tooltip"]').tooltip()
+});
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/json_AtlasTypeDefHeader.html
--
diff 

[14/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/index.html
--
diff --git a/1.1.0/api/v2/index.html b/1.1.0/api/v2/index.html
index 80c4261..23cf360 100644
--- a/1.1.0/api/v2/index.html
+++ b/1.1.0/api/v2/index.html
@@ -127,6 +127,7 @@
   /v2/entity/guid/{guid}
   /v2/entity/{guid}/audit
   /v2/entity/guid/{guid}/classifications
+  /v2/entity/guid/{guid}/header
   /v2/entity/uniqueAttribute/type/{typeName}
   /v2/entity/guid/{guid}/classification/{classificationName}
   /v2/entity/uniqueAttribute/type/{typeName}/classifications
@@ -138,6 +139,7 @@
   DELETE GET PUT 
   GET 
   GET POST PUT 
+  GET 
   DELETE GET PUT 
   DELETE GET 
   POST PUT 
@@ -267,48 +269,494 @@
   
 
 
+
+AtlasAttributeDef
+
+class that captures details of 
a struct-attribute.
+
+
+
+AtlasBaseModelObject
+
+
+
+
+
+AtlasBaseTypeDef
+
+Base class that captures 
common-attributes for all Atlas types.
+
+
 
 AtlasClassification
 
 An instance of a 
classification; it doesn't have an identity, this object exists only when 
associated with an entity.
 
 
+
+AtlasClassificationDef
+
+class that captures details of 
a classification-type.
+
+
+
+AtlasClassifications
+
+REST serialization friendly 
list.
+
+
+
+AtlasConstraintDef
+
+class that captures details of 
a constraint.
+
+
+
+AtlasEntitiesWithExtInfo
+
+An instance of an entity along 
with extended info - like hive_table, hive_database.
+
+
+
+AtlasEntity
+
+An instance of an entity - like 
hive_table, hive_database.
+
+
+
+AtlasEntityDef
+
+class that captures details of 
a entity-type.
+
+
+
+AtlasEntityExtInfo
+
+An instance of an entity along 
with extended info - like hive_table, hive_database.
+
+
+
+AtlasEntityHeader
+
+An instance of an entity - like 
hive_table, hive_database.
+
+
+
+AtlasEntityWithExtInfo
+
+An instance of an entity along 
with extended info - like hive_table, hive_database.
+
+
+
+AtlasEnumDef
+
+class that captures details of 
an enum-type.
+
+
+
+AtlasEnumElementDef
+
+class that captures details of 
an enum-element.
+
+
+
+AtlasFullTextResult
+
+
+
+
+
+AtlasGlossary
+
+
+
+
+
+AtlasGlossaryBaseObject
+
+
+
+
+
+AtlasGlossaryCategory
+
+
+
+
+
+AtlasGlossaryExtInfo
+
+
+
+
+
+AtlasGlossaryHeader
+
+
+
+
+
+AtlasGlossaryTerm
+
+
+
+
+
+AtlasLineageInfo
+
+
+
+
+
+AtlasObjectId
+
+Reference to an object-instance 
of an Atlas type - like entity.
+
+
+
+AtlasQueryType
+
+
+
+
+
+AtlasRelatedCategoryHeader
+
+
+
+
+
+AtlasRelatedObjectId
+
+Reference to an object-instance 
of AtlasEntity type used in relationship attribute values
+
+
+
+AtlasRelatedTermHeader
+
+
+
+
+
+AtlasRelationship
+
+Atlas relationship 
instance.
+
+
+
+AtlasRelationshipDef
+
+AtlasRelationshipDef is a 
TypeDef that defines a relationship.
+
+As with other typeDefs the AtlasRelationshipDef has a name. Once created the 
RelationshipDef has a guid.
+The name and the guid are the 2 ways that the RelationshipDef is identified.
+
+RelationshipDefs have 2 ends, each of which specify cardinality, an EntityDef 
type name and name and optionally
+whether the end is a container.
+
+RelationshipDefs can have AttributeDefs - though only primitive types are 
allowed. 
+RelationshipDefs have a relationshipCategory specifying the UML type of 
relationship required 
+RelationshipDefs also have a PropogateTag - indicating which way tags could 
flow over the relationships.
+
+The way EntityDefs and RelationshipDefs are intended to be used is that 
EntityDefs will define AttributeDefs these AttributeDefs
+will not specify an EntityDef type name as their types.
+
+RelationshipDefs introduce new atributes to the entity instances. For example
+
+EntityDef A might have attributes attr1,attr2,attr3 
+EntityDef B might have attributes attr4,attr5,attr6 
+RelationshipDef AtoB might define 2 ends 
+
+
+   end1:  type A, name attr7
+   end2:  type B, name attr8  
+
+
+When an instance of EntityDef A is created, it will have attributes 
attr1,attr2,attr3,attr7 
+When an instance of EntityDef B is created, it will have attributes 
attr4,attr5,attr6,attr8
+
+In this way relationshipDefs can be authored separately from entityDefs and 
can inject relationship attributes into
+the entity instances
+
+

[48/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/json_AtlasGlossaryCategory.html
--
diff --git a/1.0.0/api/v2/json_AtlasGlossaryCategory.html 
b/1.0.0/api/v2/json_AtlasGlossaryCategory.html
new file mode 100644
index 000..49a1eab
--- /dev/null
+++ b/1.0.0/api/v2/json_AtlasGlossaryCategory.html
@@ -0,0 +1,290 @@
+
+
+
+  
+  
+  
+  
+
+  Atlas REST API: AtlasGlossaryCategory
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: 
AtlasGlossaryCategory
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  AtlasGlossaryCategory
+
+
+  AtlasGlossaryCategory Data 
Type
+
+  
+
+  
+  
+
+  
+Properties
+
+
+  name
+  data type
+  description
+
+
+
+
+anchor
+
+AtlasGlossaryHeader
+
+
+
+
+
+
+childrenCategories
+
+array of AtlasRelatedCategoryHeader
+
+
+
+
+
+
+parentCategory
+
+AtlasRelatedCategoryHeader
+
+
+
+
+
+
+terms
+
+array of AtlasRelatedTermHeader
+
+
+
+
+
+
+
+  Properties inherited from AtlasGlossaryBaseObject
+
+
+
+  classifications
+  array of AtlasClassification
+
+  
+
+
+  longDescription
+  string
+
+  
+
+
+  name
+  string
+
+  
+
+
+  qualifiedName
+  string
+
+  
+
+
+  shortDescription
+  string
+
+  
+
+
+
+  Properties inherited from AtlasBaseModelObject
+
+
+
+  guid
+  string
+
+  
+
+
+  
+
+  Example
+  
+  {
+  anchor : {
+displayText : ...,
+glossaryGuid : ...,
+relationGuid : ...
+  },
+  childrenCategories : [ {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  }, {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  } ],
+  parentCategory : {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  },
+  terms : [ {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : OBSOLETE,
+steward : ...,
+termGuid : ...
+  }, {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : OTHER,
+steward : ...,
+termGuid : ...
+  } ],
+  classifications : [ {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+}, {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+} ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : ACTIVE,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+}, {
+  endTime : ...,
+  startTime : ...,
+  timeZone : ...
+} ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  longDescription : ...,
+  name : ...,
+  qualifiedName : ...,
+  shortDescription : ...,
+  guid : ...
+}
+
+
+  
+Generated by http://enunciate.webcohesion.com;>Enunciate.
+  
+
+
+  
+
+  
+
+
+  
+  https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js";>
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js";>
+
+  
+  https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"; 
type="text/javascript">
+  
+$(function() {
+  $(".clickable-row").click(function() {
+window.document.location = $(this).data("href");
+  });
+
+  $('[data-toggle="tooltip"]').tooltip()
+});
+  
+
+
+


[38/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/js/libs/jquery-1.5.1.min.js
--
diff --git a/1.1.0/api/js/libs/jquery-1.5.1.min.js 
b/1.1.0/api/js/libs/jquery-1.5.1.min.js
deleted file mode 100644
index 14fd647..000
--- a/1.1.0/api/js/libs/jquery-1.5.1.min.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*!
- * jQuery JavaScript Library v1.5.1
- * http://jquery.com/
- *
- * Copyright 2011, John Resig
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * Includes Sizzle.js
- * http://sizzlejs.com/
- * Copyright 2011, The Dojo Foundation
- * Released under the MIT, BSD, and GPL Licenses.
- *
- * Date: Wed Feb 23 13:55:29 2011 -0500
- */
-(function(a,b){function cg(a){return 
d.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function 
cd(a){if(!bZ[a]){var 
b=d("<"+a+">").appendTo("body"),c=b.css("display");b.remove();if(c==="none"||c==="")c="block";bZ[a]=c}return
 bZ[a]}function cc(a,b){var 
c={};d.each(cb.concat.apply([],cb.slice(0,b)),function(){c[this]=a});return 
c}function bY(){try{return new 
a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function bX(){try{return new 
a.XMLHttpRequest}catch(b){}}function bW(){d(a).unload(function(){for(var a in 
bU)bU[a](0,1)})}function 
bQ(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var 
e=a.dataTypes,f={},g,h,i=e.length,j,k=e[0],l,m,n,o,p;for(g=1;g=0===c})}function 
N(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function 
F(a,b){return(a&!=="*"?a+".":"")+b.replace(r,"`").replace(s,"&")}function 
E(a){var 
b,c,e,f,g,h,i,j,k,l,m,n,o,q=[],r=[],s=d._data(this,"events");if(a.liveFired!==this!a.target.disabled&&(!a.button||a.type!=="click")){a.namespace&&(n=new
 
RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var
 
t=s.live.slice(0);for(i=0;ic)break;a.currentTarget=f.elem,a.data=f.handleObj.data,a.handleObj=f.handleObj,o=f.handleObj.origHandler.apply(f.elem,arguments);if(o===!1||a.isPropagationStopped()){c=f.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return
 b}}function C(a,c,e){var 
f=d.extend({},e[0]);f.type=a,f.originalEvent={},f.liveFired=b,d.event.handle.call(c,f),f.isDefaultPrevented()&[0].preventDefault()}function
 w(){return!0}function v(){return!1}function g(a){for(var b in 
a)if(b!=="toJSON")return!1;return!0}function 
f(a,c,f){if(f===b&===1){f=a.getAttribute("data-"+c);if(typeof 
f==="string"){try{f=f==="true"?!0:f==="false"?!1:f==="null"?null:d.isNaN(f)?e.test(f)?d.parseJSON(f):f:parseFloat(f)}catch(g){}d.data(a,c,f)}else
 f=b}return f}var c=a.document,d=function(){function 
I(){if(!d.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(I,1);return}d.ready()}}var
 d=function(a,b){return new d.fn.init(a
 
,b,g)},e=a.jQuery,f=a.$,g,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,i=/\S/,j=/^\s+/,k=/\s+$/,l=/\d/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[
 \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) 
([\w.]+)/,u=/(mozilla)(?:.*? 
rv:([\w.]+))?/,v=navigator.userAgent,w,x=!1,y,z="then done fail isResolved 
isRejected promise".split(" 
"),A,B=Object.prototype.toString,C=Object.prototype.hasOwnProperty,D=Array.prototype.push,E=Array.prototype.slice,F=String.prototype.trim,G=Array.prototype.indexOf,H={};d.fn=d.prototype={constructor:d,init:function(a,e,f){var
 g,i,j,k;if(!a)return 
this;if(a.nodeType){this.context=this[0]=a,this.length=1;return 
this}if(a==="body"&&!e&){this.context=c,this[0]=c.body,this.selector="body",this.length=1;return
 this}if(typeof 
a==="string"){g=h.exec(a);if(!g||!g[1]&)return!e||e.jquery?(e||f).find(a)
 :this.constructor(e).find(a);if(g[1]){e=e instanceof 
d?e[0]:e,k=e?e.ownerDocument||e:c,j=m.exec(a),j?d.isPlainObject(e)?(a=[c.createElement(j[1])],d.fn.attr.call(a,e,!0)):a=[k.createElement(j[1])]:(j=d.buildFragment([g[1]],[k]),a=(j.cacheable?d.clone(j.fragment):j.fragment).childNodes);return
 
d.merge(this,a)}i=c.getElementById(g[2]);if(i&){if(i.id!==g[2])return
 f.find(a);this.length=1,this[0]=i}this.context=c,this.selector=a;return 
this}if(d.isFunction(a))return 
f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return
 
d.makeArray(a,this)},selector:"",jquery:"1.5.1",length:0,size:function(){return 
this.length},toArray:function(){return E.call(this,0)},get:function(a){return 
a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var
 
e=this.constructor();d.isArray(a)?D.apply(e,a):d.merge(e,a),e.prevObject=this,e.context=this.context,b==="find"?e.selector=this.selector+(this.selector?"
 ":"")+c:b&&(e.selector=this.selecto
 r+"."+b+"("+c+")");return e},each:function(a,b){return 
d.each(this,a,b)},ready:function(a){d.bindReady(),y.done(a);return 
this},eq:function(a){return 

[09/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/json_ClassificationAssociateRequest.html
--
diff --git a/1.1.0/api/v2/json_ClassificationAssociateRequest.html 
b/1.1.0/api/v2/json_ClassificationAssociateRequest.html
index d139bce..270eb87 100644
--- a/1.1.0/api/v2/json_ClassificationAssociateRequest.html
+++ b/1.1.0/api/v2/json_ClassificationAssociateRequest.html
@@ -79,7 +79,7 @@
 
 
 
-classification
+classification
 
 AtlasClassification
 
@@ -88,7 +88,7 @@
 
 
 
-entityGuids
+entityGuids
 
 array of string
 
@@ -104,21 +104,23 @@
   {
   classification : {
 entityGuid : ...,
+entityStatus : DELETED,
 propagate : true,
+removePropagationsOnEntityDelete : true,
 validityPeriods : [ {
-  startTime : ...,
   endTime : ...,
+  startTime : ...,
   timeZone : ...
 }, {
-  startTime : ...,
   endTime : ...,
+  startTime : ...,
   timeZone : ...
 } ],
-typeName : ...,
 attributes : {
   property1 : { },
   property2 : { }
-}
+},
+typeName : ...
   },
   entityGuids : [ ..., ... ]
 }

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/json_Condition.html
--
diff --git a/1.1.0/api/v2/json_Condition.html b/1.1.0/api/v2/json_Condition.html
index 73d8e2b..7cd3662 100644
--- a/1.1.0/api/v2/json_Condition.html
+++ b/1.1.0/api/v2/json_Condition.html
@@ -15,7 +15,7 @@
   https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
 
   
-  
+  
 
   
   
+
+  Atlas REST API: DateFormat
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: 
DateFormat
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  DateFormat
+
+
+  DateFormat Data Type
+
+  
+
+  
+Abstract Type
+
+  
+
+  
+Properties
+
+
+  name
+  data type
+  description
+
+
+
+
+availableLocales
+
+array of string
+
+
+
+
+
+
+calendar
+
+number
+
+
+
+
+
+
+dateInstance
+
+DateFormat
+
+
+
+
+
+
+dateTimeInstance
+
+DateFormat
+
+
+
+
+
+
+instance
+
+DateFormat
+
+
+
+
+
+
+lenient
+
+boolean
+
+
+
+
+
+
+numberFormat
+
+NumberFormat
+
+
+
+
+
+
+timeInstance
+
+DateFormat
+
+
+
+
+
+
+timeZone
+
+TimeZone
+
+
+
+
+
+
+  
+
+  Example
+
+  This data type is abstract. The example 
below may be incomplete. More accurate examples can be found in subtypes 
pages.
+  
+  {
+  availableLocales : [ ..., ... ],
+  calendar : 12345,
+  dateInstance : {
+availableLocales : [ ..., ... ],
+calendar : 12345,
+dateInstance : { },
+dateTimeInstance : { },
+instance : { },
+lenient : true,
+numberFormat : {
+  availableLocales : [ ..., ... ],
+  currency : ...,
+  currencyInstance : { },
+  groupingUsed : true,
+  instance : { },
+  integerInstance : { },
+  maximumFractionDigits : 12345,
+  maximumIntegerDigits : 12345,
+  minimumFractionDigits : 12345,
+  minimumIntegerDigits : 12345,
+  numberInstance : { },
+  parseIntegerOnly : true,
+  percentInstance : { },
+  roundingMode : DOWN
+},
+timeInstance : { },
+timeZone : {
+  DSTSavings : 12345,
+  ID : ...,
+  availableIDs : [ ..., ... ],
+  default : { },
+  displayName : ...,
+  rawOffset : 12345
+}
+  },
+  dateTimeInstance : {
+availableLocales : [ ..., ... ],
+calendar : 12345,
+dateInstance : { },
+dateTimeInstance : { },
+instance : { },
+lenient : true,
+numberFormat : {
+  availableLocales : [ ..., ... ],
+  currency : ...,
+  currencyInstance : { },
+  groupingUsed : true,
+  instance : { },
+  integerInstance : { },
+  maximumFractionDigits : 12345,
+  maximumIntegerDigits : 12345,
+  minimumFractionDigits : 12345,
+  minimumIntegerDigits : 12345,
+

[29/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/resource_LineageREST.html
--
diff --git a/1.1.0/api/v2/apidocs/resource_LineageREST.html 
b/1.1.0/api/v2/apidocs/resource_LineageREST.html
deleted file mode 100644
index 2f46369..000
--- a/1.1.0/api/v2/apidocs/resource_LineageREST.html
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
-  
-  
-  
-  
-
-  Atlas REST API: LineageREST
-
-  
-  
-
-  
-  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
-
-  
-  
-
-  
-  
-
-
-
-
-  
-
-  
-
-  Toggle navigation
-  
-  
-  
-
-Atlas REST API: 
LineageREST
-  
-  
-
-  Resources
-  Data Types
-
-  
-
-  
-
-  
-
-  
-
-  GET 
/v2/lineage/{guid}
-  
-  Back to 
Top
-
-  
-
-  
-
-  Home
-  Resources
-  LineageREST
-
-
-  LineageREST Resource
-
-  REST interface for an entity's lineage information
-
-  
-GET /v2/lineage/{guid} 
-
-Returns lineage info about entity.
-
-
-  Request Parameters
-  
-  
-name
-type
-description
-default
-constraints
-  
-  
-  
-  
-guid
-path
-- unique entity 
id
-
-
-  
-  
-depth
-query
-- number of hops for 
lineage
-3
-int
-  
-  
-direction
-query
-- input, output or 
both
-BOTH
-"BOTH" or "INPUT" or 
"OUTPUT"
-  
-  
-
-
-
-  Response Codes
-  
-  
-code
-condition
-  
-  
-  
-  
-200
-If Lineage exists for the 
given entity
-  
-  
-400
-Bad query 
parameters
-  
-  
-404
-If no lineage is found for 
the given entity
-  
-  
-
-
-
-  Response Body
-  
-  
-media type
-data type
-description
-  
-  
-  
-  
-application/json;charset=UTF-8
-(custom)
-
-AtlasLineageInfo
-  
-  
-
-Example
-
-
-  
-
-  Request
-  
-GET /v2/lineage/{guid}
-Accept: application/json;charset=UTF-8
-
-  
-
-
-  Response
-  
-HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-
-
-...
-
-  
-
-  
-
-  
-
-
-  
-Generated by http://enunciate.webcohesion.com;>Enunciate.
-  
-
-
-  
-
-  
-
-
-  
-  https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js";>
-
-  
-  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js";>
-
-  
-  https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"; 
type="text/javascript">
-  
-$(function() {
-  $(".clickable-row").click(function() {
-window.document.location = $(this).data("href");
-  });
-
-  $('[data-toggle="tooltip"]').tooltip()
-});
-  
-
-
-

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/resource_RelationshipREST.html
--
diff --git a/1.1.0/api/v2/apidocs/resource_RelationshipREST.html 
b/1.1.0/api/v2/apidocs/resource_RelationshipREST.html
deleted file mode 100644
index 28af161..000
--- a/1.1.0/api/v2/apidocs/resource_RelationshipREST.html
+++ /dev/null
@@ -1,369 +0,0 @@
-
-
-
-  
-  
-  
-  
-
-  Atlas REST API: RelationshipREST
-
-  
-  
-
-  
-  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
-
-  
-  
-
-  
-  
-
-
-
-
-  
-
-  
-
-  Toggle navigation
-  
-  
-  
-
-Atlas REST API: 
RelationshipREST
-  
-  
-
-  Resources
-  Data Types
-
-  
-
-  
-
-  
-
-  
-
-  POST 
/v2/relationship
-  PUT 
/v2/relationship
-  DELETE 
/v2/relationship/guid/{guid}
-  GET 
/v2/relationship/guid/{guid}
-  
-  Back to 
Top
-
-  
-
-  
-
-  Home
-  Resources
-  RelationshipREST
-
-
-  RelationshipREST Resource
-
-  REST interface for entity relationships.
-
-  
-POST 

[44/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/json_EntityAuditActionV2.html
--
diff --git a/1.0.0/api/v2/json_EntityAuditActionV2.html 
b/1.0.0/api/v2/json_EntityAuditActionV2.html
new file mode 100644
index 000..b199a39
--- /dev/null
+++ b/1.0.0/api/v2/json_EntityAuditActionV2.html
@@ -0,0 +1,185 @@
+
+
+
+  
+  
+  
+  
+
+  Atlas REST API: EntityAuditActionV2
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: 
EntityAuditActionV2
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  ENTITY_CREATE
+  ENTITY_UPDATE
+  ENTITY_DELETE
+  ENTITY_IMPORT_CREATE
+  ENTITY_IMPORT_UPDATE
+  ENTITY_IMPORT_DELETE
+  CLASSIFICATION_ADD
+  CLASSIFICATION_DELETE
+  CLASSIFICATION_UPDATE
+  PROPAGATED_CLASSIFICATION_ADD
+  PROPAGATED_CLASSIFICATION_DELETE
+  PROPAGATED_CLASSIFICATION_UPDATE
+  TERM_ADD
+  TERM_DELETE
+  
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  EntityAuditActionV2
+
+
+  EntityAuditActionV2 Data Type
+
+  
+
+  
+  
+
+  
+Values
+
+
+  value
+  description
+
+
+
+
+  ENTITY_CREATE
+  
+
+
+  ENTITY_UPDATE
+  
+
+
+  ENTITY_DELETE
+  
+
+
+  ENTITY_IMPORT_CREATE
+  
+
+
+  ENTITY_IMPORT_UPDATE
+  
+
+
+  ENTITY_IMPORT_DELETE
+  
+
+
+  CLASSIFICATION_ADD
+  
+
+
+  CLASSIFICATION_DELETE
+  
+
+
+  CLASSIFICATION_UPDATE
+  
+
+
+  PROPAGATED_CLASSIFICATION_ADD
+  
+
+
+  PROPAGATED_CLASSIFICATION_DELETE
+  
+
+
+  PROPAGATED_CLASSIFICATION_UPDATE
+  
+
+
+  TERM_ADD
+  
+
+
+  TERM_DELETE
+  
+
+
+  
+
+
+  
+Generated by http://enunciate.webcohesion.com;>Enunciate.
+  
+
+
+  
+
+  
+
+
+  
+  https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js";>
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js";>
+
+  
+  https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"; 
type="text/javascript">
+  
+$(function() {
+  $(".clickable-row").click(function() {
+window.document.location = $(this).data("href");
+  });
+
+  $('[data-toggle="tooltip"]').tooltip()
+});
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/json_EntityAuditEventV2.html
--
diff --git a/1.0.0/api/v2/json_EntityAuditEventV2.html 
b/1.0.0/api/v2/json_EntityAuditEventV2.html
new file mode 100644
index 000..0008e6c
--- /dev/null
+++ b/1.0.0/api/v2/json_EntityAuditEventV2.html
@@ -0,0 +1,265 @@
+
+
+
+  
+  
+  
+  
+
+  Atlas REST API: EntityAuditEventV2
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: 
EntityAuditEventV2
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  EntityAuditEventV2
+
+
+  EntityAuditEventV2 Data Type
+
+  Structure of v2 entity audit event
+
+  
+  
+
+  
+Properties
+
+
+  name
+  data type
+  description
+
+
+
+
+action
+
+EntityAuditActionV2
+
+
+
+
+
+
+details
+
+string
+
+
+
+
+
+
+entity
+
+AtlasEntity
+
+
+
+
+
+
+entityId
+
+string
+
+
+
+
+
+
+eventKey
+
+string
+
+
+
+
+
+
+timestamp
+
+number
+
+
+
+
+
+
+type
+
+EntityAuditType
+
+
+

[43/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/json_Operator.html
--
diff --git a/1.0.0/api/v2/json_Operator.html b/1.0.0/api/v2/json_Operator.html
new file mode 100644
index 000..929069a
--- /dev/null
+++ b/1.0.0/api/v2/json_Operator.html
@@ -0,0 +1,192 @@
+
+
+
+  
+  
+  
+  
+
+  Atlas REST API: Operator
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: Operator
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  LT
+  GT
+  LTE
+  GTE
+  EQ
+  NEQ
+  IN
+  LIKE
+  STARTS_WITH
+  ENDS_WITH
+  CONTAINS
+  CONTAINS_ANY
+  CONTAINS_ALL
+  IS_NULL
+  NOT_NULL
+  
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  Operator
+
+
+  Operator Data Type
+
+  Supported search operations
+Logical comparision operators can only be used with numbers or dates
+IN, LIKE, startsWith, endsWith, CONTAINS can only be used with strings or 
text
+
+  
+  
+
+  
+Values
+
+
+  value
+  description
+
+
+
+
+  LT
+  
+
+
+  GT
+  
+
+
+  LTE
+  
+
+
+  GTE
+  
+
+
+  EQ
+  
+
+
+  NEQ
+  
+
+
+  IN
+  
+
+
+  LIKE
+  
+
+
+  STARTS_WITH
+  
+
+
+  ENDS_WITH
+  
+
+
+  CONTAINS
+  
+
+
+  CONTAINS_ANY
+  
+
+
+  CONTAINS_ALL
+  
+
+
+  IS_NULL
+  
+
+
+  NOT_NULL
+  
+
+
+  
+
+
+  
+Generated by http://enunciate.webcohesion.com;>Enunciate.
+  
+
+
+  
+
+  
+
+
+  
+  https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js";>
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js";>
+
+  
+  https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"; 
type="text/javascript">
+  
+$(function() {
+  $(".clickable-row").click(function() {
+window.document.location = $(this).data("href");
+  });
+
+  $('[data-toggle="tooltip"]').tooltip()
+});
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/json_PList.html
--
diff --git a/1.0.0/api/v2/json_PList.html b/1.0.0/api/v2/json_PList.html
index d30fdb9..6795bee 100644
--- a/1.0.0/api/v2/json_PList.html
+++ b/1.0.0/api/v2/json_PList.html
@@ -79,7 +79,7 @@
 
 
 
-list
+list
 
 array of object
 
@@ -88,7 +88,7 @@
 
 
 
-startIndex
+pageSize
 
 number
 
@@ -97,36 +97,36 @@
 
 
 
-pageSize
+sortBy
 
-number
+string
 
 
 
 
 
 
-totalCount
+sortType
 
-number
+SortType
 
 
 
 
 
 
-sortType
+startIndex
 
-SortType
+number
 
 
 
 
 
 
-sortBy
+totalCount
 
-string
+number
 
 
 
@@ -139,11 +139,11 @@
   
   {
   list : [ { }, { } ],
-  startIndex : 12345,
   pageSize : 12345,
-  totalCount : 12345,
-  sortType : NONE,
-  sortBy : ...
+  sortBy : ...,
+  sortType : ASC,
+  startIndex : 12345,
+  totalCount : 12345
 }
 
 

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.0.0/api/v2/json_PropagateTags.html
--
diff --git a/1.0.0/api/v2/json_PropagateTags.html 
b/1.0.0/api/v2/json_PropagateTags.html
new file mode 100644
index 000..809a68d
--- /dev/null
+++ b/1.0.0/api/v2/json_PropagateTags.html
@@ -0,0 +1,150 @@
+
+
+
+  
+  
+  
+  
+
+  Atlas REST API: PropagateTags
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas 

[01/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
Repository: atlas-website
Updated Branches:
  refs/heads/asf-site ab60d06fb -> 3fad5df3c


http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/xml_ns0_PList.html
--
diff --git a/1.1.0/api/v2/xml_ns0_PList.html b/1.1.0/api/v2/xml_ns0_PList.html
index 4d0f074..e622c1d 100644
--- a/1.1.0/api/v2/xml_ns0_PList.html
+++ b/1.1.0/api/v2/xml_ns0_PList.html
@@ -86,7 +86,7 @@
 
 
 
-list
+list
 
 list of anyType
 
@@ -104,7 +104,7 @@
 
 
 
-pageSize
+pageSize
 
 int
 
@@ -122,7 +122,7 @@
 
 
 
-sortBy
+sortBy
 
 string
 
@@ -140,7 +140,7 @@
 
 
 
-sortType
+sortType
 
 sortType
 
@@ -158,7 +158,7 @@
 
 
 
-startIndex
+startIndex
 
 long
 
@@ -176,7 +176,7 @@
 
 
 
-totalCount
+totalCount
 
 long
 



[12/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/json_AtlasGlossaryExtInfo.html
--
diff --git a/1.1.0/api/v2/json_AtlasGlossaryExtInfo.html 
b/1.1.0/api/v2/json_AtlasGlossaryExtInfo.html
new file mode 100644
index 000..58b5bd2
--- /dev/null
+++ b/1.1.0/api/v2/json_AtlasGlossaryExtInfo.html
@@ -0,0 +1,1089 @@
+
+
+
+  
+  
+  
+  
+
+  Atlas REST API: AtlasGlossaryExtInfo
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: 
AtlasGlossaryExtInfo
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  AtlasGlossaryExtInfo
+
+
+  AtlasGlossaryExtInfo Data 
Type
+
+  
+
+  
+  
+
+  
+Properties
+
+
+  name
+  data type
+  description
+
+
+
+
+categoryInfo
+
+map of AtlasGlossaryCategory
+
+
+
+
+
+
+termInfo
+
+map of AtlasGlossaryTerm
+
+
+
+
+
+
+
+  Properties inherited from AtlasGlossary
+
+
+
+  categories
+  array of AtlasRelatedCategoryHeader
+
+  
+
+
+  language
+  string
+
+  
+
+
+  terms
+  array of AtlasRelatedTermHeader
+
+  
+
+
+  usage
+  string
+
+  
+
+
+
+  Properties inherited from AtlasGlossaryBaseObject
+
+
+
+  classifications
+  array of AtlasClassification
+
+  
+
+
+  longDescription
+  string
+
+  
+
+
+  name
+  string
+
+  
+
+
+  qualifiedName
+  string
+
+  
+
+
+  shortDescription
+  string
+
+  
+
+
+
+  Properties inherited from AtlasBaseModelObject
+
+
+
+  guid
+  string
+
+  
+
+
+  
+
+  Example
+  
+  {
+  categoryInfo : {
+property1 : {
+  anchor : {
+displayText : ...,
+glossaryGuid : ...,
+relationGuid : ...
+  },
+  childrenCategories : [ {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  }, {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  } ],
+  parentCategory : {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  },
+  terms : [ {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : DEPRECATED,
+steward : ...,
+termGuid : ...
+  }, {
+description : ...,
+displayText : ...,
+expression : ...,
+relationGuid : ...,
+source : ...,
+status : OTHER,
+steward : ...,
+termGuid : ...
+  } ],
+  classifications : [ {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  }, {
+entityGuid : ...,
+entityStatus : DELETED,
+propagate : true,
+removePropagationsOnEntityDelete : true,
+validityPeriods : [ { }, { } ],
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  } ],
+  longDescription : ...,
+  name : ...,
+  qualifiedName : ...,
+  shortDescription : ...,
+  guid : ...
+},
+property2 : {
+  anchor : {
+displayText : ...,
+glossaryGuid : ...,
+relationGuid : ...
+  },
+  childrenCategories : [ {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  }, {
+categoryGuid : ...,
+description : ...,
+displayText : ...,
+parentCategoryGuid : ...,
+relationGuid : ...
+  } ],
+  

[11/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/json_AtlasQueryType.html
--
diff --git a/1.1.0/api/v2/json_AtlasQueryType.html 
b/1.1.0/api/v2/json_AtlasQueryType.html
index 71a2707..c8f709f 100644
--- a/1.1.0/api/v2/json_AtlasQueryType.html
+++ b/1.1.0/api/v2/json_AtlasQueryType.html
@@ -15,7 +15,7 @@
   https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
 
   
-  
+  
 
   
   
+
+  Atlas REST API: AtlasRelatedCategoryHeader
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: 
AtlasRelatedCategoryHeader
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  AtlasRelatedCategoryHeader
+
+
+  AtlasRelatedCategoryHeader Data 
Type
+
+  
+
+  
+  
+
+  
+Properties
+
+
+  name
+  data type
+  description
+
+
+
+
+categoryGuid
+
+string
+
+
+
+
+
+
+description
+
+string
+
+
+
+
+
+
+displayText
+
+string
+
+
+
+
+
+
+parentCategoryGuid
+
+string
+
+
+
+
+
+
+relationGuid
+
+string
+
+
+
+
+
+
+  
+
+  Example
+  
+  {
+  categoryGuid : ...,
+  description : ...,
+  displayText : ...,
+  parentCategoryGuid : ...,
+  relationGuid : ...
+}
+
+
+  
+Generated by http://enunciate.webcohesion.com;>Enunciate.
+  
+
+
+  
+
+  
+
+
+  
+  https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js";>
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js";>
+
+  
+  https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"; 
type="text/javascript">
+  
+$(function() {
+  $(".clickable-row").click(function() {
+window.document.location = $(this).data("href");
+  });
+
+  $('[data-toggle="tooltip"]').tooltip()
+});
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/json_AtlasRelatedObjectId.html
--
diff --git a/1.1.0/api/v2/json_AtlasRelatedObjectId.html 
b/1.1.0/api/v2/json_AtlasRelatedObjectId.html
new file mode 100644
index 000..22fe609
--- /dev/null
+++ b/1.1.0/api/v2/json_AtlasRelatedObjectId.html
@@ -0,0 +1,205 @@
+
+
+
+  
+  
+  
+  
+
+  Atlas REST API: AtlasRelatedObjectId
+
+  
+  
+
+  
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css;>
+
+  
+  
+
+  
+  
+
+
+
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+Atlas REST API: 
AtlasRelatedObjectId
+  
+  
+
+  Resources
+  Data Types
+
+  
+
+  
+
+  
+
+  
+
+  Back to 
Top
+
+  
+
+  
+
+  Home
+  JSON
+  AtlasRelatedObjectId
+
+
+  AtlasRelatedObjectId Data 
Type
+
+  Reference to an object-instance of AtlasEntity type used in 
relationship attribute values
+
+  
+  
+
+  
+Properties
+
+
+  name
+  data type
+  description
+
+
+
+
+displayText
+
+string
+
+
+
+
+
+
+entityStatus
+
+Status
+
+
+
+
+
+
+relationshipAttributes
+
+AtlasStruct
+
+
+
+
+
+
+relationshipGuid
+
+string
+
+
+
+
+
+
+relationshipStatus
+
+Status
+
+
+
+
+
+
+
+  Properties inherited from AtlasObjectId
+
+
+
+  guid
+  string
+
+  
+
+
+  typeName
+  string
+
+  
+
+
+  uniqueAttributes
+  map of object
+
+  
+
+
+  
+
+  Example
+  
+  {
+  displayText : ...,
+  entityStatus : DELETED,
+  relationshipAttributes : {
+attributes : {
+  property1 : { },
+  property2 : { }
+},
+typeName : ...
+  },
+  relationshipGuid : ...,
+  relationshipStatus : ACTIVE,
+  guid : ...,
+  typeName : ...,
+  

[27/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/v2/apidocs/ui/css/screen.css
--
diff --git a/1.1.0/api/v2/apidocs/ui/css/screen.css 
b/1.1.0/api/v2/apidocs/ui/css/screen.css
deleted file mode 100644
index 1f069f6..000
--- a/1.1.0/api/v2/apidocs/ui/css/screen.css
+++ /dev/null
@@ -1 +0,0 @@
-.swagger-section pre 
code{display:block;padding:.5em;background:#f0f0f0}.swagger-section pre 
.clojure .built_in,.swagger-section pre .lisp .title,.swagger-section pre 
.nginx .title,.swagger-section pre .subst,.swagger-section pre .tag 
.title,.swagger-section pre code{color:#000}.swagger-section pre 
.addition,.swagger-section pre .aggregate,.swagger-section pre .apache 
.cbracket,.swagger-section pre .apache .tag,.swagger-section pre .bash 
.variable,.swagger-section pre .constant,.swagger-section pre .django 
.variable,.swagger-section pre .erlang_repl .function_or_atom,.swagger-section 
pre .flow,.swagger-section pre .markdown .header,.swagger-section pre 
.parent,.swagger-section pre .preprocessor,.swagger-section pre .ruby 
.symbol,.swagger-section pre .ruby .symbol .string,.swagger-section pre .rules 
.value,.swagger-section pre .rules .value .number,.swagger-section pre 
.smalltalk .class,.swagger-section pre .stream,.swagger-section pre 
.string,.swagger-section pre .tag .value,.swagge
 r-section pre .template_tag,.swagger-section pre .tex 
.command,.swagger-section pre .tex .special,.swagger-section pre 
.title{color:#800}.swagger-section pre .annotation,.swagger-section pre 
.chunk,.swagger-section pre .comment,.swagger-section pre .diff 
.header,.swagger-section pre .markdown .blockquote,.swagger-section pre 
.template_comment{color:#888}.swagger-section pre .change,.swagger-section pre 
.date,.swagger-section pre .go .constant,.swagger-section pre 
.literal,.swagger-section pre .markdown .bullet,.swagger-section pre .markdown 
.link_url,.swagger-section pre .number,.swagger-section pre 
.regexp,.swagger-section pre .smalltalk .char,.swagger-section pre .smalltalk 
.symbol{color:#080}.swagger-section pre .apache .sqbracket,.swagger-section pre 
.array,.swagger-section pre .attr_selector,.swagger-section pre .clojure 
.attribute,.swagger-section pre .coffeescript .property,.swagger-section pre 
.decorator,.swagger-section pre .deletion,.swagger-section pre 
.doctype,.swagger-s
 ection pre .envvar,.swagger-section pre .erlang_repl 
.reserved,.swagger-section pre .filter .argument,.swagger-section pre 
.important,.swagger-section pre .javadoc,.swagger-section pre 
.label,.swagger-section pre .localvars,.swagger-section pre .markdown 
.link_label,.swagger-section pre .nginx .built_in,.swagger-section pre 
.pi,.swagger-section pre .prompt,.swagger-section pre .pseudo,.swagger-section 
pre .ruby .string,.swagger-section pre .shebang,.swagger-section pre .tex 
.formula,.swagger-section pre .vhdl .attribute{color:#88f}.swagger-section pre 
.aggregate,.swagger-section pre .apache .tag,.swagger-section pre .bash 
.variable,.swagger-section pre .built_in,.swagger-section pre .css 
.tag,.swagger-section pre .go .typename,.swagger-section pre 
.id,.swagger-section pre .javadoctag,.swagger-section pre 
.keyword,.swagger-section pre .markdown .strong,.swagger-section pre 
.phpdoc,.swagger-section pre .request,.swagger-section pre .smalltalk 
.class,.swagger-section pre .status,.swagg
 er-section pre .tex .command,.swagger-section pre .title,.swagger-section pre 
.winutils,.swagger-section pre .yardoctag{font-weight:700}.swagger-section pre 
.markdown .emphasis{font-style:italic}.swagger-section pre .nginx 
.built_in{font-weight:400}.swagger-section pre .coffeescript 
.javascript,.swagger-section pre .javascript .xml,.swagger-section pre .tex 
.formula,.swagger-section pre .xml .cdata,.swagger-section pre .xml 
.css,.swagger-section pre .xml .javascript,.swagger-section pre .xml 
.vbscript{opacity:.5}.swagger-section 
.hljs{display:block;overflow-x:auto;padding:.5em;background:#f0f0f0}.swagger-section
 .hljs,.swagger-section .hljs-subst{color:#444}.swagger-section 
.hljs-attribute,.swagger-section .hljs-doctag,.swagger-section 
.hljs-keyword,.swagger-section .hljs-meta-keyword,.swagger-section 
.hljs-name,.swagger-section .hljs-selector-tag{font-weight:700}.swagger-section 
.hljs-addition,.swagger-section .hljs-built_in,.swagger-section 
.hljs-bullet,.swagger-section .hljs-code
 ,.swagger-section .hljs-literal{color:#1f811f}.swagger-section 
.hljs-link,.swagger-section .hljs-regexp,.swagger-section 
.hljs-selector-attr,.swagger-section .hljs-selector-pseudo,.swagger-section 
.hljs-symbol,.swagger-section .hljs-template-variable,.swagger-section 
.hljs-variable{color:#bc6060}.swagger-section .hljs-deletion,.swagger-section 
.hljs-number,.swagger-section .hljs-quote,.swagger-section 
.hljs-selector-class,.swagger-section .hljs-selector-id,.swagger-section 
.hljs-string,.swagger-section .hljs-template-tag,.swagger-section 

[39/51] [partial] atlas-website git commit: Updated REST docs for 1.x releases

2018-10-21 Thread apoorvnaik
http://git-wip-us.apache.org/repos/asf/atlas-website/blob/3fad5df3/1.1.0/api/index.html
--
diff --git a/1.1.0/api/index.html b/1.1.0/api/index.html
deleted file mode 100644
index 287e14c..000
--- a/1.1.0/api/index.html
+++ /dev/null
@@ -1,157 +0,0 @@
-
-
-
-
-
-  
-
-  
-
-  
-  
-
-  Apache Data Governance APIs
-
-  
-  
-
-  
-  
-  
-
-  
-  
-
-
-
-
-
-  
-
-  
-Apache Data Governance APIs
-
-  
-REST
-Data Model
-Files and 
Libraries
-  
-
-
-  
-
-  Home
-
-  
-
-  
-
-
-
-  REST Resources
-  
-This API supports a http://en.wikipedia.org/wiki/Representational_State_Transfer;>Representational
 State Transfer (REST)
-model for accessing a set of resources through a fixed set of 
operations. The following resources are accessible through the RESTful model:
-  
-  
-AdminResource
-DataSetLineageResource
-EntityResource
-EntityService
-LineageResource
-MetadataDiscoveryResource
-TaxonomyService
-TypesResource
-  
-  
-The REST resources expose a data model that is supported by a set of 
client-side libraries that are made available on the
-files and libraries page.
-  
-  
-There is also a WADL document 
describing the REST API.
-  
-
-Data Model
-
-
-  All endpoints act on a common set of data. The data can be represented 
with difference media (i.e. "MIME") types, depending on the endpoint
-  that consumes and/or produces the data. The data can described by http://www.w3.org/XML/Schema;>XML Schema, which definitively
-  describes the XML representation of the data, but is also useful for 
describing the other formats of the data, such as http://json.org;>JSON.
-
-
-
-  This document will describe the data using terms based on http://www.w3.org/XML/Schema;>XML Schema.
-  Data can be grouped by namespace, with a schema document describing the 
elements and types of the namespace.
-  Generally speaking, types define the structure of the data and 
elements are instances of a type. For example,
-  elements are usually produced by (or consumed by) a REST 
endpoint, and the structure of each element is described by
-  its type.
-
-
-
-  Namespace "ns0"
-  
-
-  Namespace URI:
-  (default namespace)
-
-
-  XSD:
-  ns0.xsd
-
-  
-
-Data Elements
-
-
-  errorBean
-  errorBean
-  results
-
-
-Data Types
-
-  errorBean
-  errorBean
-  results
-
-
-  
-
-
-  
-Generated by http://enunciate.codehaus.org;>Enunciate.
-  
-
-   
-
-  
-
-  
-  
-  window.jQuery || document.write("