activity-pub-poc/doc/Translate_ttl_to_spec.md

23 lines
351 B
Markdown
Raw Normal View History

2023-07-18 07:18:40 +00:00
# receipts to transform ttl to spec
## *it* **a** *something*
*it* is **a** *something*
Example:
```ttl
as:id a owl:DatatypeProperty ,
owl:FunctionalProperty,
```
Maps to
```clojure
(s/def ::DatatypeProperty any?)
(s/def ::FunctionalProperty any?)
(s/def ::id
(s/and
::DeprecatedProperty
::FunctionalProperty))
```