How to mark up?

Search results examples in Sagace

Sagace provides not only the context of search results (snippets) but also structural data (rich snippets). Sagace shows species names, disease names and last modified dates as rich snippets.

To show these rich snippets, database provider need to mark up their content using microdata, RDFa Lite or JSON-LD. The retrieved metadata will appear in the search results, and will help users judge the relevance of each hit.

This page shows how to mark up your content using microdata and RDFa Lite.
(It will take a few days before you see changes in the search results.)

Results Image

Markup example : image

microdata
<div itemscope="" itemtype="http://schema.org/BiologicalDatabaseEntry">
  <img itemprop="image" src="http://www.pdbj.org/emnavi/data/emdb/media/1556/images/emd1556.png" />
</div>
RDFa Lite
<div vocab="http://schema.org/" typeof="BiologicalDatabaseEntry">
 <img property="image" src="http://www.pdbj.org/emnavi/data/emdb/media/1556/images/emd1556.png" />
</div>
JSON-LD
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "BiologicalDatabaseEntry",
  "image" : "http://www.pdbj.org/emnavi/data/emdb/media/1556/images/emd1556.png"
}
</script>

Metadata read by our microdata crawler

@BiologicalDatabaseEntry_image=http://www.pdbj.org/emnavi/data/emdb/media/1556/images/emd1556.png

Search Results in Sagace

image

Markup example : isEntryOf

microdata
<div itemscope="" itemtype="http://schema.org/BiologicalDatabaseEntry">
  <span itemprop="isEntryOf" itemscope itemtype="http://schema.org/BiologicalDatabase">
     <a itemprop="url" href="http://www.kegg.jp/kegg/disease/">
      <span itemprop="name">KEGG DISEASE (Diseases viewed as perturbed states of the molecular system)</span>
   </span>
</div>
RDFa Lite
<div vocab="http://schema.org/" typeof="BiologicalDatabaseEntry">
  <span property="isEntryOf" typeof="BiologicalDatabase">
     <a property="url" href="http://www.kegg.jp/kegg/disease/">
      <span property="name">KEGG DISEASE (Diseases viewed as perturbed states of the molecular system)</span>
   </span>
</div>
JSON-LD
<script type="application/ld+json">
{
   "@context": "http://schema.org",
  "@type": "BiologicalDatabaseEntry",
    "isEntryOf" : {
    "@type" : "BiologicalDatabase",
    "name"  : "OMIM",
    "url"   : "http://omim.org/entry/154700",
    "entryID" : "154700"
    }
    }
</script>

It is marked up using a nested structure of BiologicalDatabase.

Metadata read by our microdata crawler

@BiologicalDatabase_url=http://www.kegg.jp/kegg/disease/
@BiologicalDatabase_name=KEGG DISEASE (Diseases viewed as perturbed states of the molecular system)

Search Results in Sagace

isEntryOf

Markup example : entryID

microdata
<div itemscope="" itemtype="http://schema.org/BiologicalDatabaseEntry">
Entry:
 <span itemprop="entryID">H00653</span>
</div>
RDFa Lite
<div vocab="http://schema.org/" typeof="BiologicalDatabaseEntry">
Entry:
 <span property="entryID">H00653</span>
</div>
JSON-LD
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "BiologicalDatabaseEntry",
  "entryID" : "H00653"
}
</script>

Metadata read by our microdata crawler

@BiologicalDatabaseEntry_entryID=H00653

Search Results in Sagace

entryID

Markup example :taxon

microdata
<div itemscope="" itemtype="http://schema.org/BiologicalDatabaseEntry">
 <span itemprop="taxon" itemscope="" itemtype="http://schema.org/BiologicalDatabaseEntry">   
  Organism: <span itemprop="name">Homo sapiens</span> (human)  
  Taxonomy ID: <a itemprop="url" href="http://www.uniprot.org/taxonomy/9606"><span itemprop="entryID">9606</span></a> 
 </span>
