jsonld@web
jsonld@web:/forbes-magazine-newarticle-json-ld-example-ripped$  cat ./forbes-magazine-newarticle-json-ld-example-ripped.jsonld
rich results · passed post · blog

> Forbes Magazine NewArticle JSON-LD Example (RIPPED) - JSONLD.COM

Real NewsArticle JSON-LD markup ripped straight from Forbes magazine, plus their Organization schema. See how a major publisher structures their data.

published
modified
size
0.5K
path
/forbes-magazine-newarticle-json-ld-example-ripped/

Last updated March 21, 2024 by Patrick Coombe

If you've ever wondered what Forbes uses for their "NewsArticle" JSON-LD types, here you go:

forbes-magazine-newarticle-json-ld-example-ripped.jsonld · 1.9K test
{
    "@context": "http://schema.org",
    "@type": "NewsArticle",
    "image": {
        "@type": "ImageObject",
        "url": "https://imageio.forbes.com/specials-images/imageserve/65fc3b897fddab1633651c2e/0x0.jpg?format=jpg&height=900&width=1600&fit=bounds",
        "width": 542.79,
        "height": 304.6
    },
    "author": {
        "@type": "Person",
        "name": "Simon Moore",
        "url": "https://www.forbes.com/sites/simonmoore/",
        "description": "Simon provides an outsourced Chief Investment Officer service to institutional investors. He has previously served as Chief Investment Officer at Moola and FutureAdvisor, both are consumer investment startups that were subsequently acquired by S&P 500 firms. He has published two books and is a CFA Charterholder and educated at Oxford and Northwestern. Articles are informational only, not investment advice.",
        "sameAs": ["https://www.linkedin.com/in/simonwmoore/", "https://www.twitter.com/simonwmoore", "https://www.financialmarketinsight.com"]
    },
    "publisher": {
        "@type": "NewsMediaOrganization",
        "name": "Forbes",
        "url": "https://www.forbes.com",
        "ethicsPolicy": "https://www.forbes.com/sites/forbesstaff/article/forbes-editorial-values-and-standards/",
        "logo": "https://imageio.forbes.com/i-forbesimg/media/amp/images/forbes-logo-dark.png?format=png&height=455&width=650&fit=bounds"
    },
    "headline": "What To Expect From The Fed For The Remainder Of 2024",
    "description": "After holding interest rates steady since July 2023, the U.S. Federal Reserve is currently expected to cut rates in 2024, perhaps starting in early summer.",
    "datePublished": "2024-03-21T12:07:51-04:00",
    "dateModified": "2024-03-21T12:40:50-04:00",
    "articleSection": "Investing",
    "name": "What To Expect From The Fed For The Remainder Of 2024",
    "isAccessibleForFree": "False"
}

and if you want to know what they use on their homepage for "Organization type" here it is as well.

forbes-magazine-newarticle-json-ld-example-ripped.jsonld · 957B test
{
    "@context": "https://schema.org",
    "@type": "Organization",
    "name": "Forbes",
    "url": "https://www.forbes.com/",
    "logo": "https://i.forbesimg.com/media/assets/forbes_1200x1200.jpg",
    "address": {
        "@type": "PostalAddress",
        "addressCountry": "United States",
        "addressLocality": "Jersey City",
        "addressRegion": "NJ",
        "postalCode": "07310",
        "streetAddress": "499 Washington Blvd"
    },
    "founder": "B. C. Forbes",
    "email": "mailto:[email protected]",
    "sameAs": ["https://plus.google.com/+Forbes", "https://www.facebook.com/forbes/", "https://twitter.com/Forbes", "https://www.instagram.com/forbes/", "https://www.youtube.com/user/forbes", "https://www.linkedin.com/company/forbes-magazine"],
    "potentialAction": {
        "@type": "SearchAction",
        "target": "https://www.forbes.com/search/?q={search_term}",
        "query-input": "required name=search_term"
    }
}