# Scholarship

Scholarship instance is s published scholarship that can receive new applications. In other words, a potential applicant can apply for it.

# Attributes

  • id

    • GUID - Unique identifier of the scholarship.
  • title

    • String - Scholarship name or basic description.
  • description

    • String - Full scholarship description.
  • amount

    • Number - How many money in dollars, receive 1 winner (award)
  • awards

    • Number - Number of scholarship awards
  • start

    • Date - Date in timezone when scholarship starts.
  • deadline

    • Date - Date in timezone when scholarship deadline is.
  • timezone

    • String - Scholarship timezone
  • recurringType

    • String|null - Period type
      • day
      • week
      • month
      • year
  • recurringValue

    • String|null - Period value
  • expiredAt

    • Date|null - If set scholarship is expired (after deadline) and new applications can't be sent.

WARNING

If recurringType and recurringValue is not null scholarship is repeatable. Recurring period can be build by concatinating recurringValue and recurringType examples: 1 day, 1 week, 1 month, 1 year.

# Relationships

# Meta

  • next
    • Date|null - If scholarship is repeatable next scholarship start date will be returned.

# Actions