date-entity roles   (AMR annotation guidance)

Examples for roles in a date-entity:

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:  "in the early 1950s"
     (e / early
           :op1 (d / date-entity :decade 1950))

Example:  "winter 2011-2012"
     (d / date-entity :year 2011 :year2 2012
           :season (w / winter))

Example:  "this Wednesday afternoon"
     (d / date-entity
           :weekday (w / wednesday)
           :dayperiod (a / afternoon)
           :mod (t / this))

Example:  "Augustus lived from 63 BCE to 14 CE."
     (l / live-01
           :ARG0 (p / person :wiki "Augustus"
                 :name (n / name :op1 "Augustus"))
           :time (d / date-interval
                 :op1 (d2 / date-entity :year 63 :era "BC")
                 :op2 (d3 / date-entity :year 14 :era "AD")))

See also more specific examples for :calendar, :era and :timezone.

close this window