</div>
RDFa Lite
<div vocab="http://schema.org/" typeof="BiologicalDatabaseEntry">
 <span property="taxon" vocab="http://schema.org/" typeof="BiologicalDatabaseEntry">   
  Organism: <span property="name">Homo sapiens</span> (human)  
  Taxonomy ID: <a property="url" href="http://www.uniprot.org/taxonomy/9606"><span property="entryID">9606</span></a> 
 </span>
</div>
JSON-LD
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "BiologicalDatabaseEntry",
 "taxon" : {
    "@type" : "BiologicalDatabaseEntry",
    "name"  : "Homo sapiens",
    "url"   : "http://www.uniprot.org/taxonomy/9606",
    "entryID" : "9606"
    }
}
</script>

It is marked up using a nested structure of BiologicalDatabase.

Metadata read by our microdata crawler

@vocabulary_property_vocabulary_property,It indicates the nest.
Please markup all of properties (name, url, entryID) to reflect the results accurately.

@BiologicalDatabaseEntry_taxon_BiologicalDatabaseEntry_name=Homo sapiens
@BiologicalDatabaseEntry_taxon_BiologicalDatabaseEntry_url=http://www.uniprot.org/taxonomy/9606
@BiologicalDatabaseEntry_taxon_BiologicalDatabaseEntry_entryID=9606

Search Results in Sagace

taxon

Markup example : disease (MedicalCondition)

microdata
<span itemscope itemtype="http://schema.org/MedicalCondition">
      <span itemprop="name">Marfan Syndrome</span>
 </span>
RDFa Lite
<span vocab="http://schema.org" typeof="MedicalCondition">
      <span property="name">Marfan Syndrome</span>
 </span>
JSON-LD
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "MedicalCondition",
  "name" : "Marfan Syndrome"
}
</script>


Metadata read by our microdata crawler

@MedicalCondition_name=Marfan Syndrome

Markup example : disease with Code(MedicalCondition , MedicalCode)

microdata
<span itemscope="" itemtype="http://schema.org/MedicalCondition">
      <span itemprop="code" itemscope itemtype="http://schema.org/MedicalCode">
               <meta itemprop="codeValue" content="Q87.4"><meta itemprop="codingSystem" content="ICD-10">
      </span>
 </span>
RDFa Lite
<span vocab="http://schema.org" typeof="MedicalCondition">
      <span property="code" vocab="http://schema.org"  typeof="MedicalCode">
               <meta property="codeValue" content="Q87.4"><meta property="codingSystem" content="ICD-10">
      </span>
 </span>
JSON-LD
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "MedicalCondition",
  "code" : {
    "@type" : "MedicalCode",
    "codeValue" : "Q87.4",
    "codingSystem" : "ICD-10"
    }
}
</script>

Metadata read by our microdata crawler

@MedicalCode_codeValue=Q87.4
@MedicalCode_codingSystem=ICD-10

Search Results in Sagace

disease

Markup example : seeAlso

microdata
<div itemscope="" itemtype="http://schema.org/BiologicalDatabaseEntry">
<span itemprop="seeAlso" itemscope="" itemtype="http://schema.org/BiologicalDatabaseEntry">
  <span itemprop="isEntryOf" itemscope="" itemtype="http://schema.org/BiologicalDatabase">
   <span itemprop="name">OMIM</span> </span>: 
   <a itemprop="url" href="http://omim.org/entry/154700"><span itemprop="entryID">154700</span></a> 
 </span>
</div>
RDFa Lite
<div vocab="http://schema.org/" typeof="BiologicalDatabaseEntry">
<span property="seeAlso" vocab="http://schema.org/" typeof="BiologicalDatabaseEntry">
  <span property="isEntryOf" vocab="http://schema.org/" typeof="BiologicalDatabase">
   <span property="name">OMIM</span> </span>: 
   <a property="url" href="http://omim.org/entry/154700"><span property="entryID">154700</span></a> 
 </span>
