:time   (AMR annotation guidance)

AMR dict: :time

The role :time is used for two purposes:

  1. for a general event, to capture when the event happened (or will happen)
  2. within the context of a date-entity, the specific time in 24-hour notation such as "18:00"

Example:  "The killing took place yesterday ."
     (k / kill-01
           :time (y / yesterday))

Example:  "The nation defaulted after the war ."
     (d / default-01
           :ARG1 (n / nation)
           :time (a / after
                 :op1 (w / war)))

Example:  "the earlier plan"
     (p / plan
           :time (b / before))

Example:  "Wednesday, February 29, 2012, at 4:30pm PST"
     (d / date-entity :month 2 :day 29 :year 2012 :time "16:30" :timezone "PST"
           :weekday (w / wednesday))

Example:  "America was discovered several hundred years ago."
     (d / discover-01
           :ARG1 (c / continent :wiki "Americas"
                 :name (n / name :op1 "America"))
           :time (b / before
                 :op1 (n2 / now)
                 :quant (s / several
                       :op1 (t / temporal-quantity :quant 100
                             :unit (y / year)))))

Click here for more examples such as

Reification: be-temporally-at-91

Not :time

Do not use :time in the following cases:

close this window