# Example 57 Nested Shapes
# https://book.validatingrdf.com/bookHtml010.html#sec88
PREFIX :
PREFIX schema:
PREFIX xsd:
:User {
schema:name xsd:string ;
schema:worksFor @_:1
}
_:1 { a [ :Company ] }
:User {
schema:name xsd:string ;
schema:worksFor {
a [ :Company]
}
}