Sha256: ac9ec65636b18aa9b30822499c9ca99545be410cf87e2ac7be1f97e9793c791f

Contents?: true

Size: 538 Bytes

Versions: 2

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
openactive-0.5.0 lib/openactive/enums/schema/legal_value_level.rb
openactive-0.4.0 lib/openactive/enums/schema/legal_value_level.rb