Quotes Results Schema for JSON#

Application ID eot_quotes

Description#

The QuotesResults schema describes the structure of the JSON data returned from the Quotes application by the SDK or the Portal.

Definition#

The QuotesResults schema is defined as:

  • array[QuoteResult] – The list of quotations found in the document

with QuoteResult defined as:

  • object – The quotation information

    • author (string) – The quotation author

    • text (string) – The quotation itself

    • begin_offset (number) – The begin offset of the quotation

    • end_offset (number) – The end offset of the quotation

Example#

The following is an example of the JSON results for this application:

[
    {
        "text": "\" EyeOnText has cool technology \" ,",
        "author": "John Smith",
        "begin_offset": 0,
        "end_offset": 49
    }
]