lib/openactive/enums/schema/legal_value_level.rb in openactive-0.3.0 vs lib/openactive/enums/schema/legal_value_level.rb in openactive-0.4.0

- old
+ new

@@ -3,13 +3,13 @@ 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 :UnofficialLegalValue, "https://schema.org/UnofficialLegalValue" - new :OfficialLegalValue, "https://schema.org/OfficialLegalValue" + new :DefinitiveLegalValue, "https://schema.org/DefinitiveLegalValue" new :AuthoritativeLegalValue, "https://schema.org/AuthoritativeLegalValue" + new :OfficialLegalValue, "https://schema.org/OfficialLegalValue" end end end end