Sha256: 30d6b1b9db7ddc7868552bc3b62f0a54a8cd2dd2d6b40a498ecfebe4eb64be6c
Contents?: true
Size: 538 Bytes
Versions: 3
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 :AuthoritativeLegalValue, "https://schema.org/AuthoritativeLegalValue" new :UnofficialLegalValue, "https://schema.org/UnofficialLegalValue" new :DefinitiveLegalValue, "https://schema.org/DefinitiveLegalValue" new :OfficialLegalValue, "https://schema.org/OfficialLegalValue" end end end end
Version data entries
3 entries across 3 versions & 1 rubygems