Skip to content

Commit

Permalink
RegEx korrigiert: Anchoring
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Marienfeld committed Nov 13, 2012
1 parent a8dd6c3 commit 748ca6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OGPD_JSON_Schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": {
"required": true,
"description": "Ein für Menschen lesbarer Bezeichner des Datensatzes, des Dokuments oder der Apps, der für eine Identifizierung genutzt werden kann (einfache ASCII-Präsentation des Titels, auch für den pretty-link, Linked Data URIs)",
"pattern": "[a-z0-9_-]{2,}",
"pattern": "^[a-z0-9_-]{2,}$",
"type": "string"
},
"title": {
Expand Down Expand Up @@ -69,7 +69,7 @@
"language": {
"required": false,
"description": "Sprache als ISO 639-1-Code, in der die Ressource verfasst ist.",
"pattern": "[a-z]{2}",
"pattern": "^[a-z]{2}$",
"type": "string"
},
"hash": {
Expand Down

0 comments on commit 748ca6b

Please sign in to comment.