lib/openactive/enums/schema/legal_value_level.rb in openactive-0.2.2 vs lib/openactive/enums/schema/legal_value_level.rb in openactive-0.3.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 :AuthoritativeLegalValue, "https://schema.org/AuthoritativeLegalValue" - new :UnofficialLegalValue, "https://schema.org/UnofficialLegalValue" new :DefinitiveLegalValue, "https://schema.org/DefinitiveLegalValue" + new :UnofficialLegalValue, "https://schema.org/UnofficialLegalValue" new :OfficialLegalValue, "https://schema.org/OfficialLegalValue" + new :AuthoritativeLegalValue, "https://schema.org/AuthoritativeLegalValue" end end end end