DO.COM.02 Name
The Name object represents a person's name with various components.
DO.COM.02 Name
This class is crucial for accurately representing and storing an individual's name in a structured and machine-readable format.
Example
{
"@context": {
"spdci": "https://schema.spdci.org/core/v1/data",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"owl": "http://www.w3.org/2002/07/owl#"
},
"@id": "spdci:Name_1",
"@type": "spdci:Name",
"surname": "Al-Maliki",
"given_name": "Nouri",
"second_name": "Kamil",
"prefix": "Dr.",
"suffix": "PhD"
}
In this example, the spdci:Name
instance describes the full name of an individual, breaking down the name into its constituent parts: surname, given name, second name, prefix, and suffix. The structured format allows for precise representation and retrieval of name information, which is critical for identification and personal data management in various applications.
JSON-LD File on GitHub
Last updated
Was this helpful?