You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 20, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: docs/migration_guide.md
+105-8Lines changed: 105 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -30,8 +30,9 @@ sed -i -e 's/http:\/\/json-schema.org\/draft-07\/schema/https:\/\/json-schema.or
30
30
This will replace the old schema draft specification (`draft-07`) by the new one (`2020-12`), and the old keyword `definitions` by the new notation `defs`.
31
31
32
32
!!! note
33
-
Repeat this command for every JSON schema you use in your pipeline. e.g. for the default samplesheet schema:
34
-
`bash sed -i -e 's/http:\/\/json-schema.org\/draft-07\/schema/https:\/\/json-schema.org\/draft\/2020-12\/schema/g' -e 's/definitions/defs/g' assets/schema_input.json `
33
+
34
+
Repeat this command for every JSON schema you use in your pipeline. e.g. for the default samplesheet schema:
35
+
`bash sed -i -e 's/http:\/\/json-schema.org\/draft-07\/schema/https:\/\/json-schema.org\/draft\/2020-12\/schema/g' -e 's/definitions/defs/g' assets/schema_input.json `
35
36
36
37
If you are using any special features in your schemas, you will need to update your schemas manually. Please refer to the [JSON Schema draft 2020-12 release notes](https://json-schema.org/draft/2020-12/release-notes) and [JSON schema draft 2019-09 release notes](https://json-schema.org/draft/2019-09/release-notes) for more information.
37
38
@@ -44,25 +45,121 @@ When you use `unique` in your schemas, you should update it to use `uniqueItems`
44
45
If you used the `unique:true` field, you should update it to use `uniqueItems` like this:
0 commit comments