23 lines
351 B
Markdown
23 lines
351 B
Markdown
|
# 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))
|
||
|
```
|