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