schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
nuclei-jsonschema.json | constants | constants contains any constant for the template | {"patternProperties": {".*": {"additionalProperties": true}}, "type": "object"} |
nuclei-jsonschema.json | name | Name of items to match | {} |
nuclei-jsonschema.json | condition | Condition between the names | {"enum": ["and", "or"], "type": "string"} |
nuclei-jsonschema.json | subtemplates | Templates to run after match | {"items": {}, "type": "array"} |
nuclei-jsonschema.json | template | Template or directory to execute as part of workflow | {"type": "string"} |
nuclei-jsonschema.json | tags | Tags to run template based on | {} |
nuclei-jsonschema.json | matchers | Matchers perform name based matching to run subtemplates for a workflow | {"items": {"$schema": "http://json-schema.org/draft-04/schema#"}, "type": "array"} |
nuclei-jsonschema.json | subtemplates | Subtemplates are ran if the template field Template matches | {"items": {}, "type": "array"} |
settings.json | Settings of the current application
https://bashly.dannyb.co/usage/settings/#settings | {"$schema": "http://json-schema.org/draft-07/schema", "definitions": {"color": {"oneOf": [{"type": "string", "examples": ["red", "green", "yellow", "blue", "magenta", "cyan", "bold", "underlined", "red_bold", "green_bold", "yellow_bold", "blue_bold", "magenta_bold", "cyan_bold", "red_underlined", "green_underlined", "yellow_underlined", "blue_underlined", "magenta_underlined", "cyan_underlined"]}, {"type": "null"}]}}, "type": "object", "properties": {"source_dir": {"type": "string", "minLength": 1, "default": "src"}, "config_path": {"type": "string", "minLength": 1, "default": "%{source_dir}/bashly.yml"}, "target_dir": {"type": "string", "minLength": 1, "default": "."}, "lib_dir": {"type": "string", "minLength": 1, "default": "lib"}, "commands_dir": {"oneOf": [{"type": "string", "minLength": 1}, {"type": "null"}]}, "strict": {"oneOf": [{"type": "boolean"}, {"type": "string", "examples": ["set -o pipefail"]}], "default": false}, "tab_indent": {"type": "boolean", "default": false}, "compact_short_flags": {"type": "boolean", "default": true}, "env": {"type": "string", "enum": ["development", "production"], "default": "development"}, "partials_extension": {"type": "string", "minLength": 1, "default": "sh"}, "usage_colors": {"type": "object", "properties": {"caption": {}, "command": {}, "arg": {}, "flag": {}, "environment_variable": {}}, "additionalProperties": false}}, "additionalProperties": false} |
|
settings.json | source_dir | A directory with source files of the current script
https://bashly.dannyb.co/usage/settings/#source_dir | {"type": "string", "minLength": 1, "default": "src"} |
settings.json | config_path | A path to bashly.yml of the current script
https://bashly.dannyb.co/usage/settings/#config_path | {"type": "string", "minLength": 1, "default": "%{source_dir}/bashly.yml"} |
settings.json | target_dir | A directory of the current script
https://bashly.dannyb.co/usage/settings/#target_dir | {"type": "string", "minLength": 1, "default": "."} |
settings.json | lib_dir | A directory to common library files of the current script
https://bashly.dannyb.co/usage/settings/#lib_dir | {"type": "string", "minLength": 1, "default": "lib"} |
settings.json | commands_dir | A directory to nested command files of the current script
https://bashly.dannyb.co/usage/settings/#commands_dir | {"oneOf": [{"type": "string", "minLength": 1}, {"type": "null"}]} |
settings.json | strict | Bash initialiation options of the current script
https://bashly.dannyb.co/usage/settings/#strict | {"oneOf": [{"type": "boolean"}, {"type": "string", "examples": ["set -o pipefail"]}], "default": false} |
settings.json | tab_indent | Whether to use tabs in the the current script
https://bashly.dannyb.co/usage/settings/#tab_indent | {"type": "boolean", "default": false} |
settings.json | compact_short_flags | Whether to expand short flags of the current script
https://bashly.dannyb.co/usage/settings/#compact_short_flags | {"type": "boolean", "default": true} |
settings.json | env | Whether to include development related comments in the current script
https://bashly.dannyb.co/usage/settings/#env | {"type": "string", "enum": ["development", "production"], "default": "development"} |
settings.json | partials_extension | A partial snippet extension of the current script
https://bashly.dannyb.co/usage/settings/#partials_extension | {"type": "string", "minLength": 1, "default": "sh"} |
settings.json | usage_colors | Usage colors of the current script
https://bashly.dannyb.co/usage/settings/#usage_colors | {"type": "object", "properties": {"caption": {}, "command": {}, "arg": {}, "flag": {}, "environment_variable": {}}, "additionalProperties": false} |
settings.json | caption | A caption color of the current script
https://bashly.dannyb.co/usage/settings/#usage_colors | {} |
settings.json | command | A command color of the current script
https://bashly.dannyb.co/usage/settings/#usage_colors | {} |
settings.json | arg | An argument color of the current script
https://bashly.dannyb.co/usage/settings/#usage_colors | {} |
settings.json | flag | A flag color of the current script
https://bashly.dannyb.co/usage/settings/#usage_colors | {} |
settings.json | environment_variable | An environment variable color of the current script
https://bashly.dannyb.co/usage/settings/#usage_colors | {} |
mtaext.json | MTA extension descriptor schema v3.3 | {"$schema": "http://json-schema.org/draft-07/schema#", "definitions": {"hooks": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "parameters": {"type": "object"}, "requires": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "parameters": {"type": "object"}}}}}}}}, "properties": {"_schema-version": {"type": "string", "pattern": "^[1-9]\\d*(\\.\\d+){0,2}$", "default": "3.3.0"}, "ID": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "extends": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "provider": {"type": "string"}, "parameters": {"type": "object"}, "hooks": {}, "modules": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}, "hooks": {}, "requires": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}}}}, "provides": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}}}}}}}, "resources": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "active": {"type": "boolean"}, "properties": {"type": "object"}, "parameters": {"type": "object"}, "hooks": {}, "requires": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}}}}}}}, "module-types": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}}}}, "resource-types": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}}}}}, "required": ["_schema-version", "ID", "extends"], "type": "object"} |
|
mtaext.json | name | The name of the existing hook that will be modified by this extension. | {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"} |
mtaext.json | parameters | Configuration parameters that are used when executing the hook to the target runtime environment. | {"type": "object"} |
mtaext.json | requires | List of the existing required dependencies that will be modified by this extension. | {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "parameters": {"type": "object"}}}} |
mtaext.json | name | The name of the existing required dependencies that will be modified. | {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"} |
mtaext.json | parameters | Parameters can be used to influence the behavior of tools which interpret this descriptor. Parameters are not made available to the hook at runtime. Provided property values can be accessed by "~{<provided-property-name>}". Such expressions can be part of an arbitrary string | {"type": "object"} |
mtaext.json | _schema-version | Used to indicate to an MTA processing tool (e.g. a deployer), which schema version was taken as the base when authoring a descriptor. | {"type": "string", "pattern": "^[1-9]\\d*(\\.\\d+){0,2}$", "default": "3.3.0"} |
mtaext.json | ID | A globally unique ID of this MTA extension descriptor. Unlimited string of unicode characters. | {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"} |
mtaext.json | extends | A globally unique ID of the MTA or the MTA extension which shall be extended by this descriptor. | {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"} |
mtaext.json | description | A non-translatable description of this MTA extension. This is not a text for application users. | {"type": "string"} |
mtaext.json | provider | The provider or vendor. | {"type": "string"} |
mtaext.json | parameters | Global parameters that will be added to the application. | {"type": "object"} |
mtaext.json | hooks | A list of the existing hooks that will be modified by the extension. | {} |
mtaext.json | modules | List of the existing modules that will be modified by the extension. | {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}, "hooks": {}, "requires": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}}}}, "provides": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}}}}}}} |
mtaext.json | name | The module name which must match an existing module defined by the deployment descriptor. | {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"} |
mtaext.json | properties | A collection of key-value pairs that are available to the module at runtime. | {"type": "object"} |
mtaext.json | parameters | Configuration parameters that are used when deploying the module to the target runtime environment. | {"type": "object"} |
mtaext.json | hooks | A list of the existing hooks that will be modified by the extension. | {} |
mtaext.json | requires | List of the existing required dependencies that will be modified by the extension. | {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}}}} |
mtaext.json | name | The dependency name which must match an existing required dependency defined by the deployment descriptor. | {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"} |
mtaext.json | properties | Required properties can be mapped from provided properties. Provided property values can be accessed by "~{<provided-property-name>}". Such expressions can be part of an arbitrary string | {"type": "object"} |
mtaext.json | parameters | Parameters can be used to influence the behavior of tools which interpret this descriptor. Parameters are not made available to the module at runtime. Provided property values can be accessed by "~{<provided-property-name>}". Such expressions can be part of an arbitrary string | {"type": "object"} |
mtaext.json | provides | List of the existing provided dependencies that will be modified by the extension. | {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}}}} |
mtaext.json | name | The dependency name which must match an existing provided dependency defined by the deployment descriptor. | {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"} |
mtaext.json | properties | Property names and values make up the configuration data which is to be provided to requiring modules at runtime | {"type": "object"} |
mtaext.json | parameters | Parameters can be used to influence the behavior of tools which interpret this descriptor. Parameters are not made available to the module at runtime. Provided property values can be accessed by "~{<provided-property-name>}". Such expressions can be part of an arbitrary string | {"type": "object"} |
mtaext.json | resources | List of the existing resources that will be modified by the extension. | {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "active": {"type": "boolean"}, "properties": {"type": "object"}, "parameters": {"type": "object"}, "hooks": {}, "requires": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}}}}}}} |
mtaext.json | name | The resource name which must match an existing resource defined by the deployment descriptor. | {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"} |
mtaext.json | active | If a resource is declared to be active, it is allocated and bound according to declared requirements. Default value is true. | {"type": "boolean"} |
mtaext.json | properties | Property names and values make up the configuration data which is to be provided to requiring modules at runtime. | {"type": "object"} |
mtaext.json | parameters | Parameters can be used to influence the behavior of tools which interpret this descriptor. Parameters are not made available to requiring modules at runtime. Untyped resources cannot have parameters. | {"type": "object"} |
mtaext.json | hooks | List of existing hooks that will be modified by the extension. | {} |
mtaext.json | requires | List of the existing required dependencies that will be modified by the extension. | {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}}}} |
mtaext.json | name | The name of the existing required dependency that will be modified. | {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"} |
mtaext.json | properties | Required properties can be mapped from provided properties. Provided property values can be accessed by "~{<provided-property-name>}". Such expressions can be part of an arbitrary string | {"type": "object"} |
mtaext.json | parameters | Parameters can be used to influence the behavior of tools which interpret this descriptor. Parameters are not made available to the resource at runtime. Provided property values can be accessed by "~{<provided-property-name>}". Such expressions can be part of an arbitrary string | {"type": "object"} |
mtaext.json | module-types | A list of existing module type definitions that will be modified by the extension. | {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}}}} |
mtaext.json | name | The name of the existing module type that will be modified. | {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"} |
mtaext.json | properties | A collection of key-value pairs that will be inherited by all modules of this type. | {"type": "object"} |
mtaext.json | parameters | Configuration parameters that will be inherited in all modules of this type. | {"type": "object"} |
mtaext.json | resource-types | A list of existing resource type definitions that will be modified by the extension. | {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"}, "properties": {"type": "object"}, "parameters": {"type": "object"}}}} |
mtaext.json | name | The name of the existing resource type that will be modified. | {"type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$"} |
mtaext.json | properties | A collection of key-value pairs that will be inherited by all modules of this type. | {"type": "object"} |
mtaext.json | parameters | Configuration parameters that will be inherited in all resources of this type. | {"type": "object"} |
tikibase.schema.json | Tikibase configuration data | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"$schema": {"type": ["string", "null"]}, "bidiLinks": {"type": ["boolean", "null"]}, "ignore": {"type": ["array", "null"], "items": {"type": "string"}}, "sections": {"type": ["array", "null"], "items": {"type": "string"}}, "standaloneDocs": {"type": ["boolean", "null"]}, "titleRegEx": {"type": ["string", "null"]}}, "additionalProperties": false} |
|
tikibase.schema.json | $schema | link to the JSON-Schema definition for this file | {"type": ["string", "null"]} |
tikibase.schema.json | bidiLinks | enables bi-directional links | {"type": ["boolean", "null"]} |
tikibase.schema.json | ignore | Names of filesystem entries to ignore in this directory. | {"type": ["array", "null"], "items": {"type": "string"}} |
tikibase.schema.json | sections | the allowed section titles | {"type": ["array", "null"], "items": {"type": "string"}} |
tikibase.schema.json | standaloneDocs | whether documents without links are allowed | {"type": ["boolean", "null"]} |
tikibase.schema.json | titleRegEx | regex with a single capture group to extract a shorter title for links to notes | {"type": ["string", "null"]} |
schema-org-contact-point.json | This is a JSON schema representation of the schema.org Action schema: https://schema.org/ContactPoint | {"$schema": "http://json-schema.org/draft-04/schema#", "anyOf": [{}], "id": "https://json.schemastore.org/schema-org-contact-point.json", "properties": {"@context": {"type": "string", "format": "regex", "pattern": "http://schema.org"}, "@type": {"type": "string", "format": "regex", "pattern": "ContactPoint"}, "areaServed": {"anyOf": [{"type": "array", "items": {"oneOf": [{}, {}, {}, {"type": "string"}]}}, {"anyOf": [{}, {}, {}, {"type": "string"}]}]}, "availableLanguage": {"anyOf": [{"anyOf": [{"type": "string"}, {}]}, {"type": "array", "items": {"oneOf": [{"type": "string"}, {}]}}]}, "contactOption": {"anyOf": [{"type": "array", "items": {"oneOf": [{"enum": ["HearingImpairedSupported", "TollFree"]}]}}, {"enum": ["HearingImpairedSupported", "TollFree"]}]}, "contactType": {"type": "string"}, "email": {"type": "string", "format": "email"}, "faxNumber": {"type": "string"}, "hoursAvailable": {}, "productSupported": {"anyOf": [{"type": "array", "items": {"oneOf": [{"type": "string"}, {}]}}, {"anyOf": [{"type": "string"}, {}]}]}, "telephone": {"type": "string"}}, "required": ["@type"], "type": "object"} |
|
schema-org-contact-point.json | @context | override the @context property to ensure the schema.org URI is used | {"type": "string", "format": "regex", "pattern": "http://schema.org"} |
schema-org-contact-point.json | @type | override the @type property to ensure ContactPoint is used | {"type": "string", "format": "regex", "pattern": "ContactPoint"} |
schema-org-contact-point.json | areaServed | The geographic area where a service or offered item is provided. Supersedes serviceArea. | {"anyOf": [{"type": "array", "items": {"oneOf": [{}, {}, {}, {"type": "string"}]}}, {"anyOf": [{}, {}, {}, {"type": "string"}]}]} |
schema-org-contact-point.json | items | AdministrativeArea | {} |
schema-org-contact-point.json | items | GeoShape | {} |
schema-org-contact-point.json | items | Place | {} |
schema-org-contact-point.json | areaServed | AdministrativeArea | {} |
schema-org-contact-point.json | areaServed | GeoShape | {} |
schema-org-contact-point.json | areaServed | Place | {} |
schema-org-contact-point.json | availableLanguage | A language someone may use with the item. Please use one of the language codes from the IETF BCP 47 standard. See also inLanguage | {"anyOf": [{"anyOf": [{"type": "string"}, {}]}, {"type": "array", "items": {"oneOf": [{"type": "string"}, {}]}}]} |
schema-org-contact-point.json | availableLanguage | Language | {} |
schema-org-contact-point.json | items | Language | {} |
schema-org-contact-point.json | contactOption | An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers). | {"anyOf": [{"type": "array", "items": {"oneOf": [{"enum": ["HearingImpairedSupported", "TollFree"]}]}}, {"enum": ["HearingImpairedSupported", "TollFree"]}]} |
schema-org-contact-point.json | contactType | A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point. | {"type": "string"} |
schema-org-contact-point.json | email | Email address. | {"type": "string", "format": "email"} |
schema-org-contact-point.json | faxNumber | The fax number. | {"type": "string"} |
schema-org-contact-point.json | hoursAvailable | The hours during which this service or contact is available. (OpeningHoursSpecification) | {} |
schema-org-contact-point.json | productSupported | The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. "iPhone") or a general category of products or services (e.g. "smartphones"). | {"anyOf": [{"type": "array", "items": {"oneOf": [{"type": "string"}, {}]}}, {"anyOf": [{"type": "string"}, {}]}]} |
schema-org-contact-point.json | items | Product | {} |
schema-org-contact-point.json | productSupported | Product | {} |
schema-org-contact-point.json | telephone | The telephone number. | {"type": "string"} |
pterodactyl.json | _comment | A comment to ignore | {"type": "string"} |
pterodactyl.json | name | The egg's name | {"type": "string"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.