Advertisement
NicholasB

schema_type_as_array

Sep 11th, 2023
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.55 KB | None | 0 0
  1. {
  2.     "@context": "https://schema.org/",
  3.     "@graph": [
  4.         {
  5.             "@type": ["MedicalBusiness", "Organization"],
  6.             "@id": "https://www.example.com/#organization",
  7.             "name": "ABC Medical Center",
  8.             "url": "https://www.example.com",
  9.             "sameAs": [
  10.                 "https://www.facebook.com/abcmed",
  11.                 "https://twitter.com/abcmed",
  12.                 "https://www.linkedin.com/company/abcmed",
  13.                 "https://www.instagram.com/abcmed/"
  14.             ],
  15.             "email": "info@example.com",
  16.             "address": {
  17.                 "@type": "PostalAddress",
  18.                 "streetAddress": "123 Main St",
  19.                 "addressLocality": "Anytown",
  20.                 "addressRegion": "CA",
  21.                 "postalCode": "12345",
  22.                 "addressCountry": "USA"
  23.             },
  24.             "logo": {
  25.                 "@type": "ImageObject",
  26.                 "@id": "https://www.example.com/#logo",
  27.                 "url": "https://www.example.com/logo.png",
  28.                 "caption": "ABC Medical Center",
  29.                 "inLanguage": "en-US",
  30.                 "width": "500",
  31.                 "height": "200"
  32.             },
  33.             "priceRange": "$$",
  34.             "openingHours": ["Mo-Fr 08:00-17:00", "Sa 09:00-12:00"],
  35.             "location": {
  36.                 "@id": "https://www.example.com/#place"
  37.             },
  38.             "image": {
  39.                 "@id": "https://www.example.com/#logo"
  40.             },
  41.             "telephone": "123-456-7890"
  42.         }
  43.     ]
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement