Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP #280 #281

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion schemas/arch_schema.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$schema": "http://json-schema.org/draft/2020-12/schema#",

"type": "object",
"title": "Unified Architecture Specification",
Expand Down
2 changes: 1 addition & 1 deletion schemas/cert_class_schema.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$schema": "http://json-schema.org/draft/2020-12/schema#",

"type": "object",
"required": ["$schema", "kind", "name", "long_name", "introduction"],
Expand Down
2 changes: 1 addition & 1 deletion schemas/cert_model_schema.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$schema": "http://json-schema.org/draft/2020-12/schema#",

"type": "object",
"required": ["$schema", "kind", "name", "long_name"],
Expand Down
2 changes: 1 addition & 1 deletion schemas/config_schema.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$schema": "http://json-schema.org/draft/2020-12/schema#",

"$defs": {
"params": {
Expand Down
2 changes: 1 addition & 1 deletion schemas/csr_schema.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$schema": "http://json-schema.org/draft/2020-12/schema#",

"title": "CSR description",
"description": "A CSR register specification",
Expand Down
6 changes: 3 additions & 3 deletions schemas/ext_schema.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$schema": "http://json-schema.org/draft/2020-12/schema#",

"$defs": {
"param_data": {
Expand All @@ -25,7 +25,7 @@
"description": "When a parameter is defined by multiple extensions, declare the other extensions here. The parameter *must* mean the same thing in all extensions."
},
"schema": {
"$ref": "json-schema-draft-07.json#"
"$ref": "json-schema-draft/2020-12.json#"
},
"when": {
"$ref": "schema_defs.json#/$defs/when_condition"
Expand Down Expand Up @@ -200,7 +200,7 @@
"type": "object",
"properties": {
"schema": {
"$ref": "json-schema-draft-07.json#",
"$ref": "json-schema-draft/2020-12.json#",
"description": "Extra schema constraints for the parameter"
},
"extra_validation": {
Expand Down
2 changes: 1 addition & 1 deletion schemas/implemented_exts_schema.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$schema": "http://json-schema.org/draft/2020-12/schema#",

"type": "object",
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion schemas/inst_schema.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$schema": "http://json-schema.org/draft/2020-12/schema#",

"$defs": {
"field_location": {
Expand Down
2 changes: 1 addition & 1 deletion schemas/inst_variable_metadatas.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$schema": "http://json-schema.org/draft/2020-12/schema#",

"type": "object",
"patternProperties": {
Expand Down
245 changes: 0 additions & 245 deletions schemas/json-schema-draft-07.json
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just FYI, the reason we copy this file is because, without it, you need an internet connection to run just about anything controlled by ./do.

This file was deleted.

2 changes: 1 addition & 1 deletion schemas/manual_version_schema.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$schema": "http://json-schema.org/draft/2020-12/schema#",

"$defs": {
"volume": {
Expand Down
4 changes: 2 additions & 2 deletions schemas/schema_defs.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$schema": "http://json-schema.org/draft/2020-12/schema#",

"title": "Common patterns used by all schemas",

Expand Down Expand Up @@ -217,7 +217,7 @@
"type": "object",
"properties": {
"schema": {
"$ref": "json-schema-draft-07.json#"
"$ref": "json-schema-draft/2020-12.json#"
},
"when": {
"$ref": "#/$defs/when_condition"
Expand Down
Loading