UNPKG

rallf-js-sdk

Version:

Toolset to create Tasks for RALLF

52 lines 1.36 kB
{ "id": "RALLF-MANIFEST", "type": "object", "properties": { "name": { "type": "string", "minLength": 2, "pattern": "^[\\w\\d-_.@$]*$" }, "fqtn": { "type": "string", "minLength": 2, "pattern": "^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.){2,}([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\\-]*[A-Za-z0-9]){2,}$" }, "version": { "type": "string", "pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(-(0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(\\.(0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*)?(\\+[0-9a-zA-Z-]+(\\.[0-9a-zA-Z-]+)*)?$" }, "sdk_version": { "type": "string", "pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(-(0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(\\.(0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*)?(\\+[0-9a-zA-Z-]+(\\.[0-9a-zA-Z-]+)*)?$" }, "language": { "type": "string", "pattern": "^nodejs|python$" }, "devices": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "headless": { "type": "boolean" }, "profile": { "type": "string" } } } }, "main": { "type": "string" } }, "required": [ "name", "main" ] }