{
  "swagger" : "2.0",
  "info" : {
    "version" : "1.0",
    "title" : "K2 for Google Cloud Natural Language",
    "description" : "TODO: Add Description",
    "contact" : { }
  },
  "host" : "language.googleapis.com",
  "basePath" : "/v1",
  "schemes" : [ "https" ],
  "consumes" : [ "application/json" ],
  "produces" : [ "application/json" ],
  "paths" : {
    "/documents:analyzeSentiment" : {
      "post" : {
        "description" : "Use the Google Natural Language API to analyze sentiment of Text using the API Key authentication method.",
        "summary" : "Analyze Sentiement",
        "tags" : [ "Misc" ],
        "operationId" : "AnalyzeSentiment",
        "deprecated" : false,
        "produces" : [ "application/json; charset=UTF-8" ],
        "parameters" : [ {
          "name" : "Content-Type",
          "in" : "header",
          "required" : true,
          "type" : "string",
          "description" : ""
        }, {
          "name" : "Body",
          "in" : "body",
          "required" : true,
          "description" : "",
          "schema" : {
            "$ref" : "#/definitions/AnalyzeSentiementRequest"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "",
            "schema" : {
              "$ref" : "#/definitions/AnalyzeSentiementResponse"
            },
            "examples" : {
              "application/json; charset=UTF-8" : {
                "documentSentiment" : {
                  "magnitude" : 0.9,
                  "score" : 0.9
                },
                "language" : "en",
                "sentences" : [ {
                  "text" : {
                    "content" : "Enjoy your vacation!",
                    "beginOffset" : 0
                  },
                  "sentiment" : {
                    "magnitude" : 0.9,
                    "score" : 0.9
                  }
                } ]
              }
            },
            "headers" : {
              "Vary" : {
                "type" : "string",
                "default" : "Origin"
              },
              "Content-Encoding" : {
                "type" : "string",
                "default" : "gzip"
              },
              "Date" : {
                "type" : "string",
                "default" : "Thu, 15 Aug 2019 04:26:34 GMT"
              },
              "Server" : {
                "type" : "string",
                "default" : "ESF"
              },
              "Cache-Control" : {
                "type" : "string",
                "default" : "private"
              },
              "X-XSS-Protection" : {
                "type" : "string",
                "default" : "0"
              },
              "X-Frame-Options" : {
                "type" : "string",
                "default" : "SAMEORIGIN"
              },
              "X-Content-Type-Options" : {
                "type" : "string",
                "default" : "nosniff"
              },
              "Alt-Svc" : {
                "type" : "string",
                "default" : "quic=\":443\"; ma=2592000; v=\"46,43,39\""
              },
              "Transfer-Encoding" : {
                "type" : "string",
                "default" : "chunked"
              }
            }
          }
        },
        "security" : [ ]
      }
    },
    "/documents:analyzeEntities" : {
      "post" : {
        "description" : "Use the Google Natural Language API to analyze entities of Text using the API Key authentication method.",
        "summary" : "Analyze Entities",
        "tags" : [ "Misc" ],
        "operationId" : "Analyze Entities",
        "deprecated" : false,
        "produces" : [ "application/json; charset=UTF-8" ],
        "parameters" : [ {
          "name" : "Content-Type",
          "in" : "header",
          "required" : true,
          "type" : "string",
          "description" : ""
        }, {
          "name" : "Body",
          "in" : "body",
          "required" : true,
          "description" : "",
          "schema" : {
            "$ref" : "#/definitions/AnalyzeEntitiesRequest"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "",
            "schema" : {
              "$ref" : "#/definitions/AnalyzeEntities"
            },
            "examples" : {
              "application/json; charset=UTF-8" : {
                "entities" : [ {
                  "name" : "Trump",
                  "type" : "PERSON",
                  "metadata" : {
                    "mid" : "/m/0cqt90",
                    "wikipedia_url" : "https://en.wikipedia.org/wiki/Donald_Trump"
                  },
                  "salience" : 0.7936003,
                  "mentions" : [ {
                    "text" : {
                      "content" : "Trump",
                      "beginOffset" : 10
                    },
                    "type" : "PROPER"
                  }, {
                    "text" : {
                      "content" : "President",
                      "beginOffset" : 0
                    },
                    "type" : "COMMON"
                  } ]
                }, {
                  "name" : "White House",
                  "type" : "LOCATION",
                  "metadata" : {
                    "mid" : "/m/081sq",
                    "wikipedia_url" : "https://en.wikipedia.org/wiki/White_House"
                  },
                  "salience" : 0.09172433,
                  "mentions" : [ {
                    "text" : {
                      "content" : "White House",
                      "beginOffset" : 36
                    },
                    "type" : "PROPER"
                  } ]
                }, {
                  "name" : "Pennsylvania Ave NW",
                  "type" : "LOCATION",
                  "metadata" : {
                    "mid" : "/g/1tgb87cq"
                  },
                  "salience" : 0.085507184,
                  "mentions" : [ {
                    "text" : {
                      "content" : "Pennsylvania Ave NW",
                      "beginOffset" : 65
                    },
                    "type" : "PROPER"
                  } ]
                }, {
                  "name" : "Washington, DC",
                  "type" : "LOCATION",
                  "metadata" : {
                    "mid" : "/m/0rh6k",
                    "wikipedia_url" : "https://en.wikipedia.org/wiki/Washington,_D.C."
                  },
                  "salience" : 0.029168168,
                  "mentions" : [ {
                    "text" : {
                      "content" : "Washington, DC",
                      "beginOffset" : 86
                    },
                    "type" : "PROPER"
                  } ]
                }, {
                  "name" : "October 7",
                  "type" : "DATE",
                  "metadata" : {
                    "day" : "7",
                    "month" : "10"
                  },
                  "salience" : 0,
                  "mentions" : [ {
                    "text" : {
                      "content" : "October 7",
                      "beginOffset" : 105
                    },
                    "type" : "TYPE_UNKNOWN"
                  } ]
                }, {
                  "name" : "1600 Pennsylvania Ave NW, Washington, DC",
                  "type" : "ADDRESS",
                  "metadata" : {
                    "sublocality" : "Fort Lesley J. McNair",
                    "locality" : "Washington",
                    "broad_region" : "District of Columbia",
                    "street_name" : "Pennsylvania Avenue Northwest",
                    "narrow_region" : "District of Columbia",
                    "street_number" : "1600",
                    "country" : "US"
                  },
                  "salience" : 0,
                  "mentions" : [ {
                    "text" : {
                      "content" : "1600 Pennsylvania Ave NW, Washington, DC",
                      "beginOffset" : 60
                    },
                    "type" : "TYPE_UNKNOWN"
                  } ]
                }, {
                  "name" : "1600",
                  "type" : "NUMBER",
                  "metadata" : {
                    "value" : "1600"
                  },
                  "salience" : 0,
                  "mentions" : [ {
                    "text" : {
                      "content" : "1600",
                      "beginOffset" : 60
                    },
                    "type" : "TYPE_UNKNOWN"
                  } ]
                }, {
                  "name" : "7",
                  "type" : "NUMBER",
                  "metadata" : {
                    "value" : "7"
                  },
                  "salience" : 0,
                  "mentions" : [ {
                    "text" : {
                      "content" : "7",
                      "beginOffset" : 113
                    },
                    "type" : "TYPE_UNKNOWN"
                  } ]
                } ],
                "language" : "en"
              }
            },
            "headers" : {
              "Vary" : {
                "type" : "string",
                "default" : "Origin"
              },
              "Content-Encoding" : {
                "type" : "string",
                "default" : "gzip"
              },
              "Date" : {
                "type" : "string",
                "default" : "Thu, 15 Aug 2019 04:33:32 GMT"
              },
              "Server" : {
                "type" : "string",
                "default" : "ESF"
              },
              "Cache-Control" : {
                "type" : "string",
                "default" : "private"
              },
              "X-XSS-Protection" : {
                "type" : "string",
                "default" : "0"
              },
              "X-Frame-Options" : {
                "type" : "string",
                "default" : "SAMEORIGIN"
              },
              "X-Content-Type-Options" : {
                "type" : "string",
                "default" : "nosniff"
              },
              "Alt-Svc" : {
                "type" : "string",
                "default" : "quic=\":443\"; ma=2592000; v=\"46,43,39\""
              },
              "Transfer-Encoding" : {
                "type" : "string",
                "default" : "chunked"
              }
            }
          }
        }
      }
    },
    "/documents:analyzeSyntax" : {
      "post" : {
        "description" : "Use the Google Natural Language API to analyze syntax of Text using the API Key authentication method.",
        "summary" : "Analyze Syntax",
        "tags" : [ "Misc" ],
        "operationId" : "Analyze Syntax",
        "deprecated" : false,
        "produces" : [ "application/json; charset=UTF-8" ],
        "parameters" : [{
          "name" : "Content-Type",
          "in" : "header",
          "required" : true,
          "type" : "string",
          "description" : ""
        }, {
          "name" : "Body",
          "in" : "body",
          "required" : true,
          "description" : "",
          "schema" : {
            "$ref" : "#/definitions/AnalyzeSyntaxRequest"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "",
            "schema" : {
              "$ref" : "#/definitions/AnalyzeSyntax"
            },
            "examples" : {
              "application/json; charset=UTF-8" : {
                "sentences" : [ {
                  "text" : {
                    "content" : "President Trump will speak from the White House, located at 1600 Pennsylvania Ave NW, Washington, DC, on October 7.",
                    "beginOffset" : 0
                  }
                } ],
                "tokens" : [ {
                  "text" : {
                    "content" : "President",
                    "beginOffset" : 0
                  },
                  "partOfSpeech" : {
                    "tag" : "NOUN",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "SINGULAR",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 1,
                    "label" : "TITLE"
                  },
                  "lemma" : "President"
                }, {
                  "text" : {
                    "content" : "Trump",
                    "beginOffset" : 10
                  },
                  "partOfSpeech" : {
                    "tag" : "NOUN",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "SINGULAR",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 3,
                    "label" : "NSUBJ"
                  },
                  "lemma" : "Trump"
                }, {
                  "text" : {
                    "content" : "will",
                    "beginOffset" : 16
                  },
                  "partOfSpeech" : {
                    "tag" : "VERB",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "NUMBER_UNKNOWN",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER_UNKNOWN",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 3,
                    "label" : "AUX"
                  },
                  "lemma" : "will"
                }, {
                  "text" : {
                    "content" : "speak",
                    "beginOffset" : 21
                  },
                  "partOfSpeech" : {
                    "tag" : "VERB",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "NUMBER_UNKNOWN",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER_UNKNOWN",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 3,
                    "label" : "ROOT"
                  },
                  "lemma" : "speak"
                }, {
                  "text" : {
                    "content" : "from",
                    "beginOffset" : 27
                  },
                  "partOfSpeech" : {
                    "tag" : "ADP",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "NUMBER_UNKNOWN",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER_UNKNOWN",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 3,
                    "label" : "PREP"
                  },
                  "lemma" : "from"
                }, {
                  "text" : {
                    "content" : "the",
                    "beginOffset" : 32
                  },
                  "partOfSpeech" : {
                    "tag" : "DET",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "NUMBER_UNKNOWN",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER_UNKNOWN",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 7,
                    "label" : "DET"
                  },
                  "lemma" : "the"
                }, {
                  "text" : {
                    "content" : "White",
                    "beginOffset" : 36
                  },
                  "partOfSpeech" : {
                    "tag" : "NOUN",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "SINGULAR",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 7,
                    "label" : "NN"
                  },
                  "lemma" : "White"
                }, {
                  "text" : {
                    "content" : "House",
                    "beginOffset" : 42
                  },
                  "partOfSpeech" : {
                    "tag" : "NOUN",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "SINGULAR",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 4,
                    "label" : "POBJ"
                  },
                  "lemma" : "House"
                }, {
                  "text" : {
                    "content" : ",",
                    "beginOffset" : 47
                  },
                  "partOfSpeech" : {
                    "tag" : "PUNCT",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "NUMBER_UNKNOWN",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER_UNKNOWN",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 7,
                    "label" : "P"
                  },
                  "lemma" : ","
                }, {
                  "text" : {
                    "content" : "located",
                    "beginOffset" : 49
                  },
                  "partOfSpeech" : {
                    "tag" : "VERB",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "NUMBER_UNKNOWN",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER_UNKNOWN",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "PAST",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 7,
                    "label" : "VMOD"
                  },
                  "lemma" : "locate"
                }, {
                  "text" : {
                    "content" : "at",
                    "beginOffset" : 57
                  },
                  "partOfSpeech" : {
                    "tag" : "ADP",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "NUMBER_UNKNOWN",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER_UNKNOWN",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 9,
                    "label" : "PREP"
                  },
                  "lemma" : "at"
                }, {
                  "text" : {
                    "content" : "1600",
                    "beginOffset" : 60
                  },
                  "partOfSpeech" : {
                    "tag" : "NUM",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "NUMBER_UNKNOWN",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER_UNKNOWN",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 14,
                    "label" : "NUM"
                  },
                  "lemma" : "1600"
                }, {
                  "text" : {
                    "content" : "Pennsylvania",
                    "beginOffset" : 65
                  },
                  "partOfSpeech" : {
                    "tag" : "NOUN",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "SINGULAR",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 14,
                    "label" : "NN"
                  },
                  "lemma" : "Pennsylvania"
                }, {
                  "text" : {
                    "content" : "Ave",
                    "beginOffset" : 78
                  },
                  "partOfSpeech" : {
                    "tag" : "NOUN",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "SINGULAR",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 14,
                    "label" : "NN"
                  },
                  "lemma" : "Ave"
                }, {
                  "text" : {
                    "content" : "NW",
                    "beginOffset" : 82
                  },
                  "partOfSpeech" : {
                    "tag" : "NOUN",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "SINGULAR",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 10,
                    "label" : "POBJ"
                  },
                  "lemma" : "NW"
                }, {
                  "text" : {
                    "content" : ",",
                    "beginOffset" : 84
                  },
                  "partOfSpeech" : {
                    "tag" : "PUNCT",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "NUMBER_UNKNOWN",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER_UNKNOWN",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 14,
                    "label" : "P"
                  },
                  "lemma" : ","
                }, {
                  "text" : {
                    "content" : "Washington",
                    "beginOffset" : 86
                  },
                  "partOfSpeech" : {
                    "tag" : "NOUN",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "SINGULAR",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 14,
                    "label" : "APPOS"
                  },
                  "lemma" : "Washington"
                }, {
                  "text" : {
                    "content" : ",",
                    "beginOffset" : 96
                  },
                  "partOfSpeech" : {
                    "tag" : "PUNCT",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "NUMBER_UNKNOWN",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER_UNKNOWN",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 16,
                    "label" : "P"
                  },
                  "lemma" : ","
                }, {
                  "text" : {
                    "content" : "DC",
                    "beginOffset" : 98
                  },
                  "partOfSpeech" : {
                    "tag" : "NOUN",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "SINGULAR",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 16,
                    "label" : "APPOS"
                  },
                  "lemma" : "DC"
                }, {
                  "text" : {
                    "content" : ",",
                    "beginOffset" : 100
                  },
                  "partOfSpeech" : {
                    "tag" : "PUNCT",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "NUMBER_UNKNOWN",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER_UNKNOWN",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 14,
                    "label" : "P"
                  },
                  "lemma" : ","
                }, {
                  "text" : {
                    "content" : "on",
                    "beginOffset" : 102
                  },
                  "partOfSpeech" : {
                    "tag" : "ADP",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "NUMBER_UNKNOWN",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER_UNKNOWN",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 9,
                    "label" : "PREP"
                  },
                  "lemma" : "on"
                }, {
                  "text" : {
                    "content" : "October",
                    "beginOffset" : 105
                  },
                  "partOfSpeech" : {
                    "tag" : "NOUN",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "SINGULAR",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 20,
                    "label" : "POBJ"
                  },
                  "lemma" : "October"
                }, {
                  "text" : {
                    "content" : "7",
                    "beginOffset" : 113
                  },
                  "partOfSpeech" : {
                    "tag" : "NUM",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "NUMBER_UNKNOWN",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER_UNKNOWN",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 21,
                    "label" : "NUM"
                  },
                  "lemma" : "7"
                }, {
                  "text" : {
                    "content" : ".",
                    "beginOffset" : 114
                  },
                  "partOfSpeech" : {
                    "tag" : "PUNCT",
                    "aspect" : "ASPECT_UNKNOWN",
                    "case" : "CASE_UNKNOWN",
                    "form" : "FORM_UNKNOWN",
                    "gender" : "GENDER_UNKNOWN",
                    "mood" : "MOOD_UNKNOWN",
                    "number" : "NUMBER_UNKNOWN",
                    "person" : "PERSON_UNKNOWN",
                    "proper" : "PROPER_UNKNOWN",
                    "reciprocity" : "RECIPROCITY_UNKNOWN",
                    "tense" : "TENSE_UNKNOWN",
                    "voice" : "VOICE_UNKNOWN"
                  },
                  "dependencyEdge" : {
                    "headTokenIndex" : 3,
                    "label" : "P"
                  },
                  "lemma" : "."
                } ],
                "language" : "en"
              }
            },
            "headers" : {
              "Vary" : {
                "type" : "string",
                "default" : "Origin"
              },
              "Content-Encoding" : {
                "type" : "string",
                "default" : "gzip"
              },
              "Date" : {
                "type" : "string",
                "default" : "Thu, 15 Aug 2019 04:36:44 GMT"
              },
              "Server" : {
                "type" : "string",
                "default" : "ESF"
              },
              "Cache-Control" : {
                "type" : "string",
                "default" : "private"
              },
              "X-XSS-Protection" : {
                "type" : "string",
                "default" : "0"
              },
              "X-Frame-Options" : {
                "type" : "string",
                "default" : "SAMEORIGIN"
              },
              "X-Content-Type-Options" : {
                "type" : "string",
                "default" : "nosniff"
              },
              "Alt-Svc" : {
                "type" : "string",
                "default" : "quic=\":443\"; ma=2592000; v=\"46,43,39\""
              },
              "Transfer-Encoding" : {
                "type" : "string",
                "default" : "chunked"
              }
            }
          }
        }
      }
    },
    "/documents:analyzeEntitySentiment" : {
      "post" : {
        "description" : "Use the Google Natural Language API to analyze sentiment of Text using the API Key authentication method.",
        "summary" : "Analyze Entity Sentiment",
        "tags" : [ "Misc" ],
        "operationId" : "Analyze Entity Sentiment",
        "deprecated" : false,
        "produces" : [ "application/json; charset=UTF-8" ],
        "parameters" : [ {
          "name" : "Content-Type",
          "in" : "header",
          "required" : true,
          "type" : "string",
          "description" : ""
        }, {
          "name" : "Body",
          "in" : "body",
          "required" : true,
          "description" : "",
          "schema" : {
            "$ref" : "#/definitions/AnalyzeEntitySentimentRequest"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "",
            "schema" : {
              "$ref" : "#/definitions/AnalyzeEntitySentiment"
            },
            "examples" : {
              "application/json; charset=UTF-8" : {
                "entities" : [ {
                  "name" : "R&B music",
                  "type" : "WORK_OF_ART",
                  "metadata" : { },
                  "salience" : 0.5597628,
                  "mentions" : [ {
                    "text" : {
                      "content" : "R&B music",
                      "beginOffset" : 7
                    },
                    "type" : "COMMON",
                    "sentiment" : {
                      "magnitude" : 0.9,
                      "score" : 0.9
                    }
                  } ],
                  "sentiment" : {
                    "magnitude" : 0.9,
                    "score" : 0.9
                  }
                }, {
                  "name" : "Marvin Gaye",
                  "type" : "PERSON",
                  "metadata" : {
                    "mid" : "/m/012z8_",
                    "wikipedia_url" : "https://en.wikipedia.org/wiki/Marvin_Gaye"
                  },
                  "salience" : 0.18719898,
                  "mentions" : [ {
                    "text" : {
                      "content" : "Marvin Gaye",
                      "beginOffset" : 18
                    },
                    "type" : "PROPER",
                    "sentiment" : {
                      "magnitude" : 0.8,
                      "score" : 0.8
                    }
                  }, {
                    "text" : {
                      "content" : "Marvin Gaye",
                      "beginOffset" : 141
                    },
                    "type" : "PROPER",
                    "sentiment" : {
                      "magnitude" : 0.1,
                      "score" : -0.1
                    }
                  } ],
                  "sentiment" : {
                    "magnitude" : 1,
                    "score" : 0.3
                  }
                }, {
                  "name" : "best",
                  "type" : "OTHER",
                  "metadata" : { },
                  "salience" : 0.09577418,
                  "mentions" : [ {
                    "text" : {
                      "content" : "best",
                      "beginOffset" : 37
                    },
                    "type" : "COMMON",
                    "sentiment" : {
                      "magnitude" : 0.9,
                      "score" : 0.9
                    }
                  } ],
                  "sentiment" : {
                    "magnitude" : 0.9,
                    "score" : 0.9
                  }
                }, {
                  "name" : "one",
                  "type" : "OTHER",
                  "metadata" : { },
                  "salience" : 0.08869845,
                  "mentions" : [ {
                    "text" : {
                      "content" : "one",
                      "beginOffset" : 80
                    },
                    "type" : "COMMON",
                    "sentiment" : {
                      "magnitude" : 0.4,
                      "score" : 0.4
                    }
                  } ],
                  "sentiment" : {
                    "magnitude" : 0.4,
                    "score" : 0.4
                  }
                }, {
                  "name" : "What's Going On",
                  "type" : "WORK_OF_ART",
                  "metadata" : {
                    "mid" : "/m/01hpzcz",
                    "wikipedia_url" : "https://en.wikipedia.org/wiki/Wholy_Holy"
                  },
                  "salience" : 0.045231447,
                  "mentions" : [ {
                    "text" : {
                      "content" : "What's Going On",
                      "beginOffset" : 60
                    },
                    "type" : "PROPER",
                    "sentiment" : {
                      "magnitude" : 0,
                      "score" : 0
                    }
                  } ],
                  "sentiment" : {
                    "magnitude" : 0,
                    "score" : 0
                  }
                }, {
                  "name" : "songs",
                  "type" : "WORK_OF_ART",
                  "metadata" : { },
                  "salience" : 0.023334175,
                  "mentions" : [ {
                    "text" : {
                      "content" : "songs",
                      "beginOffset" : 99
                    },
                    "type" : "COMMON",
                    "sentiment" : {
                      "magnitude" : 0.8,
                      "score" : 0.8
                    }
                  } ],
                  "sentiment" : {
                    "magnitude" : 0.8,
                    "score" : 0.8
                  }
                } ],
                "language" : "en"
              }
            },
            "headers" : {
              "Vary" : {
                "type" : "string",
                "default" : "Origin"
              },
              "Content-Encoding" : {
                "type" : "string",
                "default" : "gzip"
              },
              "Date" : {
                "type" : "string",
                "default" : "Thu, 15 Aug 2019 04:39:21 GMT"
              },
              "Server" : {
                "type" : "string",
                "default" : "ESF"
              },
              "Cache-Control" : {
                "type" : "string",
                "default" : "private"
              },
              "X-XSS-Protection" : {
                "type" : "string",
                "default" : "0"
              },
              "X-Frame-Options" : {
                "type" : "string",
                "default" : "SAMEORIGIN"
              },
              "X-Content-Type-Options" : {
                "type" : "string",
                "default" : "nosniff"
              },
              "Alt-Svc" : {
                "type" : "string",
                "default" : "quic=\":443\"; ma=2592000; v=\"46,43,39\""
              },
              "Transfer-Encoding" : {
                "type" : "string",
                "default" : "chunked"
              }
            }
          }
        }
      }
    },
    "/documents:classifyText" : {
      "post" : {
        "description" : "Use the Google Natural Language API to classify content of Text using the API key authentication method.",
        "summary" : "Classify Content",
        "tags" : [ "Misc" ],
        "operationId" : "Classify Content",
        "deprecated" : false,
        "produces" : [ "application/json; charset=UTF-8" ],
        "parameters" : [ {
          "name" : "Content-Type",
          "in" : "header",
          "required" : true,
          "type" : "string",
          "description" : ""
        }, {
          "name" : "Body",
          "in" : "body",
          "required" : true,
          "description" : "",
          "schema" : {
            "$ref" : "#/definitions/ClassifyContentRequest"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "",
            "schema" : {
              "$ref" : "#/definitions/ClassifyContent"
            },
            "examples" : {
              "application/json; charset=UTF-8" : {
                "categories" : [ {
                  "name" : "/Computers & Electronics",
                  "confidence" : 0.61
                }, {
                  "name" : "/Internet & Telecom/Mobile & Wireless",
                  "confidence" : 0.53
                }, {
                  "name" : "/News",
                  "confidence" : 0.53
                } ]
              }
            },
            "headers" : {
              "Vary" : {
                "type" : "string",
                "default" : "Origin"
              },
              "Content-Encoding" : {
                "type" : "string",
                "default" : "gzip"
              },
              "Date" : {
                "type" : "string",
                "default" : "Thu, 15 Aug 2019 04:42:59 GMT"
              },
              "Server" : {
                "type" : "string",
                "default" : "ESF"
              },
              "Cache-Control" : {
                "type" : "string",
                "default" : "private"
              },
              "X-XSS-Protection" : {
                "type" : "string",
                "default" : "0"
              },
              "X-Frame-Options" : {
                "type" : "string",
                "default" : "SAMEORIGIN"
              },
              "X-Content-Type-Options" : {
                "type" : "string",
                "default" : "nosniff"
              },
              "Alt-Svc" : {
                "type" : "string",
                "default" : "quic=\":443\"; ma=2592000; v=\"46,43,39\""
              },
              "Transfer-Encoding" : {
                "type" : "string",
                "default" : "chunked"
              }
            }
          }
        }
      }
    }
  },
  "definitions" : {
    "AnalyzeSentiementRequest" : {
      "title" : "AnalyzeSentiementRequest",
      "example" : {
        "encodingType" : "UTF8",
        "document" : {
          "type" : "PLAIN_TEXT",
          "content" : "Enjoy your vacation!"
        }
      },
      "type" : "object",
      "properties" : {
        "encodingType" : {
          "type" : "string"
        },
        "document" : {
          "$ref" : "#/definitions/Document"
        }
      },
      "required" : [ "encodingType", "document" ]
    },
    "Document" : {
      "title" : "Document",
      "example" : {
        "type" : "PLAIN_TEXT",
        "content" : "Enjoy your vacation!"
      },
      "type" : "object",
      "properties" : {
        "type" : {
          "type" : "string"
        },
        "content" : {
          "type" : "string"
        }
      },
      "required" : [ "type", "content" ]
    },
    "AnalyzeSentiementResponse" : {
      "title" : "AnalyzeSentiementResponse",
      "example" : {
        "documentSentiment" : {
          "magnitude" : 0.9,
          "score" : 0.9
        },
        "language" : "en",
        "sentences" : [ {
          "text" : {
            "content" : "Enjoy your vacation!",
            "beginOffset" : 0
          },
          "sentiment" : {
            "magnitude" : 0.9,
            "score" : 0.9
          }
        } ]
      },
      "type" : "object",
      "properties" : {
        "documentSentiment" : {
          "$ref" : "#/definitions/DocumentSentiment"
        },
        "language" : {
          "type" : "string"
        },
        "sentences" : {
          "type" : "array",
          "items" : {
            "$ref" : "#/definitions/Sentence"
          }
        }
      },
      "required" : [ "documentSentiment", "language", "sentences" ]
    },
    "DocumentSentiment" : {
      "title" : "DocumentSentiment",
      "example" : {
        "magnitude" : 0.9,
        "score" : 0.9
      },
      "type" : "object",
      "properties" : {
        "magnitude" : {
          "type" : "number",
          "format" : "double"
        },
        "score" : {
          "type" : "number",
          "format" : "double"
        }
      },
      "required" : [ "magnitude", "score" ]
    },
    "Sentence" : {
      "title" : "Sentence",
      "example" : {
        "text" : {
          "content" : "Enjoy your vacation!",
          "beginOffset" : 0
        },
        "sentiment" : {
          "magnitude" : 0.9,
          "score" : 0.9
        }
      },
      "type" : "object",
      "properties" : {
        "text" : {
          "$ref" : "#/definitions/Text"
        },
        "sentiment" : {
          "$ref" : "#/definitions/Sentiment"
        }
      },
      "required" : [ "text", "sentiment" ]
    },
    "Text" : {
      "title" : "Text",
      "example" : {
        "content" : "Enjoy your vacation!",
        "beginOffset" : 0
      },
      "type" : "object",
      "properties" : {
        "content" : {
          "type" : "string"
        },
        "beginOffset" : {
          "type" : "integer",
          "format" : "int32"
        }
      },
      "required" : [ "content", "beginOffset" ]
    },
    "Sentiment" : {
      "title" : "Sentiment",
      "example" : {
        "magnitude" : 0.9,
        "score" : 0.9
      },
      "type" : "object",
      "properties" : {
        "magnitude" : {
          "type" : "number",
          "format" : "double"
        },
        "score" : {
          "type" : "number",
          "format" : "double"
        }
      },
      "required" : [ "magnitude", "score" ]
    },
    "AnalyzeEntitiesRequest" : {
      "title" : "AnalyzeEntitiesRequest",
      "example" : {
        "encodingType" : "UTF8",
        "document" : {
          "type" : "PLAIN_TEXT",
          "content" : "President Trump will speak from the White House, located at 1600 Pennsylvania Ave NW, Washington, DC, on October 7."
        }
      },
      "type" : "object",
      "properties" : {
        "encodingType" : {
          "type" : "string"
        },
        "document" : {
          "$ref" : "#/definitions/Document"
        }
      },
      "required" : [ "encodingType", "document" ]
    },
    "AnalyzeEntities" : {
      "title" : "AnalyzeEntities",
      "example" : {
        "entities" : [ {
          "name" : "Trump",
          "type" : "PERSON",
          "metadata" : {
            "mid" : "/m/0cqt90",
            "wikipedia_url" : "https://en.wikipedia.org/wiki/Donald_Trump"
          },
          "salience" : 0.7936003,
          "mentions" : [ {
            "text" : {
              "content" : "Trump",
              "beginOffset" : 10
            },
            "type" : "PROPER"
          }, {
            "text" : {
              "content" : "President",
              "beginOffset" : 0
            },
            "type" : "COMMON"
          } ]
        }, {
          "name" : "White House",
          "type" : "LOCATION",
          "metadata" : {
            "mid" : "/m/081sq",
            "wikipedia_url" : "https://en.wikipedia.org/wiki/White_House"
          },
          "salience" : 0.09172433,
          "mentions" : [ {
            "text" : {
              "content" : "White House",
              "beginOffset" : 36
            },
            "type" : "PROPER"
          } ]
        }, {
          "name" : "Pennsylvania Ave NW",
          "type" : "LOCATION",
          "metadata" : {
            "mid" : "/g/1tgb87cq"
          },
          "salience" : 0.085507184,
          "mentions" : [ {
            "text" : {
              "content" : "Pennsylvania Ave NW",
              "beginOffset" : 65
            },
            "type" : "PROPER"
          } ]
        }, {
          "name" : "Washington, DC",
          "type" : "LOCATION",
          "metadata" : {
            "mid" : "/m/0rh6k",
            "wikipedia_url" : "https://en.wikipedia.org/wiki/Washington,_D.C."
          },
          "salience" : 0.029168168,
          "mentions" : [ {
            "text" : {
              "content" : "Washington, DC",
              "beginOffset" : 86
            },
            "type" : "PROPER"
          } ]
        }, {
          "name" : "October 7",
          "type" : "DATE",
          "metadata" : {
            "day" : "7",
            "month" : "10"
          },
          "salience" : 0,
          "mentions" : [ {
            "text" : {
              "content" : "October 7",
              "beginOffset" : 105
            },
            "type" : "TYPE_UNKNOWN"
          } ]
        }, {
          "name" : "1600 Pennsylvania Ave NW, Washington, DC",
          "type" : "ADDRESS",
          "metadata" : {
            "sublocality" : "Fort Lesley J. McNair",
            "locality" : "Washington",
            "broad_region" : "District of Columbia",
            "street_name" : "Pennsylvania Avenue Northwest",
            "narrow_region" : "District of Columbia",
            "street_number" : "1600",
            "country" : "US"
          },
          "salience" : 0,
          "mentions" : [ {
            "text" : {
              "content" : "1600 Pennsylvania Ave NW, Washington, DC",
              "beginOffset" : 60
            },
            "type" : "TYPE_UNKNOWN"
          } ]
        }, {
          "name" : "1600",
          "type" : "NUMBER",
          "metadata" : {
            "value" : "1600"
          },
          "salience" : 0,
          "mentions" : [ {
            "text" : {
              "content" : "1600",
              "beginOffset" : 60
            },
            "type" : "TYPE_UNKNOWN"
          } ]
        }, {
          "name" : "7",
          "type" : "NUMBER",
          "metadata" : {
            "value" : "7"
          },
          "salience" : 0,
          "mentions" : [ {
            "text" : {
              "content" : "7",
              "beginOffset" : 113
            },
            "type" : "TYPE_UNKNOWN"
          } ]
        } ],
        "language" : "en"
      },
      "type" : "object",
      "properties" : {
        "entities" : {
          "type" : "array",
          "items" : {
            "$ref" : "#/definitions/Entity"
          }
        },
        "language" : {
          "type" : "string"
        }
      },
      "required" : [ "entities", "language" ]
    },
    "Entity" : {
      "title" : "Entity",
      "example" : {
        "name" : "Trump",
        "type" : "PERSON",
        "metadata" : {
          "mid" : "/m/0cqt90",
          "wikipedia_url" : "https://en.wikipedia.org/wiki/Donald_Trump"
        },
        "salience" : 0.7936003,
        "mentions" : [ {
          "text" : {
            "content" : "Trump",
            "beginOffset" : 10
          },
          "type" : "PROPER"
        }, {
          "text" : {
            "content" : "President",
            "beginOffset" : 0
          },
          "type" : "COMMON"
        } ]
      },
      "type" : "object",
      "properties" : {
        "name" : {
          "type" : "string"
        },
        "type" : {
          "type" : "string"
        },
        "metadata" : {
          "$ref" : "#/definitions/Metadata"
        },
        "salience" : {
          "type" : "number",
          "format" : "double"
        },
        "mentions" : {
          "type" : "array",
          "items" : {
            "$ref" : "#/definitions/Mention"
          }
        }
      },
      "required" : [ "name", "type", "metadata", "salience", "mentions" ]
    },
    "Metadata" : {
      "title" : "Metadata",
      "example" : {
        "mid" : "/m/0cqt90",
        "wikipedia_url" : "https://en.wikipedia.org/wiki/Donald_Trump"
      },
      "type" : "object",
      "properties" : {
        "mid" : {
          "type" : "string"
        },
        "wikipedia_url" : {
          "type" : "string"
        },
        "day" : {
          "type" : "string"
        },
        "month" : {
          "type" : "string"
        },
        "sublocality" : {
          "type" : "string"
        },
        "locality" : {
          "type" : "string"
        },
        "broad_region" : {
          "type" : "string"
        },
        "street_name" : {
          "type" : "string"
        },
        "narrow_region" : {
          "type" : "string"
        },
        "street_number" : {
          "type" : "string"
        },
        "country" : {
          "type" : "string"
        },
        "value" : {
          "type" : "string"
        }
      }
    },
    "Mention" : {
      "title" : "Mention",
      "example" : {
        "text" : {
          "content" : "Trump",
          "beginOffset" : 10
        },
        "type" : "PROPER"
      },
      "type" : "object",
      "properties" : {
        "text" : {
          "$ref" : "#/definitions/Text"
        },
        "type" : {
          "type" : "string"
        }
      },
      "required" : [ "text", "type" ]
    },
    "AnalyzeSyntaxRequest" : {
      "title" : "AnalyzeSyntaxRequest",
      "example" : {
        "encodingType" : "UTF8",
        "document" : {
          "type" : "PLAIN_TEXT",
          "content" : "President Trump will speak from the White House, located at 1600 Pennsylvania Ave NW, Washington, DC, on October 7."
        }
      },
      "type" : "object",
      "properties" : {
        "encodingType" : {
          "type" : "string"
        },
        "document" : {
          "$ref" : "#/definitions/Document"
        }
      },
      "required" : [ "encodingType", "document" ]
    },
    "AnalyzeSyntax" : {
      "title" : "AnalyzeSyntax",
      "example" : {
        "sentences" : [ {
          "text" : {
            "content" : "President Trump will speak from the White House, located at 1600 Pennsylvania Ave NW, Washington, DC, on October 7.",
            "beginOffset" : 0
          }
        } ],
        "tokens" : [ {
          "text" : {
            "content" : "President",
            "beginOffset" : 0
          },
          "partOfSpeech" : {
            "tag" : "NOUN",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "SINGULAR",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 1,
            "label" : "TITLE"
          },
          "lemma" : "President"
        }, {
          "text" : {
            "content" : "Trump",
            "beginOffset" : 10
          },
          "partOfSpeech" : {
            "tag" : "NOUN",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "SINGULAR",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 3,
            "label" : "NSUBJ"
          },
          "lemma" : "Trump"
        }, {
          "text" : {
            "content" : "will",
            "beginOffset" : 16
          },
          "partOfSpeech" : {
            "tag" : "VERB",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "NUMBER_UNKNOWN",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER_UNKNOWN",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 3,
            "label" : "AUX"
          },
          "lemma" : "will"
        }, {
          "text" : {
            "content" : "speak",
            "beginOffset" : 21
          },
          "partOfSpeech" : {
            "tag" : "VERB",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "NUMBER_UNKNOWN",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER_UNKNOWN",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 3,
            "label" : "ROOT"
          },
          "lemma" : "speak"
        }, {
          "text" : {
            "content" : "from",
            "beginOffset" : 27
          },
          "partOfSpeech" : {
            "tag" : "ADP",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "NUMBER_UNKNOWN",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER_UNKNOWN",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 3,
            "label" : "PREP"
          },
          "lemma" : "from"
        }, {
          "text" : {
            "content" : "the",
            "beginOffset" : 32
          },
          "partOfSpeech" : {
            "tag" : "DET",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "NUMBER_UNKNOWN",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER_UNKNOWN",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 7,
            "label" : "DET"
          },
          "lemma" : "the"
        }, {
          "text" : {
            "content" : "White",
            "beginOffset" : 36
          },
          "partOfSpeech" : {
            "tag" : "NOUN",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "SINGULAR",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 7,
            "label" : "NN"
          },
          "lemma" : "White"
        }, {
          "text" : {
            "content" : "House",
            "beginOffset" : 42
          },
          "partOfSpeech" : {
            "tag" : "NOUN",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "SINGULAR",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 4,
            "label" : "POBJ"
          },
          "lemma" : "House"
        }, {
          "text" : {
            "content" : ",",
            "beginOffset" : 47
          },
          "partOfSpeech" : {
            "tag" : "PUNCT",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "NUMBER_UNKNOWN",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER_UNKNOWN",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 7,
            "label" : "P"
          },
          "lemma" : ","
        }, {
          "text" : {
            "content" : "located",
            "beginOffset" : 49
          },
          "partOfSpeech" : {
            "tag" : "VERB",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "NUMBER_UNKNOWN",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER_UNKNOWN",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "PAST",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 7,
            "label" : "VMOD"
          },
          "lemma" : "locate"
        }, {
          "text" : {
            "content" : "at",
            "beginOffset" : 57
          },
          "partOfSpeech" : {
            "tag" : "ADP",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "NUMBER_UNKNOWN",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER_UNKNOWN",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 9,
            "label" : "PREP"
          },
          "lemma" : "at"
        }, {
          "text" : {
            "content" : "1600",
            "beginOffset" : 60
          },
          "partOfSpeech" : {
            "tag" : "NUM",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "NUMBER_UNKNOWN",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER_UNKNOWN",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 14,
            "label" : "NUM"
          },
          "lemma" : "1600"
        }, {
          "text" : {
            "content" : "Pennsylvania",
            "beginOffset" : 65
          },
          "partOfSpeech" : {
            "tag" : "NOUN",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "SINGULAR",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 14,
            "label" : "NN"
          },
          "lemma" : "Pennsylvania"
        }, {
          "text" : {
            "content" : "Ave",
            "beginOffset" : 78
          },
          "partOfSpeech" : {
            "tag" : "NOUN",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "SINGULAR",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 14,
            "label" : "NN"
          },
          "lemma" : "Ave"
        }, {
          "text" : {
            "content" : "NW",
            "beginOffset" : 82
          },
          "partOfSpeech" : {
            "tag" : "NOUN",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "SINGULAR",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 10,
            "label" : "POBJ"
          },
          "lemma" : "NW"
        }, {
          "text" : {
            "content" : ",",
            "beginOffset" : 84
          },
          "partOfSpeech" : {
            "tag" : "PUNCT",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "NUMBER_UNKNOWN",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER_UNKNOWN",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 14,
            "label" : "P"
          },
          "lemma" : ","
        }, {
          "text" : {
            "content" : "Washington",
            "beginOffset" : 86
          },
          "partOfSpeech" : {
            "tag" : "NOUN",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "SINGULAR",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 14,
            "label" : "APPOS"
          },
          "lemma" : "Washington"
        }, {
          "text" : {
            "content" : ",",
            "beginOffset" : 96
          },
          "partOfSpeech" : {
            "tag" : "PUNCT",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "NUMBER_UNKNOWN",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER_UNKNOWN",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 16,
            "label" : "P"
          },
          "lemma" : ","
        }, {
          "text" : {
            "content" : "DC",
            "beginOffset" : 98
          },
          "partOfSpeech" : {
            "tag" : "NOUN",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "SINGULAR",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 16,
            "label" : "APPOS"
          },
          "lemma" : "DC"
        }, {
          "text" : {
            "content" : ",",
            "beginOffset" : 100
          },
          "partOfSpeech" : {
            "tag" : "PUNCT",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "NUMBER_UNKNOWN",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER_UNKNOWN",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 14,
            "label" : "P"
          },
          "lemma" : ","
        }, {
          "text" : {
            "content" : "on",
            "beginOffset" : 102
          },
          "partOfSpeech" : {
            "tag" : "ADP",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "NUMBER_UNKNOWN",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER_UNKNOWN",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 9,
            "label" : "PREP"
          },
          "lemma" : "on"
        }, {
          "text" : {
            "content" : "October",
            "beginOffset" : 105
          },
          "partOfSpeech" : {
            "tag" : "NOUN",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "SINGULAR",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 20,
            "label" : "POBJ"
          },
          "lemma" : "October"
        }, {
          "text" : {
            "content" : "7",
            "beginOffset" : 113
          },
          "partOfSpeech" : {
            "tag" : "NUM",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "NUMBER_UNKNOWN",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER_UNKNOWN",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 21,
            "label" : "NUM"
          },
          "lemma" : "7"
        }, {
          "text" : {
            "content" : ".",
            "beginOffset" : 114
          },
          "partOfSpeech" : {
            "tag" : "PUNCT",
            "aspect" : "ASPECT_UNKNOWN",
            "case" : "CASE_UNKNOWN",
            "form" : "FORM_UNKNOWN",
            "gender" : "GENDER_UNKNOWN",
            "mood" : "MOOD_UNKNOWN",
            "number" : "NUMBER_UNKNOWN",
            "person" : "PERSON_UNKNOWN",
            "proper" : "PROPER_UNKNOWN",
            "reciprocity" : "RECIPROCITY_UNKNOWN",
            "tense" : "TENSE_UNKNOWN",
            "voice" : "VOICE_UNKNOWN"
          },
          "dependencyEdge" : {
            "headTokenIndex" : 3,
            "label" : "P"
          },
          "lemma" : "."
        } ],
        "language" : "en"
      },
      "type" : "object",
      "properties" : {
        "sentences" : {
          "type" : "array",
          "items" : {
            "$ref" : "#/definitions/Sentence1"
          }
        },
        "tokens" : {
          "type" : "array",
          "items" : {
            "$ref" : "#/definitions/Token"
          }
        },
        "language" : {
          "type" : "string"
        }
      },
      "required" : [ "sentences", "tokens", "language" ]
    },
    "Sentence1" : {
      "title" : "Sentence1",
      "example" : {
        "text" : {
          "content" : "President Trump will speak from the White House, located at 1600 Pennsylvania Ave NW, Washington, DC, on October 7.",
          "beginOffset" : 0
        }
      },
      "type" : "object",
      "properties" : {
        "text" : {
          "$ref" : "#/definitions/Text"
        }
      },
      "required" : [ "text" ]
    },
    "Token" : {
      "title" : "Token",
      "example" : {
        "text" : {
          "content" : "President",
          "beginOffset" : 0
        },
        "partOfSpeech" : {
          "tag" : "NOUN",
          "aspect" : "ASPECT_UNKNOWN",
          "case" : "CASE_UNKNOWN",
          "form" : "FORM_UNKNOWN",
          "gender" : "GENDER_UNKNOWN",
          "mood" : "MOOD_UNKNOWN",
          "number" : "SINGULAR",
          "person" : "PERSON_UNKNOWN",
          "proper" : "PROPER",
          "reciprocity" : "RECIPROCITY_UNKNOWN",
          "tense" : "TENSE_UNKNOWN",
          "voice" : "VOICE_UNKNOWN"
        },
        "dependencyEdge" : {
          "headTokenIndex" : 1,
          "label" : "TITLE"
        },
        "lemma" : "President"
      },
      "type" : "object",
      "properties" : {
        "text" : {
          "$ref" : "#/definitions/Text"
        },
        "partOfSpeech" : {
          "$ref" : "#/definitions/PartOfSpeech"
        },
        "dependencyEdge" : {
          "$ref" : "#/definitions/DependencyEdge"
        },
        "lemma" : {
          "type" : "string"
        }
      },
      "required" : [ "text", "partOfSpeech", "dependencyEdge", "lemma" ]
    },
    "PartOfSpeech" : {
      "title" : "PartOfSpeech",
      "example" : {
        "tag" : "NOUN",
        "aspect" : "ASPECT_UNKNOWN",
        "case" : "CASE_UNKNOWN",
        "form" : "FORM_UNKNOWN",
        "gender" : "GENDER_UNKNOWN",
        "mood" : "MOOD_UNKNOWN",
        "number" : "SINGULAR",
        "person" : "PERSON_UNKNOWN",
        "proper" : "PROPER",
        "reciprocity" : "RECIPROCITY_UNKNOWN",
        "tense" : "TENSE_UNKNOWN",
        "voice" : "VOICE_UNKNOWN"
      },
      "type" : "object",
      "properties" : {
        "tag" : {
          "type" : "string"
        },
        "aspect" : {
          "type" : "string"
        },
        "case" : {
          "type" : "string"
        },
        "form" : {
          "type" : "string"
        },
        "gender" : {
          "type" : "string"
        },
        "mood" : {
          "type" : "string"
        },
        "number" : {
          "type" : "string"
        },
        "person" : {
          "type" : "string"
        },
        "proper" : {
          "type" : "string"
        },
        "reciprocity" : {
          "type" : "string"
        },
        "tense" : {
          "type" : "string"
        },
        "voice" : {
          "type" : "string"
        }
      },
      "required" : [ "tag", "aspect", "case", "form", "gender", "mood", "number", "person", "proper", "reciprocity", "tense", "voice" ]
    },
    "DependencyEdge" : {
      "title" : "DependencyEdge",
      "example" : {
        "headTokenIndex" : 1,
        "label" : "TITLE"
      },
      "type" : "object",
      "properties" : {
        "headTokenIndex" : {
          "type" : "integer",
          "format" : "int32"
        },
        "label" : {
          "type" : "string"
        }
      },
      "required" : [ "headTokenIndex", "label" ]
    },
    "AnalyzeEntitySentimentRequest" : {
      "title" : "AnalyzeEntitySentimentRequest",
      "example" : {
        "document" : {
          "type" : "PLAIN_TEXT",
          "content" : "I love R&B music. Marvin Gaye is the best.\r\n               'What's Going On' is one of my favorite songs.\r\n               It was so sad when Marvin Gaye died."
        },
        "encodingType" : "UTF8"
      },
      "type" : "object",
      "properties" : {
        "document" : {
          "$ref" : "#/definitions/Document"
        },
        "encodingType" : {
          "type" : "string"
        }
      },
      "required" : [ "document", "encodingType" ]
    },
    "AnalyzeEntitySentiment" : {
      "title" : "AnalyzeEntitySentiment",
      "example" : {
        "entities" : [ {
          "name" : "R&B music",
          "type" : "WORK_OF_ART",
          "metadata" : { },
          "salience" : 0.5597628,
          "mentions" : [ {
            "text" : {
              "content" : "R&B music",
              "beginOffset" : 7
            },
            "type" : "COMMON",
            "sentiment" : {
              "magnitude" : 0.9,
              "score" : 0.9
            }
          } ],
          "sentiment" : {
            "magnitude" : 0.9,
            "score" : 0.9
          }
        }, {
          "name" : "Marvin Gaye",
          "type" : "PERSON",
          "metadata" : {
            "mid" : "/m/012z8_",
            "wikipedia_url" : "https://en.wikipedia.org/wiki/Marvin_Gaye"
          },
          "salience" : 0.18719898,
          "mentions" : [ {
            "text" : {
              "content" : "Marvin Gaye",
              "beginOffset" : 18
            },
            "type" : "PROPER",
            "sentiment" : {
              "magnitude" : 0.8,
              "score" : 0.8
            }
          }, {
            "text" : {
              "content" : "Marvin Gaye",
              "beginOffset" : 141
            },
            "type" : "PROPER",
            "sentiment" : {
              "magnitude" : 0.1,
              "score" : -0.1
            }
          } ],
          "sentiment" : {
            "magnitude" : 1,
            "score" : 0.3
          }
        }, {
          "name" : "best",
          "type" : "OTHER",
          "metadata" : { },
          "salience" : 0.09577418,
          "mentions" : [ {
            "text" : {
              "content" : "best",
              "beginOffset" : 37
            },
            "type" : "COMMON",
            "sentiment" : {
              "magnitude" : 0.9,
              "score" : 0.9
            }
          } ],
          "sentiment" : {
            "magnitude" : 0.9,
            "score" : 0.9
          }
        }, {
          "name" : "one",
          "type" : "OTHER",
          "metadata" : { },
          "salience" : 0.08869845,
          "mentions" : [ {
            "text" : {
              "content" : "one",
              "beginOffset" : 80
            },
            "type" : "COMMON",
            "sentiment" : {
              "magnitude" : 0.4,
              "score" : 0.4
            }
          } ],
          "sentiment" : {
            "magnitude" : 0.4,
            "score" : 0.4
          }
        }, {
          "name" : "What's Going On",
          "type" : "WORK_OF_ART",
          "metadata" : {
            "mid" : "/m/01hpzcz",
            "wikipedia_url" : "https://en.wikipedia.org/wiki/Wholy_Holy"
          },
          "salience" : 0.045231447,
          "mentions" : [ {
            "text" : {
              "content" : "What's Going On",
              "beginOffset" : 60
            },
            "type" : "PROPER",
            "sentiment" : {
              "magnitude" : 0,
              "score" : 0
            }
          } ],
          "sentiment" : {
            "magnitude" : 0,
            "score" : 0
          }
        }, {
          "name" : "songs",
          "type" : "WORK_OF_ART",
          "metadata" : { },
          "salience" : 0.023334175,
          "mentions" : [ {
            "text" : {
              "content" : "songs",
              "beginOffset" : 99
            },
            "type" : "COMMON",
            "sentiment" : {
              "magnitude" : 0.8,
              "score" : 0.8
            }
          } ],
          "sentiment" : {
            "magnitude" : 0.8,
            "score" : 0.8
          }
        } ],
        "language" : "en"
      },
      "type" : "object",
      "properties" : {
        "entities" : {
          "type" : "array",
          "items" : {
            "$ref" : "#/definitions/Entity1"
          }
        },
        "language" : {
          "type" : "string"
        }
      },
      "required" : [ "entities", "language" ]
    },
    "Entity1" : {
      "title" : "Entity1",
      "example" : {
        "name" : "R&B music",
        "type" : "WORK_OF_ART",
        "metadata" : { },
        "salience" : 0.5597628,
        "mentions" : [ {
          "text" : {
            "content" : "R&B music",
            "beginOffset" : 7
          },
          "type" : "COMMON",
          "sentiment" : {
            "magnitude" : 0.9,
            "score" : 0.9
          }
        } ],
        "sentiment" : {
          "magnitude" : 0.9,
          "score" : 0.9
        }
      },
      "type" : "object",
      "properties" : {
        "name" : {
          "type" : "string"
        },
        "type" : {
          "type" : "string"
        },
        "metadata" : {
          "$ref" : "#/definitions/Metadata1"
        },
        "salience" : {
          "type" : "number",
          "format" : "double"
        },
        "mentions" : {
          "type" : "array",
          "items" : {
            "$ref" : "#/definitions/Mention1"
          }
        },
        "sentiment" : {
          "$ref" : "#/definitions/Sentiment"
        }
      },
      "required" : [ "name", "type", "metadata", "salience", "mentions", "sentiment" ]
    },
    "Metadata1" : {
      "title" : "Metadata1",
      "example" : { },
      "type" : "object",
      "properties" : {
        "mid" : {
          "type" : "string"
        },
        "wikipedia_url" : {
          "type" : "string"
        }
      }
    },
    "Mention1" : {
      "title" : "Mention1",
      "example" : {
        "text" : {
          "content" : "R&B music",
          "beginOffset" : 7
        },
        "type" : "COMMON",
        "sentiment" : {
          "magnitude" : 0.9,
          "score" : 0.9
        }
      },
      "type" : "object",
      "properties" : {
        "text" : {
          "$ref" : "#/definitions/Text"
        },
        "type" : {
          "type" : "string"
        },
        "sentiment" : {
          "$ref" : "#/definitions/Sentiment"
        }
      },
      "required" : [ "text", "type", "sentiment" ]
    },
    "ClassifyContentRequest" : {
      "title" : "ClassifyContentRequest",
      "example" : {
        "document" : {
          "type" : "PLAIN_TEXT",
          "content" : "Google, headquartered in Mountain View, unveiled the new Android\r\n    phone at the Consumer Electronic Show.  Sundar Pichai said in his keynote\r\n    that users love their new Android phones."
        }
      },
      "type" : "object",
      "properties" : {
        "document" : {
          "$ref" : "#/definitions/Document"
        }
      },
      "required" : [ "document" ]
    },
    "ClassifyContent" : {
      "title" : "ClassifyContent",
      "example" : {
        "categories" : [ {
          "name" : "/Computers & Electronics",
          "confidence" : 0.61
        }, {
          "name" : "/Internet & Telecom/Mobile & Wireless",
          "confidence" : 0.53
        }, {
          "name" : "/News",
          "confidence" : 0.53
        } ]
      },
      "type" : "object",
      "properties" : {
        "categories" : {
          "type" : "array",
          "items" : {
            "$ref" : "#/definitions/Category"
          }
        }
      },
      "required" : [ "categories" ]
    },
    "Category" : {
      "title" : "Category",
      "example" : {
        "name" : "/Computers & Electronics",
        "confidence" : 0.61
      },
      "type" : "object",
      "properties" : {
        "name" : {
          "type" : "string"
        },
        "confidence" : {
          "type" : "number",
          "format" : "double"
        }
      },
      "required" : [ "name", "confidence" ]
    }
  },
  "tags" : [ {
    "name" : "Misc",
    "description" : ""
  } ]
}