</div>
JSON-LD
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "BiologicalDatabaseEntry",
  "seeAlso" : {
    "@type" : "BiologicalDatabaseEntry",
    "entryID" : "154700",
    "url" : "http://omim.org/entry/154700",
    "isEntryOf" : {
    "@type" : "BiologicalDatabase",
    "name"  : "OMIM"
    }
    }
}
</script>

It is marked up using a nested structure of BiologicalDatabase. To add database information, it is marked up with BiologicalDatabase.
Please markup all of properties (name, url, entryID) to reflect the results accurately.

Metadata read by our microdata crawler

@vocabulary_property_vocabulary_property,It indicates the nest.

@BiologicalDatabaseEntry_seeAlso_BiologicalDatabase_name=OMIM
@BiologicalDatabaseEntry_seeAlso_BiologicalDatabaseEntry_url=http://omim.org/entry/154700
@BiologicalDatabaseEntry_seeAlso_BiologicalDatabaseEntry_entryID=154700

Search Results in Sagace

seeAlso

Markup example : dateModified

microdata
<div itemscope="" itemtype="http://schema.org/BiologicalDatabaseEntry">
<span itemprop="dateModified">2012-10-24</span>
</div>
RDFa Lite
<div vocab="http://schema.org/" typeof="BiologicalDatabaseEntry">
<span property="dateModified">2012-10-24</span>
</div>
JSON-LD
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "BiologicalDatabaseEntry",
  "dateModified" : "2012-10-24"
}
</script>


Metadata read by our microdata crawler

@dateModified is shown as Last Modified.

@BiologicalDatabaseEntry_dateModified=2012-10-24

Search Results in Sagace

lastModified

Markup example : reference

microdata
<ul itemscope itemtype="http://schema.org/BiologicalDatabaseEntry">
  <li>Morita M., Igarashi Y., Ito M., Chen YA., Nagao C., Sakaguchi Y., Sakate R., Masui T., Mizuguchi K.,  Sagace: a web-based search engine for biomedical databases in Japan., BMC Res Notes, 2012 Oct 31, 5:604, 
   <span itemprop='reference' content='pmid:23110816' >
    <a href="http://www.ncbi.nlm.nih.gov/pubmed/23110816" target="_blank">PubMed:23110816</a>
   </span>
  </li>
</ul>
RDFa Lite
<ul vocab="http://schema.org/" typeof="BiologicalDatabaseEntry">
  <li>Morita M., Igarashi Y., Ito M., Chen YA., Nagao C., Sakaguchi Y., Sakate R., Masui T., Mizuguchi K.,  Sagace: a web-based search engine for biomedical databases in Japan., BMC Res Notes, 2012 Oct 31, 5:604, 
   <span property='reference' content='pmid:23110816' >
    <a href="http://www.ncbi.nlm.nih.gov/pubmed/23110816" target="_blank">PubMed:23110816</a>
   </span>
  </li>
</ul>
JSON-LD
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "BiologicalDatabaseEntry",
  "reference" : "pmid:23110816"
}
</script>


Metadata read by our microdata crawler

@dateModified is shown as Last Modified.

@BiologicalDatabaseEntry_reference=PubMed:23110816

Search Results in Sagace

reference

Markup example : combination ( All )

