Sha256: 92959dd7de12d23bf0a9e892c208fb8604ede529ff1684fd87794453331d4e8b
Contents?: true
Size: 538 Bytes
Versions: 4
Compression:
Stored size: 538 Bytes
Contents
require 'typesafe_enum' module OpenActive module Enums module Schema # A list of possible levels for the legal validity of a legislation. class LegalValueLevel < TypesafeEnum::Base new :DefinitiveLegalValue, "https://schema.org/DefinitiveLegalValue" new :OfficialLegalValue, "https://schema.org/OfficialLegalValue" new :UnofficialLegalValue, "https://schema.org/UnofficialLegalValue" new :AuthoritativeLegalValue, "https://schema.org/AuthoritativeLegalValue" end end end end
Version data entries
4 entries across 4 versions & 1 rubygems