schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition.json | avro_name | avro compatible name set by creator OR derived from name | {"oneOf": [{"type": "string"}, {"type": "null"}], "default": ""} |
strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition.json | doc | constraints:
size < 5000 | {"oneOf": [{"type": "string"}, {"type": "null"}], "default": ""} |
strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition.json | name | constraints: same as SimpleSchemaDefinition | {"oneOf": [{"type": "string"}, {"type": "null"}], "default": ""} |
iobroker.json | IoBJson | The ioBroker global config | {"type": "object", "properties": {"system": {"type": "object", "properties": {"memoryLimitMB": {"type": "number"}, "hostname": {"type": "string"}, "statisticsInterval": {"type": "number"}, "// statisticsInterval": {"type": "string"}, "checkDiskInterval": {"type": "number"}, "// checkDiskInterval": {"type": "string"}, "instanceStartInterval": {"type": "number"}, "compact": {"type": "boolean"}, "// compact": {"type": "string"}, "allowShellCommands": {"type": "boolean"}, "// allowShellCommands": {"type": "string"}, "memLimitWarn": {"type": "number"}, "// memLimitWarn": {"type": "string"}, "memLimitError": {"type": "number"}, "// memLimitError": {"type": "string"}}, "required": ["memoryLimitMB", "hostname", "statisticsInterval", "// statisticsInterval", "checkDiskInterval", "// checkDiskInterval", "instanceStartInterval", "compact", "// compact", "allowShellCommands", "// allowShellCommands", "memLimitWarn", "// memLimitWarn", "memLimitError", "// memLimitError"], "additionalProperties": false}, "multihostService": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "secure": {"type": "boolean"}, "password": {"type": "string"}}, "required": ["enabled", "secure", "password"], "additionalProperties": false}, "objects": {}, "states": {}, "log": {"type": "object", "properties": {"level": {"type": "string"}, "maxDays": {"type": "number"}, "noStdout": {"type": "boolean"}, "transport": {"type": "object"}}, "required": ["level", "maxDays", "noStdout", "transport"], "additionalProperties": false}, "dataDir": {"type": "string"}, "// dataDir": {"type": "string"}, "plugins": {"type": "object", "additionalProperties": {"type": "object", "properties": {"enabled": {"type": "boolean"}}, "required": ["enabled"], "additionalProperties": {}}}, "// dnsResolution": {"type": "string"}, "dnsResolution": {"type": "string", "enum": ["verbatim", "ipv4first"]}}, "required": ["system", "multihostService", "objects", "states", "log", "dataDir", "// dataDir", "plugins", "// dnsResolution", "dnsResolution"], "additionalProperties": false} |
iobroker.json | memoryLimitMB | do not use more than memory limit mb by ioB process (0 to deactivate) | {"type": "number"} |
iobroker.json | hostname | if empty, determine use real hostname | {"type": "string"} |
iobroker.json | statisticsInterval | Interval how often the counters for input/output in adapters and controller will be updated in ms | {"type": "number"} |
iobroker.json | checkDiskInterval | Interval how often the disk size will be checked in ms | {"type": "number"} |
iobroker.json | instanceStartInterval | interval to wait between multiple instances starts | {"type": "number"} |
iobroker.json | compact | Controller will try to start the instances as a part of the same process. No spawn will be done. Only by adapters that support it and have flag compact flag in io-package.json | {"type": "boolean"} |
iobroker.json | allowShellCommands | Allow execution of "shell" sendToHost commands | {"type": "boolean"} |
iobroker.json | memLimitWarn | If the available RAM is below this threshold on adapter start, a warning will be logged. | {"type": "number"} |
iobroker.json | memLimitError | If the available RAM is below this threshold on adapter start, an error will be logged. | {"type": "number"} |
iobroker.json | dataDir | Always relative to iobroker.js-controller/ | {"type": "string"} |
iobroker.json | dnsResolution | Use 'verbatim' for ipv6 first, else use 'ipv4first' | {"type": "string", "enum": ["verbatim", "ipv4first"]} |
iobroker.json | type | Possible values: 'file' - [port 9001], 'jsonl' - [port 9001], 'redis' - [port 6379 or 26379 for sentinel]. | {"type": "string", "enum": ["jsonl", "file", "redis"]} |
iobroker.json | files | Minimal number of backup files, after the deletion will be executed according to backupTime settings | {"type": "number"} |
iobroker.json | hours | All backups older than configured hours will be deleted. But only if the number of files is greater than of backupNumber | {"type": "number"} |
iobroker.json | period | by default backup every 2 hours. Time is in minutes. To disable backup set the value to 0 | {"type": "number"} |
iobroker.json | path | Absolute path to backup directory or empty to backup in data directory | {"type": "string"} |
iobroker.json | autoCompress | The JSONL DB is append-only and will contain unnecessary entries after a while. It will be compressed when the uncompressed size is >= size * sizeFactor AND >= sizeFactorMinimumSize Note that too low values here will cause the DB to be rewritten often. | {"type": "object", "properties": {"sizeFactor": {"type": "number"}, "sizeFactorMinimumSize": {"type": "number"}}, "required": ["sizeFactor", "sizeFactorMinimumSize"], "additionalProperties": false} |
iobroker.json | ignoreReadErrors | If single lines in the DB are corrupted, they can be ignored without losing the whole DB. | {"type": "boolean", "const": true} |
iobroker.json | throttleFS | By default, the database immediately writes to the database file. Write accesses can be reduced using the throttleFS option. Be aware that buffered changes will be lost in case the process crashes | {"type": "object", "properties": {"// intervalMs": {"type": "string"}, "intervalMs": {"type": "number"}, "// maxBufferedCommands": {"type": "string"}, "maxBufferedCommands": {"type": "number"}}, "required": ["// intervalMs", "intervalMs", "// maxBufferedCommands", "maxBufferedCommands"], "additionalProperties": false} |
iobroker.json | intervalMs | Write to the database file no more than every intervalMs milliseconds. | {"type": "number"} |
iobroker.json | maxBufferedCommands | Force writing after this many changes have been buffered. This reduces memory consumption and data loss in case of a crash. | {"type": "number"} |
iobroker.json | type | Possible values: 'file' - [port 9001], 'jsonl' - [port 9001], 'redis' - [port 6379 or 26379 for sentinel]. | {"type": "string", "enum": ["jsonl", "file", "redis"]} |
lgtm.json | Configuration file for lgtm, for continuous security analysis. | {"$schema": "http://json-schema.org/draft-04/schema#", "definitions": {"queryItem": {"type": "object", "properties": {"id": {"type": "string"}, "severity": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}}}, "id": "https://json.schemastore.org/lgtm.json", "properties": {"path_classifiers": {"type": "object", "additionalProperties": {"type": "array", "items": {"type": ["string", "object"], "properties": {"exclude": {"type": "string"}}}}}, "queries": {"type": ["array", "null"], "items": {"properties": {"exclude": {}, "include": {}}}}, "extraction": {"type": "object", "additionalProperties": {"type": "object", "properties": {"prepare": {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}}}, "after_prepare": {"type": "array", "items": {"type": "string"}}, "before_index": {"type": "array", "items": {"type": "string"}}, "index": {"type": "object", "properties": {"all_solutions": {"type": "boolean", "default": false}, "build_command": {"type": ["array", "string"], "items": {"type": "string"}}, "buildless": {"type": "boolean", "default": false}, "dotnet": {"type": "object", "properties": {"arguments": {"type": "array", "items": {"type": "string"}, "default": []}, "version": {"type": "string"}}}, "exclude": {"type": "array", "items": {"type": "string"}}, "filetypes": {"additionalProperties": {"type": "string"}}, "gradle": {"type": "object", "properties": {"version": {"type": ["string", "number"]}}}, "include": {"type": "array", "items": {"type": "string"}}, "java_version": {"type": ["string", "number"]}, "maven": {"type": "object", "properties": {"settings_file": {"type": "string"}, "toolchains_file": {"type": "string"}, "version": {"type": ["string", "number"]}}}, "msbuild": {"type": "object", "properties": {"arguments": {"type": "array", "items": {"type": "string"}}, "configuration": {"type": "string"}, "platform": {"type": "string"}, "target": {"type": "string", "default": "rebuild"}}}, "nuget_restore": {"type": "boolean", "default": true}, "properties_files": {"type": "boolean", "default": false}, "solution": {"type": "array", "items": {"type": "string"}}, "typescript": {"enum": ["none", "basic", "full"], "default": "full"}, "xml_mode": {"enum": ["all", "default", "disabled"]}}}, "configure": {"type": "object", "properties": {"command": {"type": ["array", "null"], "items": {"type": "string"}}}}, "python_setup": {"type": "object", "properties": {"exclude_requirements": {"type": "array", "items": {"type": "string"}}, "requirements": {"type": "array", "items": {"type": "string"}}, "requirements_files": {"type": ["array", "boolean"], "items": {"type": "string"}}, "setup_py": {"type": "string"}, "version": {"type": ["string", "number"], "default": 3}}}}}}}, "type": "object"} |
|
lgtm.json | id | Use to identify a specific query whose results you want to include or exclude from display on LGTM. | {"type": "string"} |
lgtm.json | severity | Use to specify a single level of severity (error, warning or recommendation) for queries whose results you want to include or exclude from display. | {"type": "string"} |
lgtm.json | tags | Use to specify one or more tags for queries whose results you want to include or exclude from display. | {"type": "array", "items": {"type": "string"}} |
lgtm.json | path_classifiers | Defines the tag that you want to modify. Usually this is a built-in tag, but you can define your own tags. | {"type": "object", "additionalProperties": {"type": "array", "items": {"type": ["string", "object"], "properties": {"exclude": {"type": "string"}}}}} |
lgtm.json | additionalProperties | Classify files on this path with the parent tag. | {"type": "array", "items": {"type": ["string", "object"], "properties": {"exclude": {"type": "string"}}}} |
lgtm.json | exclude | Do not classify files on this path with the parent tag. | {"type": "string"} |
lgtm.json | exclude | Hide the results for queries with the specified properties. | {} |
lgtm.json | include | Show the results for queries with the specified properties. | {} |
lgtm.json | prepare | Customizable step used by all languages. | {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}}} |
lgtm.json | packages | One or more packages to install. | {"type": "array", "items": {"type": "string"}} |
lgtm.json | after_prepare | Customizable step used by all languages. | {"type": "array", "items": {"type": "string"}} |
lgtm.json | before_index | Customizable step used by all languages. | {"type": "array", "items": {"type": "string"}} |
lgtm.json | index | Customizable step used by all languages. | {"type": "object", "properties": {"all_solutions": {"type": "boolean", "default": false}, "build_command": {"type": ["array", "string"], "items": {"type": "string"}}, "buildless": {"type": "boolean", "default": false}, "dotnet": {"type": "object", "properties": {"arguments": {"type": "array", "items": {"type": "string"}, "default": []}, "version": {"type": "string"}}}, "exclude": {"type": "array", "items": {"type": "string"}}, "filetypes": {"additionalProperties": {"type": "string"}}, "gradle": {"type": "object", "properties": {"version": {"type": ["string", "number"]}}}, "include": {"type": "array", "items": {"type": "string"}}, "java_version": {"type": ["string", "number"]}, "maven": {"type": "object", "properties": {"settings_file": {"type": "string"}, "toolchains_file": {"type": "string"}, "version": {"type": ["string", "number"]}}}, "msbuild": {"type": "object", "properties": {"arguments": {"type": "array", "items": {"type": "string"}}, "configuration": {"type": "string"}, "platform": {"type": "string"}, "target": {"type": "string", "default": "rebuild"}}}, "nuget_restore": {"type": "boolean", "default": true}, "properties_files": {"type": "boolean", "default": false}, "solution": {"type": "array", "items": {"type": "string"}}, "typescript": {"enum": ["none", "basic", "full"], "default": "full"}, "xml_mode": {"enum": ["all", "default", "disabled"]}}} |
lgtm.json | all_solutions | Specify that all project or solution files should be used for extraction. | {"type": "boolean", "default": false} |
lgtm.json | buildless | Specify whether or not to extract the codebase without building the code. | {"type": "boolean", "default": false} |
lgtm.json | arguments | Specify a list of additional arguments to dotnet build. | {"type": "array", "items": {"type": "string"}, "default": []} |
lgtm.json | version | Specify the version of the .NET Core SDK to use. | {"type": "string"} |
lgtm.json | exclude | Specify a list of files and folders to exclude from extraction. Each path is specified by defining paths relative to LGTM_SRC. | {"type": "array", "items": {"type": "string"}} |
lgtm.json | filetypes | Specify additional file types to extract. | {"additionalProperties": {"type": "string"}} |
lgtm.json | include | Specify a list of files and folders to scan for files to extract. | {"type": "array", "items": {"type": "string"}} |
lgtm.json | java_version | Specify the Java version required to build the project. | {"type": ["string", "number"]} |
lgtm.json | maven | Specify Maven settings to use by specifying one or more of the maven subproperties detailed below. | {"type": "object", "properties": {"settings_file": {"type": "string"}, "toolchains_file": {"type": "string"}, "version": {"type": ["string", "number"]}}} |
lgtm.json | settings_file | Specify the path (absolute or relative) of a Maven settings file to use. | {"type": "string"} |
lgtm.json | toolchains_file | Specify the path of a Maven toolchains file to use. | {"type": "string"} |
lgtm.json | version | Specify the required Maven version. | {"type": ["string", "number"]} |
lgtm.json | arguments | Specify a list of additional arguments to MSBuild. | {"type": "array", "items": {"type": "string"}} |
lgtm.json | configuration | Specify the MSBuild configuration to use, for example, debug or release. | {"type": "string"} |
lgtm.json | platform | Specify the platform to target, for example: x86, x64, or Any CPU. | {"type": "string"} |
lgtm.json | target | Specify the MSBuild target. | {"type": "string", "default": "rebuild"} |
lgtm.json | nuget_restore | Specify whether or not to perform a NuGet restore for extraction. | {"type": "boolean", "default": true} |
lgtm.json | properties_files | Specify whether .properties files are extracted. | {"type": "boolean", "default": false} |
lgtm.json | solution | Specify a list of one or more project or solution files for extraction. | {"type": "array", "items": {"type": "string"}} |
lgtm.json | typescript | pecify how TypeScript files should be extracted. | {"enum": ["none", "basic", "full"], "default": "full"} |
lgtm.json | xml_mode | Specify how XML files should be extracted. | {"enum": ["all", "default", "disabled"]} |
lgtm.json | configure | Customizable step used only by C/C++ extraction. | {"type": "object", "properties": {"command": {"type": ["array", "null"], "items": {"type": "string"}}}} |
lgtm.json | command | Override the default process by specifying a list of commands to run to generate the build configuration. | {"type": ["array", "null"], "items": {"type": "string"}} |
lgtm.json | python_setup | This step is used only by Python blocks. It sets up the Python interpreter and virtual environment, ready for the index step to extract the codebase. | {"type": "object", "properties": {"exclude_requirements": {"type": "array", "items": {"type": "string"}}, "requirements": {"type": "array", "items": {"type": "string"}}, "requirements_files": {"type": ["array", "boolean"], "items": {"type": "string"}}, "setup_py": {"type": "string"}, "version": {"type": ["string", "number"], "default": 3}}} |
lgtm.json | exclude_requirements | Specify packages to exclude from extraction/analysis. | {"type": "array", "items": {"type": "string"}} |
lgtm.json | requirements | Specify a list of pip packages to install. If any of these packages cannot be installed, the extraction will fail. | {"type": "array", "items": {"type": "string"}} |
lgtm.json | requirements_files | Specify a list of requirements text files to use to set up the environment, or false for none. | {"type": ["array", "boolean"], "items": {"type": "string"}} |
lgtm.json | setup_py | Specify a setup.py file to use to set up the environment, or false for none. | {"type": "string"} |
lgtm.json | version | Override the version of the Python interpreter used for setup and extraction. | {"type": ["string", "number"], "default": 3} |
pulumi.json | A schema for Pulumi project files. | {"$defs": {"pluginOptions": {"type": "object", "additionalProperties": false, "required": ["name", "path"], "properties": {"name": {"type": "string"}, "path": {"type": "string"}, "version": {"type": "string"}}}, "simpleConfigType": {"enum": ["string", "integer", "boolean", "array"]}, "configItemsType": {"type": "object", "required": ["type"], "properties": {"type": {"oneOf": [{}, {}]}, "items": {}}, "if": {"properties": {"type": {"const": "array"}}}, "then": {}}, "configTypeDeclaration": {"type": "object", "additionalProperties": false, "properties": {"type": {}, "items": {}, "secret": {"type": "boolean"}, "default": {}, "value": {}}}}, "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": true, "properties": {"name": {"type": "string", "minLength": 1}, "author": {"type": ["string", "null"]}, "website": {"type": ["string", "null"]}, "license": {"type": ["string", "null"]}, "runtime": {"oneOf": [{"type": "string", "minLength": 1}, {"type": "object", "properties": {"name": {"type": "string", "minLength": 1}, "options": {"type": "object", "additionalProperties": true}}, "additionalProperties": false}]}, "main": {"type": ["string", "null"]}, "config": {"type": ["object", "null"], "properties": {"secret": {"type": "boolean", "default": false}}, "additionalProperties": {"oneOf": [{"type": "string"}, {"type": "integer"}, {"type": "boolean"}, {"type": "array"}, {}]}}, "stackConfigDir": {"type": ["string", "null"]}, "backend": {"type": ["object", "null"], "properties": {"url": {"type": "string"}}, "additionalProperties": false}, "options": {"type": ["object", "null"], "properties": {"refresh": {"type": "string", "const": "always"}}, "additionalProperties": false}, "template": {"type": ["object", "null"], "properties": {"quickstart": {"type": ["string", "null"]}, "important": {"type": ["boolean", "null"]}, "config": {"type": ["object", "null"], "additionalProperties": {"type": "object", "properties": {"default": {}, "secret": {"type": ["boolean", "null"]}}}}}, "additionalProperties": false}, "plugins": {"type": "object", "properties": {"providers": {"type": "array", "items": {}}, "analyzers": {"type": "array", "items": {}}, "languages": {"type": "array", "items": {}}}}}, "required": ["name", "runtime"], "type": "object"} |
|
pulumi.json | name | Name of the plugin | {"type": "string"} |
pulumi.json | path | Path to the plugin folder | {"type": "string"} |
pulumi.json | version | Version of the plugin, if not set, will match any version the engine requests. | {"type": "string"} |
pulumi.json | name | Name of the project containing alphanumeric characters, hyphens, underscores, and periods. | {"type": "string", "minLength": 1} |
pulumi.json | description | Description of the project. | {"type": ["string", "null"]} |
pulumi.json | author | Author is an optional author that created this project. | {"type": ["string", "null"]} |
pulumi.json | website | Website is an optional website for additional info about this project. | {"type": ["string", "null"]} |
pulumi.json | license | License is the optional license governing this project's usage. | {"type": ["string", "null"]} |
pulumi.json | main | Path to the Pulumi program. The default is the working directory. | {"type": ["string", "null"]} |
pulumi.json | config | A map of configuration keys to their types. Using config directory location relative to the location of Pulumi.yaml is a deprecated use of this key. Use stackConfigDir instead. | {"type": ["object", "null"], "properties": {"secret": {"type": "boolean", "default": false}}, "additionalProperties": {"oneOf": [{"type": "string"}, {"type": "integer"}, {"type": "boolean"}, {"type": "array"}, {}]}} |
pulumi.json | secret | If true this configuration value should be encrypted. | {"type": "boolean", "default": false} |
pulumi.json | stackConfigDir | Config directory location relative to the location of Pulumi.yaml. | {"type": ["string", "null"]} |
pulumi.json | backend | Backend of the project. | {"type": ["object", "null"], "properties": {"url": {"type": "string"}}, "additionalProperties": false} |
pulumi.json | url | URL is optional field to explicitly set backend url | {"type": "string"} |
pulumi.json | options | Additional project options. | {"type": ["object", "null"], "properties": {"refresh": {"type": "string", "const": "always"}}, "additionalProperties": false} |
pulumi.json | refresh | Set to "always" to refresh the state before performing a Pulumi operation. | {"type": "string", "const": "always"} |
pulumi.json | template | ProjectTemplate is a Pulumi project template manifest. | {"type": ["object", "null"], "properties": {"quickstart": {"type": ["string", "null"]}, "important": {"type": ["boolean", "null"]}, "config": {"type": ["object", "null"], "additionalProperties": {"type": "object", "properties": {"default": {}, "secret": {"type": ["boolean", "null"]}}}}}, "additionalProperties": false} |
pulumi.json | description | Description of the template. | {"type": ["string", "null"]} |
pulumi.json | quickstart | Quickstart contains optional text to be displayed after template creation. | {"type": ["string", "null"]} |
pulumi.json | important | Important indicates the template is important and should be listed by default. | {"type": ["boolean", "null"]} |
pulumi.json | config | Config to apply to each stack in the project. | {"type": ["object", "null"], "additionalProperties": {"type": "object", "properties": {"default": {}, "secret": {"type": ["boolean", "null"]}}}} |
pulumi.json | description | Description of the config. | {"type": ["string", "null"]} |
pulumi.json | default | Default value of the config. | {} |
pulumi.json | secret | Boolean indicating if the configuration is labeled as a secret. | {"type": ["boolean", "null"]} |
pulumi.json | plugins | Override for the plugin selection. Intended for use in developing pulumi plugins. | {"type": "object", "properties": {"providers": {"type": "array", "items": {}}, "analyzers": {"type": "array", "items": {}}, "languages": {"type": "array", "items": {}}}} |
pulumi.json | providers | Plugins for resource providers. | {"type": "array", "items": {}} |
pulumi.json | analyzers | Plugins for policy analyzers. | {"type": "array", "items": {}} |
pulumi.json | languages | Plugins for languages. | {"type": "array", "items": {}} |
mta.json | MTA DESCRIPTOR SCHEMA | {"$schema": "http://json-schema.org/draft-07/schema#", "definitions": {"generic-memory": {"type": "string", "pattern": "^[1-9][0-9]*(M|MB|G|GB|m|mb|g|gb)$"}, "properties": {"type": "object"}, "properties-metadata": {"type": "object", "properties": {"overwritable": {"type": "boolean", "default": true}, "optional": {"type": "boolean", "default": false}, "datatype": {"enum": ["str", "int", "float", "bool"], "type": "string", "default": "str"}}}, "parameters": {"type": "object"}, "parameters-metadata": {"type": "object", "properties": {"overwritable": {"type": "boolean", "default": true}, "optional": {"type": "boolean", "default": false}}}, "includes": {"type": "array", "items": {"type": "object", "required": ["name", "path"], "properties": {"name": {"type": "string"}, "path": {"type": "string"}}}}, "hooks": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "type": {"type": "string", "enum": ["task"]}, "phases": {"type": "array", "items": {"type": "string", "enum": ["application.before-stop.live", "application.before-stop.idle", "application.after-stop.live", "application.after-stop.idle"]}}, "parameters": {}, "parameters-metadata": {}, "requires": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "parameters": {"type": "object"}, "parameters-metadata": {}}}}}}}, "hooks-parameters": {"type": "object", "required": ["command"], "properties": {"name": {"type": "string"}, "command": {"type": "string"}, "memory": {}, "disk-quota": {}}}}, "properties": {"_schema-version": {"type": "string"}, "ID": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "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-]+)*)?$"}, "provider": {"type": "string"}, "copyright": {"type": "string"}, "modules": {"type": "array", "items": {"type": "object", "required": ["name", "type"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "type": {"type": "string"}, "path": {"type": "string"}, "deployed-after": {"type": "array", "items": {"type": "string"}}, "properties": {}, "properties-metadata": {}, "parameters": {}, "parameters-metadata": {}, "hooks": {}, "build-parameters": {"type": "object"}, "includes": {"type": "array", "items": {"type": "object", "required": ["name", "path"], "properties": {"name": {"type": "string"}, "path": {"type": "string"}}}}, "provides": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "public": {"type": "boolean", "default": false}, "properties": {}, "properties-metadata": {}}}}, "requires": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "group": {"type": "string"}, "list": {"type": "string"}, "properties": {}, "properties-metadata": {}, "parameters": {}, "parameters-metadata": {}, "includes": {"type": "array", "items": {"type": "object", "required": ["name", "path"], "properties": {"name": {"type": "string"}, "path": {"type": "string"}}}}}}}}}}, "resources": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "type": {"type": "string"}, "properties": {}, "properties-metadata": {}, "parameters": {}, "parameters-metadata": {}, "includes": {"type": "array", "items": {"type": "object", "required": ["name", "path"], "properties": {"name": {"type": "string"}, "path": {"type": "string"}}}}, "optional": {"type": "boolean", "default": false}, "processed-after": {"type": "array", "items": {"type": "string"}}, "active": {"type": "boolean", "default": true}, "requires": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {}, "properties-metadata": {}, "parameters": {}, "parameters-metadata": {}, "includes": {"type": "array", "items": {"type": "object", "required": ["name", "path"], "properties": {"name": {"type": "string"}, "path": {"type": "string"}}}}}}}}}}, "parameters": {}, "parameters-metadata": {}, "includes": {"type": "array", "items": {"type": "object", "required": ["name", "path"], "properties": {"name": {"type": "string"}, "path": {"type": "string"}}}}}, "required": ["_schema-version", "ID", "version"], "type": "object"} |
|
mta.json | includes | It is possible to define parameters in external files. The "includes" section is used to point to those files. | {"type": "array", "items": {"type": "object", "required": ["name", "path"], "properties": {"name": {"type": "string"}, "path": {"type": "string"}}}} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.