I have recently added several references on my 'about me' page, mainly as digital copies (.jpg). How can I integrate them in the Schema.org markup for this page and its top-level-item Person
? What properties are able to create the "connection" to DigitalDocument
in my code, in order to confirm the digital copies of my references, which are on the page?
The references are:
- certification for the completion of a course at an educational organization (course-certification.jpg)
- legal permission of state office, which allows me to work as alternative healer (permission.jpg)
- certification for the completion of a healing course at a private educational organization (healing-certification.jpg)
- article in a print magazine about spirituality (article-dream-interpretation.jpg)
- article in a woman online magazine, direct link to the article on the site of the magazine
- public seminar, which I made for a local newspaper (seminar-mz.jpg)
- author of a book, with author profile on Amazon and an author website, book has an ISBN
- radio interview with me on "dradio Wissen" (interview.mp3)
The basic markup for the 'about me' page is clear:
{
"@context": "https://schema.org",
"@type": "Person",
"mainEntityOfPage": {
"@type": "AboutPage",
"@id": "http://www.example.com/aboutme-page"
"author": ...,
"publisher": ...,
"datePublished": "",
"dateModified": "",
}
"name": "my name",
"jobTitle": "alternative healer",
"alumniOf": {
"@type:": "EducationalOrganization",
"name": "", ...
So I know, that there is for example a property alumniOf
→ EducationalOrganization
and that there is DigitalDocument
in Schema.org. But how to get the link to me as Person
, who obtained a course certification there, which additionally is on the page as .jpg?
It's similar with the other references. I can use DigitalDocument
(or something more specific) for my legal permission as alternative healer, but with what property can I connect this to Person
?
Or the book I wrote. I know there is a property author
(and a pending property hasProfession
), but this needs a CreativeWork
as item, not a Person
.
Or the online and print articles: Here again, of course I know that there is a Article
item and author
property, but how to get the "link" to the Person
top-level-item and my digital copies?
Do I want something impossible? May be some experts here can at least give me some hints (I don't expect to get a complete code, though I even would pay for it).