Module: Bolognese::Writers::SchemaOrgWriter

Included in:
MetadataUtils
Defined in:
lib/bolognese/writers/schema_org_writer.rb

Instance Method Summary collapse

Instance Method Details

#schema_hshObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/bolognese/writers/schema_org_writer.rb', line 6

def schema_hsh
  { "@context" => "http://schema.org",
    "@type" => types.present? ? types["schemaOrg"] : nil,
    "@id" => normalize_doi(doi),
    "identifier" => to_schema_org_identifiers(identifiers),
    "url" => url,
    "additionalType" => types.present? ? types["resourceType"] : nil,
    "name" => parse_attributes(titles, content: "title", first: true),
    "author" => to_schema_org_creators(creators),
    "editor" => to_schema_org_contributors(contributors),
    "description" => parse_attributes(descriptions, content: "description", first: true),
    "license" => Array.wrap(rights_list).map { |l| l["rightsUri"] }.compact.unwrap,
    "version" => version_info,
    "keywords" => subjects.present? ? Array.wrap(subjects).map { |k| parse_attributes(k, content: "subject", first: true) }.join(", ") : nil,
    "inLanguage" => language,
    "contentSize" => Array.wrap(sizes).unwrap,
    "encodingFormat" => Array.wrap(formats).unwrap,
    "dateCreated" => get_date(dates, "Created"),
    "datePublished" => get_date(dates, "Issued"),
    "dateModified" => get_date(dates, "Updated"),
    "pageStart" => container.to_h["firstPage"],
    "pageEnd" => container.to_h["lastPage"],
    "spatialCoverage" => to_schema_org_spatial_coverage(geo_locations),
    "sameAs" => to_schema_org_relation(related_identifiers: related_identifiers, relation_type: "IsIdenticalTo"),
    "isPartOf" => to_schema_org_relation(related_identifiers: related_identifiers, relation_type: "IsPartOf"),
    "hasPart" => to_schema_org_relation(related_identifiers: related_identifiers, relation_type: "HasPart"),
    "predecessor_of" => to_schema_org_relation(related_identifiers: related_identifiers, relation_type: "IsPreviousVersionOf"),
    "successor_of" => to_schema_org_relation(related_identifiers: related_identifiers, relation_type: "IsNewVersionOf"),
    "citation" => to_schema_org_relation(related_identifiers: related_identifiers, relation_type: "References"),
    "@reverse" => reverse.presence,
    "contentUrl" => Array.wrap(content_url).unwrap,
    "schemaVersion" => schema_version,
    "periodical" => types.present? ? ((types["schemaOrg"] != "Dataset") && container.present? ? to_schema_org(container) : nil) : nil,
    "includedInDataCatalog" => types.present? ? ((types["schemaOrg"] == "Dataset") && container.present? ? to_schema_org_container(container, type: "Dataset") : nil) : nil,
    "publisher" => publisher.present? ? { "@type" => "Organization", "name" => publisher } : nil,
    "funder" => to_schema_org_funder(funding_references),
    "provider" => agency.present? ? { "@type" => "Organization", "name" => agency } : nil
  }.compact.presence
end

#schema_orgObject



46
47
48
# File 'lib/bolognese/writers/schema_org_writer.rb', line 46

def schema_org
  JSON.pretty_generate schema_hsh
end