Sha256: 9099b8335f18497d39be898e0e1c16618feed5580a76ac8f45f51ee8f10d6f7d
Contents?: true
Size: 431 Bytes
Versions: 420
Compression:
Stored size: 431 Bytes
Contents
module GovukPublishingComponents module Presenters class HasPartSchema attr_reader :has_part_url def initialize(has_part_url) @has_part_url = has_part_url end def structured_data # http://schema.org/hasPart - minimal { "@context" => "http://schema.org", "@type" => "CreativeWork", "sameAs" => has_part_url, } end end end end
Version data entries
420 entries across 420 versions & 1 rubygems