aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-11 22:33:33 +0000
committerDavid Robillard <d@drobilla.net>2012-04-11 22:33:33 +0000
commit73ee88b9cda1cd71e0eba8930afa4f0e41079b04 (patch)
tree7f5cd867ab343a4b35a13b3cc84f5d01a21cad0e
parent775326d1337b6a55d4533df3738d4b2ca779d217 (diff)
downloadlv2-73ee88b9cda1cd71e0eba8930afa4f0e41079b04.tar.xz
Add a pattern for xml:base64Binary.
-rw-r--r--schemas/xsd.ttl3
1 files changed, 2 insertions, 1 deletions
diff --git a/schemas/xsd.ttl b/schemas/xsd.ttl
index 3a32cb6..a800e1d 100644
--- a/schemas/xsd.ttl
+++ b/schemas/xsd.ttl
@@ -35,7 +35,8 @@ xsd:anyURI
rdfs:subClassOf xsd:token .
xsd:base64Binary
- a rdfs:Datatype .
+ a rdfs:Datatype ;
+ xsd:pattern "(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$" .
xsd:boolean
a rdfs:Datatype ;
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168