11 Matching Annotations
  1. May 2023
  2. Jan 2023
  3. Dec 2022
  4. May 2022
    1. ```turtle

      Employee schema version 2

      @prefix rdfs: http://www.w3.org/2000/01/rdf-schema# . @prefix rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns# . @prefix vcard: http://www.w3.org/2006/vcard/ns# . @prefix emp: http://www.snee.com/schema/employees/ .

      emp:Person rdf:type rdfs:Class ; rdfs:label "person" .

      emp:Employee a rdfs:Class ; rdfs:label "employee" ; rdfs:comment "A full-time, non-contractor employee." .

      vcard:given-name rdf:type rdf:Property ; rdfs:label "given name".

      vcard:family-name rdf:type rdf:Property ; rdfs:label "family name" ; rdfs:label "apellido"@es .

      emp:hireDate a rdf:Property ; rdfs:label "hire date" ; rdfs:comment "The first day an employee was on the payroll." .

      emp:reportsTo a rdf:Property ; rdfs:label "reports to" . ```