{
  "$id": "https://w3id.org/traceability/schemas/Person.json",
  "$linkedData": { "term": "Person", "@id": "https://schema.org/Person" },
  "title": "Person",
  "description": "A person",
  "type": "object",
  "properties": {
    "@context": {
      "type": "array"
    },
    "type": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "array"
        }
      ]
    },
    "firstName": {
      "$linkedData": { "term": "firstName", "@id": "https://schema.org/name" },
      "title": "First Name",
      "description": "Person's first name.",
      "type": "string"
    },
    "lastName": {
      "$linkedData": { "term": "lastName", "@id": "https://schema.org/name" },
      "title": "Last Name",
      "description": "Person's last name.",
      "type": "string"
    }
  }
}
