Sha256: 8c9c36875f12f6cbe7821da27ebddc218c53db3903ae858ae5ef074276745f5d
Contents?: true
Size: 430 Bytes
Versions: 192
Compression:
Stored size: 430 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
192 entries across 192 versions & 1 rubygems