schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
comet.json
forceTablePattern
reserved
{"type": "string"}
comet.json
forceJobPattern
reserved
{"type": "string"}
comet.json
forceTaskPattern
reserved
{"type": "string"}
comet.json
useLocalFileSystem
reserved
{"type": "string"}
comet.json
sessionDurationServe
reserved
{"type": "integer"}
comet.json
database
Default target database (projectId in GCP). May be also set using the SL_DATABASE environment variable
{"type": "string"}
comet.json
tenant
reserved
{"type": "string"}
comet.json
connectionRef
Default connection to use when loading / transforming data
{"type": "string"}
comet.json
expectations
Expectations library defined as a map name(params) -> sql request that should return 0 record
{}
imageoptimizer.json
Schema for imageoptimizer.json files
{"$schema": "http://json-schema.org/draft-04/schema#", "id": "https://json.schemastore.org/imageoptimizer.json", "properties": {"optimizations": {"type": "array", "minItems": 1, "items": {"type": "object", "required": ["includes"], "properties": {"includes": {"type": "array", "items": {"type": "string", "minLength": 1}}, "excludes": {"type": "array", "items": {"type": "string", "minLength": 1}, "default": ["node_modules", "bower_components", "jspm_packages"]}, "lossy": {"type": "boolean", "default": false}}}}}, "type": "object"}
imageoptimizer.json
optimizations
An array of optimization rules
{"type": "array", "minItems": 1, "items": {"type": "object", "required": ["includes"], "properties": {"includes": {"type": "array", "items": {"type": "string", "minLength": 1}}, "excludes": {"type": "array", "items": {"type": "string", "minLength": 1}, "default": ["node_modules", "bower_components", "jspm_packages"]}, "lossy": {"type": "boolean", "default": false}}}}
imageoptimizer.json
includes
An array of globbing patterns of files/folders to include in the optimization
{"type": "array", "items": {"type": "string", "minLength": 1}}
imageoptimizer.json
excludes
An array of globbing patterns of files/folders to exclude in the optimization
{"type": "array", "items": {"type": "string", "minLength": 1}, "default": ["node_modules", "bower_components", "jspm_packages"]}
imageoptimizer.json
lossy
When set to true, images are compressed a lot more but with a slight quality loss that may not be visible to the human eye.
{"type": "boolean", "default": false}
project-1.0.0-beta6.json
script
A command line script or scripts. Available variables: %project:Directory% - The project directory %project:Name% - The project name %project:Version% - The project version
{"type": ["string", "array"], "items": {"type": "string"}}
project-1.0.0-beta6.json
bundleExclude
List of files to exclude from publish output (kpm bundle).
{"type": ["string", "array"], "items": {"type": "string"}, "default": ""}
project-1.0.0-beta6.json
code
Glob pattern to specify all the code files that needs to be compiled. (data type: string or array with glob pattern(s)). Example: [ "Folder1\*.cs", "Folder2\*.cs" ]
{"type": ["string", "array"], "items": {"type": "string"}, "default": "**\\*.cs"}
project-1.0.0-beta6.json
configurations
Configurations are named groups of compilation settings. There are 2 defaults built into the runtime namely 'Debug' and 'Release'.
{"type": "object", "additionalProperties": {"type": "object", "properties": {"compilationOptions": {}}}}
project-1.0.0-beta6.json
copyright
Copyright details for the package
{"type": "string"}
project-1.0.0-beta6.json
iconUrl
A URL for the image to use as the icon for the package. This should be a 32x32-pixel .png file that has a transparent background.
{"type": "string"}
project-1.0.0-beta6.json
licenseUrl
A link to the license that the package is under
{"type": "string"}
project-1.0.0-beta6.json
requireLicenseAcceptance
A Boolean value that specifies whether the client needs to ensure that the package license (described by licenseUrl) is accepted before the package is installed.
{"type": "boolean", "default": false}
project-1.0.0-beta6.json
projectUrl
A URL for the home page of the package
{"type": "string"}
project-1.0.0-beta6.json
summary
A short description of the package
{"type": "string"}
project-1.0.0-beta6.json
title
The human-friendly title of the package
{"type": "string"}
project-1.0.0-beta6.json
releaseNotes
A description of the changes made in each release of the package.
{"type": "string"}
project-1.0.0-beta6.json
language
The locale ID for the package, such as en-us.
{"type": "string"}
project-1.0.0-beta6.json
description
The description of the application
{"type": "string"}
project-1.0.0-beta6.json
exclude
Glob pattern to indicate all the code files to be excluded from compilation. (data type: string or array with glob pattern(s)).
{"type": ["string", "array"], "items": {"type": "string"}, "default": ["bin/**/*.*", "obj/**/*.*"]}
project-1.0.0-beta6.json
namedResource
Overrides the generated resource names with custom ones.
{"type": "object", "additionalProperties": {"type": "string"}}
project-1.0.0-beta6.json
preprocess
Glob pattern to indicate all the code files to be preprocessed. (data type: string with glob pattern).
{"type": "string", "default": "Compiler\\Preprocess\\**\\*.cs"}
project-1.0.0-beta6.json
repository
Contains information about the repository where the project is stored.
{"type": "object", "properties": {"type": {"type": "string", "enum": ["git"], "default": "git"}}, "additionalProperties": {"type": "string"}}
project-1.0.0-beta6.json
resources
Glob pattern to indicate all the files that need to be compiled as resources.
{"type": ["string", "array"], "items": {"type": "string"}, "default": "Compiler\\Resources\\**\\*.cs"}
project-1.0.0-beta6.json
scripts
Scripts to execute during the various stages.
{"type": "object", "properties": {"prepack": {}, "postpack": {}, "prebundle": {}, "postbundle": {}, "prerestore": {}, "postrestore": {}, "prepare": {}}}
project-1.0.0-beta6.json
shared
Glob pattern to specify the code files to share with dependent projects. Example: [ "Folder1\*.cs", "Folder2\*.cs" ]
{"type": ["string", "array"], "items": {"type": "string"}, "default": "Compiler\\Shared\\**\\*.cs"}
project-1.0.0-beta6.json
version
The version of the project/package. Examples: 1.2.3, 1.2.3-beta, 1.2.3-*
{"type": "string"}
project-1.0.0-beta6.json
webroot
Specifying the webroot property in the project.json file specifies the web server root (aka public folder). In visual studio, this folder will be used to root IIS. Static files should be put in here.
{"type": "string"}
openfin.json
appAssets
Set this object to co-deploy native apps along with your app.
{"type": "array", "items": {"additionalProperties": false, "required": ["alias", "src", "version"], "properties": {"alias": {"type": "string"}, "args": {"type": "string"}, "src": {"type": "string"}, "target": {"type": "string"}, "version": {"type": "string"}}}}
openfin.json
alias
Name of the asset. The name will be used in launchExternalProcess to launch the asset.
{"type": "string"}
openfin.json
args
The default command line arguments for the aforementioned target.
{"type": "string"}
openfin.json
src
URL to a zip file containing the package files (executables, dlls, etc…).
{"type": "string"}
openfin.json
target
Specifies default executable to launch. This option can be overridden in launchExternalProcess.
{"type": "string"}
openfin.json
version
Version of the package. To force new updates, increment the version.
{"type": "string"}
openfin.json
assets_url
If an application specifies a valid "assetsUrl", then that "assetsUrl" will be used as the base portion of the URL instead of the OpenFin default, https://developer.openfin.co/release/.
{"type": "string"}
openfin.json
devtools_port
You can access the Chromium development tools by navigating to the selected port, i.e.: http://localhost:9090.
{"type": "number"}
openfin.json
dialogSettings
An optional object to customize the appearance of the RVM progress dialog.
{"additionalProperties": false, "properties": {"bgColor": {"type": "number"}, "logo": {"type": "string"}, "progressBarBgColor": {"type": "number"}, "progressBarBorderColor": {"type": "number"}, "progressBarFillColor": {"type": "number"}, "textColor": {"type": "number"}}}
openfin.json
bgColor
Determines the color of the dialog. Color value is a decimal representation of a 32 bit number (A,R,G,B). For instance : FF00FF00 or 4278255360 is fully opaque green.
{"type": "number"}
openfin.json
logo
Determines the logo or image in the progress dialog. The logo should be a semi-transparent PNG. 100×25 pixels.
{"type": "string"}
openfin.json
progressBarBgColor
Determines the background color of the area where the progress bar is displayed.
{"type": "number"}
openfin.json
progressBarBorderColor
Determines the border color of the progress bar.
{"type": "number"}
openfin.json
progressBarFillColor
Determines the color of the progress bar.
{"type": "number"}
openfin.json
textColor
Determines the color of the text displayed above the progress bar location.
{"type": "number"}
openfin.json
licenseKey
A string used as a licensing identifier for each customer/contract (RVM 2.7+). The OpenFin team will generate this for your production app.
{"type": "string"}
openfin.json
runtime
Determines which runtime version the app will use.
{"additionalProperties": false, "required": ["version"], "properties": {"arguments": {"type": "string"}, "fallbackVersion": {"type": "string"}, "forceLatest": {"type": "boolean"}, "version": {"type": "string", "oneOf": [{"pattern": "(\\d{1,3}\\.){3}\\d{1,3}"}, {"enum": ["alpha", "beta", "canary", "stable", "staging"]}]}}}
openfin.json
arguments
Command line arguments to set when launching the runtime. The OpenFin Runtime supports Chromium command line switches e.g.: "– –disable-accelerated-compositing – –enable-threaded-compositing" for a complete list of values please refer to current Chromium switches.
{"type": "string"}
openfin.json
fallbackVersion
The RVM will fallback to this version if it fails to retrieve the desired Runtime version, assuming this version is already installed. (RVM 2.8+)
{"type": "string"}
openfin.json
forceLatest
If true, forces the runtime to always get the latest runtime version before launching (prevents background installs).
{"type": "boolean"}
openfin.json
version
Specifies what version of the runtime the app should use. The value can either be a specific version or a release channel (e.g. alpha).
{"type": "string", "oneOf": [{"pattern": "(\\d{1,3}\\.){3}\\d{1,3}"}, {"enum": ["alpha", "beta", "canary", "stable", "staging"]}]}
openfin.json
shortcut
Settings for the app's desktop shortcut
{"additionalProperties": false, "required": ["company", "icon", "name"], "properties": {"company": {"type": "string"}, "force": {"type": "boolean"}, "icon": {"type": "string"}, "name": {"type": "string"}, "startMenuRootFolder": {"type": "string"}, "target": {"type": "array", "items": {"type": "string", "enum": ["automatic-start-up", "desktop", "start-menu"]}}, "uninstall-shortcut": {"type": "boolean"}}}
openfin.json
company
Company name for the application shortcut.
{"type": "string"}
openfin.json
description
A short description of the application shortcut. Will be shown when hovering over the shortcut icon.
{"type": "string"}
openfin.json
force
If set to true, a desktop icon is always created on application start-up (even when user has deleted it). If set to false, a desktop icon is created on initial application launch but not created on subsequent application launches.
{"type": "boolean"}
openfin.json
icon
Location for the icon image to be used when installing the application shortcut.
{"type": "string"}
openfin.json
name
Name of the application to display with the shortcut.
{"type": "string"}
openfin.json
startMenuRootFolder
Set this value with a folder path (e.g. foo/bar) and the RVM will create the start menu shortcut under RootFolder/Company/App.
{"type": "string"}
openfin.json
target
Locations for where the application shortcut is added on the desktop owner's machine. Available options are "desktop", "start-menu" and "automatic-start-up". The default is start-menu and desktop.
{"type": "array", "items": {"type": "string", "enum": ["automatic-start-up", "desktop", "start-menu"]}}
openfin.json
uninstall-shortcut
Removes the Start menu uninstall shortcut.
{"type": "boolean"}
openfin.json
splashScreenImage
You can specify an image to display while the runtime is loading. It takes any image file (including semi-transparent PNGs).
{"type": "string"}
openfin.json
startup_app
Specifies the application level configuration.
{"additionalProperties": false, "required": ["name", "url", "uuid"], "properties": {"accelerator": {"additionalProperties": false, "properties": {"devtools": {"type": "boolean", "default": false}, "reload": {"type": "boolean", "default": false}, "reloadIgnoreCache": {"type": "boolean", "default": false}, "zoom": {"type": "boolean", "default": false}}}, "alwaysOnTop": {"type": "boolean", "default": false}, "applicationIcon": {"type": "string"}, "autoShow": {"type": "boolean", "default": false}, "childWindowAutoAuth": {"type": "boolean", "default": true}, "clearChildSubscriptionsOnReload": {"type": "boolean", "default": true}, "contextMenu": {"type": "boolean", "default": true}, "cornerRounding": {"additionalProperties": false, "properties": {"height": {"type": "number"}, "width": {"type": "number"}}}, "defaultCentered": {"type": "boolean", "default": false}, "defaultHeight": {"type": "number", "default": 500}, "defaultLeft": {"type": "number", "default": 10}, "defaultTop": {"type": "number", "default": 10}, "defaultWidth": {"type": "number", "default": 800}, "frame": {"type": "boolean", "default": true}, "icon": {"type": "string"}, "maxHeight": {"type": "number", "default": -1}, "maximizable": {"type": "boolean", "default": true}, "maxWidth": {"type": "number", "default": -1}, "minHeight": {"type": "number"}, "minWidth": {"type": "number"}, "name": {"type": "string"}, "nonPersistent": {"type": "boolean", "default": false}, "opacity": {"type": "number", "default": 1}, "permissions": {"type": "object", "properties": {"ExternalWindow": {"type": "object", "properties": {"wrap": {"type": "boolean"}}}, "System": {"type": "object", "properties": {"downloadAsset": {"type": "boolean"}, "getAllExternalWindows": {"type": "boolean"}, "launchExternalProcess": {"type": "boolean"}, "readRegistryValue": {"type": "boolean"}, "terminateExternalProcess": {"type": "boolean"}}}}}, "preloadScripts": {"type": "array", "items": {"required": ["url"], "properties": {"url": {"type": "string"}}}}, "resizable": {"type": "boolean", "default": true}, "resizeRegion": {"additionalProperties": false, "properties": {"bottomRightCorner": {"type": "number", "default": 4}, "size": {"type": "number", "default": 2}}}, "saveWindowState": {"type": "boolean", "default": true}, "showTaskbarIcon": {"type": "boolean", "default": true}, "state": {"type": "string", "enum": ["maximized", "minimized", "normal"], "default": "normal"}, "taskbarIcon": {"type": "string"}, "taskbarIconGroup": {"type": "string"}, "url": {"type": "string"}, "uuid": {"type": "string"}, "waitForPageLoad": {"type": "boolean", "default": true}}}
openfin.json
accelerator
The name of this builder instance, which can be specified in the only/except property of a provisioner.
{"additionalProperties": false, "properties": {"devtools": {"type": "boolean", "default": false}, "reload": {"type": "boolean", "default": false}, "reloadIgnoreCache": {"type": "boolean", "default": false}, "zoom": {"type": "boolean", "default": false}}}
openfin.json
devtools
If true, allows the Dev Tools to be opened with the keyboard shortcut: Ctrl+Shift+i.
{"type": "boolean", "default": false}
openfin.json
reload
If true, allows a window to reload with the keyboard shortcuts: Ctrl+r or F5.
{"type": "boolean", "default": false}
openfin.json
reloadIgnoreCache
If true, allows a window to reload while ignoring the cache with the keyboard shortcuts: Ctrl+Shift or Shift+F5.
{"type": "boolean", "default": false}
openfin.json
zoom
If true, enables the Zoom keyboard shortcuts: Ctrl+ (Zoom in), Ctrl- (Zoom out) and Ctrl+0 (Restore to 100%).
{"type": "boolean", "default": false}
openfin.json
alwaysOnTop
A flag to always position the window at the top of the window stack.
{"type": "boolean", "default": false}
openfin.json
applicationIcon
A URL for the icon to be shown in the window title bar.
{"type": "string"}
openfin.json
autoShow
A flag to automatically show the Window when it is created.
{"type": "boolean", "default": false}
openfin.json
childWindowAutoAuth
Allow non API created child windows, such as window.open, to authenticate.
{"type": "boolean", "default": true}
openfin.json
clearChildSubscriptionsOnReload
Clear InterApplication subscriptions of all child windows when main window is reloaded.
{"type": "boolean", "default": true}
openfin.json
contextMenu
A flag to show the context menu when right-clicking on a window. Gives access to the Developer Console for the Window.
{"type": "boolean", "default": true}
openfin.json
cornerRounding
This defines and applies rounded corners for the window.
{"additionalProperties": false, "properties": {"height": {"type": "number"}, "width": {"type": "number"}}}
openfin.json
height
This defines and applies rounded corners for the window.
{"type": "number"}
openfin.json
width
This defines and applies rounded corners for the window.
{"type": "number"}
openfin.json
defaultCentered
Specifies that the window will be positioned in the center of the primary monitor when loaded for the first time on a machine. When the window corresponding to that id is loaded again, the position from before the window was closed is used.
{"type": "boolean", "default": false}
openfin.json
defaultHeight
The default height of the window. Specifies the height of the window when loaded for the first time on a machine. When the window corresponding to that id is loaded again, the height is taken to be the last height of the window before it was closed.
{"type": "number", "default": 500}
openfin.json
defaultLeft
The default left position of the window. Specifies the position of the left of the window when loaded for the first time on a machine. When the window corresponding to that id is loaded again, the value of left is taken to be the last value before the window was closed.
{"type": "number", "default": 10}
openfin.json
defaultTop
The default top position of the window. Specifies the position of the top of the window when loaded for the first time on a machine. When the window corresponding to that id is loaded again, the value of top is taken to be the last value before the window was closed.
{"type": "number", "default": 10}
openfin.json
defaultWidth
The default width of the window. Specifies the width of the window when loaded for the first time on a machine. When the window corresponding to that id is loaded again, the width is taken to be the last width of the window before it was closed.
{"type": "number", "default": 800}
openfin.json
description
The name for the window which must be unique within the context of the invoking Application.
{"type": "string"}
openfin.json
frame
A flag to show the frame.
{"type": "boolean", "default": true}
openfin.json
icon
A URL for the icon to be shown in the window title bar.
{"type": "string"}
openfin.json
maxHeight
The maximum height of a window. Will default to the OS defined value if set to -1.
{"type": "number", "default": -1}
openfin.json
maximizable
A flag that lets the window be maximized.
{"type": "boolean", "default": true}
openfin.json
maxWidth
The maximum width of a window. Will default to the OS defined value if set to -1.
{"type": "number", "default": -1}
openfin.json
minHeight
The minimum height of a window.
{"type": "number"}
openfin.json
minWidth
The minimum width of a window.
{"type": "number"}
openfin.json
name
The name for the window which must be unique within the context of the invoking Application.
{"type": "string"}
openfin.json
nonPersistent
A flag to configure the application as a non persistent. Runtime exits if there are no persistent apps running.
{"type": "boolean", "default": false}
openfin.json
opacity
A flag that specifies how transparent the window will be. This value is clamped between 0.0 and 1.0.
{"type": "number", "default": 1}
openfin.json
permissions
Enable secured APIs
{"type": "object", "properties": {"ExternalWindow": {"type": "object", "properties": {"wrap": {"type": "boolean"}}}, "System": {"type": "object", "properties": {"downloadAsset": {"type": "boolean"}, "getAllExternalWindows": {"type": "boolean"}, "launchExternalProcess": {"type": "boolean"}, "readRegistryValue": {"type": "boolean"}, "terminateExternalProcess": {"type": "boolean"}}}}}