如何使用Schema.org对季节性期刊引文进行编码?

时间:2018-07-30 18:34:06

标签: schema.org citations

当期刊问题为“春季”,“夏季”或“秋/冬”时,是否有人有使用Schema.org属性(使用JSON-LD)对期刊元数据进行编码的经验?

由于issueNumber并不是真正的匹配,您将如何编码?

例如,这是芝加哥风格的引文,其中包括卷/期和季节/年的日期:

  

麦克布赖德,马修。 “'女弟兄':新整合的宣教士部队中的性别动态,1898–1915年。”《摩门教史》 44号。 4(2018年10月):40-67。

2 个答案:

答案 0 :(得分:2)

我将在name的{​​{1}}中代表问题的季节性方面。

此示例为第44卷第4期。

PublicationIssue

答案 1 :(得分:1)

对于类型 Dataset 使用结构化数据可能对您很有用。 例如:

{
  "@context":"http://schema.org/",
  "@type":"Dataset",
  "name":"Female Brethren",
  "description":"Gender Dynamics in a Newly Integrated Missionary Force, 1898–1915",
  "url":"https://exem.com/dataset/gender9815",
  "sameAs":"https://zzz.net",
  "keywords":[
     "Gender",
     "Dynamics",
     "Missionary",
     "Force"
  ],
  "creator":{
     "@type":"Organization",
     "url": "https://rtd.com/",
     "name":"The name of your Organization",
     "contactPoint":{
        "@type":"ContactPoint",
        "contactType": "customer service",
        "telephone":"zzz",
        "email":"xxx@ggg.nn"
     }
  },
  "includedInDataCatalog":{
     "@type":"DataCatalog",
     "name":"Journal of Mormon History 44, no. 4"
  },
  "distribution":[
     {
        "@type":"DataDownload",
        "encodingFormat":"CSV",
        "contentUrl":"http://ex.com/info/info.jsp"
     },
     {
        "@type":"DataDownload",
        "encodingFormat":"XML",
        "contentUrl":"http://ex.com/info/info.xml"
     }
  ],
  "temporalCoverage":"1898-01-01/1915-12-18",
  "spatialCoverage":{
     "@type":"Place",
     "geo":{
        "@type":"GeoShape",
        "box":"18.0 -65.0 72.0 172.0"
     }
  }
}

仅列出了两种格式:CSV和XML。但是,您可以使用其他格式。

This type is supported by Google

了解更多 Google search adds dataset schema support to search results