schema stringclasses 471
values | key stringlengths 0 203 | description stringlengths 0 4.37k | object stringlengths 2 322k |
|---|---|---|---|
jmdsl-config-schema.json | extractor | Regular expression where the first capturing group defines the extracted value, while the rest is used for context matching | {"type": "string", "examples": ["name=\"productId\" value=\"([^\"]+)\""]} |
jmdsl-config-schema.json | regex | Regular expression where the first capturing group defines the extracted value, while the rest is used for context matching | {"type": "string", "examples": ["name=\"productId\" value=\"([^\"]+)\""]} |
jmdsl-config-schema.json | target | Specifies sample result property to apply the extractor to.
For details on available options check: https://javadoc.io/static/us.abstracta.jmeter/jmeter-java-dsl/1.8/us/abstracta/jmeter/javadsl/core/postprocessors/DslRegexExtractor.TargetField.html#enum.constant.summary | {"type": "string", "enum": ["RESPONSE_BODY", "RESPONSE_HEADERS", "REQUEST_URL", "REQUEST_HEADERS", "RESPONSE_BODY_UNESCAPED", "RESPONSE_BODY_AS_A_DOCUMENT", "RESPONSE_CODE", "RESPONSE_MESSAGE"], "default": "RESPONSE_BODY"} |
jmdsl-config-schema.json | replacement | Regular expression used to replace in requests previously extracted values. The first capturing group defines the place where the extracted value should appear (and replaced by variable reference), while the rest of the regex is used for context matching | {"examples": ["productId=(.*)"], "type": "string"} |
github-issue-config.json | blank_issues_enabled | Specify whether allow blank issue creation
https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser | {"type": "boolean"} |
github-issue-config.json | contact_links | Contact links
https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser | {"type": "array", "minItems": 1, "items": {"type": "object", "required": ["name", "url", "about"], "properties": {"name": {"type": "string", "minLength": 1, "examples": ["Sample name"]}, "url": {"type": "string", "pattern": "^https?://", "examples": ["https://sample/url"]}, "about": {"type": "string", "minLength": 1, "... |
github-issue-config.json | name | A link title
https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser | {"type": "string", "minLength": 1, "examples": ["Sample name"]} |
github-issue-config.json | url | A link URL
https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser | {"type": "string", "pattern": "^https?://", "examples": ["https://sample/url"]} |
github-issue-config.json | about | A link description
https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser | {"type": "string", "minLength": 1, "examples": ["Sample description"]} |
modernizrrc.json | classPrefix | A string that is added before each CSS class | {"type": "string"} |
modernizrrc.json | minify | A flag indicating whether to minify the Modernizr source | {"type": "boolean"} |
modernizrrc.json | options | A list of Modernizr options to include in the build | {"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["addTest", "atRule", "domPrefixes", "hasEvent", "html5shiv", "html5printshiv", "load", "mq", "prefixed", "prefixes", "prefixedCSS", "setClasses", "testAllProps", "testProp", "testStyles"]}} |
modernizrrc.json | feature-detects | A list of the browser features to be detected | {"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["a/download", "ambientlight", "applicationcache", "audio", "audio/loop", "audio/preload", "audio/webaudio", "battery", "battery/lowbattery", "blob", "canvas", "canvas/blending", "canvas/todataurl", "canvas/winding", "canvastext", "contenteditab... |
nodemon.json | pathPattern | Regular expression | {"type": "object", "properties": {"re": {"type": "string"}}, "additionalProperties": false, "required": ["re"]} |
nodemon.json | variables | The current directory | {"const": "{{pwd}}"} |
nodemon.json | variables | The filename you pass to nodemon | {"const": "{{filename}}"} |
nodemon.json | colours | set to false to disable color output | {"default": true, "type": "boolean"} |
nodemon.json | cwd | change into <dir> before running the script | {"type": "string"} |
nodemon.json | delay | debounce restart for a number of milliseconds | {"default": 0, "type": "number"} |
nodemon.json | dump | print full debug configuration | {"default": false, "type": "boolean"} |
nodemon.json | exec | execute script with "app", ie. -x "python -v". May use variables. | {"examples": ["{{pwd}}/index.js --some-arg", "{{filename}}"], "format": "<app> <your args>", "type": "string"} |
nodemon.json | execMap | The global config file is useful for setting up default executables | {"type": "object"} |
nodemon.json | exitcrash | Exit nodemon after crash | {"type": "boolean"} |
nodemon.json | ext | extensions to look for, ie. "js,jade,hbs" | {"default": "*", "type": "string"} |
nodemon.json | ignore | Ignore directory or file. One entry per ignored value. Wildcards are allowed. | {"items": {"examples": [".gitignore", ".vscode", "__tests__/*", "__*__/*.js", "*.test.js"]}, "type": "array"} |
nodemon.json | items | Path or pattern of file or directory to ignore. Can also use regular expressions wrapped in an object with a single property named "re". | {"examples": [".gitignore", ".vscode", "__tests__/*", "__*__/*.js", "*.test.js"]} |
nodemon.json | ignoreRoot | root paths to ignore | {"items": {"type": "string"}, "type": "array"} |
nodemon.json | legacyWatch | use polling to watch for changes (typically needed when watching over a network/Docker) | {"default": false, "type": "boolean"} |
nodemon.json | noUpdateNotifier | opt-out of update version check | {"default": false, "type": "boolean"} |
nodemon.json | nodeArgs | arguments to pass to node if exec is "node" | {"type": "array"} |
nodemon.json | pollingInterval | combined with legacyWatch, milliseconds to poll for (default 100) | {"default": 100, "type": "number"} |
nodemon.json | quiet | minimise nodemon messages to start/stop only | {"default": false, "type": "boolean"} |
nodemon.json | runOnChangeOnly | execute script on change only, not startup | {"default": false, "type": "boolean"} |
nodemon.json | signal | use specified kill signal instead of default (ex. SIGTERM) | {"type": "string"} |
nodemon.json | spawn | force nodemon to use spawn (over fork) [node only] | {"default": false, "type": "boolean"} |
nodemon.json | stdin | set to false to have nodemon pass stdin directly to child process | {"default": true, "type": "boolean"} |
nodemon.json | verbose | show detail on what is causing restarts | {"default": false, "type": "boolean"} |
nodemon.json | watch | Watch directory or file. One entry per watched value. Wildcards are allowed. | {"items": {"examples": ["src/index.js", "src", "src/*.js", "*.js"]}, "type": "array"} |
nodemon.json | items | Path or pattern of file or directory to watch. Can also use regular expressions wrapped in an object with a single property named "re". | {"examples": ["src/index.js", "src", "src/*.js", "*.js"]} |
cryproj.json | cvars | CVar name | {"type": "string", "default": "sys_target_platforms", "enum": ["a_poseAlignerDebugDraw", "a_poseAlignerEnable", "a_poseAlignerForceLock", "a_poseAlignerForceNoIntersections", "a_poseAlignerForceNoRootOffset", "a_poseAlignerForceTargetSmoothing", "a_poseAlignerForceWeightOne", "ac_ColliderModeAI", "ac_ColliderModePlayer... |
cryproj.json | commands | Console command name | {"type": "string", "default": "", "enum": ["_TestFormatMessage", "ai_CheckGoalpipes", "ai_commTest", "ai_commTestStop", "ai_DebugAgent", "ai_debugMNMAgentType", "ai_MNMCalculateAccessibility", "ai_MNMComputeConnectedIslands", "ai_NavigationReloadConfig", "ai_Recorder_Start", "ai_Recorder_Stop", "ai_reload", "ai_resetCo... |
cryproj.json | value | The default value of the CVar | {"type": "string", "default": "pc,ps4,xboxone,linux"} |
cryproj.json | items | This indicates where the assets are stored | {"type": "string", "default": "Assets", "examples": ["Assets"]} |
cryproj.json | items | This indicates where the code is stored | {"type": "string", "default": "Code", "examples": ["Code"]} |
cryproj.json | name | This indicates the project name | {"type": "string", "default": "", "examples": ["MyFancyProject"]} |
cryproj.json | engine | This indicates which engine version will be used | {"type": "string", "default": "", "examples": ["engine-5.4"], "enum": ["engine-5.2", "engine-5.3", "engine-5.4", "engine-5.5", "engine-dev"]} |
cryproj.json | path | Required plugin's name | {"type": "string", "examples": ["CryDefaultEntities", "CrySensorSystem", "CryPerceptionSystem", "CryUserAnalytics", "CryOSVR", "CryOculusVR", "CryOpenVR", "CryLobby"]} |
cryproj.json | type | EPluginType::Native if it's a C++ plugin, EPluginType::Managed if it's a C# one | {"type": "string", "default": "", "examples": ["EPluginType::Native", "EPluginType::Managed"], "enum": ["EPluginType::Native", "EPluginType::Managed"]} |
cryproj.json | value | Arguments that has to be passed to the command. Leave empty if it has not parameters | {"type": "string", "default": ""} |
cicsts-resourceimport.json | Super-schema that describes all versions of 'Resource import JSON Schema.' | {"$schema": "http://json-schema.org/draft-07/schema#", "allOf": [{"if": {"properties": {"schemaVersion": {"const": "resourceImport/1.0"}}}, "then": {}}]} | |
cicsts-resourceimport.json | Schema that describes the structure of a resource import document. | {"if": {"properties": {"schemaVersion": {"const": "resourceImport/1.0"}}}, "then": {}} | |
minecraft-damage-type.json | A damage type's for a Minecraft data pack config schema | {"$schema": "http://json-schema.org/draft-07/schema#", "properties": {"message_id": {"type": "string"}, "scaling": {"type": "string", "enum": ["never", "always", "when_caused_by_living_non_player"]}, "exhaustion": {"type": "number"}, "effects": {"type": "string", "enum": ["hurt", "thorns", "drowning", "burning", "pokin... | |
apple-app-site-association.json | An Apple Universal Link config schema | {"$schema": "http://json-schema.org/draft-04/schema#", "id": "https://json.schemastore.org/apple-app-site-association.json", "properties": {"applinks": {"type": "object", "required": ["apps", "details"], "properties": {"apps": {"type": "array", "enum": [[]]}, "details": {"type": "array", "items": {"type": "object", "pr... | |
apple-app-site-association.json | applinks | Application links | {"type": "object", "required": ["apps", "details"], "properties": {"apps": {"type": "array", "enum": [[]]}, "details": {"type": "array", "items": {"type": "object", "properties": {"appID": {"type": "string"}, "paths": {"type": "array", "uniqueItems": true, "items": {}}}}}}} |
apple-app-site-association.json | apps | Applications | {"type": "array", "enum": [[]]} |
apple-app-site-association.json | details | Details | {"type": "array", "items": {"type": "object", "properties": {"appID": {"type": "string"}, "paths": {"type": "array", "uniqueItems": true, "items": {}}}}} |
apple-app-site-association.json | items | A detail | {"type": "object", "properties": {"appID": {"type": "string"}, "paths": {"type": "array", "uniqueItems": true, "items": {}}}} |
apple-app-site-association.json | appID | An appID key or app ID prefix, followed by the bundle ID | {"type": "string"} |
apple-app-site-association.json | paths | Paths | {"type": "array", "uniqueItems": true, "items": {}} |
apple-app-site-association.json | items | Path to open in the mobile app | {} |
factorial-drupal-breakpoints-css-0.2.0.json | drupal-breakpoints-css | https://github.com/factorial-io/drupal-breakpoints-css | {"type": "object", "additionalProperties": false, "properties": {"drupal": {}, "js": {}, "css": {}, "options": {}, "prettier": {}}, "required": ["drupal"]} |
factorial-drupal-breakpoints-css-0.2.0.json | drupal | https://github.com/factorial-io/drupal-breakpoints-css | {"type": "object", "additionalProperties": false, "properties": {"breakpointsPath": {"type": "string"}, "themeName": {"type": "string"}}, "required": ["breakpointsPath", "themeName"]} |
factorial-drupal-breakpoints-css-0.2.0.json | js | https://github.com/factorial-io/drupal-breakpoints-css | {"type": "object", "additionalProperties": false, "properties": {"enabled": {"type": "boolean"}, "path": {"type": "string"}, "type": {"enum": ["module", "commonjs"]}}} |
factorial-drupal-breakpoints-css-0.2.0.json | css | https://github.com/factorial-io/drupal-breakpoints-css | {"type": "object", "additionalProperties": false, "properties": {"enabled": {"type": "boolean"}, "path": {"type": "string"}, "element": {"type": "string"}, "customMedia": {"type": "boolean"}, "customProperty": {"type": "boolean"}}} |
factorial-drupal-breakpoints-css-0.2.0.json | options | https://github.com/factorial-io/drupal-breakpoints-css | {"type": "object", "additionalProperties": false, "properties": {"mediaQuery": {"type": "boolean"}, "resolution": {"type": "boolean"}, "minWidth": {"type": "boolean"}, "maxWidth": {"type": "boolean"}}} |
factorial-drupal-breakpoints-css-0.2.0.json | prettier | https://github.com/factorial-io/drupal-breakpoints-css | {"type": "object", "additionalProperties": false, "properties": {"configPath": {"type": "string"}}} |
utam-page-object.json | pageObject | An object representing a page or a UI element in a web page | {"type": "object", "additionalProperties": false, "properties": {"root": {}, "selector": {}, "exposeRootElement": {}, "type": {}, "implements": {"type": "string"}, "profile": {"type": "array", "items": {"type": "object", "additionalProperties": {"type": "array", "contains": {"type": "string"}}}}, "platform": {"enum": [... |
utam-page-object.json | implements | reference to the interface implemented by the page object | {"type": "string"} |
utam-page-object.json | profile | list of profiles that can use this page object implementation. | {"type": "array", "items": {"type": "object", "additionalProperties": {"type": "array", "contains": {"type": "string"}}}} |
utam-page-object.json | platform | Declares the page context type (WebView or native). | {"enum": ["web", "native"], "default": "web"} |
utam-page-object.json | beforeLoad | The beforeLoad array sets the criteria to be satisfied before the load method completes. If you don't specify a beforeLoad array, the load method finds a root element for a regular page object, or waits for the root element to be present for a root page object), by default. | {"type": ["array"], "items": {"allOf": [{}, {"properties": {"element": {"type": "string", "enum": ["document", "root", "navigation"]}}}]}} |
utam-page-object.json | methods | An array of methods performing actions on this page object's elements. | {"type": "array", "items": {}} |
utam-page-object.json | shadow | A shadow boundary at the root of the page object. | {"type": "object", "properties": {"elements": {}}, "default": {"elements": []}} |
utam-page-object.json | pageObjectInterface | An interace to abstract page object APIs for page objects with similar structure and function. | {"type": "object", "additionalProperties": false, "properties": {"interface": {"type": "boolean", "default": false}, "root": {}, "exposeRootElement": {}, "type": {}, "methods": {"type": "array", "items": {}}, "metadata": {}}} |
utam-page-object.json | interface | Indicates that this page object describes an interface. | {"type": "boolean", "default": false} |
utam-page-object.json | methods | An array of method declarations that page objects implementing this interface must define. | {"type": "array", "items": {}} |
utam-page-object.json | element | An interace to abstract page object APIs for page objects with similar structure and function. | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": ["string", "array"], "items": {"enum": ["actionable", "clickable", "editable", "draggable", "touchable"]}}, "selector": {}, "nullable": {"type": "boolean"}, "shadow": {"type": "object", "properties": {"elements": {}}}, "elements": {}, "publi... |
utam-page-object.json | elementsArray | A nested tree of element objects. | {"type": "array", "items": {}} |
utam-page-object.json | selector | An object that locates an element or a list of elements at run time. | {"type": "object", "$defs": {"args": {"type": "array", "items": {}}, "returnAll": {"type": "boolean", "default": true}}, "oneOf": [{"type": "object", "properties": {"css": {"type": "string"}, "args": {}, "returnAll": {}}, "required": ["css"], "additionalProperties": false}, {"type": "object", "properties": {"accessid":... |
utam-page-object.json | args | Parameters to the methods that access this element or its nested elements. | {"type": "array", "items": {}} |
utam-page-object.json | returnAll | Returns a list of elements | {"type": "boolean", "default": true} |
utam-page-object.json | css | Standard CSS selector. | {"type": "string"} |
utam-page-object.json | accessid | Accessibility ID selector, a unique identifier for a UI element for Mobile Platform only. | {"type": "string"} |
utam-page-object.json | classchain | Class chain selector, a unique identifier for a window element from the root of the page for iOS platform only. | {"type": "string"} |
utam-page-object.json | uiautomator | A UIAutomator selector to enable search through UiSelectors for Android platform only | {"type": "string"} |
utam-page-object.json | type | URI-like type value of the page object | {"type": "string"} |
utam-page-object.json | findFirst | Return only the first match result. | {"type": "boolean", "default": true} |
utam-page-object.json | interfaceMethod | A declarative, interface method definition. | {"type": "object", "properties": {"name": {"type": "string"}, "args": {"type": "array", "items": {}}, "returnType": {"type": ["string", "array"], "items": {"enum": ["actionable", "clickable", "editable", "draggable", "touchable"]}}, "returnAll": {"type": "boolean", "default": false}}, "required": ["name"], "dependencie... |
utam-page-object.json | composeMethod | A method definition, composed of element actions. | {"type": "object", "properties": {"name": {"type": "string"}, "args": {"type": "array", "items": {}}, "compose": {"type": "array", "items": {"type": "object"}}}, "required": ["name", "compose"], "additionalProperties": false} |
utam-page-object.json | action | An action to be performed on an element. | {"type": "object", "additionalProperties": false, "properties": {"element": {"type": "string"}, "apply": {"type": "string"}, "applyExternal": {"type": "object"}, "args": {"type": "array", "items": {}}, "matcher": {"type": "object"}, "chain": {"type": "boolean"}, "returnType": {"type": "string", "default": "void"}, "ret... |
utam-page-object.json | args | element reference can have nested literal args (hardcoded values for its getter) | {"type": "array", "items": {}} |
utam-page-object.json | shadow | A shadow boundary at the root of the page object. | {"type": "object", "properties": {"elements": {"type": "array", "items": {}}}, "default": {"elements": []}} |
utam-page-object.json | rootDescription | summary of the functionality and use cases | {"type": ["object", "string"], "properties": {"text": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "deprecated": {"type": "string"}}, "required": ["text"], "additionalProperties": false} |
utam-page-object.json | metadata | track miscellaneous information for the page object | {"type": ["object"], "properties": {"status": {"type": "string"}, "teamOwner": {"type": "string"}}, "additionalProperties": false} |
utam-page-object.json | methodDescription | summary at the method or element level | {"type": ["object", "string"], "properties": {"text": {"type": "array", "items": {"type": "string"}}, "return": {"type": "string"}, "throws": {"type": "string"}, "deprecated": {"type": "string"}}, "required": ["text"], "additionalProperties": false} |
livelyPropertiesSchema.json | https://github.com/rocksdanister/lively/wiki/Web-Guide-IV-:-Interaction#lively-properties | {"$schema": "http://json-schema.org/draft-07/schema", "type": "object", "additionalProperties": {"type": "object", "properties": {"type": {"enum": ["slider", "textbox", "dropdown", "folderDropdown", "button", "label", "color", "checkbox"]}, "value": {}}, "oneOf": [{"type": "object", "properties": {"type": {"const": "sl... | |
livelyPropertiesSchema.json | additionalProperties | https://github.com/rocksdanister/lively/wiki/Web-Guide-IV-:-Interaction#controls | {"type": "object", "properties": {"type": {"enum": ["slider", "textbox", "dropdown", "folderDropdown", "button", "label", "color", "checkbox"]}, "value": {}}, "oneOf": [{"type": "object", "properties": {"type": {"const": "slider"}, "value": {"type": "number"}, "text": {"type": "string"}, "max": {"type": "number"}, "min... |
livelyPropertiesSchema.json | type | https://github.com/rocksdanister/lively/wiki/Web-Guide-IV-:-Interaction#controls | {"enum": ["slider", "textbox", "dropdown", "folderDropdown", "button", "label", "color", "checkbox"]} |
livelyPropertiesSchema.json | additionalProperties | https://github.com/rocksdanister/lively/wiki/Web-Guide-IV-:-Interaction#slider | {"type": "object", "properties": {"type": {"const": "slider"}, "value": {"type": "number"}, "text": {"type": "string"}, "max": {"type": "number"}, "min": {"type": "number"}, "step": {"type": "number"}}, "required": ["text", "max", "min", "step"], "additionalProperties": false} |
livelyPropertiesSchema.json | value | The default slider value. | {"type": "number"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.