Skip to content

Commit

Permalink
Enforce master in $id URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
BB JSON Schema committed Sep 5, 2023
1 parent 9e2b024 commit 681cfa4
Show file tree
Hide file tree
Showing 29 changed files with 79 additions and 79 deletions.
6 changes: 3 additions & 3 deletions schemas/actions/function.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
42 changes: 21 additions & 21 deletions schemas/actions/function/option.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"]
Expand All @@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions schemas/actions/function/option/additional.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
4 changes: 2 additions & 2 deletions schemas/actions/function/option/additional/model.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion schemas/actions/function/option/additional/properties.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion schemas/actions/function/option/configuration.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions schemas/actions/function/option/types/action.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions schemas/actions/function/option/types/boolean.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions schemas/actions/function/option/types/collection.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions schemas/actions/function/option/types/filter.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions schemas/actions/function/option/types/input-variable-map.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions schemas/actions/function/option/types/json.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions schemas/actions/function/option/types/map.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions schemas/actions/function/option/types/model.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions schemas/actions/function/option/types/multiline-text.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions schemas/actions/function/option/types/number.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions schemas/actions/function/option/types/object.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}
}
Expand Down
Loading

0 comments on commit 681cfa4

Please sign in to comment.