schema stringclasses 471
values | key stringlengths 0 203 | description stringlengths 0 4.37k | object stringlengths 2 322k |
|---|---|---|---|
pyproject.json | documentation | Documentation URL for the project. | {"type": "string", "format": "uri"} |
pyproject.json | license | License name. | {"type": "string"} |
pyproject.json | readme | The path to the README file. | {"type": "string"} |
pyproject.json | readme | A list of paths to the readme files. | {"type": "array", "items": {"type": "string"}} |
pyproject.json | classifiers | A list of trove classifers. | {"type": "array"} |
pyproject.json | packages | A list of packages to include in the final distribution. | {"type": "array", "items": {"type": "object", "additionalProperties": false, "required": ["include"], "properties": {"include": {}, "from": {"type": "string"}, "format": {}}}} |
pyproject.json | items | Information about where the package resides. | {"type": "object", "additionalProperties": false, "required": ["include"], "properties": {"include": {}, "from": {"type": "string"}, "format": {}}} |
pyproject.json | from | Where the source directory of the package resides. | {"type": "string"} |
pyproject.json | include | A list of files and folders to include. | {"type": "array", "items": {"anyOf": [{}, {"type": "object", "additionalProperties": false, "required": ["path"], "properties": {"path": {}, "format": {}}}]}} |
pyproject.json | exclude | A list of files and folders to exclude. | {"type": "array"} |
pyproject.json | dependencies | This is a hash of package name (keys) and version constraints (values) that are required to run this package. | {"type": "object", "required": ["python"], "properties": {"python": {"type": "string"}}, "patternProperties": {"^(?!python$)[a-zA-Z-_.0-9]+$": {}}} |
pyproject.json | python | The Python versions the package is compatible with. | {"type": "string"} |
pyproject.json | dev-dependencies | This is a hash of package name (keys) and version constraints (values) that this package requires for developing it (testing tools and such). | {"type": "object", "patternProperties": {"^[a-zA-Z-_.0-9]+$": {}}} |
pyproject.json | group | This represents groups of dependencies | {"type": "object", "patternProperties": {"^[a-zA-Z-_.0-9]+$": {"type": "object", "required": ["dependencies"], "properties": {"optional": {"type": "boolean"}, "dependencies": {"type": "object", "patternProperties": {"^[a-zA-Z-_.0-9]+$": {}}, "additionalProperties": false}}, "additionalProperties": false}}} |
pyproject.json | ^[a-zA-Z-_.0-9]+$ | This represents a single dependency group | {"type": "object", "required": ["dependencies"], "properties": {"optional": {"type": "boolean"}, "dependencies": {"type": "object", "patternProperties": {"^[a-zA-Z-_.0-9]+$": {}}, "additionalProperties": false}}, "additionalProperties": false} |
pyproject.json | optional | Whether the dependency group is optional or not | {"type": "boolean"} |
pyproject.json | dependencies | The dependencies of this dependency group | {"type": "object", "patternProperties": {"^[a-zA-Z-_.0-9]+$": {}}, "additionalProperties": false} |
pyproject.json | scripts | A hash of scripts to be installed. | {"type": "object", "patternProperties": {"^[a-zA-Z-_.0-9]+$": {"oneOf": [{}, {}]}}} |
pyproject.json | plugins | A hash of hashes representing plugins | {"type": "object", "patternProperties": {"^[a-zA-Z-_.0-9]+$": {"type": "object", "patternProperties": {"^[a-zA-Z-_.0-9]+$": {"type": "string"}}}}} |
pyproject.json | ^.+$ | The full url of the custom url. | {"type": "string"} |
pyproject.json | readme | AKA the README | {"oneOf": [{"type": "string"}, {"type": "object", "required": ["content-type"], "properties": {"content-type": {"type": "string"}}, "oneOf": [{"additionalProperties": false, "required": ["file"], "properties": {"content-type": true, "file": {"type": "string"}}}, {"additionalProperties": false, "required": ["text"], "pr... |
pyproject.json | content-type | RFC 1341 compliant content-type (with optional charset, defaulting to UTF-8) | {"type": "string"} |
pyproject.json | license | A SPDX license identifier | {"type": "string"} |
pyproject.json | optional-dependencies | keys are extra names | {"type": "object", "patternProperties": {"^([a-z\\d]|[a-z\\d]([a-z\\d-](?!--))*[a-z\\d])$": {"type": "array", "items": {"type": "string"}}}, "examples": [{"typing": ["boto3-stubs", "typing-extensions ~= 4.1"]}]} |
resolutions-schema.json | The OSS-Review-Toolkit (ORT) provides a possibility to resolve issues, rule violations and security vulnerabilities in a resolutions file. A full list of all available options can be found at https://github.com/oss-review-toolkit/ort/blob/main/docs/config-file-resolutions-yml.md. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"issues": {"type": "array", "items": {"type": "object", "properties": {"message": {"type": "string"}, "reason": {}, "comment": {"type": "string"}}, "required": ["message", "reason"]}}, "rule_violations": {"type": "array", "items": {... | |
zapp-schema-1.0.0.json | JSON schema for zapp.json and zapp.yaml files. Version 1.0.0 -- Licensed Materials - Property of IBM - (c) Copyright IBM Corporation 2022. All Rights Reserved. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "definitions": {"coreProperties": {"type": "object", "required": ["name"], "additionalProperties": false, "properties": {"name": {"type": "string", "maxLength": 214, "minLength": 1}, "version": {"type": "string", "default": "1.0.0"}, "groupId": {"... | |
zapp-schema-1.0.0.json | name | The name of the Z Project. | {"type": "string", "maxLength": 214, "minLength": 1} |
zapp-schema-1.0.0.json | description | This helps people understand your project as it would be used by tools. | {"type": "string"} |
zapp-schema-1.0.0.json | version | Version is a string and it must be parsable for managing dependencies. | {"type": "string", "default": "1.0.0"} |
zapp-schema-1.0.0.json | groupId | Defines a group name that is shared for each application part in case of applications composed of multiple parts. Allows to uniquely identify the parts by concatenating with the artifact id. For example a groupId `com.ibm.wazi` with an artifactId `service` would create the unique application identifier `com.ibm.wazi.se... | {"type": "string", "examples": ["com.ibm.wazi", "payments"]} |
zapp-schema-1.0.0.json | artifactId | Define id of the application artifact. Use it in combination with a groupId for multi-part applications. | {"type": "string", "default": "", "examples": ["sam"]} |
zapp-schema-1.0.0.json | parentId | In case of a multi-part application defines the name of the parent application part. This zapp will inherit properties such as propertyGroups defined in the parent. | {"type": "string", "default": "", "examples": ["com.ibm.wazi.parent"]} |
zapp-schema-1.0.0.json | keywords | This helps people discover your project. | {"type": "array", "items": {"type": "string"}} |
zapp-schema-1.0.0.json | homepage | The url to the project homepage. | {"type": "string", "oneOf": [{"format": "uri"}, {"enum": ["."]}]} |
zapp-schema-1.0.0.json | license | You should specify a license for your package so that people know how they are permitted to use it and any restrictions you're placing on it. | {"type": "string"} |
zapp-schema-1.0.0.json | contributors | A list of people who contributed to this package. | {"type": "array", "items": {}, "minItems": 1} |
zapp-schema-1.0.0.json | maintainers | A list of people who maintain this package. | {"type": "array", "items": {}, "minItems": 1} |
zapp-schema-1.0.0.json | propertyGroups | A list properties defining path names for resolving dependencies. | {"type": "array", "items": {}, "minItems": 1} |
zapp-schema-1.0.0.json | profiles | Profiles are additional groups of properties that should only should become valid under specific conditions such as running in a build job or as part of a debug session. | {"type": "array", "items": {}, "minItems": 1} |
zapp-schema-1.0.0.json | name | The name of the property group, which is used in hovers and error messages. | {"type": "string", "examples": ["sample-local"]} |
zapp-schema-1.0.0.json | language | Limits the property group to one specific language. | {"type": "string", "enum": ["cobol", "pl1", "hlasm", "rexx", "jcl"]} |
zapp-schema-1.0.0.json | compilerOptions | Global compiler options separated by a comma that impact the parsing of the programs for the editor. Requires that you specify a language. If there are multiple Property Groups for a language with compiler option then they will be concatenated. | {"type": "string"} |
zapp-schema-1.0.0.json | libraries | An array of potential library locations defining the search order for include files. Libraries with the name 'syslib' will be handled as default include locations. The list can contain many entries of the type 'local' or 'mvs'. It can contain items of the same type twice in case, for example, you want to search in remo... | {"type": "array", "items": {}, "minItems": 1} |
zapp-schema-1.0.0.json | name | Name of the library. The default name should be `syslib` if using unamed libraries. | {"type": "string", "default": "syslib", "examples": ["syslib", "currencylib"]} |
zapp-schema-1.0.0.json | type | The type of the property group defining where dependencies should be located. Allowed values are 'local' for using a local workspace and 'mvs' for dependencies located in MVS Datasets. | {"type": "string", "enum": ["mvs", "local"], "default": "local", "examples": ["local", "mvs"]} |
zapp-schema-1.0.0.json | locations | An array of include file locations. For 'local' libraries values can be absolute and relative filename paths using GLOB patterns. For 'mvs' libraries value can be data set names. GLOB patterns for dat sets are currently not supported. | {"type": "array", "items": {"type": "string"}, "minItems": 1, "examples": ["**/copybook", "USER1.SAMPLE.COBCOPY"]} |
zapp-schema-1.0.0.json | person | A person who has been involved in creating or maintaining this package | {"type": ["object", "string"], "required": ["name"], "properties": {"name": {"type": "string"}, "url": {"type": "string", "format": "uri"}, "email": {"type": "string", "format": "email"}}} |
zapp-schema-1.0.0.json | profile | Profiles are additional groups of properties that should only should become valid under specific conditions such as running in a build job or as part of a debug session. | {"type": "object", "additionalProperties": false, "required": ["name", "type"], "properties": {"name": {"type": "string", "examples": ["dbb-build"]}, "type": {"type": "string", "enum": ["dbb", "rseapi", "debug"], "default": "dbb", "examples": ["dbb", "rseapi"]}, "settings": {"type": "object"}}, "anyOf": [{"required": [... |
zapp-schema-1.0.0.json | name | The name of the profile. | {"type": "string", "examples": ["dbb-build"]} |
zapp-schema-1.0.0.json | type | The type of the profile. | {"type": "string", "enum": ["dbb", "rseapi", "debug"], "default": "dbb", "examples": ["dbb", "rseapi"]} |
zapp-schema-1.0.0.json | settings | Settings objects specific to the type specified for the profile. | {"type": "object"} |
zapp-schema-1.0.0.json | dbbSettingsItem | DBB build script properties for running User Build on remote host. | {"type": "object", "additionalProperties": false, "required": ["application", "command"], "properties": {"application": {"type": "string"}, "command": {"type": "string"}, "buildScriptPath": {"type": "string"}, "buildScriptArgs": {"type": "array", "items": {"type": "string"}}, "additionalDependencies": {"type": "array",... |
zapp-schema-1.0.0.json | application | Defines the name of the application to build. Will be used to create a folder on USS to upload all files to. | {"type": "string"} |
zapp-schema-1.0.0.json | command | Command that the build script is executed with such as the path to groovyz and it's parameters. | {"type": "string"} |
zapp-schema-1.0.0.json | buildScriptPath | The full path of build script on the remote host that should be used with the command. | {"type": "string"} |
zapp-schema-1.0.0.json | buildScriptArgs | A list of strings that are the parameters for the build script. Check the documentation for built-in variables, such as the name of the program to build, that can be used here. | {"type": "array", "items": {"type": "string"}} |
zapp-schema-1.0.0.json | additionalDependencies | Lists of GLOB patterns that define the files that should be uploaded to USS for a build. Relative path names are interpreted relative to the location of the ZAPP file that is being used for the build, which is a ZAPP file in the same workspace as the program to be build. | {"type": "array", "items": {"type": "string"}} |
zapp-schema-1.0.0.json | logFilePatterns | Lists of GLOB patterns that define the files that should be downloaded from USS after the build. Relative path names are interpreted relative to the DBB log directory user setting. If not provided then all files of the user setting location will be downloaded. | {"type": "array", "items": {"type": "string"}} |
zapp-schema-1.0.0.json | rseapiSettingsItem | RSE API client settings for interactions with a z/OS remote host running an RSE API server. | {"type": "object", "additionalProperties": false, "required": ["mappings", "default.encoding"], "properties": {"mappings": {"type": "array", "items": {}}, "default.encoding": {"type": "string"}}} |
zapp-schema-1.0.0.json | mappings | A list of mapping objects that map local file extensions to transfer modes and encodings to MVS datasets that can be specified using wildcards. | {"type": "array", "items": {}} |
zapp-schema-1.0.0.json | default.encoding | The encoding to be used when no mapping can be found. If not provided then either the user or server default will be used. | {"type": "string"} |
zapp-schema-1.0.0.json | rseapiSettingsItemMapping | One mapping that contains at least transfer and resource values. | {"type": "object", "additionalProperties": false, "properties": {"extension": {"type": "string"}, "transfer": {"type": "string", "enum": ["text", "binary"]}, "resource": {"type": "string"}, "encoding": {"type": "string"}, "memberMappings": {"type": "array", "items": {"type": "object", "additionalProperties": false, "pr... |
zapp-schema-1.0.0.json | extension | A local file extension such as cbl or pl1. | {"type": "string"} |
zapp-schema-1.0.0.json | transfer | The transfer mode to be used. Can be 'text' or 'binary'. | {"type": "string", "enum": ["text", "binary"]} |
zapp-schema-1.0.0.json | resource | The data set name to be mapped to. Can use a wildcard such as '**CPY'. | {"type": "string"} |
zapp-schema-1.0.0.json | encoding | The encoding to be used for text transfer. See the RSE API documentation for the values allowed. | {"type": "string"} |
zapp-schema-1.0.0.json | memberMappings | A nested mappings array with resource mappings to members of the data sets that were mapped by the parent mapping. | {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"extension": {"type": "string"}, "transfer": {"type": "string", "enum": ["text", "binary"]}, "encoding": {"type": "string"}, "resource": {"type": "string"}}}} |
zapp-schema-1.0.0.json | items | One member mapping that contains at least transfer and resource values. | {"type": "object", "additionalProperties": false, "properties": {"extension": {"type": "string"}, "transfer": {"type": "string", "enum": ["text", "binary"]}, "encoding": {"type": "string"}, "resource": {"type": "string"}}} |
zapp-schema-1.0.0.json | extension | A local file extension such as cbl or pl1. | {"type": "string"} |
zapp-schema-1.0.0.json | transfer | The transfer mode to be used. Can be 'text' or 'binary'. | {"type": "string", "enum": ["text", "binary"]} |
zapp-schema-1.0.0.json | encoding | The encoding to be used for text transfer. See the RSE API documentation for the values allowed. | {"type": "string"} |
zapp-schema-1.0.0.json | resource | The data set member name to be mapped to. Can use a wildcard such as '**CPY'. | {"type": "string"} |
madness.json | Settings of the current site
https://madness.dannyb.co/#configuration-file | {"$schema": "http://json-schema.org/draft-07/schema", "type": "object", "properties": {"path": {"type": "string", "minLength": 1, "default": "."}, "port": {"type": "integer", "minimum": 0, "default": "3000"}, "bind": {"type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+\\.\\d+$", "default": "0.0.0.0"}, "base_uri": {"oneOf... | |
madness.json | path | A path to the documentation root of the current site
https://madness.dannyb.co/#configuration-file | {"type": "string", "minLength": 1, "default": "."} |
madness.json | port | A server port of the current site
https://madness.dannyb.co/#configuration-file | {"type": "integer", "minimum": 0, "default": "3000"} |
madness.json | bind | A server listen address of the current site
https://madness.dannyb.co/#configuration-file | {"type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+\\.\\d+$", "default": "0.0.0.0"} |
madness.json | base_uri | A server root path of the current site
https://madness.dannyb.co/#configuration-file | {"oneOf": [{"type": "string", "minLength": 1, "examples": ["/docs"], "not": {"pattern": "//"}}, {"type": "null"}]} |
madness.json | sidebar | Whether to enable sidebar of the current site
https://madness.dannyb.co/#configuration-file | {"type": "boolean", "default": "true"} |
madness.json | auto_h1 | Whether to add H1 title to files that do not have one of the current site
https://madness.dannyb.co/#configuration-file | {"type": "boolean", "default": "true"} |
madness.json | auto_nav | Whether to append navigation to directory READMEs of the current site
https://madness.dannyb.co/#configuration-file | {"type": "boolean", "default": "true"} |
madness.json | auto_toc | Whether to enable table of contents of the current site
https://madness.dannyb.co/#configuration-file | {"type": "boolean", "default": "true"} |
madness.json | highlighter | Whether to enable syntax highlighter for code snippets of the current site
https://madness.dannyb.co/#configuration-file | {"type": "boolean", "default": "true"} |
madness.json | copy_code | Whether to enable the copy to clipboard icon for code snippets of the current site
https://madness.dannyb.co/#configuration-file | {"type": "boolean", "default": "true"} |
madness.json | shortlinks | Whether to convert [[Links]] to [Links](Links) of the current site
https://madness.dannyb.co/#configuration-file | {"type": "boolean", "default": "false"} |
madness.json | toc | Whether to generate a table of contents file with this name of the current site
https://madness.dannyb.co/#configuration-file | {"oneOf": [{"type": "string", "minLength": 1, "examples": ["Table of Contents"]}, {"type": "null"}]} |
madness.json | theme | A theme directory of the current site
https://madness.dannyb.co/#configuration-file | {"oneOf": [{"type": "string", "minLength": 1, "examples": ["_theme"]}, {"type": "null"}]} |
madness.json | source_link | A link to the page source of the current site
https://madness.dannyb.co/#configuration-file | {"oneOf": [{"type": "string", "minLength": 1, "examples": ["http://example.com/%{path}"]}, {"type": "null"}]} |
madness.json | source_link_label | A link of page source label of the current site
https://madness.dannyb.co/#configuration-file | {"type": "string", "minLength": 1, "default": "Page Source"} |
madness.json | source_link_pos | A link of page source position of the current site
https://madness.dannyb.co/#configuration-file | {"type": "string", "enum": ["top", "bottom"], "default": "bottom"} |
madness.json | open | Whether to open the server URL in the browser of the current site
https://madness.dannyb.co/#configuration-file | {"type": "boolean", "default": "false"} |
madness.json | auth | Whether to provide user:password for basic authentication of the current site
https://madness.dannyb.co/#configuration-file | {"oneOf": [{"type": "boolean", "const": false}, {"type": "string", "pattern": "^[^:]+:[^:]+$", "examples": ["admin:s3cr3t"]}]} |
madness.json | auth_zone | An auth realm name of the current site
https://madness.dannyb.co/#configuration-file | {"type": "string", "default": "Restricted Documentation"} |
madness.json | expose_extensions | Whether to show files with these extensions in the navigation and search of the current site
https://madness.dannyb.co/#configuration-file | {"oneOf": [{"type": "string", "examples": ["pdf,docx,xlsx,txt"], "not": {"pattern": ",,|^,|,$"}}, {"type": "null"}]} |
madness.json | exclude | Excluded directories of the current site
https://madness.dannyb.co/#configuration-file | {"type": "array", "minItems": 1, "uniqueItems": true, "items": {"type": "string", "default": "^[a-z_\\-0-9]+$"}} |
madness.json | items | An excluded directory of the current site
https://madness.dannyb.co/#configuration-file | {"type": "string", "default": "^[a-z_\\-0-9]+$"} |
template.schema.json | NetinDS device configuration template, defines the drivers used to collect the datapoints and the transformations and alarms to be applied to these datapoints | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "definitions": {"schemaVersionDef": {"type": "string", "pattern": "(?<=^v?|\\sv?)(?:(?:0|[1-9][0-9]*).){2}(?:0|[1-9][0-9]*)(?:-(?:0|[1-9][0-9]*|[0-9a-z-]*[a-z-][0-9a-z-]*)(?:.(?:0|[1-9][0-9]*|[0-9a-z-]*[a-z-][0-9a-z-]*))*)?(?:\\+[0-9a-z-]+(?:.[0-9... | |
template.schema.json | schemaVersionDef | Fixed value designating the version of the template schema | {"type": "string", "pattern": "(?<=^v?|\\sv?)(?:(?:0|[1-9][0-9]*).){2}(?:0|[1-9][0-9]*)(?:-(?:0|[1-9][0-9]*|[0-9a-z-]*[a-z-][0-9a-z-]*)(?:.(?:0|[1-9][0-9]*|[0-9a-z-]*[a-z-][0-9a-z-]*))*)?(?:\\+[0-9a-z-]+(?:.[0-9a-z-]+)*)?\\b", "examples": ["1.5.2", "7.5.3", "7.5.3-test"], "errorMessage": "Not valid version string, for ... |
template.schema.json | originDef | Monitored system, subsystem, device or ... source of the datapoint | {"type": "string", "pattern": "^\\/\\{[a-zA-Z0-9-_.]{1,80}\\}\\/$|^[a-zA-Z0-9-_.]{1,80}$", "errorMessage": "origin should be a string. Maximum size of 80 alphanumerical characters or symbol: -_."} |
template.schema.json | templateIdDef | Template identification string | {"type": "string", "pattern": "^[a-zA-Z0-9-_ ]{1,80}$", "errorMessage": "templateId should be a string. Maximum size of 80 alphanumerical characters or symbol: -_"} |
template.schema.json | templateVersionDef | SemVer style template version | {"type": "string", "pattern": "(?<=^v?|\\sv?)(?:(?:0|[1-9][0-9]*).){2}(?:0|[1-9][0-9]*)(?:-(?:0|[1-9][0-9]*|[0-9a-z-]*[a-z-][0-9a-z-]*)(?:.(?:0|[1-9][0-9]*|[0-9a-z-]*[a-z-][0-9a-z-]*))*)?(?:\\+[0-9a-z-]+(?:.[0-9a-z-]+)*)?\\b", "examples": ["1.5.2", "7.5.3", "7.5.3-test"], "errorMessage": "templateVersion should be a va... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.