Entity Mapper Results Schema for JSON#

Application ID eot_entity_mapper

Description#

The EntityMapperResults schema describes the structure of the JSON data returned from the Entity Mapper application by the SDK or the Portal before it is returned into a native programming object such as EntityMapper object for Python.

Definition#

The EntityMapperResults schema is defined as:

  • array[EntityMapping] – The list of entity relations lhs -> rhs

with the EntityMapping schema defined as:

  • object – The entity mapping

    • <from_concept> (string) – The source or left-hand-side concept

    • <to_concept> (string) – The target or right-hand-side concept

Example#

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

[
    {
        "Person": "John Smith",
        "Company": "EyeOnText"
    }
]