Example of Nationality Schema

Getting your Trinity Audio player ready...
Reading Time: < 1 minute

I am trying to get a Knowledge Panel for my name, but that’s another story. One suggested factor that helps this goal is having structured data tags, as documented at archive.org. The specific schema Type is Person. There are many published examples of this Type, but I could not find anything useful for adding the nationality of the person.

Example of Nationality Schema

    "nationality": {
        "@type": "Country",
        "name": "Australia",
        "sameAs": "https://en.wikipedia.org/wiki/Australia"
    },

Example of alumniOf Schema

I saw others showing the name of the institution against alumniOf, but this property does not take a textual value directly. This is how it should be done.

"alumniOf": {
    "@type": "OrganizationRole",
    "alumniOf": {
        "@type": "CollegeOrUniversity",
        "name": "Deakin University",
    },
    "startDate": "1997"
},

Take a look at the tags on my other page About Ash Nallawalla using the tool at ClassyScySchema.org.

Mastodon