Sha256: 38ab8f6ac558d1aff2d2d6dbc309a033688bbd7b2ab7f47aa972f62ac7e43fb2
Contents?: true
Size: 855 Bytes
Versions: 1
Compression:
Stored size: 855 Bytes
Contents
require 'typesafe_enum' module OpenActive module Enums module Schema # GovernmentBenefitsType enumerates several kinds of government benefits to support the COVID-19 situation. Note that this structure may not capture all benefits offered. class GovernmentBenefitsType < TypesafeEnum::Base new :HealthCare, "https://schema.org/HealthCare" new :BusinessSupport, "https://schema.org/BusinessSupport" new :OneTimePayments, "https://schema.org/OneTimePayments" new :DisabilitySupport, "https://schema.org/DisabilitySupport" new :ParentalSupport, "https://schema.org/ParentalSupport" new :UnemploymentSupport, "https://schema.org/UnemploymentSupport" new :PaidLeave, "https://schema.org/PaidLeave" new :BasicIncome, "https://schema.org/BasicIncome" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.3.0 | lib/openactive/enums/schema/government_benefits_type.rb |