output says validation is successful. more testing needed
parent
7f1951947a
commit
d8a1510a73
@ -0,0 +1,20 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"$id": "http://ndumas.com/schemas/myschema.json",
|
||||
"title":"baseNote",
|
||||
"description":"properties all notes must have",
|
||||
"type":"object",
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"aliases": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type":"string",
|
||||
"uniqueItems": true,
|
||||
"minItems": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue