diff options
author | David Robillard <d@drobilla.net> | 2018-10-14 22:18:17 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-10-27 13:13:58 +0100 |
commit | 2901a3669de67025f4daa47e5c452a4ffbec1476 (patch) | |
tree | 826da112a6338ff6f53edc78fb9e978f662ce7ee /tests/validate/good-literal-value-low-inclusive.ttl | |
parent | 9afb76e19e67951f6e6273acbbd35ceafb376e45 (diff) | |
download | serd-2901a3669de67025f4daa47e5c452a4ffbec1476.tar.gz serd-2901a3669de67025f4daa47e5c452a4ffbec1476.tar.bz2 serd-2901a3669de67025f4daa47e5c452a4ffbec1476.zip |
Add validation to command line interface
Diffstat (limited to 'tests/validate/good-literal-value-low-inclusive.ttl')
-rw-r--r-- | tests/validate/good-literal-value-low-inclusive.ttl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/validate/good-literal-value-low-inclusive.ttl b/tests/validate/good-literal-value-low-inclusive.ttl new file mode 100644 index 00000000..6145ee53 --- /dev/null +++ b/tests/validate/good-literal-value-low-inclusive.ttl @@ -0,0 +1,19 @@ +@prefix eg: <http://example.org/> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . + +eg:Normal + a rdfs:Datatype ; + rdfs:label "normal" ; + owl:onDatatype xsd:double ; + owl:withRestrictions ( + [ + xsd:maxInclusive 1.0 + ] + [ + xsd:minInclusive 0.0 + ] + ) . + +eg:s + rdf:value "0.0"^^eg:Normal . |