@prefix schema: <http://schema.org/>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.

<> a schema:Person;
  schema:birthDate "1979-02-12"^^xsd:date;
  schema:familyName "Chase";
  schema:givenName "Robert";
  schema:jobTitle "Surgeon";
  schema:knows
    <allison-cameron>,
    <eric-foreman>,
    <james-wilson>;
  schema:nationality <../place/australia>;
  schema:spouse <allison-cameron>;
  schema:workLocation <../place/princeton-plainsboro>.
