Skip to content

Commit f30bbfd

Browse files
committed
json-script.com -> jsonscript.org
1 parent 901e10d commit f30bbfd

20 files changed

Lines changed: 81 additions & 81 deletions

SCHEMA.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
JSONScript uses JSON-Schema standard both for the validation schemas and for the schemas that define macro expansion and evaluation process.
44

5-
[JSONScript schema](http://www.json-script.com/schema/schema.json#) - the schema for JSONScript that does not validate scalar keywords in instructions (keyword values can be scripts and have to be validated when the script is evaluated).
5+
[JSONScript schema](http://www.jsonscript.org/schema/schema.json#) - the schema for JSONScript that does not validate scalar keywords in instructions (keyword values can be scripts and have to be validated when the script is evaluated).
66

7-
[JSONScript strict schema](http://www.json-script.com/schema/schema_strict.json#) - the schema for JSONScript that validates scalar keywords in instructions.
7+
[JSONScript strict schema](http://www.jsonscript.org/schema/schema_strict.json#) - the schema for JSONScript that validates scalar keywords in instructions.
88

9-
[Macro expansion schema](http://www.json-script.com/schema/expand_macros.json#) - this schema defines macro expansion process. It can be used by implementations to expand macros in the scripts before their evaluation. It contains non-standard keyword `expandJsMacro`.
9+
[Macro expansion schema](http://www.jsonscript.org/schema/expand_macros.json#) - this schema defines macro expansion process. It can be used by implementations to expand macros in the scripts before their evaluation. It contains non-standard keyword `expandJsMacro`.
1010

11-
[Evaluation schema](http://www.json-script.com/schema/evaluate.json#) - this schema defines evalution process. It can be used by implementations to evaluate scripts. It contains non-standard keywords.
11+
[Evaluation schema](http://www.jsonscript.org/schema/evaluate.json#) - this schema defines evalution process. It can be used by implementations to evaluate scripts. It contains non-standard keywords.
1212

13-
[Instruction definition schema](http://www.json-script.com/schema/instruction.json#) - the schema for instruction defnitions. The definitions of both standard and user-defined instructions should be valid according to this schema.
13+
[Instruction definition schema](http://www.jsonscript.org/schema/instruction.json#) - the schema for instruction defnitions. The definitions of both standard and user-defined instructions should be valid according to this schema.
1414

15-
[Macro definition schema](http://www.json-script.com/schema/macro.json#) - the schema for macro definition. The definitions of both standard and user-defined macros should be valid according to this schema.
15+
[Macro definition schema](http://www.jsonscript.org/schema/macro.json#) - the schema for macro definition. The definitions of both standard and user-defined macros should be valid according to this schema.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsonscript",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "Platform independent asynchronous and concurrent scripting language using JSON format",
55
"main": "index.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/JSONScript/jsonscript",
2525
"devDependencies": {
26-
"ajv": "^4.0.4",
26+
"ajv": "^4.7.0",
2727
"dot": "^1.0.3",
2828
"gh-pages-generator": "^0.2.2",
2929
"json-schema-test": "^1.2.1",

schema/evaluate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"id": "http://www.json-script.com/schema/evaluate.json#",
2+
"id": "http://www.jsonscript.org/schema/evaluate.json#",
33
"$schema": "https://raw.githubusercontent.com/epoberezkin/ajv/master/lib/refs/json-schema-v5.json#",
44
"title": "JSONScript evaluation schema",
55
"description": "Schema with custom keywords that evaluates JSON script. It assumes that the script is valid",

schema/evaluate.json.dot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"id": "http://www.json-script.com/schema/evaluate.json#",
2+
"id": "http://www.jsonscript.org/schema/evaluate.json#",
33
"$schema": "https://raw.githubusercontent.com/epoberezkin/ajv/master/lib/refs/json-schema-v5.json#",
44
"title": "JSONScript evaluation schema",
55
"description": "Schema with custom keywords that evaluates JSON script. It assumes that the script is valid",

schema/expand_macros.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"id": "http://www.json-script.com/schema/expand_macros.json#",
2+
"id": "http://www.jsonscript.org/schema/expand_macros.json#",
33
"$schema": "https://raw.githubusercontent.com/epoberezkin/ajv/master/lib/refs/json-schema-v5.json#",
44
"title": "JSONScript macro expansion schema",
55
"description": "Schema with custom keywords that expands macros in JSON script.",

schema/expand_macros.json.dot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"id": "http://www.json-script.com/schema/expand_macros.json#",
2+
"id": "http://www.jsonscript.org/schema/expand_macros.json#",
33
"$schema": "https://raw.githubusercontent.com/epoberezkin/ajv/master/lib/refs/json-schema-v5.json#",
44
"title": "JSONScript macro expansion schema",
55
"description": "Schema with custom keywords that expands macros in JSON script.",

schema/instruction.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"id": "http://www.json-script.com/schema/instruction.json#",
2+
"id": "http://www.jsonscript.org/schema/instruction.json#",
33
"$schema": "https://raw.githubusercontent.com/epoberezkin/ajv/master/lib/refs/json-schema-v5.json#",
44
"description": "schema for instruction definition",
55
"type": "object",

schema/macro.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"id": "http://www.json-script.com/schema/macro.json#",
2+
"id": "http://www.jsonscript.org/schema/macro.json#",
33
"$schema": "https://raw.githubusercontent.com/epoberezkin/ajv/master/lib/refs/json-schema-v5.json#",
44
"description": "schema for macro definition",
55
"type": "object",

schema/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"id": "http://www.json-script.com/schema/schema.json#",
2+
"id": "http://www.jsonscript.org/schema/schema.json#",
33
"$schema": "https://raw.githubusercontent.com/epoberezkin/ajv/master/lib/refs/json-schema-v5.json#",
44
"title": "JSONScript schema",
55
"description": "JSONScript script with instructions (generated from template)",

schema/schema.json.dot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"id": "http://www.json-script.com/schema/schema{{?it.strictSchema}}_strict{{?}}.json#",
2+
"id": "http://www.jsonscript.org/schema/schema{{?it.strictSchema}}_strict{{?}}.json#",
33
"$schema": "https://raw.githubusercontent.com/epoberezkin/ajv/master/lib/refs/json-schema-v5.json#",
44
"title": "JSONScript schema",
55
"description": "JSONScript script with instructions (generated from template)",

0 commit comments

Comments
 (0)