Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • event_type
    "Event", "Fact", "Summary"
    The "event_type" field sub-categorizes the "event" object into one of three types, "Event", "Fact", or "Summary". Examples provided below should make the distinction clearer, but it can be simply described as follows:
    • "Event": link multiple entities (via "entity1_index", "entity2_index", "geo_index") and represent a transient activity (eg travel)
    • "Fact": link multiple entities like "Events" but represent (transient or permanent) relationships (eg being president)
    • "Summary": generally link 1 entity to a free text (eg a quotation: "Obama says...").
Specifying

...

Multiplicative Events

The Structured Analysis Harvester supports the specification creation of events ...

Specifying Multiplicative Events

The Structured Analysis Harvester supports the creation of events that are specified using the following specification format for multiplicative events:

Code Block
titleMultiplicative Event Specification Example
{
    ...
    "events" : [
       {
          "iterateOver" : "entity1/entity2/geo_index",
          "verb" : "attacked",
          "verb_category" : "assault/attack",
          "entity1" : "PersonPerpetrator",
          "entity2" : "VictimType",
          "geo_index" : "Location",
          "time_start" : "$SCRIPT( return _doc.metadata.incidentdate[0]; )"
       },
    ],
    ...
}

...

Info

Multiplicative Events:

In the example source below 

Code Block
titleMultiplicative Event Source Example
{
    ...
    "entities" : [
       {
            "actual_name" : "Batticaloa,North Eastern Province,Sri Lanka",
            "dimension" : "Where",
            "disambiguous_name" : "Batticaloa,North Eastern Province,Sri Lanka",
            "doccount" : NumberLong(18),
            "frequency" : 1,
            "gazateer_index" : "batticaloa,north eastern province,sri lanka/location",
            "geotag" : {
               "latitude" : "7.7166667",
               "longitude" : "81.7"
            },
            "totalfrequency" : NumberLong(18),
            "type" : "Location"
       },
       {
            "actual_name" : "Targeted, Police, Adult from Sri Lanka",
            "dimension" : "Who",
            "disambiguous_name" : "Targeted, Police, Adult from Sri Lanka",
            "doccount" : NumberLong(47),
            "frequency" : 3,
            "gazateer_index" : "targeted, police, adult from sri lanka/victimtype",
            "totalfrequency" : NumberLong(161),
            "type" : "VictimType"
       },
       {
            "actual_name" : "Targeted, Military, Adult, Combatant from Sri Lanka",
            "dimension" : "Who",
            "disambiguous_name" : "Targeted, Military, Adult, Combatant from Sri Lanka",
            "doccount" : NumberLong(20),
            "frequency" : 1,
            "gazateer_index" : "targeted, military, adult, combatant from sri lanka/victimtype",
            "totalfrequency" : NumberLong(147),
            "type" : "VictimType"
       },
       {
            "actual_name" : "Secular/Political/Anarchist from Sri Lanka",
            "dimension" : "Who",
            "disambiguous_name" : "Secular/Political/Anarchist from Sri Lanka",
            "doccount" : NumberLong(200),
            "frequency" : 1,
            "gazateer_index" : "secular/political/anarchist from sri lanka/personperpetrator",
            "totalfrequency" : NumberLong(200),
            "type" : "PersonPerpetrator"
        },
        ...
    ],
    ...
}

...