Sha256: 354bf498d6388e1fec0b215157c159066f44619b205f40ec7dd4dced6bb8f7a9

Contents?: true

Size: 1.1 KB

Versions: 3

Compression:

Stored size: 1.1 KB

Contents

require 'typesafe_enum'

module OpenActive
  module Enums
    module Schema
      #  Codes for use with the [[mediaAuthenticityCategory]] property, indicating the authenticity of a media object (in the context of how it was published or shared). In general these codes are not mutually exclusive, although some combinations (such as 'original' versus 'transformed', 'edited' and 'staged') would be contradictory if applied in the same [[MediaReview]]. Note that the application of these codes is with regard to a piece of media shared or published in a particular context.
      class MediaManipulationRatingEnumeration < TypesafeEnum::Base
        new :OriginalMediaContent, "https://schema.org/OriginalMediaContent"
        new :TransformedContent, "https://schema.org/TransformedContent"
        new :StagedContent, "https://schema.org/StagedContent"
        new :EditedOrCroppedContent, "https://schema.org/EditedOrCroppedContent"
        new :DecontextualizedContent, "https://schema.org/DecontextualizedContent"
        new :SatireOrParodyContent, "https://schema.org/SatireOrParodyContent"
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
openactive-0.2.2 lib/openactive/enums/schema/media_manipulation_rating_enumeration.rb
openactive-0.2.1 lib/openactive/enums/schema/media_manipulation_rating_enumeration.rb
openactive-0.2.0 lib/openactive/enums/schema/media_manipulation_rating_enumeration.rb