Advertisement
Aleso1

Teacher Global Data - Structured Data

Oct 18th, 2024
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="application/ld+json">
  2. {
  3.   "@context": "https://schema.org/",
  4.   "@type": "WebPage",
  5.   "mainEntity": {
  6.     "@type": "Person",
  7.     "name": "John Doe", // selector de nombre, creo que es el <h1>
  8.     "image": "https://example.com/images/john-doe.jpg", // url de la imagen del teacher
  9.     "jobTitle": "Professor of Biology", // campo de job title
  10.     "email": "mailto:[email protected]", //campo de email
  11.     "identifier": [
  12.       {
  13.         "@type": "PropertyValue",
  14.         "propertyID": "ORCID",
  15.         "value": "https://orcid.org/0000-0001-2345-6789" // el campo ORCID debe completar la url.
  16.       },
  17.       {
  18.         "@type": "PropertyValue",
  19.         "propertyID": "Scopus",
  20.         "value": "https://www.scopus.com/authid/detail.uri?authorId=123456789" // el campo de Scopus tiene que terminar de completar el ?authorId="" de la url
  21.       }
  22.     ],
  23.     "sameAs": [
  24.       "https://www.linkedin.com/in/john-doe", // campo de linkedin
  25.       "https://johndoe.com" // campo de personal web
  26.     ]
  27.   }
  28. }
  29. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement