schema stringclasses 471
values | key stringlengths 0 203 | description stringlengths 0 4.37k | object stringlengths 2 322k |
|---|---|---|---|
meta.schema.json | subsets | An index to the collection of all subset definitions in the schema | {"additionalProperties": {"anyOf": [{}, {"type": "null"}]}, "type": "object"} |
meta.schema.json | title | A concise human-readable display label for the element. The title should mirror the name, and should use ordinary textual punctuation. | {"type": "string"} |
meta.schema.json | todos | Outstanding issues that needs resolution | {"items": {"type": "string"}, "type": "array"} |
meta.schema.json | types | An index to the collection of all type definitions in the schema | {"additionalProperties": {"anyOf": [{}, {"type": "null"}]}, "type": "object"} |
meta.schema.json | version | particular version of schema | {"type": "string"} |
ssh-agent-config.json | Defines *user* configuration for the SSH agent, and allows the user to configure which accounts, vaults, and items should be considered for use by the SSH agent. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "required": ["ssh-keys"], "properties": {"ssh-keys": {"type": "array", "items": {}}}, "definitions": {"AgentConfigRule": {"type": "object", "anyOf": [{"required": ["account"]}, {"required": ["item"]}, {"required": ["vault"]}], "properties": {"account": {"type": "string"}, "item": {"type": "string"}, "vault": {"type": "string"}}, "additionalProperties": false}}} | |
ssh-agent-config.json | ssh-keys | The list of rules to decide which accounts, vaults, and items to add to the SSH agent. | {"type": "array", "items": {}} |
ssh-agent-config.json | AgentConfigRule | A single rule defined in the SSH agent config for which keys to include in the SSH agent. Each field may be the UUID or another identifier, which varies per field. | {"type": "object", "anyOf": [{"required": ["account"]}, {"required": ["item"]}, {"required": ["vault"]}], "properties": {"account": {"type": "string"}, "item": {"type": "string"}, "vault": {"type": "string"}}, "additionalProperties": false} |
ssh-agent-config.json | account | Can be either an account UUID or signin address or account name | {"type": "string"} |
ssh-agent-config.json | item | Can be either an item UUID or name | {"type": "string"} |
ssh-agent-config.json | vault | Can be either a vault UUID or name | {"type": "string"} |
grunt-task.json | expand | Must be set to true to use properties other than 'src' and 'dest' | {"type": "boolean", "default": false} |
grunt-task.json | cwd | All 'src' matches are relative to (but don't include) this path | {"type": "string"} |
grunt-task.json | dest | Destination path prefix. | {"type": "string"} |
grunt-task.json | ext | Replace any existing extension with this value in generated 'dest' paths. | {"type": "string"} |
grunt-task.json | extDot | Used to indicate where the period indicating the extension is located. | {"enum": ["first", "last"], "default": "first"} |
grunt-task.json | filter | The 'filter' property can help you target files with a greater level of detail | {"enum": ["isFile", "isDirectory", "isBlockDevice", "isCharacterDevice", "isSymbolicLink", "isFIFO", "isSocket"]} |
grunt-task.json | flatten | Remove all path parts from generated 'dest' paths | {"type": "boolean", "default": false} |
grunt-task.json | matchBase | If set, patterns without slashes will be matched against the basename of the path if it contains slashes. For example, 'a?b' would match the path '/xyz/123/acb', but not '/xyz/acb/123'. | {"type": "boolean", "default": false} |
grunt-task.json | nonull | If set to 'true' then the operation will include non-matching patterns. Combined with grunt's '--verbose' flag, this option can help debug file path issues. | {"type": "boolean", "default": false} |
grunt-task.json | rename | This function is called for each matched 'src' file, (after extension renaming and flattening). | {"type": "string"} |
grunt-task.json | src | Pattern(s) to match, relative to the 'cwd'. | {"type": "array", "minItems": 1, "uniqueItems": true, "items": {"type": "string"}} |
debugsettings.json | executablePath | An absolute path to the to the executable. | {"type": "string", "default": "", "minLength": 1} |
debugsettings.json | commandName | The name of the command to call. | {"type": "string", "default": "", "minLength": 1} |
debugsettings.json | name | The name of the debug profile | {"type": "string", "minLength": 1} |
debugsettings.json | commandLineArgs | The arguments to pass to the command. | {"type": "string", "default": ""} |
debugsettings.json | workingDirectory | Sets the working directory of the command. | {"type": "string"} |
debugsettings.json | launchBrowser | Set to true if the browser should be launched. | {"type": "boolean", "default": false} |
debugsettings.json | launchUrl | The relative URL to launch in the browser. | {"type": "string", "format": "uri"} |
debugsettings.json | environmentVariables | Set the environment variables as key/value pairs. | {"type": "object", "additionalProperties": {"type": "string"}} |
debugsettings.json | sdkVersion | Sets the version of the SDK. | {"type": "string"} |
debugsettings.json | profiles | A list of debug profiles | {"type": "array", "items": {}} |
schema-org-thing.json | This is a JSON schema representation of the schema.org Thing schema: https://schema.org/Thing | {"$schema": "http://json-schema.org/draft-04/schema#", "anyOf": [{}], "id": "https://json.schemastore.org/schema-org-thing.json", "properties": {"@context": {"type": "string", "format": "regex", "pattern": "http://schema.org"}, "additionalType": {"type": "string", "format": "uri"}, "alternateName": {"type": "string"}, "disambiguatingDescription": {"type": "string"}, "image": {"oneOf": [{"type": "string", "format": "uri"}, {"type": "object"}]}, "mainEntityOfPage": {"oneOf": [{"type": "string", "format": "uri"}, {"type": "object"}]}, "name": {"type": "string"}, "potentialAction": {"type": "object"}, "sameAs": {"type": "string", "format": "uri"}, "url": {"type": "string", "format": "uri"}}, "required": ["@type"], "type": "object"} | |
schema-org-thing.json | @context | override the @context property to ensure the schema.org URI is used | {"type": "string", "format": "regex", "pattern": "http://schema.org"} |
schema-org-thing.json | additionalType | An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. | {"type": "string", "format": "uri"} |
schema-org-thing.json | alternateName | An alias for the item. | {"type": "string"} |
schema-org-thing.json | description | A description of the item. | {"type": "string"} |
schema-org-thing.json | disambiguatingDescription | A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation. | {"type": "string"} |
schema-org-thing.json | image | An image of the item. This can be a URL or a fully described ImageObject. | {"oneOf": [{"type": "string", "format": "uri"}, {"type": "object"}]} |
schema-org-thing.json | mainEntityOfPage | Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See background notes for details. Inverse property mainEntity. | {"oneOf": [{"type": "string", "format": "uri"}, {"type": "object"}]} |
schema-org-thing.json | name | The name of the item. | {"type": "string"} |
schema-org-thing.json | potentialAction | Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. | {"type": "object"} |
schema-org-thing.json | sameAs | URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Freebase page, or official website. | {"type": "string", "format": "uri"} |
schema-org-thing.json | url | URL of the item. | {"type": "string", "format": "uri"} |
journey-map.schema.json | 解析后的 YML 数据 | {"$schema": "http://json-schema.org/draft-07/schema#", "definitions": {"Config": {"properties": {"color": {"type": "string"}, "height": {}, "sections": {"items": {"enum": ["action", "chance", "emotion", "painPoint", "stage", "thought"], "type": "string"}, "type": "array"}}, "type": "object"}, "Partial<Record<SectionType,number>>": {"properties": {"action": {"type": "number"}, "chance": {"type": "number"}, "emotion": {"type": "number"}, "painPoint": {"type": "number"}, "stage": {"type": "number"}, "thought": {"type": "number"}}, "type": "object"}, "UserAction": {"properties": {"color": {"type": "string"}, "emotion": {"maximum": 2, "minimum": -2, "type": "integer"}, "name": {"type": "string"}, "painPoints": {"items": {"type": "string"}, "type": "array"}, "thoughts": {"items": {"type": "string"}, "type": "array"}}, "required": ["name"], "type": "object"}, "YMLStage": {"properties": {"actions": {"items": {}, "type": "array"}, "color": {"type": "string"}, "name": {"type": "string"}, "painPoints": {"items": {"type": "string"}, "type": "array"}, "thoughts": {"items": {"type": "string"}, "type": "array"}}, "required": ["actions", "name"], "type": "object"}}, "properties": {"config": {}, "stages": {"items": {}, "type": "array"}}, "required": ["stages"], "type": "object"} | |
journey-map.schema.json | Config | 图表配置 | {"properties": {"color": {"type": "string"}, "height": {}, "sections": {"items": {"enum": ["action", "chance", "emotion", "painPoint", "stage", "thought"], "type": "string"}, "type": "array"}}, "type": "object"} |
journey-map.schema.json | color | 旅程图主色风格 | {"type": "string"} |
journey-map.schema.json | height | 每个部分的高度 | {} |
journey-map.schema.json | sections | 待显示的区块
默认为: ['stage', 'action', 'emotion','thought'] | {"items": {"enum": ["action", "chance", "emotion", "painPoint", "stage", "thought"], "type": "string"}, "type": "array"} |
journey-map.schema.json | title | 显示旅程图标题 | {"type": "boolean"} |
journey-map.schema.json | UserAction | 用户行为类型 | {"properties": {"color": {"type": "string"}, "emotion": {"maximum": 2, "minimum": -2, "type": "integer"}, "name": {"type": "string"}, "painPoints": {"items": {"type": "string"}, "type": "array"}, "thoughts": {"items": {"type": "string"}, "type": "array"}}, "required": ["name"], "type": "object"} |
journey-map.schema.json | color | 展示颜色 | {"type": "string"} |
journey-map.schema.json | description | 说明 | {"type": "string"} |
journey-map.schema.json | emotion | 情绪得分 | {"maximum": 2, "minimum": -2, "type": "integer"} |
journey-map.schema.json | name | 行为名称 | {"type": "string"} |
journey-map.schema.json | painPoints | 痛点 | {"items": {"type": "string"}, "type": "array"} |
journey-map.schema.json | thoughts | 想法 | {"items": {"type": "string"}, "type": "array"} |
journey-map.schema.json | YMLStage | YML 的阶段类型 | {"properties": {"actions": {"items": {}, "type": "array"}, "color": {"type": "string"}, "name": {"type": "string"}, "painPoints": {"items": {"type": "string"}, "type": "array"}, "thoughts": {"items": {"type": "string"}, "type": "array"}}, "required": ["actions", "name"], "type": "object"} |
journey-map.schema.json | actions | 该阶段所有用户行为 | {"items": {}, "type": "array"} |
journey-map.schema.json | color | 展示颜色 | {"type": "string"} |
journey-map.schema.json | name | 阶段名称 | {"type": "string"} |
journey-map.schema.json | painPoints | 痛点 | {"items": {"type": "string"}, "type": "array"} |
journey-map.schema.json | thoughts | 想法 | {"items": {"type": "string"}, "type": "array"} |
journey-map.schema.json | config | 配置参数 | {} |
journey-map.schema.json | stages | 步骤 | {"items": {}, "type": "array"} |
journey-map.schema.json | title | 标题名 | {"type": "string"} |
all-contributors.json | The configuration file used by the All Contributors CLI and GitHub bot.
https://allcontributors.org/docs/en/bot/configuration | {"$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": {}, "id": "https://json.schemastore.org/base-04.json", "properties": {"projectName": {"type": "string", "minLength": 0}, "projectOwner": {"type": "string", "minLength": 0}, "repoType": {"enum": ["github", "gitlab"], "default": "github"}, "repoHost": {"type": "string", "minLength": 0}, "files": {"type": "array", "items": {"type": "string", "minLength": 0}, "default": ["README.md"]}, "imageSize": {"type": "number", "minimum": 0, "default": 100}, "commit": {"type": "boolean", "default": false}, "commitConvention": {"enum": ["angular", "atom", "ember", "eslint", "jshint", "gitmoji", "none"], "default": "angular"}, "contributorsPerLine": {"type": "number", "minimum": 0, "default": 7}, "contributorsSortAlphabetically": {"type": "boolean", "default": false}, "badgeTemplate": {"type": "string", "minLength": 0}, "contributorTemplate": {"type": "string", "minLength": 0}, "types": {"type": "object", "additionalProperties": {"type": "object", "properties": {"symbol": {"type": "string", "minLength": 0}, "link": {"type": "string", "minLength": 0}}}}, "linkToUsage": {"type": "boolean", "default": true}, "skipCi": {"type": "boolean", "default": true}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"login": {"type": "string", "minLength": 0}, "name": {"type": "string", "minLength": 0}, "avatar_url": {"type": "string", "minLength": 0}, "profile": {"type": "string", "minLength": 0}, "contributions": {"type": "array", "items": {"type": "string", "minLength": 0}, "minItems": 1}}}}}, "required": ["projectName", "projectOwner"], "type": "object"} | |
all-contributors.json | repoHost | Change it if you use a self-hosted repository.
Default: https://github.com if repoType is github, and https://gitlab.com if repoType is gitlab | {"type": "string", "minLength": 0} |
package.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"}}} |
package.json | dependency | Dependencies are specified with a simple hash of package name to version range. The version range is a string which has one or more space-separated descriptors. Dependencies can also be identified with a tarball or git URL. | {"type": "object", "additionalProperties": {"type": "string"}} |
package.json | scriptsInstallAfter | Run AFTER the package is installed. | {"type": "string", "x-intellij-language-injection": "Shell Script"} |
package.json | scriptsPublishAfter | Run AFTER the package is published. | {"type": "string", "x-intellij-language-injection": "Shell Script"} |
package.json | scriptsRestart | Run by the 'npm restart' command. Note: 'npm restart' will run the stop and start scripts if no restart script is provided. | {"type": "string", "x-intellij-language-injection": "Shell Script"} |
package.json | scriptsStart | Run by the 'npm start' command. | {"type": "string", "x-intellij-language-injection": "Shell Script"} |
package.json | scriptsStop | Run by the 'npm stop' command. | {"type": "string", "x-intellij-language-injection": "Shell Script"} |
package.json | scriptsTest | Run by the 'npm test' command. | {"type": "string", "x-intellij-language-injection": "Shell Script"} |
package.json | scriptsUninstallBefore | Run BEFORE the package is uninstalled. | {"type": "string", "x-intellij-language-injection": "Shell Script"} |
package.json | scriptsVersionBefore | Run BEFORE bump the package version. | {"type": "string", "x-intellij-language-injection": "Shell Script"} |
package.json | packageExportsEntryPath | The module path that is resolved when this specifier is imported. Set to `null` to disallow importing this module. | {"type": ["string", "null"], "pattern": "^\\./"} |
package.json | packageExportsEntryObject | Used to specify conditional exports, note that Conditional exports are unsupported in older environments, so it's recommended to use the fallback array option if support for those environments is a concern. | {"type": "object", "properties": {"require": {}, "import": {}, "node": {}, "default": {}, "types": {}}, "patternProperties": {"^(?![\\.0-9]).": {}}, "additionalProperties": false} |
package.json | require | The module path that is resolved when this specifier is imported as a CommonJS module using the `require(...)` function. | {} |
package.json | import | The module path that is resolved when this specifier is imported as an ECMAScript module using an `import` declaration or the dynamic `import(...)` function. | {} |
package.json | node | The module path that is resolved when this environment is Node.js. | {} |
package.json | default | The module path that is resolved when no other export type matches. | {} |
package.json | types | The module path that is resolved for TypeScript types when this specifier is imported. Should be listed before other conditions. | {} |
package.json | ^(?![\.0-9]). | The module path that is resolved when this environment matches the property name. | {} |
package.json | packageExportsFallback | Used to allow fallbacks in case this environment doesn't support the preceding entries. | {"type": "array", "items": {}} |
package.json | fundingUrl | URL to a website with details about how to fund the package. | {"type": "string", "format": "uri"} |
package.json | fundingWay | Used to inform about ways to help fund development of the package. | {"type": "object", "properties": {"url": {}, "type": {"type": "string"}}, "additionalProperties": false, "required": ["url"]} |
package.json | type | The type of funding or the platform through which funding can be provided, e.g. patreon, opencollective, tidelift or github. | {"type": "string"} |
package.json | ^_ | Any property starting with _ is valid. | {"tsType": "any"} |
package.json | name | The name of the package. | {"type": "string", "maxLength": 214, "minLength": 1, "pattern": "^(?:@(?:[a-z0-9-*~][a-z0-9-*._~]*)?/)?[a-z0-9-~][a-z0-9-._~]*$"} |
package.json | version | Version must be parseable by node-semver, which is bundled with npm as a dependency. | {"type": "string"} |
package.json | description | This helps people discover your package, as it's listed in 'npm search'. | {"type": "string"} |
package.json | keywords | This helps people discover your package as it's listed in 'npm search'. | {"type": "array", "items": {"type": "string"}} |
package.json | homepage | The url to the project homepage. | {"type": "string"} |
package.json | bugs | The url to your project's issue tracker and / or the email address to which issues should be reported. These are helpful for people who encounter issues with your package. | {"type": ["object", "string"], "properties": {"url": {"type": "string", "format": "uri"}, "email": {"type": "string", "format": "email"}}} |
package.json | url | The url to your project's issue tracker. | {"type": "string", "format": "uri"} |
package.json | email | The email address to which issues should be reported. | {"type": "string", "format": "email"} |
package.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. | {} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.