Sha256: 0669a2a1c082fd2c4b0fb4ae9c9ecf589b39e802671e037381e7d5935358e788
Contents?: true
Size: 1.1 KB
Versions: 1
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 :SatireOrParodyContent, "https://schema.org/SatireOrParodyContent" new :EditedOrCroppedContent, "https://schema.org/EditedOrCroppedContent" new :DecontextualizedContent, "https://schema.org/DecontextualizedContent" new :StagedContent, "https://schema.org/StagedContent" new :TransformedContent, "https://schema.org/TransformedContent" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.3.0 | lib/openactive/enums/schema/media_manipulation_rating_enumeration.rb |