From 681cfa49ebcd49c92b6a6c0e04cf773b5aa418c4 Mon Sep 17 00:00:00 2001 From: BB JSON Schema Date: Tue, 5 Sep 2023 13:16:15 +0000 Subject: [PATCH] Enforce master in $id URLs --- schemas/actions/function.json | 6 +-- schemas/actions/function/option.json | 42 +++++++++---------- .../actions/function/option/additional.json | 4 +- .../function/option/additional/model.json | 4 +- .../option/additional/properties.json | 2 +- .../function/option/configuration.json | 2 +- .../actions/function/option/types/action.json | 4 +- .../option/types/authentication-profile.json | 4 +- .../function/option/types/boolean.json | 4 +- .../function/option/types/collection.json | 6 +-- .../actions/function/option/types/filter.json | 4 +- .../option/types/input-variable-map.json | 4 +- .../actions/function/option/types/json.json | 4 +- .../actions/function/option/types/map.json | 4 +- .../actions/function/option/types/model.json | 4 +- .../function/option/types/multiline-text.json | 4 +- .../actions/function/option/types/number.json | 8 ++-- .../actions/function/option/types/object.json | 4 +- .../actions/function/option/types/output.json | 4 +- .../function/option/types/property-map.json | 4 +- .../function/option/types/property.json | 4 +- .../actions/function/option/types/record.json | 6 +-- .../function/option/types/schema-model.json | 4 +- .../actions/function/option/types/select.json | 4 +- .../actions/function/option/types/text.json | 4 +- .../actions/function/option/types/value.json | 4 +- .../actions/function/option/validation.json | 2 +- schemas/actions/function/paths.json | 6 +-- schemas/models/schema_model.json | 2 +- 29 files changed, 79 insertions(+), 79 deletions(-) diff --git a/schemas/actions/function.json b/schemas/actions/function.json index a5a1c61..1d8a7d3 100644 --- a/schemas/actions/function.json +++ b/schemas/actions/function.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function.json", "title": "Function", "description": "A function to be used in the IDE", "type": "object", @@ -58,13 +58,13 @@ "description": "The options that you want configured for the action. These can be referred by name inside the function", "type": "array", "items": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option.json" } }, "paths": { "description": "The paths that you want configured for the action step.", "type": "object", - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/paths.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/paths.json" }, "yields": { "description": "Determines whether the function can have other functions nested and if so, what the behaviour should be for executing those functions", diff --git a/schemas/actions/function/option.json b/schemas/actions/function/option.json index f376b9f..35a7463 100644 --- a/schemas/actions/function/option.json +++ b/schemas/actions/function/option.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option.json", "title": "Options", "description": "Options that can be configured for each Function. All the available types of options are found in the definitions.", "type": "object", @@ -34,61 +34,61 @@ }, "oneOf": [ { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/action.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/action.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/authentication-profile.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/authentication-profile.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/boolean.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/boolean.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/collection.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/collection.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/input-variable-map.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/input-variable-map.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/json.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/json.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/map.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/map.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/model.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/model.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/multiline-text.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/multiline-text.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/number.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/number.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/object.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/object.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/output.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/output.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/property.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/property.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/property-map.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/property-map.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/record.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/record.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/select.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/select.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/schema-model.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/schema-model.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/text.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/text.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/value.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/value.json" } ], "required": ["type"] @@ -112,7 +112,7 @@ }, "configuration": { "type": "object", - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/configuration.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/configuration.json" } }, "required": ["meta", "name", "label"] diff --git a/schemas/actions/function/option/additional.json b/schemas/actions/function/option/additional.json index 2d80cc6..1108357 100644 --- a/schemas/actions/function/option/additional.json +++ b/schemas/actions/function/option/additional.json @@ -1,13 +1,13 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/additional.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/additional.json", "title": "Additional Meta Info", "description": "The definition of additional meta info.", "type": "object", "additionalProperties": false, "properties": { "model": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/additional/model.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/additional/model.json" } } } diff --git a/schemas/actions/function/option/additional/model.json b/schemas/actions/function/option/additional/model.json index 45e8e33..747248b 100644 --- a/schemas/actions/function/option/additional/model.json +++ b/schemas/actions/function/option/additional/model.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/additional/model.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/additional/model.json", "title": "Additional Meta Info Models", "description": "The definition of additional meta info for models.", "type": "array", @@ -15,7 +15,7 @@ "type": "object", "properties": { "properties": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/additional/properties.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/additional/properties.json" } } } diff --git a/schemas/actions/function/option/additional/properties.json b/schemas/actions/function/option/additional/properties.json index e852d0d..b5fb0ab 100644 --- a/schemas/actions/function/option/additional/properties.json +++ b/schemas/actions/function/option/additional/properties.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/additional/properties.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/additional/properties.json", "title": "Additional Meta Info Properties", "description": "The definition of additional meta info for properties.", "type": "array", diff --git a/schemas/actions/function/option/configuration.json b/schemas/actions/function/option/configuration.json index 11f2025..e2a7013 100644 --- a/schemas/actions/function/option/configuration.json +++ b/schemas/actions/function/option/configuration.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/configuration.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/configuration.json", "title": "Configuration", "description": "The option configurations for things like validation, visibility or defaults.", "type": "object", diff --git a/schemas/actions/function/option/types/action.json b/schemas/actions/function/option/types/action.json index da74319..930bdc3 100644 --- a/schemas/actions/function/option/types/action.json +++ b/schemas/actions/function/option/types/action.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/action.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/action.json", "title": "Options Type Action", "description": "Properties specific to the Action option type.", "type": "object", @@ -14,7 +14,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/authentication-profile.json b/schemas/actions/function/option/types/authentication-profile.json index 8497cfa..6928526 100644 --- a/schemas/actions/function/option/types/authentication-profile.json +++ b/schemas/actions/function/option/types/authentication-profile.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/authentication-profile.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/authentication-profile.json", "title": "Options Type AuthenticationProfile", "description": "Properties specific to the AuthenticationProfile option type.", "type": "object", @@ -14,7 +14,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/boolean.json b/schemas/actions/function/option/types/boolean.json index 7fb44dd..54aa703 100644 --- a/schemas/actions/function/option/types/boolean.json +++ b/schemas/actions/function/option/types/boolean.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/boolean.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/boolean.json", "title": "Options Type Boolean", "description": "Properties specific to the Boolean option type.", "type": "object", @@ -18,7 +18,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/collection.json b/schemas/actions/function/option/types/collection.json index 54739a0..b5aa39e 100644 --- a/schemas/actions/function/option/types/collection.json +++ b/schemas/actions/function/option/types/collection.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/collection.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/collection.json", "title": "Options Type Collection", "description": "Properties specific to the Collection option type.", "type": "object", @@ -10,14 +10,14 @@ "const": "Collection" }, "additional": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/additional.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/additional.json" }, "validations": { "description": "The requirements for the given option.", "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/filter.json b/schemas/actions/function/option/types/filter.json index 8c2e74e..37d085a 100644 --- a/schemas/actions/function/option/types/filter.json +++ b/schemas/actions/function/option/types/filter.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/filter.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/filter.json", "title": "Options Type Filter", "description": "Properties specific to the Filter option type.", "type": "object", @@ -14,7 +14,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/input-variable-map.json b/schemas/actions/function/option/types/input-variable-map.json index fe72610..d590e16 100644 --- a/schemas/actions/function/option/types/input-variable-map.json +++ b/schemas/actions/function/option/types/input-variable-map.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/input-variable-map.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/input-variable-map.json", "title": "Options Type InputVariableMap", "description": "Properties specific to the InputVariableMap option type.", "type": "object", @@ -18,7 +18,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/json.json b/schemas/actions/function/option/types/json.json index 8da7dc1..246377f 100644 --- a/schemas/actions/function/option/types/json.json +++ b/schemas/actions/function/option/types/json.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/json.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/json.json", "title": "Options Type JSON", "description": "Properties specific to the JSON option type.", "type": "object", @@ -14,7 +14,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/map.json b/schemas/actions/function/option/types/map.json index 52feffd..507f332 100644 --- a/schemas/actions/function/option/types/map.json +++ b/schemas/actions/function/option/types/map.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/map.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/map.json", "title": "Options Type Map", "description": "Properties specific to the Map option type.", "type": "object", @@ -14,7 +14,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/model.json b/schemas/actions/function/option/types/model.json index 2641956..0a4aa95 100644 --- a/schemas/actions/function/option/types/model.json +++ b/schemas/actions/function/option/types/model.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/model.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/model.json", "title": "Options Type Model", "description": "Properties specific to the Model option type.", "type": "object", @@ -14,7 +14,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/multiline-text.json b/schemas/actions/function/option/types/multiline-text.json index 4910469..6473b1a 100644 --- a/schemas/actions/function/option/types/multiline-text.json +++ b/schemas/actions/function/option/types/multiline-text.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/multiline-text.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/multiline-text.json", "title": "Options Type MultilineText", "description": "Properties specific to the MultilineText option type.", "type": "object", @@ -14,7 +14,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/number.json b/schemas/actions/function/option/types/number.json index 6fc0472..3c15d7c 100644 --- a/schemas/actions/function/option/types/number.json +++ b/schemas/actions/function/option/types/number.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/number.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/number.json", "title": "Options Type Number", "description": "Properties specific to the Number option type.", "type": "object", @@ -18,13 +18,13 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" }, "min": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/min" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/min" }, "max": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/max" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/max" } } } diff --git a/schemas/actions/function/option/types/object.json b/schemas/actions/function/option/types/object.json index 886afbf..d7c155e 100644 --- a/schemas/actions/function/option/types/object.json +++ b/schemas/actions/function/option/types/object.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/object.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/object.json", "title": "Options Type Object", "description": "Properties specific to the Object option type.", "type": "object", @@ -14,7 +14,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/output.json b/schemas/actions/function/option/types/output.json index 47c5897..7907d22 100644 --- a/schemas/actions/function/option/types/output.json +++ b/schemas/actions/function/option/types/output.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/output.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/output.json", "title": "Options Type Output", "description": "Properties specific to the Output option type.", "type": "object", @@ -137,7 +137,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/property-map.json b/schemas/actions/function/option/types/property-map.json index 03e5b7a..d3c0a45 100644 --- a/schemas/actions/function/option/types/property-map.json +++ b/schemas/actions/function/option/types/property-map.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/property-map.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/property-map.json", "title": "Options Type PropertyMap", "description": "Properties specific to the PropertyMap option type.", "type": "object", @@ -18,7 +18,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/property.json b/schemas/actions/function/option/types/property.json index 53cdd16..a42b420 100644 --- a/schemas/actions/function/option/types/property.json +++ b/schemas/actions/function/option/types/property.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/property.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/property.json", "title": "Options Type Property", "description": "Properties specific to the Property option type.", "type": "object", @@ -42,7 +42,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/record.json b/schemas/actions/function/option/types/record.json index 77ab1a4..7be9285 100644 --- a/schemas/actions/function/option/types/record.json +++ b/schemas/actions/function/option/types/record.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/record.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/record.json", "title": "Options Type Record", "description": "Properties specific to the Record option type.", "type": "object", @@ -10,14 +10,14 @@ "const": "Record" }, "additional": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/additional.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/additional.json" }, "validations": { "description": "The requirements for the given option.", "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/schema-model.json b/schemas/actions/function/option/types/schema-model.json index 6925b5d..2c238e2 100644 --- a/schemas/actions/function/option/types/schema-model.json +++ b/schemas/actions/function/option/types/schema-model.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/schema-model.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/schema-model.json", "title": "Options Type SchemaModel", "description": "Properties specific to the SchemaModel option type.", "type": "object", @@ -14,7 +14,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/select.json b/schemas/actions/function/option/types/select.json index f0c9427..e5fc01f 100644 --- a/schemas/actions/function/option/types/select.json +++ b/schemas/actions/function/option/types/select.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/select.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/select.json", "title": "Options Type Select", "description": "Properties specific to the Select option type.", "type": "object", @@ -33,7 +33,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/text.json b/schemas/actions/function/option/types/text.json index f3c2733..cf2fe3b 100644 --- a/schemas/actions/function/option/types/text.json +++ b/schemas/actions/function/option/types/text.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/text.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/text.json", "title": "Options Type Text", "description": "Properties specific to the Text option type.", "type": "object", @@ -18,7 +18,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/types/value.json b/schemas/actions/function/option/types/value.json index 45cf3a6..35cb39d 100644 --- a/schemas/actions/function/option/types/value.json +++ b/schemas/actions/function/option/types/value.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/value.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/types/value.json", "title": "Options Type Value", "description": "Properties specific to the Value option type.", "type": "object", @@ -33,7 +33,7 @@ "type": "object", "properties": { "required": { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json#/definitions/required" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json#/definitions/required" } } } diff --git a/schemas/actions/function/option/validation.json b/schemas/actions/function/option/validation.json index 133b467..86640f7 100644 --- a/schemas/actions/function/option/validation.json +++ b/schemas/actions/function/option/validation.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/option/validation.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/option/validation.json", "title": "Validation", "description": "The validation definitions for each option.", "type": "object", diff --git a/schemas/actions/function/paths.json b/schemas/actions/function/paths.json index 4b30ccc..8125fcc 100644 --- a/schemas/actions/function/paths.json +++ b/schemas/actions/function/paths.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/actions/function/paths.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/actions/function/paths.json", "title": "Paths", "description": "Paths that can be configured for a ActionStep. All the available types of options are found in the definitions.", "type": "object", @@ -25,10 +25,10 @@ }, "oneOf": [ { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/value.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/value.json" }, { - "$ref": "/bettyblocks/json-schema/acceptance/schemas/actions/function/option/types/filter.json" + "$ref": "/bettyblocks/json-schema/master/schemas/actions/function/option/types/filter.json" } ], "required": ["type"] diff --git a/schemas/models/schema_model.json b/schemas/models/schema_model.json index 8496e25..3071350 100644 --- a/schemas/models/schema_model.json +++ b/schemas/models/schema_model.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema", - "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/acceptance/schemas/models/schema_model.json", + "$id": "https://raw.githubusercontent.com/bettyblocks/json-schema/master/schemas/models/schema_model.json", "title": "Question", "description": "A Json Schema to validate client Json Schema in regards to the object property", "additionalProperties": false,