Created
February 18, 2025 18:32
-
-
Save patrickcoombe/4da8f50235489b7bf186c7bc0cba96e3 to your computer and use it in GitHub Desktop.
JSON-LD Example Web Page and Organization
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
< script type = "application/ld+json" > { | |
"@context": "https://schema.org", | |
"@graph": [{ | |
"@type": "WebPage", | |
"@id": "https://www.whitehouse.gov/", | |
"url": "https://www.whitehouse.gov/", | |
"name": "The White House", | |
"isPartOf": { | |
"@id": "https://www.whitehouse.gov/#website" | |
}, | |
"about": { | |
"@id": "https://www.whitehouse.gov/#organization" | |
}, | |
"primaryImageOfPage": { | |
"@id": "https://www.whitehouse.gov/#primaryimage" | |
}, | |
"image": { | |
"@id": "https://www.whitehouse.gov/#primaryimage" | |
}, | |
"thumbnailUrl": "https://www.whitehouse.gov/wp-content/uploads/2025/01/wh47-executive-orders.png", | |
"datePublished": "2025-01-20T17:00:26+00:00", | |
"dateModified": "2025-01-27T19:58:50+00:00", | |
"description": "President Donald J. Trump and Vice President JD Vance are committed to lowering costs for all Americans, securing our borders, unleashing American energy dominance, restoring peace through strength, and making all Americans safe and secure once again.", | |
"breadcrumb": { | |
"@id": "https://www.whitehouse.gov/#breadcrumb" | |
}, | |
"inLanguage": "en-US", | |
"potentialAction": [{ | |
"@type": "ReadAction", | |
"target": ["https://www.whitehouse.gov/"] | |
}] | |
}, { | |
"@type": "ImageObject", | |
"inLanguage": "en-US", | |
"@id": "https://www.whitehouse.gov/#primaryimage", | |
"url": "https://www.whitehouse.gov/wp-content/uploads/2025/01/wh47-executive-orders.png", | |
"contentUrl": "https://www.whitehouse.gov/wp-content/uploads/2025/01/wh47-executive-orders.png", | |
"width": 550, | |
"height": 380, | |
"caption": "Executive Orders" | |
}, { | |
"@type": "BreadcrumbList", | |
"@id": "https://www.whitehouse.gov/#breadcrumb", | |
"itemListElement": [{ | |
"@type": "ListItem", | |
"position": 1, | |
"name": "Home" | |
}] | |
}, { | |
"@type": "WebSite", | |
"@id": "https://www.whitehouse.gov/#website", | |
"url": "https://www.whitehouse.gov/", | |
"name": "The White House", | |
"description": "", | |
"publisher": { | |
"@id": "https://www.whitehouse.gov/#organization" | |
}, | |
"potentialAction": [{ | |
"@type": "SearchAction", | |
"target": { | |
"@type": "EntryPoint", | |
"urlTemplate": "https://www.whitehouse.gov/?s={search_term_string}" | |
}, | |
"query-input": { | |
"@type": "PropertyValueSpecification", | |
"valueRequired": true, | |
"valueName": "search_term_string" | |
} | |
}], | |
"inLanguage": "en-US" | |
}, { | |
"@type": "Organization", | |
"@id": "https://www.whitehouse.gov/#organization", | |
"name": "The White House", | |
"url": "https://www.whitehouse.gov/", | |
"logo": { | |
"@type": "ImageObject", | |
"inLanguage": "en-US", | |
"@id": "https://www.whitehouse.gov/#/schema/logo/image/", | |
"url": "https://www.whitehouse.gov/wp-content/uploads/2025/01/favicon.png", | |
"contentUrl": "https://www.whitehouse.gov/wp-content/uploads/2025/01/favicon.png", | |
"width": 918, | |
"height": 918, | |
"caption": "The White House" | |
}, | |
"image": { | |
"@id": "https://www.whitehouse.gov/#/schema/logo/image/" | |
}, | |
"sameAs": ["https://www.facebook.com/WhiteHouse/", "https://x.com/whitehouse", "https://www.instagram.com/whitehouse/", "https://www.youtube.com/@whitehouse"] | |
}] | |
} < /script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment