XooCode(){

MedicalScholarlyArticle

MedicalScholarlyArticle is a ScholarlyArticle subtype for peer-reviewed medical publications. Property: publicationType (Text — "Case Report", "Clinical Trial", "Meta-analysis", "Review Article", "Systematic Review").

Full example of schema.org/MedicalScholarlyArticle json-ld markup

The markup is verified as valid with Rich Results Test from Google.

schema.org/MedicalScholarlyArticle
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "MedicalScholarlyArticle",
  "headline": "Pediatric Care in Post-War Denmark: A Clinical Framework",
  "author": { "@type": "Person", "name": "Jane Xoo" },
  "datePublished": "1945-11-12",
  "publicationType": "Review Article",
  "isPartOf": { "@type": "Periodical", "name": "Royal Danish Medical Journal", "issn": "0000-0000" }
}
</script>

Minimal valid version

The smallest markup that still produces a valid MedicalScholarlyArticle entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.

schema.org/MedicalScholarlyArticle (minimal)
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "MedicalScholarlyArticle",
  "headline": "Example Review",
  "publicationType": "Review Article"
}
</script>

Google rich results this unlocks

MedicalScholarlyArticle is a structural type. It does not produce a rich result on its own.

Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). MedicalScholarlyArticle becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.

Common MedicalScholarlyArticle mistakes

Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.

  1. 01

    publicationType as free prose

    Wrong
    "publicationType": "This is a review of clinical literature"
    Right
    "publicationType": "Review Article"

    The field is the short publication-type label used by citation indexes.

About the example data

Jane Xoo's 1945 paediatric-care paper in the Royal Danish Medical Journal.

Comments

Loading comments...

Leave a comment