schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
uproject.json | Optional | Whether this plugin is optional, and the game should silently ignore it not being present. | {"type": "boolean", "default": false} |
uproject.json | Description | Description of the plugin for users that do not have it installed. | {"type": "string"} |
uproject.json | MarketplaceURL | URL for this plugin on the marketplace, if the user doesn't have it installed. | {"type": "string"} |
uproject.json | Name | Name of the plugin. | {"type": "string"} |
uproject.json | PlatformAllowList | List of allowed platforms. | {"type": "array", "uniqueItems": true, "items": {"type": "string"}} |
uproject.json | PlatformDenyList | List of disallowed platforms. | {"type": "array", "uniqueItems": true, "items": {"type": "string"}} |
uproject.json | TargetAllowList | List of allowed targets. | {"type": "array", "uniqueItems": true, "items": {}} |
uproject.json | TargetConfigurationAllowList | List of allowed target configurations. | {"type": "array", "uniqueItems": true, "items": {}} |
uproject.json | TargetConfigurationDenyList | List of disallowed target configurations. | {"type": "array", "uniqueItems": true, "items": {}} |
uproject.json | TargetDenyList | List of disallowed targets. | {"type": "array", "uniqueItems": true, "items": {}} |
uproject.json | DisableEnginePluginsByDefault | Indicates that enabled by default engine plugins should not be enabled unless explicitly enabled by the project or target files. | {"type": "boolean", "default": false} |
uproject.json | IsEnterpriseProject | Indicates if this project is an Enterprise project. | {"type": "boolean", "default": false} |
uproject.json | Category | Category to show under the project browser. | {"type": "string"} |
uproject.json | Description | Description to show in the project browser. | {"type": "string"} |
uproject.json | EngineAssociation | The engine to open this project with. Denotes by <major>.<minor> convention e.g. 4.20, 5.0 or source engine hash. | {"type": "string", "pattern": "(^([0-9]+)\\.([0-9]+)$)|(^\\{[A-F0-9]{8}(-[A-F0-9]{4}){3}-[A-F0-9]{12}\\}$)"} |
uproject.json | EpicSampleNameHash | A hash that is used to determine if the project was forked from a sample. | {"type": "number"} |
uproject.json | FileVersion | Descriptor version number. | {"type": "number", "default": 3} |
uproject.json | Modules | List of all modules associated with this project. | {"type": "array", "uniqueItems": true, "items": {}} |
uproject.json | Plugins | List of plugins for this project (may be enabled/disabled). | {"type": "array", "uniqueItems": true, "items": {}} |
uproject.json | PostBuildSteps | Custom steps to execute after building targets in this project. | {"type": "object"} |
uproject.json | PreBuildSteps | Custom steps to execute before building targets in this project. | {"type": "object"} |
uproject.json | TargetPlatforms | Array of platforms that this project is targeting. | {"type": "array", "uniqueItems": true, "items": {"type": "string"}} |
plagiarize-me.json | plagiarize-me.yaml configuration schema | {"$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": {"moveItems": {"type": "object", "required": ["to", "names"], "properties": {"to": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}}, "mergeJson": {"required": ["type", "path"], "additionalProperties": false, "properties": {"type": {"type": "string", "enum": ["jq"]}, "path": {"type": "string"}, "replace": {"type": "array", "items": {"type": "string"}}, "create": {"type": "array", "items": {"type": "string"}}, "replaceIf": {"type": "array", "items": {"type": "object", "required": ["condition", "pattern"], "properties": {"condition": {"type": "string"}, "pattern": {"type": "string"}}}}, "set": {"type": "object", "additionalProperties": {"type": "string"}}, "skip": {"type": "array", "items": {"type": "string"}}, "skipIfNotSameFileName": {"type": "array", "items": {"type": "string"}}}}, "mergeYaml": {"required": ["type", "path"], "additionalProperties": false, "properties": {"type": {"type": "string", "enum": ["yq"]}, "path": {"type": "string"}, "replace": {"type": "array", "items": {"type": "string"}}, "create": {"type": "array", "items": {"type": "string"}}, "replaceIf": {"type": "array", "items": {"type": "object", "required": ["condition", "pattern"], "properties": {"condition": {"type": "string"}, "pattern": {"type": "string"}}}}, "set": {"type": "object", "additionalProperties": {"type": "string"}}, "skip": {"type": "array", "items": {"type": "string"}}, "skipIfNotSameFileName": {"type": "array", "items": {"type": "string"}}}}, "mergeGit": {"required": ["type", "path"], "additionalProperties": false, "properties": {"type": {"type": "string", "enum": ["git"]}, "path": {"type": "string"}}}, "mergeEnv": {"type": "object", "additionalProperties": false, "required": ["type", "path"], "properties": {"type": {"type": "string", "enum": ["env"]}, "path": {"type": "string"}, "set": {"type": "object", "additionalProperties": {"type": "string"}}, "skip": {"type": "array", "items": {"type": "string"}}, "create": {"type": "array", "items": {"type": "string"}}, "skipIfNotSameFileName": {"type": "array", "items": {"type": "string"}}}}}, "id": "https://json.schemastore.org/plagiarize-me", "properties": {"repo": {"type": "object", "additionalProperties": false, "required": ["url"], "properties": {"url": {"type": "string"}, "checkout": {"type": "string", "default": "master"}}}, "move": {"type": "object", "properties": {"directories": {"type": "array", "items": {}}, "files": {"type": "array", "items": {}}}}, "run": {"type": "array", "items": {"type": "object", "required": ["command"], "properties": {"command": {"type": "string"}, "parallel": {"type": "boolean"}, "when": {"oneOf": [{"type": "string", "enum": ["always"]}, {"type": "object", "required": ["type", "options"], "additionalProperties": false, "properties": {"type": {"type": "string", "enum": ["if-missing"]}, "options": {"type": "object", "required": ["path"], "properties": {"path": {"type": "string"}}}}}, {"type": "object", "required": ["type"], "additionalProperties": false, "properties": {"type": {"type": "string", "enum": ["always"]}}}]}}}}, "replace": {"required": ["strings"], "type": "object", "properties": {"strings": {"type": "object", "additionalProperties": {"type": ["string", "integer", "boolean"]}, "required": ["project"], "properties": {"project": {"type": "string"}}}, "vars": {"type": "object", "additionalProperties": {"type": ["string", "integer", "boolean"]}}, "files": {"type": "array", "items": {"type": "string"}}}}, "create": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "andClean": {"type": "array", "items": {"type": "string"}}}}, "merge": {"type": "array", "items": {"oneOf": [{}, {}, {}, {}]}}, "templates": {"type": "array", "items": {"type": "object", "additionalProperties": false, "required": ["name", "replace"], "properties": {"name": {"type": "string"}, "replace": {"type": "object", "additionalProperties": false, "required": ["strings"], "properties": {"strings": {"type": "object", "additionalProperties": {"type": ["string", "boolean", "number"]}}, "values": {"type": "object", "additionalProperties": {"type": ["string", "boolean", "number", "null"]}}, "vars": {"type": "object", "additionalProperties": {"type": ["string", "boolean", "number", "null"]}}}}, "merge": {"type": "array", "items": {"oneOf": [{}, {}, {}, {}]}}, "create": {"type": "object", "additionalProperties": false, "properties": {"files": {"type": "array", "items": {"type": "string"}}}}, "configs": {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"strings": {"type": "object", "additionalProperties": {"type": ["string", "boolean", "number"]}}, "vars": {"type": "object", "additionalProperties": {"type": ["string", "boolean", "number", "null"]}}}}}}}}, "push": {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"values": {"type": "object", "additionalProperties": {"type": "string"}}, "instances": {"type": "array", "items": {"type": "object", "required": ["project"], "additionalProperties": {"type": "string"}}}, "git": {"type": "object", "additionalProperties": false, "required": ["repos", "commit", "branch", "remotes"], "properties": {"repos": {"type": "array", "items": {"type": "object", "additionalProperties": false, "required": ["remote"], "properties": {"local": {"type": "string"}, "remote": {"type": "object", "additionalProperties": false, "required": ["url", "checkout", "defaultName"], "properties": {"url": {"type": "string"}, "checkout": {"type": "string"}, "defaultName": {"type": "string"}}}}}}, "commit": {"type": "object", "additionalProperties": false, "required": ["message"], "properties": {"create": {"type": "boolean", "default": false}, "message": {"type": "string"}}}, "branch": {"type": "string"}, "push": {"type": "boolean", "default": false}, "remotes": {"type": "array", "items": {"type": "string"}}, "hooks": {"type": "object", "additionalProperties": false, "properties": {"post-push": {"type": "array", "items": {"oneOf": [{"type": "object", "required": ["type", "api", "remote", "targetBranch"], "properties": {"type": {"type": "string", "enum": ["create-merge-request"]}, "api": {"type": "string", "enum": ["gitlab"]}, "envVars": {"type": "object", "additionalProperties": {"type": "string"}}, "remote": {"type": "string"}, "targetBranch": {"type": "string"}, "removeSourceBranch": {"type": "boolean", "default": false}}}]}}}}}}}}}}, "required": ["replace"], "type": "object"} |
|
plagiarize-me.json | to | The path to move the directory to | {"type": "string"} |
plagiarize-me.json | items | The directories to move | {"type": "string"} |
plagiarize-me.json | mergeJson | Merge json file with jq command line tool pattern matching | {"required": ["type", "path"], "additionalProperties": false, "properties": {"type": {"type": "string", "enum": ["jq"]}, "path": {"type": "string"}, "replace": {"type": "array", "items": {"type": "string"}}, "create": {"type": "array", "items": {"type": "string"}}, "replaceIf": {"type": "array", "items": {"type": "object", "required": ["condition", "pattern"], "properties": {"condition": {"type": "string"}, "pattern": {"type": "string"}}}}, "set": {"type": "object", "additionalProperties": {"type": "string"}}, "skip": {"type": "array", "items": {"type": "string"}}, "skipIfNotSameFileName": {"type": "array", "items": {"type": "string"}}}} |
plagiarize-me.json | type | Merge type | {"type": "string", "enum": ["jq"]} |
plagiarize-me.json | path | Path to file to merge | {"type": "string"} |
plagiarize-me.json | replace | JQ pattern of property to replace | {"type": "array", "items": {"type": "string"}} |
plagiarize-me.json | create | JQ pattern of property to create if the property does not exist in target project file | {"type": "array", "items": {"type": "string"}} |
plagiarize-me.json | replaceIf | A set of properties to replace if the condition evaluates to truthy | {"type": "array", "items": {"type": "object", "required": ["condition", "pattern"], "properties": {"condition": {"type": "string"}, "pattern": {"type": "string"}}}} |
plagiarize-me.json | items | Configuration for property to replace if condition evaluates to truthy | {"type": "object", "required": ["condition", "pattern"], "properties": {"condition": {"type": "string"}, "pattern": {"type": "string"}}} |
plagiarize-me.json | condition | The condition to evaluate for truthiness. If truthy will replace property matched by pattern | {"type": "string"} |
plagiarize-me.json | pattern | JQ pattern of property to replace | {"type": "string"} |
plagiarize-me.json | set | Set the value of these items to the value. So `'.license':MIT` would set the `license` property of the json file to 'MIT' | {"type": "object", "additionalProperties": {"type": "string"}} |
plagiarize-me.json | skip | A list of items to not create, copy, replace, or remove in target file | {"type": "array", "items": {"type": "string"}} |
plagiarize-me.json | mergeYaml | Merge yaml file with yq command line tool pattern matching | {"required": ["type", "path"], "additionalProperties": false, "properties": {"type": {"type": "string", "enum": ["yq"]}, "path": {"type": "string"}, "replace": {"type": "array", "items": {"type": "string"}}, "create": {"type": "array", "items": {"type": "string"}}, "replaceIf": {"type": "array", "items": {"type": "object", "required": ["condition", "pattern"], "properties": {"condition": {"type": "string"}, "pattern": {"type": "string"}}}}, "set": {"type": "object", "additionalProperties": {"type": "string"}}, "skip": {"type": "array", "items": {"type": "string"}}, "skipIfNotSameFileName": {"type": "array", "items": {"type": "string"}}}} |
plagiarize-me.json | type | Merge type | {"type": "string", "enum": ["yq"]} |
plagiarize-me.json | path | Path to file to merge | {"type": "string"} |
plagiarize-me.json | replace | YQ pattern of property to replace | {"type": "array", "items": {"type": "string"}} |
plagiarize-me.json | create | YQ pattern of property to create if the property does not exist in target project file | {"type": "array", "items": {"type": "string"}} |
plagiarize-me.json | replaceIf | A set of properties to replace if the condition evaluates to truthy | {"type": "array", "items": {"type": "object", "required": ["condition", "pattern"], "properties": {"condition": {"type": "string"}, "pattern": {"type": "string"}}}} |
plagiarize-me.json | items | Configuration for property to replace if condition evaluates to truthy | {"type": "object", "required": ["condition", "pattern"], "properties": {"condition": {"type": "string"}, "pattern": {"type": "string"}}} |
plagiarize-me.json | condition | The condition to evaluate for truthiness. If truthy will replace property matched by pattern | {"type": "string"} |
plagiarize-me.json | pattern | YQ pattern of property to replace | {"type": "string"} |
plagiarize-me.json | set | Set the value of these items to the value. So `'license':MIT` would set the `license` property of the yaml file to 'MIT' | {"type": "object", "additionalProperties": {"type": "string"}} |
plagiarize-me.json | skip | A list of items to not create, copy, replace, or remove in target file | {"type": "array", "items": {"type": "string"}} |
plagiarize-me.json | mergeGit | Merge file using git merge (use with varied reliability) | {"required": ["type", "path"], "additionalProperties": false, "properties": {"type": {"type": "string", "enum": ["git"]}, "path": {"type": "string"}}} |
plagiarize-me.json | type | Merge type | {"type": "string", "enum": ["git"]} |
plagiarize-me.json | path | Path to file to merge | {"type": "string"} |
plagiarize-me.json | create | List of Environment variable names to create in target project if they are not already created | {"type": "array", "items": {"type": "string"}} |
plagiarize-me.json | items | The Environment variable name | {"type": "string"} |
plagiarize-me.json | repo | Git repo of where this plagiarizable project is hosted | {"type": "object", "additionalProperties": false, "required": ["url"], "properties": {"url": {"type": "string"}, "checkout": {"type": "string", "default": "master"}}} |
plagiarize-me.json | url | The git repo url of this project | {"type": "string"} |
plagiarize-me.json | checkout | The default branch that downstream projects should checkout when plagiarizing this project | {"type": "string", "default": "master"} |
plagiarize-me.json | move | Files to move in target project from their previous locations | {"type": "object", "properties": {"directories": {"type": "array", "items": {}}, "files": {"type": "array", "items": {}}}} |
plagiarize-me.json | directories | Directories to move from the target repo to the target repo. Useful for refactoring project structures | {"type": "array", "items": {}} |
plagiarize-me.json | files | Files to move from the target repo to the target repo. Useful for refactoring | {"type": "array", "items": {}} |
plagiarize-me.json | run | Shell commands to run after plagiarize files are done being copied and updated | {"type": "array", "items": {"type": "object", "required": ["command"], "properties": {"command": {"type": "string"}, "parallel": {"type": "boolean"}, "when": {"oneOf": [{"type": "string", "enum": ["always"]}, {"type": "object", "required": ["type", "options"], "additionalProperties": false, "properties": {"type": {"type": "string", "enum": ["if-missing"]}, "options": {"type": "object", "required": ["path"], "properties": {"path": {"type": "string"}}}}}, {"type": "object", "required": ["type"], "additionalProperties": false, "properties": {"type": {"type": "string", "enum": ["always"]}}}]}}}} |
plagiarize-me.json | command | The shell command to run | {"type": "string"} |
plagiarize-me.json | parallel | Whether or not to run this command synchronously or in parallel to other commands where `parallel: true` | {"type": "boolean"} |
plagiarize-me.json | when | Condition type | {"type": "string", "enum": ["always"]} |
plagiarize-me.json | when | Run this command only if configured file does not exist in target project | {"type": "object", "required": ["type", "options"], "additionalProperties": false, "properties": {"type": {"type": "string", "enum": ["if-missing"]}, "options": {"type": "object", "required": ["path"], "properties": {"path": {"type": "string"}}}}} |
plagiarize-me.json | type | Condition type | {"type": "string", "enum": ["if-missing"]} |
plagiarize-me.json | when | Always run this command | {"type": "object", "required": ["type"], "additionalProperties": false, "properties": {"type": {"type": "string", "enum": ["always"]}}} |
plagiarize-me.json | type | Condition type | {"type": "string", "enum": ["always"]} |
plagiarize-me.json | replace | Configuration for strings, files, and file paths to replace in target file | {"required": ["strings"], "type": "object", "properties": {"strings": {"type": "object", "additionalProperties": {"type": ["string", "integer", "boolean"]}, "required": ["project"], "properties": {"project": {"type": "string"}}}, "vars": {"type": "object", "additionalProperties": {"type": ["string", "integer", "boolean"]}}, "files": {"type": "array", "items": {"type": "string"}}}} |
plagiarize-me.json | strings | Strings to find in target project and be replaced with plagiarized project's values | {"type": "object", "additionalProperties": {"type": ["string", "integer", "boolean"]}, "required": ["project"], "properties": {"project": {"type": "string"}}} |
plagiarize-me.json | vars | Variables available to be used for finding and replacing by variable name. For example `$var_name: hello` would replace string '$var_name' with 'hello' in target project | {"type": "object", "additionalProperties": {"type": ["string", "integer", "boolean"]}} |
plagiarize-me.json | files | Relative path to target files that will be completely overwritten by source files in the same path | {"type": "array", "items": {"type": "string"}} |
plagiarize-me.json | files | Files to copy from plagiarized project if they do not exist in the target project | {"type": "array", "items": {"type": "string"}} |
plagiarize-me.json | andClean | Files to remove commented sections from. Eg code between `// plagiarize:start:always:delete` and `// plagiarize:end:always:delete` | {"type": "array", "items": {"type": "string"}} |
plagiarize-me.json | templates | Files that are used the have similarities between instances of that that. .env files for example are similar and could be templated | {"type": "array", "items": {"type": "object", "additionalProperties": false, "required": ["name", "replace"], "properties": {"name": {"type": "string"}, "replace": {"type": "object", "additionalProperties": false, "required": ["strings"], "properties": {"strings": {"type": "object", "additionalProperties": {"type": ["string", "boolean", "number"]}}, "values": {"type": "object", "additionalProperties": {"type": ["string", "boolean", "number", "null"]}}, "vars": {"type": "object", "additionalProperties": {"type": ["string", "boolean", "number", "null"]}}}}, "merge": {"type": "array", "items": {"oneOf": [{}, {}, {}, {}]}}, "create": {"type": "object", "additionalProperties": false, "properties": {"files": {"type": "array", "items": {"type": "string"}}}}, "configs": {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"strings": {"type": "object", "additionalProperties": {"type": ["string", "boolean", "number"]}}, "vars": {"type": "object", "additionalProperties": {"type": ["string", "boolean", "number", "null"]}}}}}}}} |
plagiarize-me.json | name | The name of the template | {"type": "string"} |
plagiarize-me.json | strings | Values to be used as variables within the target project. So `var_name: hello` in the template configuration and `var_name: world` would replace instances of 'hello' found in the source file with with 'world' found in the target file | {"type": "object", "additionalProperties": {"type": ["string", "boolean", "number"]}} |
plagiarize-me.json | values | Values to be used as variables within the target project. So `var_name: hello` would replace instances of '$var_name' with 'hello' in the target file | {"type": "object", "additionalProperties": {"type": ["string", "boolean", "number", "null"]}} |
plagiarize-me.json | vars | Values to be used as variables within the plagiarize-me.yaml file only. So `var_name: hello` would replace '$var_name' with 'hello' in plagiarize-me.yaml | {"type": "object", "additionalProperties": {"type": ["string", "boolean", "number", "null"]}} |
plagiarize-me.json | items | The path to the file to create if it does not already exist | {"type": "string"} |
plagiarize-me.json | values | Values to set when iterating through each instance | {"type": "object", "additionalProperties": {"type": "string"}} |
plagiarize-me.json | remotes | A list of removes to push to (if `push: true`) | {"type": "array", "items": {"type": "string"}} |
plagiarize-me.json | items | name of the remote | {"type": "string"} |
BizTalkServerApplicationSchema.json | BizTalk Server Application Inventory Schema | {"$schema": "http://json-schema.org/draft-04/schema#", "id": "http://schema.management.azure.com/schemas/2017-04-01/BizTalkServerApplicationSchema.json#", "properties": {"BizTalkAssemblies": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Path": {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.dll"}}}}, "BindingsFiles": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Path": {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.xml"}}}}, "Assemblies": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Path": {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.dll"}}}}, "PreProcessingScripts": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Path": {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.\\w+"}, "Arguments": {"type": "string", "pattern": "\\w+(,\\w+)*"}}}}, "PostProcessingScripts": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Path": {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.\\w+"}, "Arguments": {"type": "string", "pattern": "\\w+(,\\w+)*"}}}}, "Files": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Path": {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.\\w+"}}}}, "DeploymentSequence": {"type": "array", "items": {"type": "string"}}}, "required": ["BizTalkAssemblies", "BindingsFiles", "DeploymentSequence"], "type": "object"} |
|
BizTalkServerApplicationSchema.json | BizTalkAssemblies | Array of BizTalk Reference Assemblies to be deployed. | {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Path": {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.dll"}}}} |
BizTalkServerApplicationSchema.json | Name | Filename of the BizTalk Referenced Assembly. | {"type": "string"} |
BizTalkServerApplicationSchema.json | Path | Relative output filepath for the Referenced Assembly.
Example: bins\\bts1.dll | {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.dll"} |
BizTalkServerApplicationSchema.json | BindingsFiles | Array of Binding Files used in Deployment. | {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Path": {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.xml"}}}} |
BizTalkServerApplicationSchema.json | Name | Filename of the Bindings File. | {"type": "string"} |
BizTalkServerApplicationSchema.json | Path | Relative output filepath for the Bindings File.
Example: bindings\\binding1.xml | {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.xml"} |
BizTalkServerApplicationSchema.json | Assemblies | Array of Reference Assemblies to be deployed. | {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Path": {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.dll"}}}} |
BizTalkServerApplicationSchema.json | Name | Filename of the Referenced Assembly. | {"type": "string"} |
BizTalkServerApplicationSchema.json | Path | Relative output filepath for the Unmanaged Referenced Assembly.
Example: bins\\bts1.dll | {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.dll"} |
BizTalkServerApplicationSchema.json | PreProcessingScripts | Pre-Processing Scripts used in Deployment. | {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Path": {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.\\w+"}, "Arguments": {"type": "string", "pattern": "\\w+(,\\w+)*"}}}} |
BizTalkServerApplicationSchema.json | Name | Filename of the Pre Processing Script. | {"type": "string"} |
BizTalkServerApplicationSchema.json | Path | Relative output filepath for the Pre Processing Script.
Example: bins\\Script1.vbs | {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.\\w+"} |
BizTalkServerApplicationSchema.json | Arguments | Arguments for the Pre Processing Script .
Example: arg1,arg2 | {"type": "string", "pattern": "\\w+(,\\w+)*"} |
BizTalkServerApplicationSchema.json | PostProcessingScripts | Post-Processing Scripts used in Deployment. | {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Path": {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.\\w+"}, "Arguments": {"type": "string", "pattern": "\\w+(,\\w+)*"}}}} |
BizTalkServerApplicationSchema.json | Name | Filename of the Post Processing Script. | {"type": "string"} |
BizTalkServerApplicationSchema.json | Path | Relative output filepath for the Post Processing Script.
Example: Script\\Script1.vbs | {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.\\w+"} |
BizTalkServerApplicationSchema.json | Arguments | Arguments for the Post Processing Script .
Example: arg1,arg2 | {"type": "string", "pattern": "\\w+(,\\w+)*"} |
BizTalkServerApplicationSchema.json | Files | File used in Deployment. | {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Path": {"type": "string", "pattern": "\\w+[\\\\](\\w+\\.)*\\w+\\.\\w+"}}}} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.