如果我使用“精神疾病诊断和统计手册”(DSM),有人知道我会为“内容”属性设置什么值吗?
  <span itemprop="code" itemscope itemtype="http://schema.org/MedicalCode">
    <meta itemprop="code" content="305.90"/>
    <meta itemprop="codingSystem" content="_______"/>
  </span>codingSystem内容值是“DSM”、"DSM-4“、"DSM4”还是"DSM-4"?
发布于 2015-01-22 13:30:41
Schema.org不限制如何指定属性的值(除了建议值应该是文本)。
您应该使用最广为人知的名称/缩写。维基百科列出来被称为“DSM”,所以除非你对此有更多的了解,否则你可以这么做。
我对这个域一无所知,但我认为codeValue (期望文本)比code (期望另一个MedicalCode项)更合适:
<span itemprop="code" itemscope itemtype="http://schema.org/MedicalCode">
  <meta itemprop="codeValue" content="305.90" />
  <meta itemprop="codingSystem" content="DSM-4" />
</span>https://stackoverflow.com/questions/28076843
复制相似问题