event_statuses.yml 943 B

123456789101112131415161718192021222324252627282930313233343536
  1. # == Schema Information
  2. #
  3. # Table name: event_statuses
  4. #
  5. # id :integer not null, primary key
  6. # name :string(255)
  7. # created_at :datetime not null
  8. # updated_at :datetime not null
  9. # description :string(255)
  10. #
  11. none:
  12. name: "none"
  13. description: "No event pending"
  14. far:
  15. name: "far"
  16. description: "event pending in the far future. The exact definition of how far in the future this refers is dependent upon the market context, but typically means the next day."
  17. near:
  18. name: "near"
  19. description: "event pending in the near future. The exact definition of how near in the future the pending event is active is dependent on the market context"
  20. active:
  21. name: "active"
  22. description: "The event has been initiated and is currently active."
  23. completed:
  24. name: "completed"
  25. description: "The event has completed."
  26. cancelled:
  27. name: "cancelled"
  28. description: "The event has been canceled."