schema: migrate jsoncv schema using ajv cli
command: npx ajv migrate -s schema/jsoncv.schema.json the result is that only the schema version changed from draft-04 to draft-07, allowing to use ajv for the latest version
This commit is contained in:
parent
eabd65fd5a
commit
bd4ee30289
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"definitions": {
|
"definitions": {
|
||||||
"iso8601": {
|
"iso8601": {
|
||||||
|
|
@ -497,4 +497,4 @@
|
||||||
},
|
},
|
||||||
"title": "Resume Schema",
|
"title": "Resume Schema",
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue