Skip to content

Commit

Permalink
chore: bump JSON schema maximum schemaVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
vsgoulart committed Oct 23, 2024
1 parent 7b60829 commit d0181af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/form-json-schema/src/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"description": "The schema version of a form",
"type": "integer",
"minimum": 1,
"maximum": 15
"maximum": 17
},
"executionPlatform": {
"$id": "#/executionPlatform",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
export const form = {
type: 'default',
components: [],
schemaVersion: 16,
schemaVersion: 18,
};

export const errors = [
{
instancePath: '/schemaVersion',
schemaPath: '#/properties/schemaVersion/maximum',
keyword: 'maximum',
params: { comparison: '<=', limit: 15 },
message: 'must be <= 15',
params: { comparison: '<=', limit: 17 },
message: 'must be <= 17',
},
];

0 comments on commit d0181af

Please sign in to comment.