-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #291 from fetchai/develop
Release v0.1.10
- Loading branch information
Showing
14 changed files
with
520 additions
and
336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,114 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "Schema for the agent configuration file.", | ||
"additionalProperties": false, | ||
"type": "object", | ||
"required": [ | ||
"aea_version", | ||
"agent_name", | ||
"authors", | ||
"version", | ||
"license", | ||
"url", | ||
"private_key_paths", | ||
"connections", | ||
"default_connection", | ||
"protocols", | ||
"skills" | ||
], | ||
"properties": { | ||
"aea_version": {"type": "string"}, | ||
"agent_name": {"type": "string"}, | ||
"authors": {"type": "string"}, | ||
"version": {"type": "string"}, | ||
"license": {"type": "string"}, | ||
"url": {"type": "string"}, | ||
"registry_path": {"type": "string"}, | ||
"private_key_paths": { | ||
"type": "array", | ||
"additionalProperties": false, | ||
"uniqueItems": true, | ||
"items": { | ||
"type": "object", | ||
"required": ["private_key_path"], | ||
"properties": { | ||
"private_key_path": { "$ref": "#/definitions/private_key_path" } | ||
} | ||
} | ||
}, | ||
"connections": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": {"$ref": "definitions.json#/definitions/resource_name"} | ||
}, | ||
"default_connection": {"type": "string"}, | ||
"protocols": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": {"$ref": "definitions.json#/definitions/resource_name"} | ||
}, | ||
"skills": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": {"type": "string"} | ||
}, | ||
"logging_config": { | ||
"type": "object" | ||
}, | ||
"description": { | ||
"type": "string" | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "Schema for the agent configuration file.", | ||
"additionalProperties": false, | ||
"type": "object", | ||
"required": [ | ||
"aea_version", | ||
"agent_name", | ||
"authors", | ||
"version", | ||
"license", | ||
"url", | ||
"private_key_paths", | ||
"connections", | ||
"default_connection", | ||
"protocols", | ||
"skills" | ||
], | ||
"properties": { | ||
"aea_version": { | ||
"type": "string" | ||
}, | ||
"agent_name": { | ||
"type": "string" | ||
}, | ||
"authors": { | ||
"type": "string" | ||
}, | ||
"version": { | ||
"type": "string" | ||
}, | ||
"license": { | ||
"type": "string" | ||
}, | ||
"url": { | ||
"type": "string" | ||
}, | ||
"registry_path": { | ||
"type": "string" | ||
}, | ||
"private_key_paths": { | ||
"type": "array", | ||
"additionalProperties": false, | ||
"uniqueItems": true, | ||
"items": { | ||
"type": "object", | ||
"required": [ | ||
"private_key_path" | ||
], | ||
"properties": { | ||
"private_key_path": { | ||
"$ref": "#/definitions/private_key_path" | ||
} | ||
} | ||
} | ||
}, | ||
"connections": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { | ||
"$ref": "#/definitions/resource_name" | ||
} | ||
}, | ||
"default_connection": { | ||
"type": "string" | ||
}, | ||
"protocols": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { | ||
"$ref": "#/definitions/resource_name" | ||
} | ||
}, | ||
"skills": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"definitions": { | ||
"private_key_path": { | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": ["ledger", "path"], | ||
"properties": { | ||
"ledger": {"type": "string"}, | ||
"path": {"type": "string"} | ||
} | ||
"logging_config": { | ||
"type": "object" | ||
}, | ||
"description": { | ||
"type": "string" | ||
} | ||
}, | ||
"definitions": { | ||
"private_key_path": { | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ | ||
"ledger", | ||
"path" | ||
], | ||
"properties": { | ||
"ledger": { | ||
"type": "string" | ||
}, | ||
"path": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"requirement": { | ||
"type": "string", | ||
"pattern": "([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9._-]*[a-zA-Z0-9])( *(~=|==|>=|<=|!=|<|>) *v?(?:(?:(?P<epoch>[0-9]+)!)?(?P<release>[0-9]+(?:\\.[0-9]+)*)(?P<pre>[-_\\.]?(?P<pre_l>(a|b|c|rc|alpha|beta|pre|preview))[-_\\.]?(?P<pre_n>[0-9]+)?)?(?P<post>(?:-(?P<post_n1>[0-9]+))|(?:[-_\\.]?(?P<post_l>post|rev|r)[-_\\.]?(?P<post_n2>[0-9]+)?))?(?P<dev>[-_\\.]?(?P<dev_l>dev)[-_\\.]?(?P<dev_n>[0-9]+)?)?)(?:\\+(?P<local>[a-z0-9]+(?:[-_\\.][a-z0-9]+)*))?)?$" | ||
}, | ||
"resource_name": { | ||
"type": "string", | ||
"pattern": "[a-zA-Z_][a-zA-Z0-9_]*" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,66 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "Schema for the connection configuration file.", | ||
"additionalProperties": false, | ||
"type": "object", | ||
"required": [ | ||
"name", | ||
"authors", | ||
"version", | ||
"license", | ||
"url", | ||
"class_name", | ||
"supported_protocols", | ||
"config" | ||
], | ||
"properties": { | ||
"name": {"$ref": "definitions.json#/definitions/resource_name"}, | ||
"authors": {"type": "string"}, | ||
"version": {"type": "string"}, | ||
"license": {"type": "string"}, | ||
"url": {"type": "string"}, | ||
"class_name": {"type": "string"}, | ||
"supported_protocols": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": {"type": "string"} | ||
}, | ||
"config": {"type": "object"}, | ||
"dependencies": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { "$ref": "definitions.json#/definitions/requirement" } | ||
}, | ||
"description": {"type": "string"} | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "Schema for the connection configuration file.", | ||
"additionalProperties": false, | ||
"type": "object", | ||
"required": [ | ||
"name", | ||
"authors", | ||
"version", | ||
"license", | ||
"url", | ||
"class_name", | ||
"supported_protocols", | ||
"config" | ||
], | ||
"properties": { | ||
"name": { | ||
"$ref": "#/definitions/resource_name" | ||
}, | ||
"authors": { | ||
"type": "string" | ||
}, | ||
"version": { | ||
"type": "string" | ||
}, | ||
"license": { | ||
"type": "string" | ||
}, | ||
"url": { | ||
"type": "string" | ||
}, | ||
"class_name": { | ||
"type": "string" | ||
}, | ||
"supported_protocols": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"config": { | ||
"type": "object" | ||
}, | ||
"dependencies": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { | ||
"$ref": "#/definitions/requirement" | ||
} | ||
}, | ||
"description": { | ||
"type": "string" | ||
} | ||
}, | ||
"definitions": { | ||
"requirement": { | ||
"type": "string", | ||
"pattern": "([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9._-]*[a-zA-Z0-9])( *(~=|==|>=|<=|!=|<|>) *v?(?:(?:(?P<epoch>[0-9]+)!)?(?P<release>[0-9]+(?:\\.[0-9]+)*)(?P<pre>[-_\\.]?(?P<pre_l>(a|b|c|rc|alpha|beta|pre|preview))[-_\\.]?(?P<pre_n>[0-9]+)?)?(?P<post>(?:-(?P<post_n1>[0-9]+))|(?:[-_\\.]?(?P<post_l>post|rev|r)[-_\\.]?(?P<post_n2>[0-9]+)?))?(?P<dev>[-_\\.]?(?P<dev_l>dev)[-_\\.]?(?P<dev_n>[0-9]+)?)?)(?:\\+(?P<local>[a-z0-9]+(?:[-_\\.][a-z0-9]+)*))?)?$" | ||
}, | ||
"resource_name": { | ||
"type": "string", | ||
"pattern": "[a-zA-Z_][a-zA-Z0-9_]*" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,50 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "Schema for the protocol configuration file.", | ||
"additionalProperties": false, | ||
"type": "object", | ||
"required": [ | ||
"name", | ||
"authors", | ||
"version", | ||
"license", | ||
"url" | ||
], | ||
"properties": { | ||
"name": {"$ref": "definitions.json#/definitions/resource_name"}, | ||
"authors": {"type": "string"}, | ||
"version": {"type": "string"}, | ||
"license": {"type": "string"}, | ||
"url": {"type": "string"}, | ||
"dependencies": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { "$ref": "definitions.json#/definitions/requirement" } | ||
}, | ||
"description": {"type": "string"} | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "Schema for the protocol configuration file.", | ||
"additionalProperties": false, | ||
"type": "object", | ||
"required": [ | ||
"name", | ||
"authors", | ||
"version", | ||
"license", | ||
"url" | ||
], | ||
"properties": { | ||
"name": { | ||
"$ref": "#/definitions/resource_name" | ||
}, | ||
"authors": { | ||
"type": "string" | ||
}, | ||
"version": { | ||
"type": "string" | ||
}, | ||
"license": { | ||
"type": "string" | ||
}, | ||
"url": { | ||
"type": "string" | ||
}, | ||
"dependencies": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { | ||
"$ref": "#/definitions/requirement" | ||
} | ||
}, | ||
"description": { | ||
"type": "string" | ||
} | ||
}, | ||
"definitions": { | ||
"requirement": { | ||
"type": "string", | ||
"pattern": "([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9._-]*[a-zA-Z0-9])( *(~=|==|>=|<=|!=|<|>) *v?(?:(?:(?P<epoch>[0-9]+)!)?(?P<release>[0-9]+(?:\\.[0-9]+)*)(?P<pre>[-_\\.]?(?P<pre_l>(a|b|c|rc|alpha|beta|pre|preview))[-_\\.]?(?P<pre_n>[0-9]+)?)?(?P<post>(?:-(?P<post_n1>[0-9]+))|(?:[-_\\.]?(?P<post_l>post|rev|r)[-_\\.]?(?P<post_n2>[0-9]+)?))?(?P<dev>[-_\\.]?(?P<dev_l>dev)[-_\\.]?(?P<dev_n>[0-9]+)?)?)(?:\\+(?P<local>[a-z0-9]+(?:[-_\\.][a-z0-9]+)*))?)?$" | ||
}, | ||
"resource_name": { | ||
"type": "string", | ||
"pattern": "[a-zA-Z_][a-zA-Z0-9_]*" | ||
} | ||
} | ||
} |
Oops, something went wrong.