- Issue created by @baonguyen09
- Merge request !77Draft: Add hasOccupation subproperty into Person schema → (Open) created by Unnamed author
I work at a university and we need to use the 'Person' Schema.org Metatag. However, the current 'schema_person' tag does not include a 'hasOccupation' property and 'parentOrganization' within 'worksFor' property, which is required for the 'Person' schema type.
Add a 'parentOrganization' and hasOccupation property to 'schema_person'
This is our desired output for our specific use case of Schema Person:
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Person",
"name": "{{node:title}}",
"hasOccupation": {
"@type": "Occupation",
"name": "{{Title/Position}}"
},
"worksFor": {
"@type": "CollegeOrUniversity",
"name": "University of Arizona {{Department/College}}",
"url": "{{Department/College url}}",
"parentOrganization": {
"@type": "EducationalOrganization",
"name": "University of Arizona",
"url": "https://www.arizona.edu/",
"address": {
"@type": "PostalAddress",
"streetAddress": "1401 E University Blvd",
"addressLocality": "Tucson",
"addressRegion": "AZ",
"postalCode": "85721",
"addressCountry": "US"
}
}
}
}
</script>
Active
3.0
Code