We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5bf1fb commit 94b0311Copy full SHA for 94b0311
TUTORIALS.md
@@ -131,7 +131,9 @@ The definition of the model is very similar to that of the book. Add the followi
131
```lisp
132
(define-resource author ()
133
:class (s-prefix "schema:Author")
134
- :properties `((:name :string ,(s-prefix "schema:name")))
+ :properties `((:name :string ,(s-prefix "schema:name"))
135
+ (:given-name :string ,(s-prefix "foaf:givenName"))
136
+ (:family-name :string ,(s-prefix "foaf:familyName")))
137
:resource-base (s-url "http://mu.semte.ch/services/github/madnificent/book-service/authors/")
138
:on-path "authors")
139
```
0 commit comments