I know that in RDF subjects can't be literals. However, let's say that I have a few properties and classes (in turtle syntax) already defined like this:
foaf:Organization a owl:Class .
ex:Employee a owl:Class .
foaf:Project a owl:Class .
#links employees to their project
foaf:currentProject a rdf:Property .
#links the employee to the organization they work at
ex:worksAt a rdf:Property .
#name employees, organization and project
foaf:name a rdf:Property .
Now, let's suppose I want to express with triples the fact that an employee x1 is currently working on a project y1, while an employee x2 is working on a project y2(where x1,y1,x2,y2 are literals, their name), only using the vocabulary and properties defined here. How can I do that?