microdata
<div itemscope itemtype="http://schema.org/BiologicalDatabaseEntry">
Name: <span itemscope itemtype="http://schema.org/MedicalCondition">
             <span itemprop="code" itemscope itemtype="http://schema.org/MedicalCode">
                          <meta itemprop="codeValue" content="Q87.4"><meta itemprop="codingSystem" content="ICD-10">
      </span>
             </span>

     <span itemprop="seeAlso" itemscope itemtype="http://schema.org/BiologicalDatabaseEntry">
           <span itemprop="isEntryOf" itemscope itemtype="http://schema.org/BiologicalDatabase">
           :       <span itemprop="name">ICD-10</span>
           <a itemprop="url" href="http://www.kegg.jp/kegg-bin/get_htext?br08403+H00653"><span itemprop="entryID">Q87.4</span></a>
      </span>
           </span>: 
      Species:
      <span itemprop="taxon" itemscope itemtype="http://schema.org/BiologicalDatabaseEntry">
        <span itemprop="name">Human</span>
        Taxonomy ID: <a itemprop="url" href="http://www.uniprot.org/taxonomy/9606"><span itemprop="entryID">9606</span></a>
      </span>
     References:
     PMID:<meta itemprop='reference' content='pmid:11706995'/><a href="http://www.ncbi.nlm.nih.gov/pubmed/11706995">11706995</a>
      <span itemprop="dateModified">2012-10-24</span>
      <span itemprop="isEntryOf" itemscope itemtype="http://schema.org/BiologicalDatabase">
     <a itemprop="url" href="http://www.kegg.jp/kegg/disease/"><span itemprop="name">KEGG DISEASE (Diseases viewed as perturbed states of the molecular system)</span>
       </span>
</div>
RDFa Lite
<div vocab="http://schema.org/" typeof="BiologicalDatabaseEntry">
Name: <span vocab="http://schema.org/" typeof="MedicalCondition">
             <span property="code" vocab="http://schema.org/" typeof="MedicalCode">
                          <meta property="codeValue" content="Q87.4"><meta property="codingSystem" content="ICD-10">
      </span>
             </span>

     <span property="seeAlso" vocab="http://schema.org/" typeof="BiologicalDatabaseEntry">
           <span property="isEntryOf" vocab="http://schema.org/" typeof="BiologicalDatabase">
           :       <span property="name">ICD-10</span>
           <a property="url" href="http://www.kegg.jp/kegg-bin/get_htext?br08403+H00653"><span property="entryID">Q87.4</span></a>
      </span>
           </span>: 
      Species:
      <span property="taxon" vocab="http://schema.org/" typeof="BiologicalDatabaseEntry">
        <span property="name">Human</span>
        Taxonomy ID: <a property="url" href="http://www.uniprot.org/taxonomy/9606"><span property="entryID">9606</span></a>
      </span>
     References:
     PMID:<meta property='reference' content='pmid:11706995'/><a href="http://www.ncbi.nlm.nih.gov/pubmed/11706995">11706995</a>
      <span property="dateModified">2012-10-24</span>
      <span property="isEntryOf" vocab="http://schema.org/" typeof="BiologicalDatabase">
     <a property="url" href="http://www.kegg.jp/kegg/disease/"><span property="name">KEGG DISEASE (Diseases viewed as perturbed states of the molecular system)</span>
       </span>
</div>
JSON-LD
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "BiologicalDatabaseEntry",
  "image" : "http://www.pdbj.org/emnavi/data/emdb/media/1556/images/emd1556.png",
  "dateModified" : "2012-10-24",
  "reference" : "pmid:23110816",
  "entryID" : "H00653",
    "isEntryOf" : {
    "@type" : "BiologicalDatabase",
    "name"  : "OMIM",
    "url"   : "http://omim.org/entry/154700",
    "entryID" : "154700"
    },
   "taxon" : {
    "@type" : "BiologicalDatabaseEntry",
    "name"  : "Homo sapiens",
    "url"   : "http://www.uniprot.org/taxonomy/9606",
    "entryID" : "9606"
    },
    "seeAlso" : {
    "@type" : "BiologicalDatabaseEntry",
    "entryID" : "154700",
    "url" : "http://omim.org/entry/154700",
    "isEntryOf" : {
    "@type" : "BiologicalDatabase",
    "name"  : "OMIM"
    }
    }
}
</script>
 
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "MedicalCondition",
  "name" : "Marfan Syndrome",
  "code" : {
    "@type" : "MedicalCode",
    "codeValue" : "Q87.4",
    "codingSystem" : "ICD-10"
    }
}
</script>


Search Results in Sagace

seeAlso

Leave a Reply