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