Sha256: fbaf17afe11a7bb6e6422c80cdc976e19830d2c621bdd75270d948aa59c881f4

Contents?: true

Size: 538 Bytes

Versions: 1

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 :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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
openactive-0.3.0 lib/openactive/enums/schema/legal_value_level.rb