json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerIngress": { "description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.", "properties": { "hostname": { "description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)", "type": "string" }, "ip": { "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)", "type": "string" } }, "type": "object" } }, "description": "LoadBalancerStatus represents the status of a load-balancer.", "properties": { "ingress": { "description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerIngress" }, "type": [ "array", "null" ] } }, "type": "object" }
kb_539_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "atomic-reactor plugins configuration", "definitions": { "base_plugins_phase": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "args": { "type": "object" } }, "required": [ "name" ] } }, "general_plugins_phase": { "allOf": [ { "$ref": "#/definitions/base_plugins_phase" }, { "properties": { "is_allowed_to_fail": { "type": "boolean" }, "required": { "type": "boolean" } } } ] } }, "type": [ "object", "null" ], "properties": { "prebuild_plugins": { "$ref": "#/definitions/general_plugins_phase" }, "buildstep_plugins": { "$ref": "#/definitions/base_plugins_phase" }, "postbuild_plugins": { "$ref": "#/definitions/general_plugins_phase" }, "prepublish_plugins": { "$ref": "#/definitions/general_plugins_phase" }, "exit_plugins": { "$ref": "#/definitions/general_plugins_phase" } } }
o68415
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Investment Transaction", "type": "object", "additionalProperties": false, "properties": { "_id": { "type": "integer", "description": "A unique ID for InvestmentTransaction" }, "price": { "type": "number" }, "quantity": { "type": "number" } } }
o46258
{ "$schema": "http://json-schema.org/draft-04/schema#", "$version": "0.0.1", "title": "sample", "description": "api", "definitions": {}, "properties": { "test": { "links": [ { "title": "no_param", "href": "/test", "method": "GET", "rel": "self", "schema": { "properties": {} }, "targetSchema": { "properties": {} } }, { "title": "uri_param", "href": "/test/{id}", "method": "GET", "rel": "self", "schema": { "properties": {} }, "targetSchema": { "properties": {} } }, { "title": "uri_param_two", "href": "/test/{id}/{id2}", "method": "GET", "rel": "self", "schema": { "properties": {} }, "targetSchema": { "properties": {} } }, { "title": "get_param", "href": "/test{?hoge}", "method": "GET", "rel": "self", "schema": { "properties": {} }, "targetSchema": { "properties": {} } }, { "title": "get_param_two", "href": "/test{?hoge,piyo}", "method": "GET", "rel": "self", "schema": { "properties": {} }, "targetSchema": { "properties": {} } }, { "title": "get_param_required", "href": "/test{?hoge}", "method": "GET", "rel": "self", "schema": { "properties": {}, "required": [ "hoge" ] }, "targetSchema": { "properties": {} } }, { "title": "get_param_two_one_required", "href": "/test{?hoge,piyo}", "method": "GET", "rel": "self", "schema": { "properties": {}, "required": [ "hoge" ] }, "targetSchema": { "properties": {} } }, { "title": "get_param_two_all_required", "href": "/test{?hoge,piyo}", "method": "GET", "rel": "self", "schema": { "properties": {}, "required": [ "hoge", "piyo" ] }, "targetSchema": { "properties": {} } }, { "title": "post_param", "href": "/test", "method": "GET", "rel": "self", "schema": { "properties": { "post_id": { "type": "string", "example": "abcdef" } } }, "targetSchema": { "properties": {} } }, { "title": "post_param_required", "href": "/test", "method": "GET", "rel": "self", "schema": { "properties": { "post_id": { "type": "string", "example": "abcdef" } }, "required": [ "post_id" ] }, "targetSchema": { "properties": {} } }, { "title": "uri_get_param", "href": "/test/{id}{?hoge}", "method": "GET", "rel": "self", "schema": { "properties": {} }, "targetSchema": { "properties": {} } }, { "title": "uri_get_param_required", "href": "/test/{id}{?hoge}", "method": "GET", "rel": "self", "schema": { "properties": {}, "required": [ "hoge" ] }, "targetSchema": { "properties": {} } }, { "title": "uri_post_param", "href": "/test{id}", "method": "GET", "rel": "self", "schema": { "properties": { "post_id": { "type": "string", "example": "abcdef" } } }, "targetSchema": { "properties": {} } }, { "title": "uri_post_param_required", "href": "/test{id}", "method": "GET", "rel": "self", "schema": { "properties": { "post_id": { "type": "string", "example": "abcdef" } }, "required": [ "post_id" ] }, "targetSchema": { "properties": {} } }, { "title": "get_post_param", "href": "/test{?hoge}", "method": "GET", "rel": "self", "schema": { "properties": { "post_id": { "type": "string", "example": "abcdef" } } }, "targetSchema": { "properties": {} } }, { "title": "get_post_param_get_required", "href": "/test{?hoge}", "method": "GET", "rel": "self", "schema": { "properties": { "post_id": { "type": "string", "example": "abcdef" } }, "required": [ "hoge" ] }, "targetSchema": { "properties": {} } }, { "title": "get_post_param_post_required", "href": "/test{?hoge}", "method": "GET", "rel": "self", "schema": { "properties": { "post_id": { "type": "string", "example": "abcdef" } }, "required": [ "post_id" ] }, "targetSchema": { "properties": {} } }, { "title": "get_post_param_required", "href": "/test{?hoge}", "method": "GET", "rel": "self", "schema": { "properties": { "post_id": { "type": "string", "example": "abcdef" } }, "required": [ "hoge", "post_id" ] }, "targetSchema": { "properties": {} } }, { "title": "all_param", "href": "/test{id}{?hoge}", "method": "GET", "rel": "self", "schema": { "properties": { "post_id": { "type": "string", "example": "abcdef" } } }, "targetSchema": { "properties": {} } }, { "title": "all_param_get_required", "href": "/test{id}{?hoge}", "method": "GET", "rel": "self", "schema": { "properties": { "post_id": { "type": "string", "example": "abcdef" } }, "required": [ "hoge" ] }, "targetSchema": { "properties": {} } }, { "title": "all_param_post_required", "href": "/test{id}{?hoge}", "method": "GET", "rel": "self", "schema": { "properties": { "post_id": { "type": "string", "example": "abcdef" } }, "required": [ "post_id" ] }, "targetSchema": { "properties": {} } }, { "title": "all_param_required", "href": "/test{id}{?hoge}", "method": "GET", "rel": "self", "schema": { "properties": { "post_id": { "type": "string", "example": "abcdef" } }, "required": [ "post_id", "hoge" ] }, "targetSchema": { "properties": {} } } ] } } }
o47151
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "meta" ], "properties": { "meta": { "required": [ "format_version" ], "properties": { "format_version": { "type": "integer", "minimum": 1 } }, "additionalProperties": { "type": "object", "required": [ "modified", "hostname" ], "properties": { "modified": { "type": "string", "format": "date-time" }, "hostname": { "type": "string", "format": "hostname" } } } } } }
o65951
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "object", "properties": { "type": { "type": "string" }, "properties": { "type": "object", "properties": { "Browser": { "type": "string" }, "Browser_Maker": { "type": "string" }, "JavaApplets": { "type": "boolean" } }, "required": [ "Browser", "Browser_Maker" ] }, "lite": { "type": "boolean" }, "standard": { "type": "boolean" } }, "required": [ "type", "properties", "lite", "standard" ] } }
o60843
{ "additionalProperties": true, "definitions": {}, "description": "Relationships between shaders and Mindbender IDs", "properties": { "_schema": { "description": "Schema identifier for payload", "type": "string" }, "shader": { "description": "Name of directory", "items": { "description": "Mindbender ID and optional face indexes, e.g. 'f9520572-ac1d-11e6-b39e-3085a99791c9.f[5002:5185]'", "type": "string" }, "type": "array" } }, "required": [ "schema", "shader" ], "title": "pyblish-mindbender:shaders-1.0", "type": "object" }
o68811
{ "description": "Info contains versioning information. how we'll want to distribute that information.", "properties": { "buildDate": { "type": [ "string", "null" ] }, "compiler": { "type": [ "string", "null" ] }, "gitCommit": { "type": [ "string", "null" ] }, "gitTreeState": { "type": [ "string", "null" ] }, "gitVersion": { "type": [ "string", "null" ] }, "goVersion": { "type": [ "string", "null" ] }, "major": { "type": [ "string", "null" ] }, "minor": { "type": [ "string", "null" ] }, "platform": { "type": [ "string", "null" ] } }, "required": [ "major", "minor", "gitVersion", "gitCommit", "gitTreeState", "buildDate", "goVersion", "compiler", "platform" ], "type": "object" }
kb_434_Normalized
{ "additionalProperties": false, "description": "common schema for user application started and complete volumes - used for MI data based save and return completion-rate calculation", "properties": { "_id": { "description": "unique url-friendly base64 encoded, utf8 endoded concatenation identifier", "type": "string" }, "_timestamp": { "_format": "date-time", "description": "ISO8601 combined date and time in UTC e.g. '2014-12-01T00:00:00+00:00'", "type": "string" }, "count": { "minimum": 0, "type": "integer" }, "period": { "description": "The period covered by each data point from the _timestamp", "enum": [ "hour", "day", "week", "month", "quarter" ] }, "state": { "enum": [ "started", "completed" ] } }, "required": [ "_id", "_timestamp", "period", "state", "count" ], "title": "application-state-volumes", "type": "object" }
o60885
{ "$schema": "http://json-schema.org/draft-04/schema#", "name": "Package", "type": "object", "additionalProperties": false, "required": [ "name", "description" ], "properties": { "name": { "type": "string", "description": "Package name, including 'vendor-name/' prefix." }, "type": { "description": "Package type, either 'library' for common packages, 'composer-plugin' for plugins, 'metapackage' for empty packages, or a custom type ([a-z0-9-]+) defined by whatever project this package applies to.", "type": "string" }, "target-dir": { "description": "DEPRECATED: Forces the package to be installed into the given subdirectory path. This is used for autoloading PSR-0 packages that do not contain their full path. Use forward slashes for cross-platform compatibility.", "type": "string" }, "description": { "type": "string", "description": "Short package description." }, "keywords": { "type": "array", "items": { "type": "string", "description": "A tag/keyword that this package relates to." } }, "homepage": { "type": "string", "description": "Homepage URL for the project.", "format": "uri" }, "version": { "type": "string", "description": "Package version, see https://getcomposer.org/doc/04-schema.md#version for more info on valid schemes." }, "time": { "type": "string", "description": "Package release date, in 'YYYY-MM-DD', 'YYYY-MM-DD HH:MM:SS' or 'YYYY-MM-DDTHH:MM:SSZ' format." }, "license": { "type": [ "string", "array" ], "description": "License name. Or an array of license names." }, "authors": { "type": "array", "description": "List of authors that contributed to the package. This is typically the main maintainers, not the full list.", "items": { "type": "object", "additionalProperties": false, "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Full name of the author." }, "email": { "type": "string", "description": "Email address of the author.", "format": "email" }, "homepage": { "type": "string", "description": "Homepage URL for the author.", "format": "uri" }, "role": { "type": "string", "description": "Author's role in the project." } } } }, "require": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that are required to run this package.", "additionalProperties": true }, "replace": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that can be replaced by this package.", "additionalProperties": true }, "conflict": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that conflict with this package.", "additionalProperties": true }, "provide": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that this package provides in addition to this package's name.", "additionalProperties": true }, "require-dev": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that this package requires for developing it (testing tools and such).", "additionalProperties": true }, "suggest": { "type": "object", "description": "This is a hash of package name (keys) and descriptions (values) that this package suggests work well with it (this will be suggested to the user during installation).", "additionalProperties": true }, "config": { "type": "object", "description": "Composer options.", "properties": { "process-timeout": { "type": "integer", "description": "The timeout in seconds for process executions, defaults to 300 (5mins)." }, "use-include-path": { "type": "boolean", "description": "If true, the Composer autoloader will also look for classes in the PHP include path." }, "preferred-install": { "type": "string", "description": "The install method Composer will prefer to use, defaults to auto and can be any of source, dist or auto." }, "notify-on-install": { "type": "boolean", "description": "Composer allows repositories to define a notification URL, so that they get notified whenever a package from that repository is installed. This option allows you to disable that behaviour, defaults to true." }, "github-protocols": { "type": "array", "description": "A list of protocols to use for github.com clones, in priority order, defaults to [\"git\", \"https\", \"http\"].", "items": { "type": "string" } }, "github-oauth": { "type": "object", "description": "A hash of domain name => github API oauth tokens, typically {\"github.com\":\"<token>\"}.", "additionalProperties": true }, "http-basic": { "type": "object", "description": "A hash of domain name => {\"username\": \"...\", \"password\": \"...\"}.", "additionalProperties": true }, "store-auths": { "type": [ "string", "boolean" ], "description": "What to do after prompting for authentication, one of: true (store), false (do not store) or \"prompt\" (ask every time), defaults to prompt." }, "platform": { "type": "object", "description": "This is a hash of package name (keys) and version (values) that will be used to mock the platform packages on this machine.", "additionalProperties": true }, "vendor-dir": { "type": "string", "description": "The location where all packages are installed, defaults to \"vendor\"." }, "bin-dir": { "type": "string", "description": "The location where all binaries are linked, defaults to \"vendor/bin\"." }, "cache-dir": { "type": "string", "description": "The location where all caches are located, defaults to \"~/.composer/cache\" on *nix and \"%LOCALAPPDATA%\\Composer\" on windows." }, "cache-files-dir": { "type": "string", "description": "The location where files (zip downloads) are cached, defaults to \"{$cache-dir}/files\"." }, "cache-repo-dir": { "type": "string", "description": "The location where repo (git/hg repo clones) are cached, defaults to \"{$cache-dir}/repo\"." }, "cache-vcs-dir": { "type": "string", "description": "The location where vcs infos (git clones, github api calls, etc. when reading vcs repos) are cached, defaults to \"{$cache-dir}/vcs\"." }, "cache-ttl": { "type": "integer", "description": "The default cache time-to-live, defaults to 15552000 (6 months)." }, "cache-files-ttl": { "type": "integer", "description": "The cache time-to-live for files, defaults to the value of cache-ttl." }, "cache-files-maxsize": { "type": [ "string", "integer" ], "description": "The cache max size for the files cache, defaults to \"300MiB\"." }, "discard-changes": { "type": [ "string", "boolean" ], "description": "The default style of handling dirty updates, defaults to false and can be any of true, false or \"stash\"." }, "autoloader-suffix": { "type": "string", "description": "Optional string to be used as a suffix for the generated Composer autoloader. When null a random one will be generated." }, "optimize-autoloader": { "type": "boolean", "description": "Always optimize when dumping the autoloader." }, "prepend-autoloader": { "type": "boolean", "description": "If false, the composer autoloader will not be prepended to existing autoloaders, defaults to true." }, "classmap-authoritative": { "type": "boolean", "description": "If true, the composer autoloader will not scan the filesystem for classes that are not found in the class map, defaults to false." }, "github-domains": { "type": "array", "description": "A list of domains to use in github mode. This is used for GitHub Enterprise setups, defaults to [\"github.com\"].", "items": { "type": "string" } }, "github-expose-hostname": { "type": "boolean", "description": "Defaults to true. If set to false, the OAuth tokens created to access the github API will have a date instead of the machine hostname." }, "archive-format": { "type": "string", "description": "The default archiving format when not provided on cli, defaults to \"tar\"." }, "archive-dir": { "type": "string", "description": "The default archive path when not provided on cli, defaults to \".\"." } } }, "extra": { "type": [ "object", "array" ], "description": "Arbitrary extra data that can be used by plugins, for example, package of type composer-plugin may have a 'class' key defining an installer class name.", "additionalProperties": true }, "autoload": { "type": "object", "description": "Description of how the package can be autoloaded.", "properties": { "psr-0": { "type": "object", "description": "This is a hash of namespaces (keys) and the directories they can be found into (values, can be arrays of paths) by the autoloader.", "additionalProperties": true }, "psr-4": { "type": "object", "description": "This is a hash of namespaces (keys) and the PSR-4 directories they can map to (values, can be arrays of paths) by the autoloader.", "additionalProperties": true }, "classmap": { "type": "array", "description": "This is an array of directories that contain classes to be included in the class-map generation process." }, "files": { "type": "array", "description": "This is an array of files that are always required on every request." } } }, "autoload-dev": { "type": "object", "description": "Description of additional autoload rules for development purpose (eg. a test suite).", "properties": { "psr-0": { "type": "object", "description": "This is a hash of namespaces (keys) and the directories they can be found into (values, can be arrays of paths) by the autoloader.", "additionalProperties": true }, "psr-4": { "type": "object", "description": "This is a hash of namespaces (keys) and the PSR-4 directories they can map to (values, can be arrays of paths) by the autoloader.", "additionalProperties": true }, "classmap": { "type": "array", "description": "This is an array of directories that contain classes to be included in the class-map generation process." }, "files": { "type": "array", "description": "This is an array of files that are always required on every request." } } }, "archive": { "type": [ "object" ], "description": "Options for creating package archives for distribution.", "properties": { "exclude": { "type": "array", "description": "A list of patterns for paths to exclude or include if prefixed with an exclamation mark." } } }, "repositories": { "type": [ "object", "array" ], "description": "A set of additional repositories where packages can be found.", "additionalProperties": true }, "minimum-stability": { "type": [ "string" ], "description": "The minimum stability the packages must have to be install-able. Possible values are: dev, alpha, beta, RC, stable.", "pattern": "^dev|alpha|beta|rc|RC|stable$" }, "prefer-stable": { "type": [ "boolean" ], "description": "If set to true, stable packages will be preferred to dev packages when possible, even if the minimum-stability allows unstable packages." }, "bin": { "type": [ "array" ], "description": "A set of files that should be treated as binaries and symlinked into bin-dir (from config).", "items": { "type": "string" } }, "include-path": { "type": [ "array" ], "description": "DEPRECATED: A list of directories which should get added to PHP's include path. This is only present to support legacy projects, and all new code should preferably use autoloading.", "items": { "type": "string" } }, "scripts": { "type": [ "object" ], "description": "Scripts listeners that will be executed before/after some events.", "properties": { "pre-install-cmd": { "type": [ "array", "string" ], "description": "Occurs before the install command is executed, contains one or more Class::method callables or shell commands." }, "post-install-cmd": { "type": [ "array", "string" ], "description": "Occurs after the install command is executed, contains one or more Class::method callables or shell commands." }, "pre-update-cmd": { "type": [ "array", "string" ], "description": "Occurs before the update command is executed, contains one or more Class::method callables or shell commands." }, "post-update-cmd": { "type": [ "array", "string" ], "description": "Occurs after the update command is executed, contains one or more Class::method callables or shell commands." }, "pre-status-cmd": { "type": [ "array", "string" ], "description": "Occurs before the status command is executed, contains one or more Class::method callables or shell commands." }, "post-status-cmd": { "type": [ "array", "string" ], "description": "Occurs after the status command is executed, contains one or more Class::method callables or shell commands." }, "pre-package-install": { "type": [ "array", "string" ], "description": "Occurs before a package is installed, contains one or more Class::method callables or shell commands." }, "post-package-install": { "type": [ "array", "string" ], "description": "Occurs after a package is installed, contains one or more Class::method callables or shell commands." }, "pre-package-update": { "type": [ "array", "string" ], "description": "Occurs before a package is updated, contains one or more Class::method callables or shell commands." }, "post-package-update": { "type": [ "array", "string" ], "description": "Occurs after a package is updated, contains one or more Class::method callables or shell commands." }, "pre-package-uninstall": { "type": [ "array", "string" ], "description": "Occurs before a package has been uninstalled, contains one or more Class::method callables or shell commands." }, "post-package-uninstall": { "type": [ "array", "string" ], "description": "Occurs after a package has been uninstalled, contains one or more Class::method callables or shell commands." }, "pre-autoload-dump": { "type": [ "array", "string" ], "description": "Occurs before the autoloader is dumped, contains one or more Class::method callables or shell commands." }, "post-autoload-dump": { "type": [ "array", "string" ], "description": "Occurs after the autoloader is dumped, contains one or more Class::method callables or shell commands." }, "post-root-package-install": { "type": [ "array", "string" ], "description": "Occurs after the root-package is installed, contains one or more Class::method callables or shell commands." }, "post-create-project-cmd": { "type": [ "array", "string" ], "description": "Occurs after the create-project command is executed, contains one or more Class::method callables or shell commands." } } }, "support": { "type": "object", "properties": { "email": { "type": "string", "description": "Email address for support.", "format": "email" }, "issues": { "type": "string", "description": "URL to the issue tracker.", "format": "uri" }, "forum": { "type": "string", "description": "URL to the forum.", "format": "uri" }, "wiki": { "type": "string", "description": "URL to the wiki.", "format": "uri" }, "irc": { "type": "string", "description": "IRC channel for support, as irc://server/channel.", "format": "uri" }, "source": { "type": "string", "description": "URL to browse or download the sources.", "format": "uri" }, "docs": { "type": "string", "description": "URL to the documentation.", "format": "uri" } } }, "non-feature-branches": { "type": [ "array" ], "description": "A set of string or regex patterns for non-numeric branch names that will not be handled as feature branches.", "items": { "type": "string" } } } }
o91394
{ "$id": "https://json.schemastore.org/pubspec", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "version": { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+(?:[+-]\\S+)?$" }, "versionConstraint": { "description": "Version range of the package or SDK to use", "oneOf": [ { "type": "string", "description": "Allows any version of the package. This is not recommended for performance reasons", "enum": ["any", ""] }, { "$ref": "#/definitions/version" }, { "type": "string", "examples": [">1.0.0 <2.3.0-beta", ">=1.0.0-pre.1 <=3.0.0"], "pattern": "^(?:(?:>=|>|<=|<)\\d+\\.\\d+\\.\\d+(?:[+-]\\S+)?\\s*)+$" }, { "type": "string", "examples": ["^1.0.0"], "pattern": "^\\^\\d+\\.\\d+\\.\\d+(?:[+-]\\S+)?$" } ] }, "dependency": { "oneOf": [ { "$ref": "#/definitions/versionConstraint", "$comment": "Syntax in yaml: `foo: ^1.2.3`" }, { "description": "Default dependency, matches any version of the package", "type": "null", "$comment": "Syntax in yaml: `foo:` or `foo: null`" }, { "title": "SDK dependency", "type": "object", "properties": { "sdk": { "description": "The SDK which contains this package", "type": "string" }, "version": { "$ref": "#/definitions/versionConstraint" } }, "required": ["sdk"], "additionalProperties": false }, { "title": "Hosted dependency", "type": "object", "properties": { "hosted": { "oneOf": [ { "type": "string", "description": "URL of the package server hosting this package", "format": "uri" }, { "type": "object", "properties": { "name": { "type": "string" }, "url": { "description": "The package server hosting this package", "type": "string", "format": "uri" } }, "required": ["url"] } ] }, "version": { "$ref": "#/definitions/versionConstraint" } }, "required": ["hosted"], "additionalProperties": false }, { "description": "Git dependency", "type": "object", "properties": { "git": { "$comment": "Can either be a string (uri) or an object with ref etc.", "oneOf": [ { "description": "URI of the repository hosting this package", "type": "string" }, { "type": "object", "properties": { "url": { "type": "string", "description": "URI of the repository hosting this package" }, "path": { "type": "string", "description": "Path of this package relative to the Git repo's root" }, "ref": { "type": "string", "description": "The branch, tag, or anything else Git allows to identify a commit." } } } ] } }, "required": ["git"], "additionalProperties": false }, { "description": "Path dependency", "type": "object", "properties": { "path": { "type": "string" } }, "additionalProperties": false } ] }, "dependencies": { "type": "object", "additionalProperties": { "$ref": "#/definitions/dependency" } } }, "description": "Dart Pubspec file", "properties": { "name": { "description": "The name of this package. The name is how other packages refer to yours, should you publish it.", "type": "string" }, "version": { "$ref": "#/definitions/version" }, "description": { "type": "string" }, "authors": { "type": "array", "deprecated": true, "items": { "type": "string" } }, "homepage": { "type": "string", "format": "uri" }, "repository": { "type": "string", "format": "uri" }, "issue_tracker": { "type": "string", "format": "uri" }, "documentation": { "type": "string", "format": "uri" }, "executables": { "type": "object" }, "publish_to": { "type": "string" }, "environment": { "type": "object", "examples": [ { "sdk": ">=1.19.0 <3.0.0", "flutter": "^0.1.2" } ], "additionalProperties": { "$ref": "#/definitions/versionConstraint" } }, "dependencies": { "$ref": "#/definitions/dependencies" }, "dev_dependencies": { "$ref": "#/definitions/dependencies" }, "dependency_overrides": { "$ref": "#/definitions/dependencies" } }, "required": ["name"], "title": "Pubspec", "type": "object" }
pubspec
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "events": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "title": { "type": "string" }, "url": { "type": "string" }, "start": { "type": "string" }, "end": { "type": "string" }, "address": { "type": "string" }, "tags": { "type": "string" } }, "required": [ "id", "title", "url", "start" ] } } }, "required": [ "events" ] }
o35924
{ "additionalProperties": false, "definitions": { "attribute_base": { "additionalProperties": false, "properties": { "description": { "type": "string" }, "format": { "type": "string" }, "info": { "type": "object" }, "label": { "type": "string" }, "missing_value": { "title": "Missing value", "type": [ "string", "number", "null", "boolean" ] }, "name": { "type": "string" }, "order": { "enum": [ "asc", "desc" ], "type": "string" } }, "required": [ "name" ], "type": "object" } }, "properties": { "aggregates": { "items": { "anyof": [ { "type": "string" }, { "additionalproperties": false, "allof": [ { "$ref": "#/definitions/attribute_base" }, { "properties": { "expression": { "type": "string" }, "formula": { "type": "string" }, "function": { "type": "string" }, "measure": { "type": "string" }, "nonadditive": { "type": "string" } } } ] } ] }, "type": "array" }, "browser_options": { "type": "object" }, "category": { "type": "string" }, "description": { "type": "string" }, "details": { "items": { "anyof": [ { "type": "string" }, { "additionalproperties": false, "allof": [ { "$ref": "#/definitions/attribute_base" }, { "properties": { "locales": { "items": { "type": "string" }, "type": "array" } } } ] } ] }, "title": "Detail Attributes", "type": "array" }, "dimensions": { "items": { "title": "Dimension name", "type": [ "string", "object" ] }, "title": "Dimensions", "type": "array" }, "fact": { "type": "string" }, "hierarchies": { "patternProperties": { ".*": { "items": { "title": "Hierarchy", "type": "string" }, "type": "array" } }, "type": "object" }, "implicit_aggregates": { "type": "boolean" }, "info": { "type": "object" }, "joins": { "type": "array" }, "key": { "type": "string" }, "label": { "type": "string" }, "mappings": { "type": "object" }, "measures": { "items": { "anyof": [ { "type": "string" }, { "additionalproperties": false, "allof": [ { "$ref": "#/definitions/attribute_base" }, { "properties": { "aggregates": { "type": "array" }, "expression": { "type": "string" }, "nonadditive": { "type": "string" } } } ] } ] }, "type": "array" }, "name": { "type": "string" }, "store": { "type": "string" } }, "required": [ "name" ], "title": "Cube", "type": "object" }
o91012
{ "$comment": "https://docs.aurorajs.dev/", "$id": "https://json.schemastore.org/aurora-1.0.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "property": { "type": "object", "required": ["name", "type"], "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The name of property, in camelCase", "minLength": 2 }, "type": { "type": "string", "description": "The type of property", "enum": [ "bigint.unsigned", "bigint", "blob.long", "blob.medium", "blob.tiny", "blob", "boolean", "char", "date", "decimal", "enum", "float", "id", "int.unsigned", "int", "json", "manyToMany", "password", "relationship", "smallint.unsigned", "smallint", "text", "timestamp", "tinyint.unsigned", "tinyint", "varchar" ] }, "length": { "type": "number", "description": "Set max length to property", "minimum": 1 }, "maxLength": { "type": "number", "description": "Set max length to property", "minimum": 1 }, "nullable": { "type": "boolean", "description": "Set property to nullable" }, "primaryKey": { "type": "boolean", "description": "Set property to primary key" }, "index": { "type": "string", "description": "To define property like a index", "enum": ["index", "unique"] }, "indexName": { "type": "string", "description": "The name of index, if there are various indexes with the same name, they will be grouped", "minLength": 2 }, "enumOptions": { "type": "array", "description": "Values for enum type", "items": { "type": "string", "minLength": 1 } }, "defaultValue": { "type": ["number", "string", "boolean"], "description": "Default value for property" }, "example": { "type": ["number", "string", "boolean"], "description": "Example value for property, this value will be used in swagger documentation" }, "decimals": { "type": "array", "description": "Total digits of the number and length of the decimal places in the back of the number, example: [10, 2].", "items": { "type": "number", "minimum": 1 } }, "autoIncrement": { "type": "boolean", "description": "Set number property as auto increment" }, "relationship": { "$ref": "#/definitions/relationship" }, "webComponent": { "$ref": "#/definitions/webComponent" } } }, "apiDefinition": { "type": "object", "required": ["path", "resolverType", "httpMethod"], "properties": { "path": { "type": "string", "description": "Path to access api", "minLength": 2 }, "resolverType": { "type": "string", "description": "Type of resolver, query or mutation", "enum": ["query", "mutation"] }, "httpMethod": { "type": "string", "description": "Verb of api rest", "enum": ["get", "post", "put", "delete", "patch"] } } }, "relationship": { "type": "object", "additionalProperties": false, "description": "Relationship definition for this property", "properties": { "type": { "type": "string", "description": "The type of web component", "enum": [ "many-to-many", "many-to-one", "none", "one-to-many", "one-to-one" ] }, "singularName": { "type": "string", "description": "Singular name of the property referred to in the relationship, only for one-to-many and many-to-many relationship, example: book", "minLength": 2 }, "aggregate": { "type": "string", "description": "Aggregate referring to this relationship, example: LibraryAuthor", "minLength": 2 }, "modulePath": { "type": "string", "description": "Path to the module that refers to this relationship, example: library/author", "minLength": 2 }, "key": { "type": "string", "description": "Property key that refers to this relationship, only for many-to-one relationship, example: id", "minLength": 2 }, "field": { "type": "string", "description": "Field to obtain the relationship data, example: author", "minLength": 2 }, "avoidConstraint": { "type": "boolean", "description": "Avoid constraint rules for this relationship" }, "packageName": { "type": "string", "description": "Path to packageName where is the relationship, example: @aurora-ts/core", "minLength": 2 }, "isDenormalized": { "type": "boolean", "description": "Set many-to-many relationship as denormalized, creating a field to store the selected ids" }, "pivot": { "$ref": "#/definitions/pivotTable" } } }, "webComponent": { "type": "object", "additionalProperties": false, "description": "Web Component that wil be rendered for this property", "properties": { "type": { "type": "string", "description": "The type of web component", "enum": ["grid-select-element", "grid-elements-manager", "select"] } } }, "pivotTable": { "type": "object", "additionalProperties": false, "description": "Relationship pivot table definition for this relationship", "properties": { "aggregate": { "type": "string", "description": "AggregateName of Pivot table, example: IamRolesAccounts", "minLength": 2 }, "modulePath": { "type": "string", "description": "Module path where table model file will be saved, example: iam/role", "minLength": 2 }, "fileName": { "type": "string", "description": "Filename of pivot table model file, example: roles-accounts", "minLength": 2 } } } }, "description": "Make agile applications without technical debt", "properties": { "version": { "type": "string", "description": "Schema version", "default": "0.0.1", "minLength": 2 }, "boundedContextName": { "type": "string", "description": "The name of the bounded context, singular in kebab-case", "minLength": 2 }, "moduleName": { "type": "string", "description": "The name of the module, singular in kebab-case", "minLength": 2 }, "moduleNames": { "type": "string", "description": "The name of the module, plural in kebab-case", "minLength": 2 }, "aggregateName": { "type": "string", "description": "The name of the aggregateName, singular in PascalCase", "minLength": 2 }, "hasOAuth": { "type": "boolean", "description": "Enabled authentication for this module", "default": false }, "hasTenant": { "type": "boolean", "description": "Enabled tenant for this module", "default": false }, "hasAuditing": { "type": "boolean", "description": "Enabled auditing for this module", "default": false }, "aggregateProperties": { "type": "array", "items": { "$ref": "#/definitions/property" } }, "aggregateI18nProperties": { "type": "array", "items": { "$ref": "#/definitions/property" } }, "additionalApis": { "type": "array", "items": { "$ref": "#/definitions/apiDefinition" } } }, "required": [ "boundedContextName", "moduleName", "moduleNames", "aggregateName" ], "title": "Aurora Agile Meta Framework", "type": "object" }
aurora-1
{ "additionalProperties": false, "description": "Schema for Iglu related errors which could be during validation or schema lookup", "properties": { "errors": { "description": "List of errors taken during a validation or schema lookup with Iglu", "items": { "additionalProperties": false, "properties": { "error": { "anyOf": [ { "additionalProperties": false, "description": "Problem during schema resolution, missing schema or internal error", "properties": { "error": { "enum": [ "ResolutionError" ] }, "lookupHistory": { "description": "Set of all traversed repositories with their failures", "items": { "additionalProperties": false, "properties": { "attempts": { "description": "Number of attempts this repository has been queried", "minimum": 0, "type": "integer" }, "errors": { "items": { "properties": { "error": { "enum": [ "ClientFailure", "RepoFailure", "NotFound" ] }, "message": { "type": "string" } }, "required": [ "error" ] }, "type": "array" }, "lastAttempt": { "_format": "date-time", "type": "string" }, "repository": { "description": "Repository name from resolver config", "type": "string" } }, "required": [ "repository", "errors", "attempts", "lastAttempt" ], "type": "object" }, "minItems": 1, "type": "array" } }, "required": [ "error", "lookupHistory" ] }, { "description": "Data is invalid against its schema", "properties": { "dataReports": { "items": { "additionalProperties": false, "description": "List of reports", "properties": { "keyword": { "description": "JSON Schema keyword caused this report", "type": [ "string", "null" ] }, "message": { "description": "Human-readable error message", "type": "string" }, "path": { "description": "JSON Path to problematic property in instance", "type": [ "string", "null" ] }, "targets": { "description": "List of properties affected in instance", "items": { "type": "string" }, "type": "array" } }, "required": [ "message", "path", "keyword", "targets" ], "type": "object" }, "minItems": 1, "type": "array" }, "error": { "enum": [ "ValidationError" ] } } } ] }, "schema": { "description": "Key of the schema which is tried to be fetched", "pattern": "^iglu:[a-zA-Z0-9-_.]+/[a-zA-Z0-9-_]+/[a-zA-Z0-9-_]+/[1-9]+-[0-9]+-[0-9]+$", "type": "string" } }, "required": [ "schema", "error" ], "type": "object" }, "type": "array" }, "event": { "additionalProperties": false, "description": "The enriched event that resulted in a storage loader failure", "properties": { "app_id": { "maxLength": 255, "type": [ "string", "null" ] }, "base_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "br_colordepth": { "maxLength": 12, "type": [ "string", "null" ] }, "br_cookies": { "type": [ "boolean", "null" ] }, "br_family": { "maxLength": 50, "type": [ "string", "null" ] }, "br_features_director": { "type": [ "boolean", "null" ] }, "br_features_flash": { "type": [ "boolean", "null" ] }, "br_features_gears": { "type": [ "boolean", "null" ] }, "br_features_java": { "type": [ "boolean", "null" ] }, "br_features_pdf": { "type": [ "boolean", "null" ] }, "br_features_quicktime": { "type": [ "boolean", "null" ] }, "br_features_realplayer": { "type": [ "boolean", "null" ] }, "br_features_silverlight": { "type": [ "boolean", "null" ] }, "br_features_windowsmedia": { "type": [ "boolean", "null" ] }, "br_lang": { "maxLength": 255, "type": [ "string", "null" ] }, "br_name": { "maxLength": 50, "type": [ "string", "null" ] }, "br_renderengine": { "maxLength": 50, "type": [ "string", "null" ] }, "br_type": { "maxLength": 50, "type": [ "string", "null" ] }, "br_version": { "maxLength": 50, "type": [ "string", "null" ] }, "br_viewheight": { "type": [ "integer", "null" ] }, "br_viewwidth": { "type": [ "integer", "null" ] }, "collector_tstamp": { "_format": "date-time", "type": "string" }, "contexts": { "type": [ "object", "null" ] }, "derived_contexts": { "type": [ "object", "null" ] }, "derived_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "doc_charset": { "maxLength": 128, "type": [ "string", "null" ] }, "doc_height": { "type": [ "integer", "null" ] }, "doc_width": { "type": [ "integer", "null" ] }, "domain_sessionid": { "maxLength": 128, "type": [ "string", "null" ] }, "domain_sessionidx": { "type": [ "integer", "null" ] }, "domain_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "dvce_created_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "dvce_ismobile": { "type": [ "boolean", "null" ] }, "dvce_screenheight": { "type": [ "integer", "null" ] }, "dvce_screenwidth": { "type": [ "integer", "null" ] }, "dvce_sent_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "dvce_type": { "maxLength": 50, "type": [ "string", "null" ] }, "etl_tags": { "maxLength": 500, "type": [ "string", "null" ] }, "etl_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "event": { "maxLength": 128, "type": [ "string", "null" ] }, "event_fingerprint": { "maxLength": 128, "type": [ "string", "null" ] }, "event_format": { "maxLength": 128, "type": [ "string", "null" ] }, "event_id": { "maxLength": 36, "type": "string" }, "event_name": { "maxLength": 1000, "type": [ "string", "null" ] }, "event_vendor": { "maxLength": 1000, "type": [ "string", "null" ] }, "event_version": { "maxLength": 128, "type": [ "string", "null" ] }, "geo_city": { "maxLength": 75, "type": [ "string", "null" ] }, "geo_country": { "maxLength": 2, "type": [ "string", "null" ] }, "geo_latitude": { "type": [ "number", "null" ] }, "geo_longitude": { "type": [ "number", "null" ] }, "geo_region": { "maxLength": 3, "type": [ "string", "null" ] }, "geo_region_name": { "maxLength": 100, "type": [ "string", "null" ] }, "geo_timezone": { "maxLength": 64, "type": [ "string", "null" ] }, "geo_zipcode": { "maxLength": 15, "type": [ "string", "null" ] }, "ip_domain": { "maxLength": 128, "type": [ "string", "null" ] }, "ip_isp": { "maxLength": 100, "type": [ "string", "null" ] }, "ip_netspeed": { "maxLength": 100, "type": [ "string", "null" ] }, "ip_organization": { "maxLength": 128, "type": [ "string", "null" ] }, "mkt_campaign": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_clickid": { "maxLength": 128, "type": [ "string", "null" ] }, "mkt_content": { "maxLength": 500, "type": [ "string", "null" ] }, "mkt_medium": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_network": { "maxLength": 64, "type": [ "string", "null" ] }, "mkt_source": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_term": { "maxLength": 255, "type": [ "string", "null" ] }, "name_tracker": { "maxLength": 128, "type": [ "string", "null" ] }, "network_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "os_family": { "maxLength": 50, "type": [ "string", "null" ] }, "os_manufacturer": { "maxLength": 50, "type": [ "string", "null" ] }, "os_name": { "maxLength": 50, "type": [ "string", "null" ] }, "os_timezone": { "maxLength": 255, "type": [ "string", "null" ] }, "page_referrer": { "maxLength": 4096, "type": [ "string", "null" ] }, "page_title": { "maxLength": 2000, "type": [ "string", "null" ] }, "page_url": { "maxLength": 4096, "type": [ "string", "null" ] }, "page_urlfragment": { "maxLength": 3000, "type": [ "string", "null" ] }, "page_urlhost": { "maxLength": 255, "type": [ "string", "null" ] }, "page_urlpath": { "maxLength": 3000, "type": [ "string", "null" ] }, "page_urlport": { "type": [ "integer", "null" ] }, "page_urlquery": { "maxLength": 6000, "type": [ "string", "null" ] }, "page_urlscheme": { "maxLength": 16, "type": [ "string", "null" ] }, "platform": { "maxLength": 255, "type": [ "string", "null" ] }, "pp_xoffset_max": { "type": [ "integer", "null" ] }, "pp_xoffset_min": { "type": [ "integer", "null" ] }, "pp_yoffset_max": { "type": [ "integer", "null" ] }, "pp_yoffset_min": { "type": [ "integer", "null" ] }, "refr_domain_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "refr_dvce_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "refr_medium": { "maxLength": 25, "type": [ "string", "null" ] }, "refr_source": { "maxLength": 50, "type": [ "string", "null" ] }, "refr_term": { "maxLength": 255, "type": [ "string", "null" ] }, "refr_urlfragment": { "maxLength": 3000, "type": [ "string", "null" ] }, "refr_urlhost": { "maxLength": 255, "type": [ "string", "null" ] }, "refr_urlpath": { "maxLength": 6000, "type": [ "string", "null" ] }, "refr_urlport": { "type": [ "integer", "null" ] }, "refr_urlquery": { "maxLength": 6000, "type": [ "string", "null" ] }, "refr_urlscheme": { "maxLength": 16, "type": [ "string", "null" ] }, "se_action": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_category": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_label": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_property": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_value": { "type": [ "number", "null" ] }, "ti_category": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "ti_name": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_orderid": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_price": { "type": [ "number", "null" ] }, "ti_price_base": { "type": [ "number", "null" ] }, "ti_quantity": { "type": [ "integer", "null" ] }, "ti_sku": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_affiliation": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_city": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_country": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "tr_orderid": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_shipping": { "type": [ "number", "null" ] }, "tr_shipping_base": { "type": [ "number", "null" ] }, "tr_state": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_tax": { "type": [ "number", "null" ] }, "tr_tax_base": { "type": [ "number", "null" ] }, "tr_total": { "type": [ "number", "null" ] }, "tr_total_base": { "type": [ "number", "null" ] }, "true_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "txn_id": { "type": [ "integer", "null" ] }, "unstruct_event": { "type": [ "object", "null" ] }, "user_fingerprint": { "maxLength": 128, "type": [ "string", "null" ] }, "user_id": { "maxLength": 255, "type": [ "string", "null" ] }, "user_ipaddress": { "maxLength": 128, "type": [ "string", "null" ] }, "useragent": { "maxLength": 1000, "type": [ "string", "null" ] }, "v_collector": { "maxLength": 100, "type": "string" }, "v_etl": { "maxLength": 100, "type": "string" }, "v_tracker": { "maxLength": 100, "type": [ "string", "null" ] } }, "type": "object" }, "processor": { "additionalProperties": false, "description": "Information about the piece of software responsible for the creation of enrichment failures", "properties": { "artifact": { "description": "Artifact responsible for the creation of enrichment failures", "maxLength": 512, "type": "string" }, "version": { "description": "Version of the artifact responsible for the creation of enrichment failures", "maxLength": 32, "pattern": "^(\\d+\\.\\d+\\.\\d+.*)$", "type": "string" } }, "required": [ "artifact", "version" ], "type": "object" } }, "required": [ "errors", "event" ], "self": { "format": "jsonschema", "name": "loader_iglu_error", "vendor": "com.snowplowanalytics.snowplow.badrows", "version": "1-0-0" }, "type": "object" }
sp_333_Normalized
{ "additionalProperties": false, "patternProperties": { "^[a-z]+$": { "additionalProperties": false, "properties": { "branches": { "minProperties": 1, "patternProperties": { "nightly|beta|devedition|release|esr|unbranded-release": { "additionalProperties": false, "properties": { "arches": { "patternProperties": { "multi|x86(_64)?|arm-v15": { "additionalProperties": false, "minProperties": 2, "properties": { "fileEnding": { "pattern": "^\\.[a-z0-9.-]+$", "type": "string" }, "namespace": { "minLength": 3, "type": "string" }, "path": { "minLength": 3, "pattern": "^[a-z0-9/-]+$", "type": "string" }, "platform": { "pattern": "^[A-Z0-9_]+$", "type": "string" }, "product": { "pattern": "^[A-Z_]+$", "type": "string" }, "version": { "pattern": "^[A-Z0-9_]+$", "type": "string" } }, "type": "object" } }, "type": "object" }, "defaultArch": { "enum": [ "multi", "x86", "x86_64", "arm-v15" ], "type": "string" }, "type": { "enum": [ "classic", "mdu", "taskcluster" ], "type": "string" } }, "required": [ "defaultArch", "type", "arches" ], "type": "object" } }, "type": "object" }, "defaultBranch": { "enum": [ "nightly", "devedition", "beta", "release", "esr", "unbranded-release" ], "type": "string" } }, "required": [ "defaultBranch", "branches" ], "type": "object" } }, "title": "Firefox download sources", "type": "object" }
o41810
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "categories": { "description": "Test recursive schema.", "type": "array", "items": { "$ref": "#/definitions/Category" } } }, "required": [ "categories" ], "definitions": { "Category": { "description": "Test category", "type": "object", "properties": { "category_id": { "description": "Some description", "type": "integer" }, "categories": { "description": "All subcategories within this category.", "type": "array", "items": { "$ref": "#/definitions/Category" } } }, "required": [ "category_id", "categories" ] } } }
o90911
{ "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the rectangle or triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "shape": { "description": "The shape to calculate the area for", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_306b0d1e
{ "properties": { "down_payment": { "description": "The down payment amount", "type": "number" }, "interest_rate": { "description": "The annual interest rate for the mortgage", "type": "number" }, "mortgage_term": { "description": "The duration of the mortgage in years", "type": "integer" }, "property_price": { "description": "The price of the property", "type": "number" } }, "required": [ "property_price", "down_payment", "interest_rate", "mortgage_term" ], "type": "object" }
calculate_mortgage_payment_1726da38
{ "properties": { "movie_title": { "description": "The title of the movie", "type": "string" }, "num_tickets": { "description": "The number of tickets to book", "type": "integer" }, "show_time": { "description": "The date and time of the show", "format": "date-time", "type": "string" }, "theater_location": { "description": "The location of the theater", "type": "string" } }, "required": [ "movie_title", "theater_location", "show_time", "num_tickets" ], "type": "object" }
book_movie_tickets_d31f3dcf
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceColumnDefinition": { "description": "CustomResourceColumnDefinition specifies a column for server side printing.", "properties": { "JSONPath": { "description": "JSONPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.", "type": "string" }, "description": { "description": "description is a human readable description of this column.", "type": "string" }, "format": { "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", "type": "string" }, "name": { "description": "name is a human readable name for the column.", "type": "string" }, "priority": { "_format": "int32", "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.", "type": "integer" }, "type": { "description": "type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", "type": "string" } }, "required": [ "name", "type", "JSONPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceScale": { "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.", "properties": { "labelSelectorPath": { "description": "labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string.", "type": "string" }, "specReplicasPath": { "description": "specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET.", "type": "string" }, "statusReplicasPath": { "description": "statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0.", "type": "string" } }, "required": [ "specReplicasPath", "statusReplicasPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceStatus": { "description": "CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresources": { "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.", "properties": { "scale": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceScale", "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object." }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceStatus", "description": "status indicates the custom resource should serve a `/status` subresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object. 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceValidation": { "description": "CustomResourceValidation is a list of validation methods for CustomResources.", "properties": { "openAPIV3Schema": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps", "description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ExternalDocumentation": { "description": "ExternalDocumentation allows referencing an external resource for extended documentation.", "properties": { "description": { "type": "string" }, "url": { "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON": { "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil." }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps": { "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).", "properties": { "$ref": { "type": "string" }, "$schema": { "type": "string" }, "additionalItems": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool" }, "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool" }, "allOf": { "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "array" }, "anyOf": { "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "array" }, "default": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON", "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. CustomResourceDefinitions with defaults must be created using the v1 (or newer) CustomResourceDefinition API." }, "definitions": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "object" }, "dependencies": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrStringArray" }, "type": "object" }, "description": { "type": "string" }, "enum": { "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON" }, "type": "array" }, "example": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON" }, "exclusiveMaximum": { "type": "boolean" }, "exclusiveMinimum": { "type": "boolean" }, "externalDocs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ExternalDocumentation" }, "format": { "description": "format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like \"0321751043\" or \"978-0321751041\" - isbn10: an ISBN10 number string like \"0321751043\" - isbn13: an ISBN13 number string like \"978-0321751041\" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like \"2014-12-15T19:30:20.000Z\" as defined by date-time in RFC3339.", "type": "string" }, "id": { "type": "string" }, "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrArray" }, "maxItems": { "_format": "int64", "type": "integer" }, "maxLength": { "_format": "int64", "type": "integer" }, "maxProperties": { "_format": "int64", "type": "integer" }, "maximum": { "format": "double", "type": "number" }, "minItems": { "_format": "int64", "type": "integer" }, "minLength": { "_format": "int64", "type": "integer" }, "minProperties": { "_format": "int64", "type": "integer" }, "minimum": { "format": "double", "type": "number" }, "multipleOf": { "format": "double", "type": "number" }, "not": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "nullable": { "type": "boolean" }, "oneOf": { "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "array" }, "pattern": { "type": "string" }, "patternProperties": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "object" }, "properties": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "object" }, "required": { "items": { "type": "string" }, "type": "array" }, "title": { "type": "string" }, "type": { "type": "string" }, "uniqueItems": { "type": "boolean" }, "x-kubernetes-embedded-resource": { "description": "x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).", "type": "boolean" }, "x-kubernetes-int-or-string": { "description": "x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:\n\n1) anyOf:\n - type: integer\n - type: string\n2) allOf:\n - anyOf:\n - type: integer\n - type: string\n - ... zero or more", "type": "boolean" }, "x-kubernetes-list-map-keys": { "description": "x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map.\n\nThis tag MUST only be used on lists that have the \"x-kubernetes-list-type\" extension set to \"map\". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported).\n\nThe properties specified must either be required or have a default value, to ensure those properties are present for all list items.", "items": { "type": "string" }, "type": "array" }, "x-kubernetes-list-type": { "description": "x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:\n\n1) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic lists will be entirely replaced when updated. This extension\n may be used on any type of list (struct, scalar, ...).\n2) `set`:\n Sets are lists that must not have multiple items with the same value. Each\n value must be a scalar, an object with x-kubernetes-map-type `atomic` or an\n array with x-kubernetes-list-type `atomic`.\n3) `map`:\n These lists are like maps in that their elements have a non-index key\n used to identify them. Order is preserved upon merge. The map tag\n must only be used on a list with elements of type object.\nDefaults to atomic for arrays.", "type": "string" }, "x-kubernetes-map-type": { "description": "x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:\n\n1) `granular`:\n These maps are actual maps (key-value pairs) and each fields are independent\n from each other (they can each be manipulated by separate actors). This is\n the default behaviour for all maps.\n2) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic maps will be entirely replaced when updated.", "type": "string" }, "x-kubernetes-preserve-unknown-fields": { "description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrArray": { "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes." }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool": { "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property." }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrStringArray": { "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array." } }, "description": "CustomResourceDefinitionVersion describes a version for CRD.", "properties": { "additionalPrinterColumns": { "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead). If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceColumnDefinition" }, "type": [ "array", "null" ] }, "name": { "description": "name is the version name, e.g. \u201cv1\u201d, \u201cv2beta1\u201d, etc. The custom resources are served under this version at `/apis/<group>/<version>/...` if `served` is true.", "type": [ "string", "null" ] }, "schema": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceValidation", "description": "schema describes the schema used for validation and pruning of this version of the custom resource. Top-level and per-version schemas are mutually exclusive. Per-version schemas must not all be set to identical values (top-level validation schema should be used instead)." }, "served": { "description": "served is a flag enabling/disabling this version from being served via REST APIs", "type": [ "boolean", "null" ] }, "storage": { "description": "storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.", "type": [ "boolean", "null" ] }, "subresources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresources", "description": "subresources specify what subresources this version of the defined custom resource have. Top-level and per-version subresources are mutually exclusive. Per-version subresources must not all be set to identical values (top-level subresources should be used instead)." } }, "required": [ "name", "served", "storage" ], "type": "object" }
kb_210_Normalized
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": { "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", "type": "integer" }, "readOnly": { "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "boolean" }, "volumeID": { "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity": { "description": "Affinity is a group of affinity scheduling rules.", "properties": { "nodeAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity", "description": "Describes node affinity scheduling rules for the pod." }, "podAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity", "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." }, "podAntiAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity", "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": { "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "properties": { "cachingMode": { "description": "Host Caching mode: None, Read Only, Read Write.", "type": "string" }, "diskName": { "description": "The Name of the data disk in the blob storage", "type": "string" }, "diskURI": { "description": "The URI the data disk in the blob storage", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "kind": { "description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" } }, "required": [ "diskName", "diskURI" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource": { "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "properties": { "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { "description": "the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "shareName": { "description": "Share Name", "type": "string" } }, "required": [ "secretName", "shareName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": { "description": "Represents a source location of a volume to mount, managed by an external CSI driver", "properties": { "driver": { "description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed." }, "readOnly": { "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.", "type": "object" } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": { "description": "Adds and removes POSIX capabilities from running containers.", "properties": { "add": { "description": "Added capabilities", "items": { "type": "string" }, "type": "array" }, "drop": { "description": "Removed capabilities", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": { "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "path": { "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource": { "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource": { "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector": { "description": "Selects a key from a ConfigMap.", "properties": { "key": { "description": "The key to select.", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its key must be defined", "type": "boolean" } }, "required": [ "key" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection": { "description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its keys must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": { "description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its keys must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container": { "description": "A single application container that you want to run within a pod.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle", "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated." }, "livenessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "name": { "description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", "type": "string" }, "ports": { "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort" }, "type": "array", "x-kubernetes-list-map-keys": [ "containerPort", "protocol" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "containerPort", "x-kubernetes-patch-strategy": "merge" }, "readinessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/" }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext", "description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" }, "startupProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort": { "description": "ContainerPort represents a network port in a single container.", "properties": { "containerPort": { "_format": "int32", "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", "type": "integer" }, "hostIP": { "description": "What host IP to bind the external port to.", "type": "string" }, "hostPort": { "_format": "int32", "description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.", "type": "integer" }, "name": { "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", "type": "string" }, "protocol": { "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".", "type": "string" } }, "required": [ "containerPort" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": { "description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.", "properties": { "items": { "description": "Items is a list of DownwardAPIVolume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": { "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field", "properties": { "fieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector", "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported." }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'", "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector", "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported." } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": { "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "Items is a list of downward API volume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": { "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.", "properties": { "medium": { "description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", "type": "string" }, "sizeLimit": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource": { "description": "EnvFromSource represents the source of a set of ConfigMaps", "properties": { "configMapRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource", "description": "The ConfigMap to select from" }, "prefix": { "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource", "description": "The Secret to select from" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar": { "description": "EnvVar represents an environment variable present in a Container.", "properties": { "name": { "description": "Name of the environment variable. Must be a C_IDENTIFIER.", "type": "string" }, "value": { "description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".", "type": "string" }, "valueFrom": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource", "description": "Source for the environment variable's value. Cannot be used if value is not empty." } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource": { "description": "EnvVarSource represents a source for the value of an EnvVar.", "properties": { "configMapKeyRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector", "description": "Selects a key of a ConfigMap." }, "fieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector", "description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs." }, "resourceFieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector", "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported." }, "secretKeyRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector", "description": "Selects a key of a secret in the pod's namespace" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer": { "description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle", "description": "Lifecycle is not allowed for ephemeral containers." }, "livenessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "name": { "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.", "type": "string" }, "ports": { "description": "Ports are not allowed for ephemeral containers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort" }, "type": "array" }, "readinessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod." }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext", "description": "SecurityContext is not allowed for ephemeral containers." }, "startupProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "targetContainerName": { "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.", "type": "string" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": { "description": "ExecAction describes a \"run in container\" action.", "properties": { "command": { "description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": { "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "lun": { "_format": "int32", "description": "Optional: FC target lun number", "type": "integer" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "targetWWNs": { "description": "Optional: FC target worldwide names (WWNs)", "items": { "type": "string" }, "type": "array" }, "wwids": { "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource": { "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { "description": "Driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { "additionalProperties": { "type": "string" }, "description": "Optional: Extra command options if any.", "type": "object" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": { "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", "properties": { "datasetName": { "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated", "type": "string" }, "datasetUUID": { "description": "UUID of the dataset. This is unique identifier of a Flocker dataset", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": { "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "integer" }, "pdName": { "description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "boolean" } }, "required": [ "pdName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource": { "description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.", "properties": { "directory": { "description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", "type": "string" }, "repository": { "description": "Repository URL", "type": "string" }, "revision": { "description": "Commit hash for the specified revision.", "type": "string" } }, "required": [ "repository" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": { "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } }, "required": [ "endpoints", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction": { "description": "HTTPGetAction describes an action based on HTTP Get requests.", "properties": { "host": { "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.", "type": "string" }, "httpHeaders": { "description": "Custom headers to set in the request. HTTP allows repeated headers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader" }, "type": "array" }, "path": { "description": "Path to access on the HTTP server.", "type": "string" }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." }, "scheme": { "description": "Scheme to use for connecting to the host. Defaults to HTTP.", "type": "string" } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": { "description": "HTTPHeader describes a custom header to be used in HTTP probes", "properties": { "name": { "description": "The header field name", "type": "string" }, "value": { "description": "The header field value", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": { "description": "Handler defines a specific action that should be taken", "properties": { "exec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "httpGet": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "tcpSocket": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias": { "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.", "properties": { "hostnames": { "description": "Hostnames for the above IP address.", "items": { "type": "string" }, "type": "array" }, "ip": { "description": "IP address of the host file entry.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": { "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" }, "type": { "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource": { "description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { "description": "whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { "description": "whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.", "type": "string" }, "iqn": { "description": "Target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { "_format": "int32", "description": "iSCSI Target Lun number.", "type": "integer" }, "portals": { "description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "items": { "type": "string" }, "type": "array" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "type": "string" } }, "required": [ "targetPortal", "iqn", "lun" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath": { "description": "Maps a string key to a path within a volume.", "properties": { "key": { "description": "The key to project.", "type": "string" }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", "type": "string" } }, "required": [ "key", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle": { "description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", "properties": { "postStart": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler", "description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" }, "preStop": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler", "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": { "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": { "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "boolean" }, "server": { "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" } }, "required": [ "server", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity": { "description": "Node affinity is a group of node affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector", "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": { "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", "properties": { "nodeSelectorTerms": { "description": "Required. A list of node selector terms. The terms are ORed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm" }, "type": "array" } }, "required": [ "nodeSelectorTerms" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "operator": { "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", "type": "string" }, "values": { "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": { "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", "properties": { "matchExpressions": { "description": "A list of node selector requirements by node's labels.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" }, "matchFields": { "description": "A list of node selector requirements by node's fields.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": { "description": "ObjectFieldSelector selects an APIVersioned field of an object.", "properties": { "apiVersion": { "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".", "type": "string" }, "fieldPath": { "description": "Path of the field to select in the specified API version.", "type": "string" } }, "required": [ "fieldPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": { "description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).", "properties": { "claimName": { "description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "type": "string" }, "readOnly": { "description": "Will force the ReadOnly setting in VolumeMounts. Default false.", "type": "boolean" } }, "required": [ "claimName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": { "description": "Represents a Photon Controller persistent disk resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "pdID": { "description": "ID that identifies Photon Controller persistent disk", "type": "string" } }, "required": [ "pdID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity": { "description": "Pod affinity is a group of inter pod affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": { "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over a set of resources, in this case pods." }, "namespaces": { "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"", "items": { "type": "string" }, "type": "array" }, "topologyKey": { "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.", "type": "string" } }, "required": [ "topologyKey" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": { "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig": { "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", "properties": { "nameservers": { "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.", "items": { "type": "string" }, "type": "array" }, "options": { "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption" }, "type": "array" }, "searches": { "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption": { "description": "PodDNSConfigOption defines DNS resolver options of a pod.", "properties": { "name": { "description": "Required.", "type": "string" }, "value": { "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate": { "description": "PodReadinessGate contains the reference to a pod condition", "properties": { "conditionType": { "description": "ConditionType refers to a condition in the pod's condition list with matching type.", "type": "string" } }, "required": [ "conditionType" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext": { "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.", "properties": { "fsGroup": { "_format": "int64", "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.", "type": "integer" }, "fsGroupChangePolicy": { "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".", "type": "string" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container." }, "supplementalGroups": { "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.", "items": { "_format": "int64", "type": "integer" }, "type": "array" }, "sysctls": { "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl" }, "type": "array" }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": { "description": "PortworxVolumeSource represents a Portworx volume resource.", "properties": { "fsType": { "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "volumeID": { "description": "VolumeID uniquely identifies a Portworx volume", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm": { "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", "properties": { "preference": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm", "description": "A node selector term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "preference" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe": { "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", "properties": { "exec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "failureThreshold": { "_format": "int32", "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", "type": "integer" }, "httpGet": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "initialDelaySeconds": { "_format": "int32", "description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" }, "periodSeconds": { "_format": "int32", "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", "type": "integer" }, "successThreshold": { "_format": "int32", "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" }, "timeoutSeconds": { "_format": "int32", "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource": { "description": "Represents a projected volume source", "properties": { "defaultMode": { "_format": "int32", "description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "sources": { "description": "list of volume projections", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection" }, "type": "array" } }, "required": [ "sources" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": { "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", "properties": { "group": { "description": "Group to map volume access to Default is no group", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", "type": "boolean" }, "registry": { "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", "type": "string" }, "tenant": { "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", "type": "string" }, "user": { "description": "User to map volume access to Defaults to serivceaccount user", "type": "string" }, "volume": { "description": "Volume is a string that references an already created Quobyte volume by name.", "type": "string" } }, "required": [ "registry", "volume" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource": { "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "pool": { "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors", "image" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": { "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format", "properties": { "containerName": { "description": "Container name: required for volumes, optional for env vars", "type": "string" }, "divisor": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Specifies the output format of the exposed resources, defaults to \"1\"" }, "resource": { "description": "Required: resource to select", "type": "string" } }, "required": [ "resource" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements": { "description": "ResourceRequirements describes the compute resource requirements.", "properties": { "limits": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" }, "requests": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": { "description": "SELinuxOptions are the labels to be applied to the container", "properties": { "level": { "description": "Level is SELinux level label that applies to the container.", "type": "string" }, "role": { "description": "Role is a SELinux role label that applies to the container.", "type": "string" }, "type": { "description": "Type is a SELinux type label that applies to the container.", "type": "string" }, "user": { "description": "User is a SELinux user label that applies to the container.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": { "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".", "type": "string" }, "gateway": { "description": "The host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { "description": "The name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." }, "sslEnabled": { "description": "Flag to enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { "description": "The ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { "description": "The name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } }, "required": [ "gateway", "system", "secretRef" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource": { "description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector": { "description": "SecretKeySelector selects a key of a Secret.", "properties": { "key": { "description": "The key of the secret to select from. Must be a valid secret key.", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret or its key must be defined", "type": "boolean" } }, "required": [ "key" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection": { "description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret or its key must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": { "description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "optional": { "description": "Specify whether the Secret or its keys must be defined", "type": "boolean" }, "secretName": { "description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext": { "description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.", "properties": { "allowPrivilegeEscalation": { "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN", "type": "boolean" }, "capabilities": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities", "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime." }, "privileged": { "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.", "type": "boolean" }, "procMount": { "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.", "type": "string" }, "readOnlyRootFilesystem": { "description": "Whether this container has a read-only root filesystem. Default is false.", "type": "boolean" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": { "description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).", "properties": { "audience": { "description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.", "type": "string" }, "expirationSeconds": { "_format": "int64", "description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.", "type": "integer" }, "path": { "description": "Path is the path relative to the mount point of the file to project the token into.", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." }, "volumeName": { "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl": { "description": "Sysctl defines a kernel parameter to be set", "properties": { "name": { "description": "Name of a property to set", "type": "string" }, "value": { "description": "Value of a property to set", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction": { "description": "TCPSocketAction describes an action based on opening a socket", "properties": { "host": { "description": "Optional: Host name to connect to, defaults to the pod IP.", "type": "string" }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": { "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.", "properties": { "effect": { "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", "type": "string" }, "key": { "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", "type": "string" }, "operator": { "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", "type": "string" }, "tolerationSeconds": { "_format": "int64", "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", "type": "integer" }, "value": { "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint": { "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain." }, "maxSkew": { "_format": "int32", "description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.", "type": "integer" }, "topologyKey": { "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.", "type": "string" }, "whenUnsatisfiable": { "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", "type": "string" } }, "required": [ "maxSkew", "topologyKey", "whenUnsatisfiable" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume": { "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource", "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource", "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "cephfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource", "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource", "description": "ConfigMap represents a configMap that should populate this volume" }, "csi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource", "description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)." }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource", "description": "DownwardAPI represents downward API about the pod that should populate this volume" }, "emptyDir": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource", "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" }, "fc": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource", "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource", "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource", "description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource", "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "gitRepo": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource", "description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container." }, "glusterfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource", "description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource", "description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md" }, "name": { "description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "nfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource", "description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "persistentVolumeClaim": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource", "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" }, "photonPersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource", "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource", "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "projected": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource", "description": "Items for all in one resources secrets, configmaps, and downward API" }, "quobyte": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource", "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource", "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret" }, "storageos": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource", "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes." }, "vsphereVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": { "description": "volumeDevice describes a mapping of a raw block device within a container.", "properties": { "devicePath": { "description": "devicePath is the path inside of the container that the device will be mapped to.", "type": "string" }, "name": { "description": "name must match the name of a persistentVolumeClaim in the pod", "type": "string" } }, "required": [ "name", "devicePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": { "description": "VolumeMount describes a mounting of a Volume within a container.", "properties": { "mountPath": { "description": "Path within the container at which the volume should be mounted. Must not contain ':'.", "type": "string" }, "mountPropagation": { "description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.", "type": "string" }, "name": { "description": "This must match the Name of a Volume.", "type": "string" }, "readOnly": { "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", "type": "boolean" }, "subPath": { "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", "type": "string" }, "subPathExpr": { "description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.", "type": "string" } }, "required": [ "name", "mountPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": { "description": "Projection that may be projected along with other supported volume types", "properties": { "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection", "description": "information about the configMap data to project" }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection", "description": "information about the downwardAPI data to project" }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection", "description": "information about the secret data to project" }, "serviceAccountToken": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection", "description": "information about the serviceAccountToken data to project" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": { "description": "Represents a vSphere volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "storagePolicyID": { "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": "string" }, "storagePolicyName": { "description": "Storage Policy Based Management (SPBM) profile name.", "type": "string" }, "volumePath": { "description": "Path that identifies vSphere volume vmdk", "type": "string" } }, "required": [ "volumePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": { "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", "properties": { "podAffinityTerm": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm", "description": "Required. A pod affinity term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "podAffinityTerm" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": { "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.", "properties": { "gmsaCredentialSpec": { "description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.", "type": "string" }, "gmsaCredentialSpecName": { "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", "type": "string" }, "runAsUserName": { "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "PodSpec is a description of a pod.", "properties": { "activeDeadlineSeconds": { "description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.", "format": "int64", "type": [ "integer", "null" ] }, "affinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity", "description": "If specified, the pod's scheduling constraints" }, "automountServiceAccountToken": { "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.", "type": [ "boolean", "null" ] }, "containers": { "description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container" }, "type": [ "array", "null" ], "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "dnsConfig": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig", "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." }, "dnsPolicy": { "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", "type": [ "string", "null" ] }, "enableServiceLinks": { "description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.", "type": [ "boolean", "null" ] }, "ephemeralContainers": { "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer" }, "type": [ "array", "null" ], "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "hostAliases": { "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias" }, "type": [ "array", "null" ], "x-kubernetes-patch-merge-key": "ip", "x-kubernetes-patch-strategy": "merge" }, "hostIPC": { "description": "Use the host's ipc namespace. Optional: Default to false.", "type": [ "boolean", "null" ] }, "hostNetwork": { "description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.", "type": [ "boolean", "null" ] }, "hostPID": { "description": "Use the host's pid namespace. Optional: Default to false.", "type": [ "boolean", "null" ] }, "hostname": { "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", "type": [ "string", "null" ] }, "imagePullSecrets": { "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference" }, "type": [ "array", "null" ], "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "initContainers": { "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container" }, "type": [ "array", "null" ], "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "nodeName": { "description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.", "type": [ "string", "null" ] }, "nodeSelector": { "additionalProperties": { "type": [ "string", "null" ] }, "description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/", "type": [ "object", "null" ] }, "overhead": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.", "type": [ "object", "null" ] }, "preemptionPolicy": { "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.", "type": [ "string", "null" ] }, "priority": { "description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.", "format": "int32", "type": [ "integer", "null" ] }, "priorityClassName": { "description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.", "type": [ "string", "null" ] }, "readinessGates": { "description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate" }, "type": [ "array", "null" ] }, "restartPolicy": { "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", "type": [ "string", "null" ] }, "runtimeClassName": { "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.", "type": [ "string", "null" ] }, "schedulerName": { "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", "type": [ "string", "null" ] }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext", "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field." }, "serviceAccount": { "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.", "type": [ "string", "null" ] }, "serviceAccountName": { "description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", "type": [ "string", "null" ] }, "shareProcessNamespace": { "description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.", "type": [ "boolean", "null" ] }, "subdomain": { "description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.", "type": [ "string", "null" ] }, "terminationGracePeriodSeconds": { "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", "format": "int64", "type": [ "integer", "null" ] }, "tolerations": { "description": "If specified, the pod's tolerations.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration" }, "type": [ "array", "null" ] }, "topologySpreadConstraints": { "description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is only honored by clusters that enable the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint" }, "type": [ "array", "null" ], "x-kubernetes-list-map-keys": [ "topologyKey", "whenUnsatisfiable" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "topologyKey", "x-kubernetes-patch-strategy": "merge" }, "volumes": { "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume" }, "type": [ "array", "null" ], "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge,retainKeys" } }, "required": [ "containers" ], "type": "object" }
kb_735_Normalized
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": { "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over a set of resources, in this case pods." }, "namespaces": { "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"", "items": { "type": "string" }, "type": "array" }, "topologyKey": { "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.", "type": "string" } }, "required": [ "topologyKey" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" } }, "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", "properties": { "podAffinityTerm": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm", "description": "Required. A pod affinity term, associated with the corresponding weight." }, "weight": { "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", "format": "int32", "type": [ "integer", "null" ] } }, "required": [ "weight", "podAffinityTerm" ], "type": "object" }
kb_1157_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Describe information needed for deposit module.", "id": "http://zenodo.org/schemas/deposits/records/legacyjson.json", "properties": { "$schema": { "type": "string" }, "access_conditions": { "description": "Conditions under which access is given if record is restricted.", "title": "Access conditions", "type": "string" }, "access_right": { "default": "open", "description": "Access right for record.", "enum": [ "open", "embargoed", "restricted", "closed" ], "type": "string" }, "communities": { "description": "List of community identifiers.", "items": { "additionalProperties": false, "properties": { "identifier": { "type": "string" } }, "type": "object" }, "type": "array" }, "contributors": { "description": "Contributors in order of importance.", "items": { "additionalProperties": false, "properties": { "affiliation": { "description": "Affiliation for the purpose of this specific record.", "type": "string" }, "gnd": { "description": "Gemeinsame Normdatei identifier for creator.", "type": "string" }, "name": { "description": "Full name of person or organisation. Personal name format: family, given.", "type": "string" }, "orcid": { "description": "ORCID identifier for creator.", "type": "string" }, "type": { "enum": [ "ContactPerson", "DataCollector", "DataCurator", "DataManager", "Distributor", "Editor", "HostingInstitution", "Other", "Producer", "ProjectLeader", "ProjectManager", "ProjectMember", "RegistrationAgency", "RegistrationAuthority", "RelatedPerson", "ResearchGroup", "RightsHolder", "Researcher", "Sponsor", "Supervisor", "WorkPackageLeader" ], "type": "string" } }, "type": "object" }, "title": "Contributors", "type": "array" }, "creators": { "description": "Creators of record in order of importance.", "items": { "additionalProperties": false, "properties": { "affiliation": { "description": "Affiliation for the purpose of this specific record.", "type": "string" }, "gnd": { "description": "Gemeinsame Normdatei identifier for creator.", "type": "string" }, "name": { "description": "Full name of person or organisation. Personal name format: family, given.", "type": "string" }, "orcid": { "description": "ORCID identifier for creator.", "type": "string" } }, "type": "object" }, "type": "array" }, "description": { "description": "Description/abstract for record.", "type": "string" }, "doi": { "description": "Digital Object Identifier (DOI).", "type": "string" }, "embargo_date": { "description": "Embargo date of record (ISO8601 formatted date).", "title": "Embargo Date", "type": "string" }, "grants": { "description": "Source of grants/awards which have funded all or part of this particular record.", "items": { "additionalProperties": false, "properties": { "id": { "type": "string" } }, "type": "object" }, "type": "array" }, "imprint_isbn": { "type": "string" }, "imprint_place": { "type": "string" }, "imprint_publisher": { "type": "string" }, "journal_issue": { "description": "Journal issue.", "title": "Journal issue", "type": "string" }, "journal_pages": { "description": "Journal page(s).", "title": "Journal page(s)", "type": "string" }, "journal_title": { "description": "Journal title.", "title": "Journal title", "type": "string" }, "journal_volume": { "description": "Journal volume.", "title": "Journal volume", "type": "string" }, "keywords": { "description": "Free text keywords.", "items": { "title": "Keyword", "type": "string" }, "title": "Keywords", "type": "array" }, "license": { "description": "License for embargoed/open access content.", "title": "License", "type": "string", "default": "CC-BY-4.0" }, "conference_acronym": { "title": "Acronym", "type": "string" }, "conference_dates": { "title": "Dates", "type": "string" }, "conference_place": { "title": "Place", "type": "string" }, "conference_session": { "title": "Session", "type": "string" }, "conference_session_part": { "title": "Part of session", "type": "string" }, "conference_title": { "title": "Title", "type": "string" }, "conference_url": { "title": "URL", "type": "string" }, "notes": { "description": "Additional notes for record.", "title": "Additional notes", "type": "string" }, "partof_pages": { "title": "Pages", "type": "string" }, "partof_title": { "title": "Title", "type": "string" }, "publication_date": { "description": "Record publication date (IS8601-formatted). EDTF support to be added for field.", "type": "string" }, "references": { "description": "Raw textual references when identifier is not known.", "items": { "type": "string" }, "type": "array" }, "related_identifiers": { "description": "Related research outputs.", "items": { "properties": { "identifier": { "description": "Identifier of research output.", "type": "string" }, "relation": { "description": "Relation type.", "enum": [ "isCitedBy", "cites", "isSupplementTo", "isSupplementedBy", "isContinuedBy", "continues", "hasMetadata", "isMetadataFor", "isNewVersionOf", "isPreviousVersionOf", "isPartOf", "hasPart", "isReferencedBy", "references", "isDocumentedBy", "documents", "isCompiledBy", "compiles", "isVariantFormOf", "isOrignialFormOf", "isIdenticalTo", "isAlternateIdentifier", "isReviewedBy", "reviews", "isDerivedFrom", "isSourceOf" ], "type": "string" }, "scheme": { "description": "Persistent identifier scheme.", "enum": [ "ads", "ark", "arxiv", "bioproject", "biosample", "doi", "ean13", "ean8", "ensembl", "genome", "gnd", "hal", "handle", "isbn", "isni", "issn", "istc", "lsid", "orcid", "pmcid", "pmid", "purl", "refseq", "sra", "uniprot", "url", "urn", "swh", "ascl" ], "type": "string" }, "resource_type": { "type": "string" } }, "type": "object" }, "type": "array" }, "upload_type": { "additionalProperties": false, "default": "publication", "description": "Record upload type.", "enum": [ "publication", "poster", "presentation", "dataset", "image", "video", "software", "lesson", "other" ], "type": "string" }, "publication_type": { "additionalProperties": false, "description": "Publication type.", "default": "article", "enum": [ "book", "section", "conferencepaper", "article", "patent", "preprint", "report", "deliverable", "milestone", "proposal", "softwaredocumentation", "thesis", "technicalnote", "workingpaper", "datamanagementplan", "annotationcollection", "taxonomictreatment", "other" ], "type": "string" }, "image_type": { "additionalProperties": false, "default": "figure", "description": "Image type.", "enum": [ "figure", "plot", "drawing", "diagram", "photo", "other" ], "type": "string" }, "openaire_type": { "type": "string", "descritpion": "OpenAIRE type." }, "subjects": { "description": "Subjects from specific vocabularies.", "items": { "additionalProperties": false, "properties": { "identifier": { "description": "Subjects term identifier.", "type": "string" }, "scheme": { "description": "Identifier scheme.", "type": "string" }, "term": { "description": "Subject term value.", "type": "string" } }, "type": "object" }, "type": "array" }, "thesis_supervisors": { "description": "Supervisors of thesis in order of importance.", "items": { "additionalProperties": false, "properties": { "affiliation": { "description": "Affiliation for the purpose of this specific record.", "type": "string" }, "gnd": { "description": "Gemeinsame Normdatei identifier for creator.", "type": "string" }, "name": { "description": "Full name of person or organisation. Personal name format: family, given.", "type": "string" }, "orcid": { "description": "ORCID identifier for creator.", "type": "string" } }, "type": "object" }, "type": "array" }, "thesis_university": { "description": "Awarding university in case of a thesis.", "type": "string" }, "title": { "description": "Record title.", "type": "string" } }, "title": "Zenodo Legacy Deposit Schema v1.0.0", "type": "object" }
o91019
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle or rectangle", "type": "number" }, "height": { "description": "The height of the triangle or rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "The type of shape (e.g., circle, triangle, rectangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_54d20ff1
{ "$schema": "http://json-schema.org/draft-04/schema#", "$schema-location": "Relationship-Schema.json", "name": "AWS-Hosting-Relationship-Schema", "version": "1", "author": "denis", "description": "Relationship between Service-Unit and a Provider eg- AWS, Rackspace", "associated-tool": "Juju-CLI", "type": "object", "participating-entities": [ { "name": "AWS-Provider-Schema", "version": "1", "role": "hosts", "cardinality": { "min-value": "1", "max-value": "INF" } }, { "name": "Service-Unit-Schema", "version": "1", "role": "hosted by", "cardinality": { "min-value": "1", "max-value": "1" } } ], "properties": { "$schema-location": { "enum": [ "ADD YOUR SCHEMA LOCATION HERE" ] }, "author": { "type": "string" }, "id": { "type": "string" }, "name": { "type": "string" }, "version": { "type": "string" }, "participating-entities": { "type": "array", "maxItems": 2, "minItems": 2, "items": { "type": "object", "properties": { "id": { "type": "string" }, "role": { "type": "string" } }, "required": [ "id" ] } } }, "required": [ "participating-entities" ] }
o35771
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSetUpdateStrategy": { "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.", "properties": { "rollingUpdate": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateDaemonSet", "description": "Rolling update config params. Present only if type = \"RollingUpdate\"." }, "type": { "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateDaemonSet": { "description": "Spec to control the desired behavior of daemon set rolling update.", "properties": { "maxUnavailable": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": { "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", "type": "integer" }, "readOnly": { "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "boolean" }, "volumeID": { "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity": { "description": "Affinity is a group of affinity scheduling rules.", "properties": { "nodeAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity", "description": "Describes node affinity scheduling rules for the pod." }, "podAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity", "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." }, "podAntiAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity", "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": { "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "properties": { "cachingMode": { "description": "Host Caching mode: None, Read Only, Read Write.", "type": "string" }, "diskName": { "description": "The Name of the data disk in the blob storage", "type": "string" }, "diskURI": { "description": "The URI the data disk in the blob storage", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "kind": { "description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" } }, "required": [ "diskName", "diskURI" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource": { "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "properties": { "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { "description": "the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "shareName": { "description": "Share Name", "type": "string" } }, "required": [ "secretName", "shareName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": { "description": "Represents a source location of a volume to mount, managed by an external CSI driver", "properties": { "driver": { "description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed." }, "readOnly": { "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.", "type": "object" } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": { "description": "Adds and removes POSIX capabilities from running containers.", "properties": { "add": { "description": "Added capabilities", "items": { "type": "string" }, "type": "array" }, "drop": { "description": "Removed capabilities", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": { "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "path": { "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource": { "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource": { "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector": { "description": "Selects a key from a ConfigMap.", "properties": { "key": { "description": "The key to select.", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its key must be defined", "type": "boolean" } }, "required": [ "key" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection": { "description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its keys must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": { "description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its keys must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container": { "description": "A single application container that you want to run within a pod.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle", "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated." }, "livenessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "name": { "description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", "type": "string" }, "ports": { "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort" }, "type": "array", "x-kubernetes-list-map-keys": [ "containerPort", "protocol" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "containerPort", "x-kubernetes-patch-strategy": "merge" }, "readinessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/" }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext", "description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" }, "startupProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort": { "description": "ContainerPort represents a network port in a single container.", "properties": { "containerPort": { "_format": "int32", "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", "type": "integer" }, "hostIP": { "description": "What host IP to bind the external port to.", "type": "string" }, "hostPort": { "_format": "int32", "description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.", "type": "integer" }, "name": { "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", "type": "string" }, "protocol": { "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".", "type": "string" } }, "required": [ "containerPort" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": { "description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.", "properties": { "items": { "description": "Items is a list of DownwardAPIVolume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": { "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field", "properties": { "fieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector", "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported." }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'", "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector", "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported." } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": { "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "Items is a list of downward API volume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": { "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.", "properties": { "medium": { "description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", "type": "string" }, "sizeLimit": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource": { "description": "EnvFromSource represents the source of a set of ConfigMaps", "properties": { "configMapRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource", "description": "The ConfigMap to select from" }, "prefix": { "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource", "description": "The Secret to select from" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar": { "description": "EnvVar represents an environment variable present in a Container.", "properties": { "name": { "description": "Name of the environment variable. Must be a C_IDENTIFIER.", "type": "string" }, "value": { "description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".", "type": "string" }, "valueFrom": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource", "description": "Source for the environment variable's value. Cannot be used if value is not empty." } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource": { "description": "EnvVarSource represents a source for the value of an EnvVar.", "properties": { "configMapKeyRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector", "description": "Selects a key of a ConfigMap." }, "fieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector", "description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs." }, "resourceFieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector", "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported." }, "secretKeyRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector", "description": "Selects a key of a secret in the pod's namespace" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer": { "description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle", "description": "Lifecycle is not allowed for ephemeral containers." }, "livenessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "name": { "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.", "type": "string" }, "ports": { "description": "Ports are not allowed for ephemeral containers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort" }, "type": "array" }, "readinessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod." }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext", "description": "SecurityContext is not allowed for ephemeral containers." }, "startupProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "targetContainerName": { "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.", "type": "string" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": { "description": "ExecAction describes a \"run in container\" action.", "properties": { "command": { "description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": { "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "lun": { "_format": "int32", "description": "Optional: FC target lun number", "type": "integer" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "targetWWNs": { "description": "Optional: FC target worldwide names (WWNs)", "items": { "type": "string" }, "type": "array" }, "wwids": { "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource": { "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { "description": "Driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { "additionalProperties": { "type": "string" }, "description": "Optional: Extra command options if any.", "type": "object" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": { "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", "properties": { "datasetName": { "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated", "type": "string" }, "datasetUUID": { "description": "UUID of the dataset. This is unique identifier of a Flocker dataset", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": { "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "integer" }, "pdName": { "description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "boolean" } }, "required": [ "pdName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource": { "description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.", "properties": { "directory": { "description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", "type": "string" }, "repository": { "description": "Repository URL", "type": "string" }, "revision": { "description": "Commit hash for the specified revision.", "type": "string" } }, "required": [ "repository" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": { "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } }, "required": [ "endpoints", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction": { "description": "HTTPGetAction describes an action based on HTTP Get requests.", "properties": { "host": { "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.", "type": "string" }, "httpHeaders": { "description": "Custom headers to set in the request. HTTP allows repeated headers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader" }, "type": "array" }, "path": { "description": "Path to access on the HTTP server.", "type": "string" }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." }, "scheme": { "description": "Scheme to use for connecting to the host. Defaults to HTTP.", "type": "string" } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": { "description": "HTTPHeader describes a custom header to be used in HTTP probes", "properties": { "name": { "description": "The header field name", "type": "string" }, "value": { "description": "The header field value", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": { "description": "Handler defines a specific action that should be taken", "properties": { "exec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "httpGet": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "tcpSocket": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias": { "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.", "properties": { "hostnames": { "description": "Hostnames for the above IP address.", "items": { "type": "string" }, "type": "array" }, "ip": { "description": "IP address of the host file entry.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": { "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" }, "type": { "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource": { "description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { "description": "whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { "description": "whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.", "type": "string" }, "iqn": { "description": "Target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { "_format": "int32", "description": "iSCSI Target Lun number.", "type": "integer" }, "portals": { "description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "items": { "type": "string" }, "type": "array" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "type": "string" } }, "required": [ "targetPortal", "iqn", "lun" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath": { "description": "Maps a string key to a path within a volume.", "properties": { "key": { "description": "The key to project.", "type": "string" }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", "type": "string" } }, "required": [ "key", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle": { "description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", "properties": { "postStart": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler", "description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" }, "preStop": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler", "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": { "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": { "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "boolean" }, "server": { "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" } }, "required": [ "server", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity": { "description": "Node affinity is a group of node affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector", "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": { "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", "properties": { "nodeSelectorTerms": { "description": "Required. A list of node selector terms. The terms are ORed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm" }, "type": "array" } }, "required": [ "nodeSelectorTerms" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "operator": { "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", "type": "string" }, "values": { "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": { "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", "properties": { "matchExpressions": { "description": "A list of node selector requirements by node's labels.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" }, "matchFields": { "description": "A list of node selector requirements by node's fields.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": { "description": "ObjectFieldSelector selects an APIVersioned field of an object.", "properties": { "apiVersion": { "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".", "type": "string" }, "fieldPath": { "description": "Path of the field to select in the specified API version.", "type": "string" } }, "required": [ "fieldPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": { "description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).", "properties": { "claimName": { "description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "type": "string" }, "readOnly": { "description": "Will force the ReadOnly setting in VolumeMounts. Default false.", "type": "boolean" } }, "required": [ "claimName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": { "description": "Represents a Photon Controller persistent disk resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "pdID": { "description": "ID that identifies Photon Controller persistent disk", "type": "string" } }, "required": [ "pdID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity": { "description": "Pod affinity is a group of inter pod affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": { "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over a set of resources, in this case pods." }, "namespaces": { "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"", "items": { "type": "string" }, "type": "array" }, "topologyKey": { "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.", "type": "string" } }, "required": [ "topologyKey" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": { "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig": { "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", "properties": { "nameservers": { "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.", "items": { "type": "string" }, "type": "array" }, "options": { "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption" }, "type": "array" }, "searches": { "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption": { "description": "PodDNSConfigOption defines DNS resolver options of a pod.", "properties": { "name": { "description": "Required.", "type": "string" }, "value": { "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate": { "description": "PodReadinessGate contains the reference to a pod condition", "properties": { "conditionType": { "description": "ConditionType refers to a condition in the pod's condition list with matching type.", "type": "string" } }, "required": [ "conditionType" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext": { "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.", "properties": { "fsGroup": { "_format": "int64", "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.", "type": "integer" }, "fsGroupChangePolicy": { "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".", "type": "string" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container." }, "supplementalGroups": { "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.", "items": { "_format": "int64", "type": "integer" }, "type": "array" }, "sysctls": { "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl" }, "type": "array" }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec": { "description": "PodSpec is a description of a pod.", "properties": { "activeDeadlineSeconds": { "_format": "int64", "description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.", "type": "integer" }, "affinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity", "description": "If specified, the pod's scheduling constraints" }, "automountServiceAccountToken": { "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.", "type": "boolean" }, "containers": { "description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "dnsConfig": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig", "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." }, "dnsPolicy": { "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", "type": "string" }, "enableServiceLinks": { "description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.", "type": "boolean" }, "ephemeralContainers": { "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "hostAliases": { "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias" }, "type": "array", "x-kubernetes-patch-merge-key": "ip", "x-kubernetes-patch-strategy": "merge" }, "hostIPC": { "description": "Use the host's ipc namespace. Optional: Default to false.", "type": "boolean" }, "hostNetwork": { "description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.", "type": "boolean" }, "hostPID": { "description": "Use the host's pid namespace. Optional: Default to false.", "type": "boolean" }, "hostname": { "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", "type": "string" }, "imagePullSecrets": { "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "initContainers": { "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "nodeName": { "description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.", "type": "string" }, "nodeSelector": { "additionalProperties": { "type": "string" }, "description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/", "type": "object" }, "overhead": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.", "type": "object" }, "preemptionPolicy": { "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.", "type": "string" }, "priority": { "_format": "int32", "description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.", "type": "integer" }, "priorityClassName": { "description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.", "type": "string" }, "readinessGates": { "description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate" }, "type": "array" }, "restartPolicy": { "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", "type": "string" }, "runtimeClassName": { "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.", "type": "string" }, "schedulerName": { "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", "type": "string" }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext", "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field." }, "serviceAccount": { "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.", "type": "string" }, "serviceAccountName": { "description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", "type": "string" }, "shareProcessNamespace": { "description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.", "type": "boolean" }, "subdomain": { "description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.", "type": "string" }, "terminationGracePeriodSeconds": { "_format": "int64", "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", "type": "integer" }, "tolerations": { "description": "If specified, the pod's tolerations.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration" }, "type": "array" }, "topologySpreadConstraints": { "description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is only honored by clusters that enable the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint" }, "type": "array", "x-kubernetes-list-map-keys": [ "topologyKey", "whenUnsatisfiable" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "topologyKey", "x-kubernetes-patch-strategy": "merge" }, "volumes": { "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge,retainKeys" } }, "required": [ "containers" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec": { "description": "PodTemplateSpec describes the data a pod should have when created from a template", "properties": { "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec", "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": { "description": "PortworxVolumeSource represents a Portworx volume resource.", "properties": { "fsType": { "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "volumeID": { "description": "VolumeID uniquely identifies a Portworx volume", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm": { "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", "properties": { "preference": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm", "description": "A node selector term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "preference" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe": { "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", "properties": { "exec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "failureThreshold": { "_format": "int32", "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", "type": "integer" }, "httpGet": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "initialDelaySeconds": { "_format": "int32", "description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" }, "periodSeconds": { "_format": "int32", "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", "type": "integer" }, "successThreshold": { "_format": "int32", "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" }, "timeoutSeconds": { "_format": "int32", "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource": { "description": "Represents a projected volume source", "properties": { "defaultMode": { "_format": "int32", "description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "sources": { "description": "list of volume projections", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection" }, "type": "array" } }, "required": [ "sources" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": { "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", "properties": { "group": { "description": "Group to map volume access to Default is no group", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", "type": "boolean" }, "registry": { "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", "type": "string" }, "tenant": { "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", "type": "string" }, "user": { "description": "User to map volume access to Defaults to serivceaccount user", "type": "string" }, "volume": { "description": "Volume is a string that references an already created Quobyte volume by name.", "type": "string" } }, "required": [ "registry", "volume" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource": { "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "pool": { "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors", "image" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": { "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format", "properties": { "containerName": { "description": "Container name: required for volumes, optional for env vars", "type": "string" }, "divisor": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Specifies the output format of the exposed resources, defaults to \"1\"" }, "resource": { "description": "Required: resource to select", "type": "string" } }, "required": [ "resource" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements": { "description": "ResourceRequirements describes the compute resource requirements.", "properties": { "limits": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" }, "requests": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": { "description": "SELinuxOptions are the labels to be applied to the container", "properties": { "level": { "description": "Level is SELinux level label that applies to the container.", "type": "string" }, "role": { "description": "Role is a SELinux role label that applies to the container.", "type": "string" }, "type": { "description": "Type is a SELinux type label that applies to the container.", "type": "string" }, "user": { "description": "User is a SELinux user label that applies to the container.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": { "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".", "type": "string" }, "gateway": { "description": "The host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { "description": "The name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." }, "sslEnabled": { "description": "Flag to enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { "description": "The ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { "description": "The name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } }, "required": [ "gateway", "system", "secretRef" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource": { "description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector": { "description": "SecretKeySelector selects a key of a Secret.", "properties": { "key": { "description": "The key of the secret to select from. Must be a valid secret key.", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret or its key must be defined", "type": "boolean" } }, "required": [ "key" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection": { "description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret or its key must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": { "description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "optional": { "description": "Specify whether the Secret or its keys must be defined", "type": "boolean" }, "secretName": { "description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext": { "description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.", "properties": { "allowPrivilegeEscalation": { "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN", "type": "boolean" }, "capabilities": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities", "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime." }, "privileged": { "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.", "type": "boolean" }, "procMount": { "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.", "type": "string" }, "readOnlyRootFilesystem": { "description": "Whether this container has a read-only root filesystem. Default is false.", "type": "boolean" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": { "description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).", "properties": { "audience": { "description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.", "type": "string" }, "expirationSeconds": { "_format": "int64", "description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.", "type": "integer" }, "path": { "description": "Path is the path relative to the mount point of the file to project the token into.", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." }, "volumeName": { "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl": { "description": "Sysctl defines a kernel parameter to be set", "properties": { "name": { "description": "Name of a property to set", "type": "string" }, "value": { "description": "Value of a property to set", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction": { "description": "TCPSocketAction describes an action based on opening a socket", "properties": { "host": { "description": "Optional: Host name to connect to, defaults to the pod IP.", "type": "string" }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": { "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.", "properties": { "effect": { "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", "type": "string" }, "key": { "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", "type": "string" }, "operator": { "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", "type": "string" }, "tolerationSeconds": { "_format": "int64", "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", "type": "integer" }, "value": { "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint": { "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain." }, "maxSkew": { "_format": "int32", "description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.", "type": "integer" }, "topologyKey": { "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.", "type": "string" }, "whenUnsatisfiable": { "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", "type": "string" } }, "required": [ "maxSkew", "topologyKey", "whenUnsatisfiable" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume": { "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource", "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource", "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "cephfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource", "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource", "description": "ConfigMap represents a configMap that should populate this volume" }, "csi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource", "description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)." }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource", "description": "DownwardAPI represents downward API about the pod that should populate this volume" }, "emptyDir": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource", "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" }, "fc": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource", "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource", "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource", "description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource", "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "gitRepo": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource", "description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container." }, "glusterfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource", "description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource", "description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md" }, "name": { "description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "nfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource", "description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "persistentVolumeClaim": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource", "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" }, "photonPersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource", "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource", "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "projected": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource", "description": "Items for all in one resources secrets, configmaps, and downward API" }, "quobyte": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource", "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource", "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret" }, "storageos": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource", "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes." }, "vsphereVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": { "description": "volumeDevice describes a mapping of a raw block device within a container.", "properties": { "devicePath": { "description": "devicePath is the path inside of the container that the device will be mapped to.", "type": "string" }, "name": { "description": "name must match the name of a persistentVolumeClaim in the pod", "type": "string" } }, "required": [ "name", "devicePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": { "description": "VolumeMount describes a mounting of a Volume within a container.", "properties": { "mountPath": { "description": "Path within the container at which the volume should be mounted. Must not contain ':'.", "type": "string" }, "mountPropagation": { "description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.", "type": "string" }, "name": { "description": "This must match the Name of a Volume.", "type": "string" }, "readOnly": { "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", "type": "boolean" }, "subPath": { "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", "type": "string" }, "subPathExpr": { "description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.", "type": "string" } }, "required": [ "name", "mountPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": { "description": "Projection that may be projected along with other supported volume types", "properties": { "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection", "description": "information about the configMap data to project" }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection", "description": "information about the downwardAPI data to project" }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection", "description": "information about the secret data to project" }, "serviceAccountToken": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection", "description": "information about the serviceAccountToken data to project" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": { "description": "Represents a vSphere volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "storagePolicyID": { "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": "string" }, "storagePolicyName": { "description": "Storage Policy Based Management (SPBM) profile name.", "type": "string" }, "volumePath": { "description": "Path that identifies vSphere volume vmdk", "type": "string" } }, "required": [ "volumePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": { "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", "properties": { "podAffinityTerm": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm", "description": "Required. A pod affinity term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "podAffinityTerm" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": { "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.", "properties": { "gmsaCredentialSpec": { "description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.", "type": "string" }, "gmsaCredentialSpecName": { "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", "type": "string" }, "runAsUserName": { "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "DaemonSetSpec is the specification of a daemon set.", "properties": { "minReadySeconds": { "description": "The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).", "format": "int32", "type": [ "integer", "null" ] }, "revisionHistoryLimit": { "description": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", "format": "int32", "type": [ "integer", "null" ] }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" }, "template": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec", "description": "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" }, "updateStrategy": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSetUpdateStrategy", "description": "An update strategy to replace existing DaemonSet pods with new pods." } }, "required": [ "selector", "template" ], "type": "object" }
kb_240_Normalized
{ "properties": { "acknowledged": { "type": "boolean" }, "acknowledged_at": { "format": "date-time", "type": "string" }, "acknowledged_by": { "type": "string" }, "created_at": { "format": "date-time", "type": "string" }, "data": { "description": "No formal validation or schema for this JSON field. Contains the keys and values that have changed.", "type": "object" }, "id": { "type": "integer" }, "object_id": { "type": "string" }, "object_type": { "type": "string" }, "type": { "type": "string" }, "user": { "type": "string" } }, "required": [ "id", "type", "acknowledged" ], "title": "AuditEvent", "type": "object" }
o21082
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity": { "description": "Node affinity is a group of node affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector", "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": { "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", "properties": { "nodeSelectorTerms": { "description": "Required. A list of node selector terms. The terms are ORed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm" }, "type": "array" } }, "required": [ "nodeSelectorTerms" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "operator": { "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", "type": "string" }, "values": { "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": { "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", "properties": { "matchExpressions": { "description": "A list of node selector requirements by node's labels.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" }, "matchFields": { "description": "A list of node selector requirements by node's fields.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity": { "description": "Pod affinity is a group of inter pod affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": { "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over a set of resources, in this case pods." }, "namespaces": { "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"", "items": { "type": "string" }, "type": "array" }, "topologyKey": { "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.", "type": "string" } }, "required": [ "topologyKey" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": { "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm": { "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", "properties": { "preference": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm", "description": "A node selector term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "preference" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": { "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", "properties": { "podAffinityTerm": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm", "description": "Required. A pod affinity term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "podAffinityTerm" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" } }, "description": "Affinity is a group of affinity scheduling rules.", "properties": { "nodeAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity", "description": "Describes node affinity scheduling rules for the pod." }, "podAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity", "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." }, "podAntiAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity", "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." } }, "type": "object" }
kb_1_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "body_html_and_govspeak": { "anyOf": [ { "$ref": "#/definitions/multiple_content_types" } ], "description": "The main content provided as HTML with the govspeak markdown it's rendered from" }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "attachments": { "description": "An ordered list of asset links", "items": { "$ref": "#/definitions/file_attachment_asset" }, "type": "array" }, "body": { "$ref": "#/definitions/body_html_and_govspeak" }, "change_history": { "$ref": "#/definitions/change_history" }, "manual": { "$ref": "#/definitions/manual_section_parent" }, "organisations": { "$ref": "#/definitions/manual_organisations" } }, "required": [ "body", "manual", "organisations" ], "type": "object" }, "file_attachment_asset": { "additionalProperties": false, "properties": { "accessible": { "type": "boolean" }, "alternative_format_contact_email": { "type": "string" }, "attachment_type": { "enum": [ "file" ], "type": "string" }, "content_type": { "type": "string" }, "file_size": { "type": "integer" }, "filename": { "type": "string" }, "id": { "type": "string" }, "locale": { "$ref": "#/definitions/locale" }, "number_of_pages": { "type": "integer" }, "preview_url": { "_format": "uri", "type": "string" }, "title": { "type": "string" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "attachment_type", "content_type", "id", "url" ], "type": "object" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "govuk_request_id": { "type": [ "string", "null" ] }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "guid_list": { "items": { "$ref": "#/definitions/guid" }, "type": "array", "_uniqueItems": true }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "manual_organisations": { "description": "A manual\u2019s organisations. TODO: Switch to use organisations in links", "items": { "additionalProperties": false, "properties": { "abbreviation": { "type": "string" }, "title": { "type": "string" }, "web_url": { "type": "string" } }, "required": [ "title", "abbreviation", "web_url" ], "type": "object" }, "type": "array" }, "manual_section_parent": { "additionalProperties": false, "description": "The parent manual for a manual section", "properties": { "base_path": { "$ref": "#/definitions/absolute_path" } }, "required": [ "base_path" ], "type": "object" }, "multiple_content_types": { "items": { "additionalProperties": false, "properties": { "content": { "type": "string" }, "content_type": { "type": "string" } }, "required": [ "content_type", "content" ], "type": "object" }, "type": "array" }, "payload_version": { "description": "Counter to indicate when the payload was generated", "type": "integer" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "route": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } }, "required": [ "path", "type" ], "type": "object" }, "routes": { "items": { "$ref": "#/definitions/route" }, "minItems": 1, "type": "array" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "content_purpose_document_supertype": { "description": "DEPRECATED. Use `content_purpose_subgroup`.", "type": "string" }, "content_purpose_subgroup": { "description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.", "type": "string" }, "content_purpose_supergroup": { "description": "Document supergroup grouping documents by a purpose", "type": "string" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "manual_section" ], "type": "string" }, "email_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "expanded_links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "level_one_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "mainstream_browse_pages": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "manual": { "$ref": "#/definitions/frontend_links_with_base_path" }, "meets_user_needs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The user needs this piece of content meets." }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/frontend_links_with_base_path" }, "original_primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The parent content item.", "maxItems": 1 }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policy_areas": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "suggested_ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Prototype-stage taxonomy label for this content item" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "government_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "govuk_request_id": { "$ref": "#/definitions/govuk_request_id" }, "links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/guid_list" }, "facet_groups": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/guid_list", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/guid_list", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "mainstream_browse_pages": { "$ref": "#/definitions/guid_list", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "manual": { "$ref": "#/definitions/guid_list" }, "meets_user_needs": { "$ref": "#/definitions/guid_list", "description": "The user needs this piece of content meets." }, "ordered_related_items": { "$ref": "#/definitions/guid_list", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/guid_list", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/guid_list" }, "original_primary_publishing_organisation": { "$ref": "#/definitions/guid_list", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/guid_list", "description": "The parent content item.", "maxItems": 1 }, "policy_areas": { "$ref": "#/definitions/guid_list", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/guid_list", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "suggested_ordered_related_items": { "$ref": "#/definitions/guid_list", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage taxonomy label for this content item" }, "topics": { "$ref": "#/definitions/guid_list", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "navigation_document_supertype": { "description": "Document type grouping powering the new taxonomy-based navigation pages", "type": "string" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "payload_version": { "$ref": "#/definitions/payload_version" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "redirects": { "additionalItems": false, "items": {}, "type": "array" }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "enum": [ "manual_section" ], "type": "string" }, "search_user_need_document_supertype": { "description": "Document supertype grouping core and government documents", "type": "string" }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" }, "user_journey_document_supertype": { "description": "Document type grouping powering analytics of user journeys", "type": "string" }, "user_need_document_supertype": { "description": "DEPRECATED. Use `content_purpose_document_supertype`.", "type": "string" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "required": [ "analytics_identifier", "base_path", "content_id", "description", "details", "document_type", "email_document_supertype", "expanded_links", "first_published_at", "government_document_supertype", "govuk_request_id", "links", "locale", "navigation_document_supertype", "payload_version", "phase", "public_updated_at", "publishing_app", "redirects", "rendering_app", "routes", "schema_name", "title", "update_type", "user_journey_document_supertype" ], "type": "object" }
o21292
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "rootArray": { "type": "array", "items": { "type": "array", "items": { "type": "object", "properties": { "someString": { "type": "string" }, "anotherString": { "type": "string" }, "someArray": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "someString", "anotherString", "someArray" ] } } } }, "additionalProperties": false, "required": [ "rootArray" ] }
o41803
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://json.schemastore.org/omnisharp.json", "properties": { "FormattingOptions": { "type": "object", "description": "Used to control C# formatting", "properties": { "EnableEditorConfigSupport": { "type": "boolean", "default": false }, "NewLine": { "type": "string", "default": "\n" }, "UseTabs": { "type": "boolean", "default": false }, "TabSize": { "type": "integer", "default": 4 }, "IndentationSize": { "type": "integer", "default": 4 }, "SpacingAfterMethodDeclarationName": { "type": "boolean", "default": false }, "SpaceWithinMethodDeclarationParenthesis": { "type": "boolean", "default": false }, "SpaceBetweenEmptyMethodDeclarationParentheses": { "type": "boolean", "default": false }, "SpaceAfterMethodCallName": { "type": "boolean", "default": false }, "SpaceWithinMethodCallParentheses": { "type": "boolean", "default": false }, "SpaceBetweenEmptyMethodCallParentheses": { "type": "boolean", "default": false }, "SpaceAfterControlFlowStatementKeyword": { "type": "boolean", "default": true }, "SpaceWithinExpressionParentheses": { "type": "boolean", "default": false }, "SpaceWithinCastParentheses": { "type": "boolean", "default": false }, "SpaceWithinOtherParentheses": { "type": "boolean", "default": false }, "SpaceAfterCast": { "type": "boolean", "default": false }, "SpacesIgnoreAroundVariableDeclaration": { "type": "boolean", "default": false }, "SpaceBeforeOpenSquareBracket": { "type": "boolean", "default": false }, "SpaceBetweenEmptySquareBrackets": { "type": "boolean", "default": false }, "SpaceWithinSquareBrackets": { "type": "boolean", "default": false }, "SpaceAfterColonInBaseTypeDeclaration": { "type": "boolean", "default": true }, "SpaceAfterComma": { "type": "boolean", "default": true }, "SpaceAfterDot": { "type": "boolean", "default": false }, "SpaceAfterSemicolonsInForStatement": { "type": "boolean", "default": true }, "SpaceBeforeColonInBaseTypeDeclaration": { "type": "boolean", "default": true }, "SpaceBeforeComma": { "type": "boolean", "default": false }, "SpaceBeforeDot": { "type": "boolean", "default": false }, "SpaceBeforeSemicolonsInForStatement": { "type": "boolean", "default": false }, "SpacingAroundBinaryOperator": { "type": "string", "default": "single" }, "IndentBraces": { "type": "boolean", "default": false }, "IndentBlock": { "type": "boolean", "default": true }, "IndentSwitchSection": { "type": "boolean", "default": true }, "IndentSwitchCaseSection": { "type": "boolean", "default": true }, "IndentSwitchCaseSectionWhenBlock": { "type": "boolean", "default": true }, "LabelPositioning": { "type": "string", "default": "oneLess" }, "WrappingPreserveSingleLine": { "type": "boolean", "default": true }, "WrappingKeepStatementsOnSingleLine": { "type": "boolean", "default": true }, "NewLinesForBracesInTypes": { "type": "boolean", "default": true }, "NewLinesForBracesInMethods": { "type": "boolean", "default": true }, "NewLinesForBracesInProperties": { "type": "boolean", "default": true }, "NewLinesForBracesInAccessors": { "type": "boolean", "default": true }, "NewLinesForBracesInAnonymousMethods": { "type": "boolean", "default": true }, "NewLinesForBracesInControlBlocks": { "type": "boolean", "default": true }, "NewLinesForBracesInAnonymousTypes": { "type": "boolean", "default": true }, "NewLinesForBracesInObjectCollectionArrayInitializers": { "type": "boolean", "default": true }, "NewLinesForBracesInLambdaExpressionBody": { "type": "boolean", "default": true }, "NewLineForElse": { "type": "boolean", "default": true }, "NewLineForCatch": { "type": "boolean", "default": true }, "NewLineForFinally": { "type": "boolean", "default": true }, "NewLineForMembersInObjectInit": { "type": "boolean", "default": true }, "NewLineForMembersInAnonymousTypes": { "type": "boolean", "default": true }, "NewLineForClausesInQuery": { "type": "boolean", "default": true } } }, "RoslynExtensionsOptions": { "type": "object", "description": "Used to define refactorings, code actions and analyzer locations that OmniSharp should use (i.e. Roslynator)", "properties": { "EnableDecompilationSupport": { "type": "boolean", "default": false }, "EnableAnalyzersSupport": { "type": "boolean", "description": "If set to false, only refactorings are available", "default": false }, "DocumentAnalysisTimeoutMs": { "type": "integer", "default": 10000 }, "LocationPaths": { "type": "array", "items": { "type": "string" }, "default": null } } }, "FileOptions": { "type": "object", "description": "Used to define which directories and files should be included in OmniSharp's project file / solution file discovery process. Not individual .cs files.", "properties": { "SystemExcludeSearchPatterns": { "type": "array", "description": "Recommended for manual editing", "items": { "type": "string" }, "default": [ "**/node_modules/**/*", "**/bin/**/*", "**/obj/**/*", "**/.git/**/*" ] }, "ExcludeSearchPatterns": { "type": "array", "description": "Can be used by tools such as VS Code to automatically share its exclusion settings with OmniSharp", "items": { "type": "string" }, "default": [] } } }, "RenameOptions": { "type": "object", "properties": { "RenameOverloads": { "type": "boolean", "default": false }, "RenameInStrings": { "type": "boolean", "default": false }, "RenameInComments": { "type": "boolean", "default": false } } }, "ImplementTypeOptions": { "type": "object", "properties": { "InsertionBehavior": { "type": "string", "enum": ["WithOtherMembersOfTheSameKind", "AtTheEnd"], "default": "WithOtherMembersOfTheSameKind" }, "PropertyGenerationBehavior": { "type": "string", "enum": ["PreferThrowingProperties", "PreferAutoProperties"], "default": "PreferThrowingProperties" } } }, "Plugins": { "type": "object", "properties": { "LocationPaths": { "type": "array", "items": { "type": "string" }, "default": [] } } }, "msbuild": { "type": "object", "description": "Used to configure MSBuild solutions and projects", "properties": { "enabled": { "type": "boolean", "default": true }, "ToolsVersion": { "type": "string", "default": null, "description": "Value of ToolsVersion to use when building projects passed to this task", "anyOf": [ { "enum": ["Current", "2.0", "3.5", "4.0", "15.0"] }, { "type": "string" } ] }, "VisualStudioVersion": { "type": "string", "default": null }, "Configuration": { "default": null, "description": "Build configuration used for project evaluation", "anyOf": [ { "enum": ["Debug", "Release"] }, { "type": "string" } ] }, "Platform": { "default": "AnyCPU", "description": "Specifies which version of the Common Language Runtime (CLR) use for project evaluation", "anyOf": [ { "enum": ["AnyCPU", "x86", "x64", "ARM", "ARM64", "Itanium"] }, { "type": "string" } ] }, "EnablePackageAutoRestore": { "type": "boolean", "default": false }, "MSBuildExtensionsPath": { "type": "string", "description": "MSBuild extensions path. On Standalone this defaults to the MSBuild folder. In VisualStudio mode this folder will be %VSINSTALLDIR%\\MSBuild", "default": null }, "TargetFrameworkRootPath": { "type": "string", "description": "Root directory where the target framework will be looked for. Uses default path if this is null", "default": null }, "MSBuildSDKsPath": { "type": "string", "description": "Path to the Sdks folder for this MSBuild instance", "default": null }, "RoslynTargetsPath": { "type": "string", "default": null }, "CscToolPath": { "type": "string", "description": "Local Roslyn path (e.g. <MSBuildPath>/Current/Bin/Roslyn)", "default": null }, "CscToolExe": { "type": "string", "description": "FileName of C# compiler", "default": "csc.exe" }, "loadProjectsOnDemand": { "type": "boolean", "description": "If true, MSBuild project system will only be loading projects for files that were opened in the editor as well as referenced projects, recursively", "default": false } } }, "script": { "type": "object", "description": "Used to configure C# scripting (CSX files)", "properties": { "enabled": { "type": "boolean", "default": true }, "defaultTargetFramework": { "type": "string", "default": "net461", "anyOf": [ { "enum": [ "netstandard1.0", "netstandard1.1", "netstandard1.2", "netstandard1.3", "netstandard1.4", "netstandard1.5", "netstandard1.6", "netstandard2.0", "netstandard2.1", "netcoreapp1.0", "netcoreapp1.1", "netcoreapp2.0", "netcoreapp2.1", "netcoreapp2.2", "netcoreapp3.0", "netcoreapp3.1", "net11", "net20", "net35", "net40", "net403", "net45", "net451", "net452", "net46", "net461", "net462", "net47", "net471", "net472", "net48" ] }, { "type": "string" } ] }, "enableScriptNuGetReferences": { "type": "boolean", "default": false }, "rspFilePath": { "type": "string", "default": "", "description": "A response file (.rsp) is used to provide the command line arguments that are used to run the roslyn script compiler process. You can use this to override the default namespace includes among other things." } } }, "cake": { "type": "object", "description": "Used to configure Cake (cake files)", "properties": { "enabled": { "type": "boolean", "default": true }, "bakeryPath": { "type": "string", "default": null } } } }, "type": "object" }
omnisharp
{ "title": "locationInfo", "type": "object", "$schema": "http://json-schema.org/draft-04/schema", "description": "Defines how location information will be retrieved from a [CSV](csvLayer.md) file referenced through the web, ie. referenced by URL.", "properties": { "latitudeFieldName": { "type": "string", "description": "A string defining the field name that holds the latitude (Y) coordinate." }, "locationType": { "type": "string", "description": "String value indicating location type.", "enum": [ "coordinates" ] }, "longitudeFieldName": { "type": "string", "description": "A string defining the field name that holds the longitude (X) coordinate." } }, "required": [ "locationType" ], "additionalProperties": false, "esriDocumentation": { "examples": [ { "title": "locationInfo", "code": { "locationInfo": { "locationType": "coordinates", "latitudeFieldName": "latitude", "longitudeFieldName": "longitude" } } } ] } }
o90233
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "body_html_and_govspeak": { "anyOf": [ { "$ref": "#/definitions/multiple_content_types" } ], "description": "The main content provided as HTML with the govspeak markdown it's rendered from" }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "country": { "additionalProperties": false, "properties": { "name": { "type": "string" }, "slug": { "type": "string" }, "synonyms": { "items": { "type": "string" }, "type": "array" } }, "required": [ "slug", "name" ], "type": "object" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "alert_status": { "items": { "type": "string" }, "type": "array" }, "change_description": { "type": "string" }, "change_history": { "$ref": "#/definitions/change_history" }, "country": { "$ref": "#/definitions/country" }, "document": { "$ref": "#/definitions/file_attachment_asset" }, "email_signup_link": { "$ref": "#/definitions/email_signup_link" }, "image": { "$ref": "#/definitions/image_asset" }, "max_cache_time": { "$ref": "#/definitions/max_cache_time" }, "parts": { "$ref": "#/definitions/parts" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "reviewed_at": { "_format": "date-time", "type": "string" }, "summary": { "$ref": "#/definitions/multiple_content_types" }, "updated_at": { "_format": "date-time", "type": "string" } }, "required": [ "summary", "country", "updated_at", "reviewed_at", "change_description", "alert_status", "email_signup_link", "parts" ], "type": "object" }, "email_signup_link": { "_format": "uri", "description": "Path to email signup form. TODO: Check if can be switched to use links instead", "type": "string" }, "file_attachment_asset": { "additionalProperties": false, "properties": { "accessible": { "type": "boolean" }, "alternative_format_contact_email": { "type": "string" }, "attachment_type": { "enum": [ "file" ], "type": "string" }, "content_type": { "type": "string" }, "file_size": { "type": "integer" }, "filename": { "type": "string" }, "id": { "type": "string" }, "locale": { "$ref": "#/definitions/locale" }, "number_of_pages": { "type": "integer" }, "preview_url": { "_format": "uri", "type": "string" }, "title": { "type": "string" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "attachment_type", "content_type", "id", "url" ], "type": "object" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "govuk_request_id": { "type": [ "string", "null" ] }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "guid_list": { "items": { "$ref": "#/definitions/guid" }, "type": "array", "_uniqueItems": true }, "image_asset": { "additionalProperties": false, "properties": { "alt_text": { "type": "string" }, "caption": { "type": "string" }, "content_type": { "type": "string" }, "credit": { "type": "string" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "content_type", "url" ], "type": "object" }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "max_cache_time": { "description": "The maximum length of time the content should be cached, in seconds", "type": "integer" }, "multiple_content_types": { "items": { "additionalProperties": false, "properties": { "content": { "type": "string" }, "content_type": { "type": "string" } }, "required": [ "content_type", "content" ], "type": "object" }, "type": "array" }, "parts": { "items": { "additionalProperties": false, "properties": { "body": { "$ref": "#/definitions/body_html_and_govspeak" }, "slug": { "_format": "uri", "type": "string" }, "title": { "type": "string" } }, "required": [ "title", "slug", "body" ], "type": "object" }, "type": "array" }, "payload_version": { "description": "Counter to indicate when the payload was generated", "type": "integer" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "route": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } }, "required": [ "path", "type" ], "type": "object" }, "routes": { "items": { "$ref": "#/definitions/route" }, "minItems": 1, "type": "array" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "content_purpose_document_supertype": { "description": "DEPRECATED. Use `content_purpose_subgroup`.", "type": "string" }, "content_purpose_subgroup": { "description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.", "type": "string" }, "content_purpose_supergroup": { "description": "Document supergroup grouping documents by a purpose", "type": "string" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "travel_advice" ], "type": "string" }, "email_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "expanded_links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "level_one_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "mainstream_browse_pages": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The user needs this piece of content meets." }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The parent content item.", "maxItems": 1 }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policy_areas": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related": { "$ref": "#/definitions/frontend_links_with_base_path" }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "suggested_ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Prototype-stage taxonomy label for this content item" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "government_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "govuk_request_id": { "$ref": "#/definitions/govuk_request_id" }, "links": { "additionalProperties": false, "properties": { "facet_groups": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/guid_list", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/guid_list", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "mainstream_browse_pages": { "$ref": "#/definitions/guid_list", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/guid_list", "description": "The user needs this piece of content meets." }, "ordered_related_items": { "$ref": "#/definitions/guid_list", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/guid_list", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/guid_list", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/guid_list", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/guid_list", "description": "The parent content item.", "maxItems": 1 }, "policy_areas": { "$ref": "#/definitions/guid_list", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/guid_list", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related": { "$ref": "#/definitions/guid_list" }, "suggested_ordered_related_items": { "$ref": "#/definitions/guid_list", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage taxonomy label for this content item" }, "topics": { "$ref": "#/definitions/guid_list", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "navigation_document_supertype": { "description": "Document type grouping powering the new taxonomy-based navigation pages", "type": "string" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "payload_version": { "$ref": "#/definitions/payload_version" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "redirects": { "additionalItems": false, "items": {}, "type": "array" }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "enum": [ "travel_advice" ], "type": "string" }, "search_user_need_document_supertype": { "description": "Document supertype grouping core and government documents", "type": "string" }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" }, "user_journey_document_supertype": { "description": "Document type grouping powering analytics of user journeys", "type": "string" }, "user_need_document_supertype": { "description": "DEPRECATED. Use `content_purpose_document_supertype`.", "type": "string" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "required": [ "analytics_identifier", "base_path", "content_id", "description", "details", "document_type", "email_document_supertype", "expanded_links", "first_published_at", "government_document_supertype", "govuk_request_id", "links", "locale", "navigation_document_supertype", "payload_version", "phase", "public_updated_at", "publishing_app", "redirects", "rendering_app", "routes", "schema_name", "title", "update_type", "user_journey_document_supertype" ], "type": "object" }
o21416
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "US postal abbreviations", "description": "Postal abbreviations: US states/territories", "type": "object", "properties": { "state": { "type": "string", "enum": [ "AL", "AK", "AR", "AS", "AZ", "CA", "CO", "CT", "DC", "DE", "FL", "FM", "GA", "GU", "HI", "IA", "ID", "IL", "IN", "KS", "KY", "LA", "MA", "MD", "ME", "MH", "MI", "MN", "MO", "MP", "MS", "MT", "NC", "ND", "NE", "NH", "NJ", "NM", "NV", "OH", "OK", "OR", "PA", "PR", "PW", "RI", "SC", "SD", "TN", "TX", "UT", "VA", "VI", "VT", "WA", "WI", "WV", "WY", "AA", "AE", "AP" ] } } }
o83705
{ "$comment": "https://www.jetbrains.com/help/qodana/qodana-yaml.html", "$id": "https://json.schemastore.org/qodana-1.0.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": true, "definitions": { "profile": { "description": "A profile is some template set of checks to run with Qodana analysis", "type": "object", "oneOf": [ { "properties": { "name": { "description": "The profile name (embedded or located in the project)", "type": "string" } }, "required": ["name"], "additionalProperties": false }, { "properties": { "path": { "description": "The path to the profile file relative to the project root", "type": "string" } }, "required": ["path"], "additionalProperties": false } ], "additionalProperties": true }, "include": { "description": "The inspections to run in addition to those from the profile", "type": "object", "properties": { "name": { "description": "The ID of the inspection to be added", "type": "string" } }, "required": ["name"], "additionalProperties": false }, "exclude": { "description": "The inspections or paths to exclude from analysis", "type": "object", "properties": { "name": { "description": "The ID of the inspection to exclude, or 'All'", "type": "string" }, "paths": { "description": "The path in which to disable the inspection, relative to the project root. Omitting the paths disables the inspection everywhere", "type": "array", "minItems": 0, "items": { "type": "string" } } }, "required": ["name"], "additionalProperties": false }, "script": { "description": "The default running scenario", "type": "object", "additionalProperties": false, "properties": { "name": { "description": "The name of the script", "enum": ["default", "php-migration"] }, "parameters": { "description": "The parameters to pass to the script", "type": "object", "additionalProperties": true } } }, "licenseRule": { "description": "A license rule to apply for license compatibility checks in Qodana", "type": "object", "properties": { "keys": { "description": "The list of project license SPDX IDs", "type": "array", "minItems": 0, "items": { "type": "string" } }, "allowed": { "description": "The list of allowed dependency licenses for the project", "type": "array", "minItems": 0, "items": { "type": "string" } }, "prohibited": { "description": "The list of prohibited dependency licenses for the project", "type": "array", "minItems": 0, "items": { "type": "string" } } }, "additionalProperties": false }, "dependencyIgnore": { "description": "A dependency to ignore for license checks in Qodana", "type": "object", "additionalProperties": false, "properties": { "name": { "description": "The name of a dependency to ignore", "type": "string" } } }, "dependencyOverride": { "description": "A dependency metadata to override for license checks in Qodana", "type": "object", "additionalProperties": false, "properties": { "name": { "description": "The dependency name", "type": "string" }, "version": { "description": "The dependency version", "type": "string" }, "url": { "description": "The dependency homepage", "type": "string" }, "licenses": { "description": "The dependency licenses", "type": "array", "minItems": 0, "items": { "$ref": "#/definitions/license" } } }, "required": ["name", "version", "licenses"] }, "customDependency": { "description": "A dependency to add to license checks to Qodana", "type": "object", "additionalProperties": false, "properties": { "name": { "description": "The dependency name", "type": "string" }, "version": { "description": "The dependency version", "type": "string" }, "url": { "description": "The dependency homepage", "type": "string" }, "licenses": { "description": "The dependency licenses", "type": "array", "minItems": 0, "items": { "$ref": "#/definitions/license" } } }, "required": ["name", "version", "licenses"] }, "license": { "description": "A license to apply for license compatibility checks in Qodana", "type": "object", "properties": { "key": { "description": "The SPDX ID of the license", "type": "string" }, "url": { "description": "The license homepage", "type": "string" } }, "additionalProperties": false }, "dotnet": { "description": "Configuration for .NET solutions and projects", "anyOf": [ { "type": "object", "properties": { "solution": { "description": "The name of a .NET solution inside the Qodana project", "type": "string", "minLength": 1 } }, "additionalProperties": false }, { "type": "object", "properties": { "project": { "description": "The name of a .NET project inside the Qodana project", "type": "string", "minLength": 1 } }, "additionalProperties": false }, { "type": "object", "properties": { "configuration": { "description": "The name of a configuration to be used for .NET solution or project", "type": "string", "minLength": 1 } }, "additionalProperties": false }, { "type": "object", "properties": { "platform": { "description": "The name of a platform to be used for .NET solution or project", "type": "string", "minLength": 1 } }, "additionalProperties": false } ] }, "dot-net": { "description": "Configuration for .NET solutions and projects", "deprecated": true, "anyOf": [ { "type": "object", "properties": { "solution": { "description": "The name of a .NET solution inside the Qodana project", "type": "string", "minLength": 1 } }, "additionalProperties": false }, { "type": "object", "properties": { "project": { "description": "The name of a .NET project inside the Qodana project", "type": "string", "minLength": 1 } }, "additionalProperties": false } ] } }, "description": "A configuration file for Qodana (https://jetbrains.com/qodana), named qodana.yaml or qodana.yml", "properties": { "version": { "description": "The version of the file format", "enum": ["1.0"] }, "profile": { "description": "The profile configuration for Qodana analysis", "$ref": "#/definitions/profile" }, "failThreshold": { "description": "The number of problems that causes Qodana to exit with code 255", "type": "integer", "minimum": 0 }, "script": { "description": "The run scenario. 'default' by default", "$ref": "#/definitions/script" }, "exclude": { "description": "The inspections and paths that are excluded from analysis", "type": "array", "minItems": 0, "items": { "$ref": "#/definitions/exclude" } }, "include": { "description": "The inspections and paths that are added to those from the profile", "type": "array", "minItems": 0, "items": { "$ref": "#/definitions/include" } }, "linter": { "description": "The linter (Docker image) to run for Qodana CLI / any CI extensions", "type": "string" }, "bootstrap": { "type": "string", "description": "The command to run inside Docker before the analysis starts" }, "properties": { "type": "object", "description": "Set JVM properties to be used while running Qodana", "additionalProperties": { "type": "string" } }, "licenseRules": { "description": "A list of license rules to apply for license checks", "type": "array", "minItems": 0, "items": { "$ref": "#/definitions/licenseRule" } }, "dependencyIgnores": { "description": "", "type": "array", "minItems": 0, "items": { "$ref": "#/definitions/dependencyIgnore" } }, "dependencyOverrides": { "description": "", "type": "array", "minItems": 0, "items": { "$ref": "#/definitions/dependencyOverride" } }, "customDependencies": { "description": "", "type": "array", "minItems": 0, "items": { "$ref": "#/definitions/customDependency" } }, "dot-net": { "description": "The configuration for .NET solutions and projects", "$ref": "#/definitions/dot-net" } }, "required": ["version"], "title": "Qodana", "type": "object" }
qodana-1
{ "id": "http://schemas.triniti.io/json-schema/gdbots/analytics/tracker/keen/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "_schema": { "type": "string", "pattern": "^pbj:([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+):([0-9]+-[0-9]+-[0-9]+)$", "default": "pbj:gdbots:analytics:tracker:keen:1-0-0" }, "is_enabled": { "type": "boolean", "pbj": { "type": "boolean", "rule": "single" } }, "project_id": { "type": "string", "pattern": "^\\w+$", "pbj": { "type": "string", "rule": "single" } }, "read_key": { "type": "string", "pattern": "^\\w+$", "pbj": { "type": "string", "rule": "single" } }, "write_key": { "type": "string", "pattern": "^\\w+$", "pbj": { "type": "string", "rule": "single" } } }, "required": [ "_schema" ], "additionalProperties": false }
o82292
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "number" }, "name": { "type": "string" }, "icon": { "type": "string" }, "attributes": { "type": "object", "properties": { "Toughness": { "type": "number" }, "Power": { "type": "number" }, "CritDamage": { "type": "number" } } } }, "required": [ "id", "name", "icon", "attributes" ] }, "properties": {}, "additionalProperties": false }
o45197
{ "$ref": "#/definitions/Kustomization", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "ConfigMapArgs": { "description": "ConfigMapArgs contains the metadata of how to generate a configmap", "properties": { "KVSources": { "items": { "$ref": "#/definitions/KVSource" }, "type": "array" }, "behavior": { "enum": ["create", "replace", "merge"] }, "env": { "description": "Deprecated. Use envs instead.", "type": "string" }, "envs": { "description": "A list of file paths. The contents of each file should be one key=value pair per line", "items": { "type": "string" }, "type": "array" }, "files": { "description": "A list of file sources to use in creating a list of key, value pairs", "items": { "type": "string" }, "type": "array" }, "literals": { "description": "A list of literal pair sources. Each literal source should be a key and literal value, e.g. `key=value`", "items": { "type": "string" }, "type": "array" }, "name": { "description": "Name - actually the partial name - of the generated resource", "type": "string" }, "namespace": { "description": "Namespace for the configmap, optional", "type": "string" }, "options": { "$ref": "#/definitions/GeneratorOptions" } }, "additionalProperties": false, "type": "object" }, "FieldSelector": { "description": "Contains the fieldPath to an object field", "properties": { "fieldpath": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "FieldSpec": { "properties": { "create": { "type": "boolean" }, "group": { "type": "string" }, "kind": { "type": "string" }, "path": { "type": "string" }, "version": { "type": "string" } }, "type": "object" }, "GeneratorOptions": { "description": "GeneratorOptions modify behavior of all ConfigMap and Secret generators", "properties": { "annotations": { "description": "Annotations to add to all generated resources", "patternProperties": { ".*": { "type": "string" } }, "type": "object" }, "disableNameSuffixHash": { "description": "DisableNameSuffixHash if true disables the default behavior of adding a suffix to the names of generated resources that is a hash of the resource contents", "type": "boolean" }, "immutable": { "description": "Immutable if true add to all generated resources", "type": "boolean" }, "labels": { "description": "Labels to add to all generated resources", "patternProperties": { ".*": { "type": "string" } }, "type": "object" } }, "additionalProperties": false, "type": "object" }, "HelmChart": { "properties": { "name": { "type": "string" }, "version": { "type": "string" }, "repo": { "type": "string" }, "releaseName": { "type": "string" }, "namespace": { "type": "string" }, "valuesFile": { "type": "string" }, "valuesInline": { "type": "object", "patternProperties": { ".*": { "additionalProperties": true } } }, "valuesMerge": { "type": "string", "enum": ["merge", "override", "replace"] }, "includeCRDs": { "type": "boolean" }, "additionalValuesFiles": { "type": "array", "items": { "type": "string" } }, "skipTests": { "type": "boolean" }, "apiVersions": { "type": "array", "items": { "type": "string" } }, "nameTemplate": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "Image": { "properties": { "digest": { "type": "string" }, "name": { "type": "string" }, "newName": { "type": "string" }, "newTag": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "Inventory": { "description": "Inventory appends an object that contains the record of all other objects, which can be used in apply, prune and delete", "properties": { "configMap": { "$ref": "#/definitions/NameArgs" }, "type": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "KVSource": { "properties": { "args": { "items": { "type": "string" }, "type": "array" }, "name": { "type": "string" }, "pluginType": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "Kustomization": { "properties": { "apiVersion": { "type": "string" }, "bases": { "description": "DEPRECATED. Bases are relative paths or git repository URLs specifying a directory containing a kustomization.yaml file.", "items": { "type": "string" }, "type": "array" }, "commonAnnotations": { "description": "CommonAnnotations to add to all objects", "patternProperties": { ".*": { "type": "string" } }, "type": "object" }, "buildMetadata": { "description": "BuildMetadata is a list of strings used to toggle different build options", "items": { "type": "string" }, "type": "array" }, "commonLabels": { "description": " CommonLabels to add to all objects and selectors", "patternProperties": { ".*": { "type": "string" } }, "type": "object" }, "configMapGenerator": { "description": "ConfigMapGenerator is a list of configmaps to generate from local data (one configMap per list item)", "items": { "$ref": "#/definitions/ConfigMapArgs" }, "type": "array" }, "configurations": { "description": "Configurations is a list of transformer configuration files", "items": { "type": "string" }, "type": "array" }, "crds": { "description": "Crds specifies relative paths to Custom Resource Definition files. This allows custom resources to be recognized as operands, making it possible to add them to the Resources list. CRDs themselves are not modified.", "items": { "type": "string" }, "type": "array" }, "generatorOptions": { "$ref": "#/definitions/GeneratorOptions" }, "generators": { "description": "Generators is a list of files containing custom generators", "items": { "type": "string" }, "type": "array" }, "helmCharts": { "description": "HelmCharts is a list of helm chart configuration instances", "items": { "$ref": "#/definitions/HelmChart" }, "type": "array" }, "helmGlobals": { "description": "HelmGlobals contains helm configuration that isn't chart specific", "properties": { "chartHome": { "description": "ChartHome is a file path, relative to the kustomization root, to a directory containing a subdirectory for each chart to be included in the kustomization", "type": "string" }, "configHome": { "description": "ConfigHome defines a value that kustomize should pass to helm via the HELM_CONFIG_HOME environment variable", "type": "string" } }, "additionalProperties": false, "type": "object" }, "images": { "description": "Images is a list of (image name, new name, new tag or digest) for changing image names, tags or digests. This can also be achieved with a patch, but this operator is simpler to specify.", "items": { "$ref": "#/definitions/Image" }, "type": "array" }, "inventory": { "$ref": "#/definitions/Inventory" }, "labels": { "description": "Labels to add to all objects but not selectors", "items": { "$ref": "#/definitions/Labels" }, "type": "array" }, "kind": { "type": "string" }, "metadata": { "description": "Contains metadata about a Resource", "$ref": "#/definitions/Metadata" }, "namePrefix": { "description": "NamePrefix will prefix the names of all resources mentioned in the kustomization file including generated configmaps and secrets", "type": "string" }, "nameSuffix": { "description": "NameSuffix will suffix the names of all resources mentioned in the kustomization file including generated configmaps and secrets", "type": "string" }, "namespace": { "description": "Namespace to add to all objects", "type": "string" }, "replacements": { "type": "array", "description": "Substitute field(s) in N target(s) with a field from a source", "items": { "oneOf": [ { "$ref": "#/definitions/ReplacementsPath" }, { "$ref": "#/definitions/ReplacementsInline" } ] } }, "openapi": { "description": "OpenAPI contains information about what kubernetes schema to use", "patternProperties": { ".*": { "type": "string" } }, "type": "object" }, "patches": { "description": "Apply a patch to multiple resources", "items": { "oneOf": [ { "$ref": "#/definitions/PatchesPatchPath" }, { "$ref": "#/definitions/PatchesInlinePatch" } ] }, "type": "array" }, "patchesJson6902": { "description": "JSONPatches is a list of JSONPatch for applying JSON patch. See http://jsonpatch.com", "items": { "$ref": "#/definitions/PatchJson6902" }, "type": "array" }, "patchesStrategicMerge": { "description": " PatchesStrategicMerge specifies the relative path to a file containing a strategic merge patch. URLs and globs are not supported", "items": { "type": "string" }, "type": "array" }, "replicas": { "description": "Replicas is a list of (resource name, count) for changing number of replicas for a resources. It will match any group and kind that has a matching name and that is one of: Deployment, ReplicationController, Replicaset, Statefulset.", "items": { "$ref": "#/definitions/Replicas" }, "type": "array" }, "resources": { "description": "Resources specifies relative paths to files holding YAML representations of kubernetes API objects. URLs and globs not supported.", "items": { "type": "string" }, "type": "array" }, "components": { "description": "Components are relative paths or git repository URLs specifying a directory containing a kustomization.yaml file of Kind Component.", "items": { "type": "string" }, "type": "array" }, "secretGenerator": { "description": "SecretGenerator is a list of secrets to generate from local data (one secret per list item)", "items": { "$ref": "#/definitions/SecretArgs" }, "type": "array" }, "transformers": { "description": "Transformers is a list of files containing transformers", "items": { "type": "string" }, "type": "array" }, "validators": { "description": "Validators is a list of files containing validators", "items": { "type": "string" }, "type": "array" }, "vars": { "description": "Allows things modified by kustomize to be injected into a container specification. A var is a name (e.g. FOO) associated with a field in a specific resource instance. The field must contain a value of type string, and defaults to the name field of the instance", "items": { "$ref": "#/definitions/Var" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "Labels": { "properties": { "pairs": { "description": "Pairs contains the key-value pairs for labels to add", "patternProperties": { ".*": { "type": "string" } } }, "includeSelectors": { "description": "IncludeSelectors inidicates should transformer include the fieldSpecs for selectors", "type": "boolean" }, "includeTemplates": { "description": "IncludeTemplates inidicates should transformer include the template labels", "type": "boolean" }, "fields": { "description": "FieldSpec completely specifies a kustomizable field in a k8s API object. It helps define the operands of transformations", "items": { "$ref": "#/definitions/FieldSpec" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "Metadata": { "properties": { "name": { "type": "string" }, "namespace": { "type": "string" }, "labels": { "patternProperties": { ".*": { "type": "string" } }, "type": "object" }, "annotations": { "patternProperties": { ".*": { "type": "string" } }, "type": "object" } }, "additionalProperties": false, "type": "object" }, "NameArgs": { "properties": { "name": { "type": "string" }, "namespace": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "PatchJson6902": { "oneOf": [ { "required": ["path", "target"], "properties": { "path": { "description": "relative file path for a json patch file inside a kustomization", "type": "string" }, "target": { "description": "Refers to a Kubernetes object that the json patch will be applied to. It must refer to a Kubernetes resource under the purview of this kustomization", "$ref": "#/definitions/PatchTarget" } }, "additionalProperties": false, "type": "object" }, { "required": ["patch", "target"], "properties": { "patch": { "description": "inline json patch", "type": "string" }, "target": { "description": "Refers to a Kubernetes object that the json patch will be applied to. It must refer to a Kubernetes resource under the purview of this kustomization", "$ref": "#/definitions/PatchTarget" } }, "additionalProperties": false, "type": "object" }, { "required": ["op", "path"], "properties": { "op": { "description": "The operation", "type": "string", "enum": ["add", "remove", "replace", "move", "copy", "test"] }, "from": { "description": "The source location.", "type": "string" }, "path": { "description": "The target location.", "type": "string" }, "value": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] } }, "additionalProperties": false, "type": "object" } ] }, "PatchTarget": { "required": ["kind", "name", "version"], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "name": { "type": "string" }, "namespace": { "type": "string" }, "version": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "PatchTargetOptional": { "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "name": { "type": "string" }, "namespace": { "type": "string" }, "version": { "type": "string" }, "labelSelector": { "type": "string" }, "annotationSelector": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "PatchesOptions": { "properties": { "allowNameChange": { "type": "boolean" }, "allowKindChange": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "PatchesPatchPath": { "required": ["path"], "properties": { "options": { "$ref": "#/definitions/PatchesOptions" }, "path": { "type": "string" }, "target": { "description": "Refers to a Kubernetes object that the patch will be applied to. It must refer to a Kubernetes resource under the purview of this kustomization", "$ref": "#/definitions/PatchTargetOptional" } }, "additionalProperties": false }, "PatchesInlinePatch": { "required": ["patch"], "properties": { "options": { "$ref": "#/definitions/PatchesOptions" }, "patch": { "type": "string" }, "target": { "description": "Refers to a Kubernetes object that the patch will be applied to. It must refer to a Kubernetes resource under the purview of this kustomization", "$ref": "#/definitions/PatchTargetOptional" } }, "additionalProperties": false }, "ReplacementsInline": { "required": ["source", "targets"], "type": "object", "additionalProperties": false, "properties": { "source": { "type": "object", "description": "The source of the value", "properties": { "group": { "type": "string", "description": "The group of the referent" }, "version": { "type": "string", "description": "The version of the referent" }, "kind": { "type": "string", "description": "The kind of the referent" }, "name": { "type": "string", "description": "The name of the referent" }, "namespace": { "type": "string", "description": "The namespace of the referent" }, "fieldPath": { "type": "string", "description": "The structured path to the source value" }, "options": { "type": "object", "properties": { "delimiter": { "type": "string" }, "index": { "type": "number" }, "create": { "type": "boolean" } } } } }, "targets": { "description": "The N fields to write the value to", "type": "array", "items": { "required": ["select"], "type": "object", "properties": { "select": { "type": "object", "description": "Include objects that match this", "properties": { "group": { "type": "string", "description": "The group of the referent" }, "version": { "type": "string", "description": "The version of the referent" }, "kind": { "type": "string", "description": "The kind of the referent" }, "name": { "type": "string", "description": "The name of the referent" }, "namespace": { "type": "string", "description": "The namespace of the referent" } } }, "reject": { "type": "array", "description": "Exclude objects that match this", "items": { "type": "object", "description": "Exclude objects that match this", "properties": { "group": { "type": "string", "description": "The group of the referent" }, "version": { "type": "string", "description": "The version of the referent" }, "kind": { "type": "string", "description": "The kind of the referent" }, "name": { "type": "string", "description": "The name of the referent" }, "namespace": { "type": "string", "description": "The namespace of the referent" } } } }, "fieldPaths": { "type": "array", "description": "The structured path(s) to the target nodes", "items": { "type": "string", "description": "The structured path to the source value" } }, "options": { "type": "object", "properties": { "delimiter": { "type": "string" }, "index": { "type": "number" }, "create": { "type": "boolean" } } } } } } } }, "ReplacementsPath": { "required": ["path"], "type": "object", "additionalProperties": false, "properties": { "path": { "type": "string" } } }, "Replicas": { "properties": { "name": { "type": "string" }, "count": { "type": "number" } }, "additionalProperties": false, "type": "object" }, "SecretArgs": { "description": "SecretArgs contains the metadata of how to generate a secret", "properties": { "KVSources": { "items": { "$ref": "#/definitions/KVSource" }, "type": "array" }, "behavior": { "enum": ["create", "replace", "merge"] }, "env": { "type": "string" }, "envs": { "items": { "type": "string" }, "type": "array" }, "files": { "items": { "type": "string" }, "type": "array" }, "literals": { "items": { "type": "string" }, "type": "array" }, "name": { "description": "Name - actually the partial name - of the generated resource", "type": "string" }, "namespace": { "description": "Namespace for the secret, optional", "type": "string" }, "options": { "$ref": "#/definitions/GeneratorOptions" }, "type": { "description": "Type of the secret, optional", "type": "string" } }, "additionalProperties": false, "type": "object" }, "Target": { "required": ["name"], "properties": { "apiVersion": { "type": "string" }, "group": { "type": "string" }, "kind": { "type": "string" }, "name": { "type": "string" }, "version": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "Var": { "description": "Represents a variable whose value will be sourced from a field in a Kubernetes object.", "required": ["name", "objref"], "properties": { "fieldref": { "description": "Refers to the field of the object referred to by objref whose value will be extracted for use in replacing $(FOO)", "$ref": "#/definitions/FieldSelector" }, "name": { "description": "Value of identifier name e.g. FOO used in container args, annotations, Appears in pod template as $(FOO)", "type": "string" }, "objref": { "description": "Refers to a Kubernetes resource under the purview of this kustomization", "$ref": "#/definitions/Target" } }, "additionalProperties": false, "type": "object" } }, "id": "https://json.schemastore.org/kustomization.json" }
kustomization
{ "_format": "date-time", "description": "MicroTime is version of Time with microsecond level precision.", "type": "string" }
kb_562_Normalized
{ "description": "Policy defines the configuration of how audit events are logged", "properties": { "level": { "description": "The Level that all requests are recorded at. available options: None, Metadata, Request, RequestResponse required", "type": [ "string", "null" ] }, "stages": { "description": "Stages is a list of stages for which events are created.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] } }, "required": [ "level" ], "type": "object" }
kb_744_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "schema for a product price", "id": "https://raw.githubusercontent.com/eviratec/schema/master/v1/product/price.json#", "properties": { "amount": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "schema for a currency amount", "id": "https://raw.githubusercontent.com/eviratec/schema/master/v1/currency/amount.json#", "properties": { "currency": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "schema for a currency", "id": "https://raw.githubusercontent.com/eviratec/schema/master/v1/currency.json#", "properties": { "code": { "maxLength": 4, "type": "string" }, "id": { "_format": "uuid", "type": "string" }, "label": { "maxLength": 64, "type": "string" }, "prefix": { "maxLength": 1, "type": "string" }, "separator": { "properties": { "decimal": { "maxLength": 1, "minLength": 1, "type": "string" }, "thousands": { "maxLength": 1, "minLength": 1, "type": "string" } }, "required": [ "thousands", "decimal" ], "type": "object" } }, "required": [ "id", "code", "label", "separator" ], "type": "object" }, "units": { "minimum": 0, "type": "number" } }, "required": [ "currency", "units" ], "type": "object" }, "date_from": { "_format": "date-time", "type": "string" }, "date_thru": { "_format": "date-time", "type": "string" }, "id": { "_format": "uuid", "type": "string" }, "is_public": { "type": "boolean", "value": false }, "type": { "maxLength": 18, "type": "string" } }, "required": [ "id", "type", "amount", "is_public", "date_from", "date_thru" ], "type": "object" }
o39493
{ "definitions": { "activeIndicator": { "oneOf": [ { "$ref": "#/definitions/indicator" } ], "properties": { "config": { "properties": { "checked": { "type": "boolean" } }, "required": [ "checked" ], "type": "object" } }, "required": [ "config" ], "type": "object" }, "indicator": { "properties": { "content": { "properties": { "id": { "type": "string" }, "label": { "type": "string" }, "title": { "type": "string" } }, "required": [ "label", "title", "id" ], "type": "object" } }, "required": [ "content" ], "type": "object" } }, "description": "A MWF sequence indicator component's schema definition.", "properties": { "content": { "properties": { "items": { "items": { "anyOf": [ { "$ref": "#/definitions/indicator" }, { "$ref": "#/definitions/activeIndicator" } ] }, "type": "array" } }, "required": [ "items" ], "type": "object" } }, "required": [ "content" ], "title": "Sequence indicator", "type": "object" }
o85208
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "meta": { "type": "object", "properties": { "id": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" }, "type": { "type": "string", "enum": [ "EiffelSourceChangeCreatedEvent" ] }, "version": { "type": "string", "enum": [ "1.1.0" ], "default": "1.1.0" }, "time": { "type": "integer" }, "tags": { "type": "array", "items": { "type": "string" } }, "source": { "type": "object", "properties": { "domainId": { "type": "string" }, "host": { "type": "string" }, "name": { "type": "string" }, "serializer": { "type": "object", "properties": { "groupId": { "type": "string" }, "artifactId": { "type": "string" }, "version": { "type": "string" } }, "required": [ "groupId", "artifactId", "version" ], "additionalProperties": false }, "uri": { "type": "string" } }, "additionalProperties": false }, "security": { "type": "object", "properties": { "sdm": { "type": "object", "properties": { "authorIdentity": { "type": "string" }, "encryptedDigest": { "type": "string" } }, "required": [ "authorIdentity", "encryptedDigest" ], "additionalProperties": false } }, "additionalProperties": false } }, "required": [ "id", "type", "version", "time" ], "additionalProperties": false }, "data": { "type": "object", "properties": { "author": { "type": "object", "properties": { "name": { "type": "string" }, "email": { "type": "string" }, "id": { "type": "string" }, "group": { "type": "string" } }, "additionalProperties": false }, "change": { "type": "object", "properties": { "insertions": { "type": "integer" }, "deletions": { "type": "integer" }, "files": { "type": "string" }, "details": { "type": "string" }, "tracker": { "type": "string" }, "id": { "type": "string" } }, "additionalProperties": false }, "issues": { "type": "array", "items": { "properties": { "type": { "type": "string", "enum": [ "BUG", "IMPROVEMENT", "FEATURE", "WORK_ITEM", "REQUIREMENT", "OTHER" ] }, "tracker": { "type": "string" }, "id": { "type": "string" }, "uri": { "type": "string" }, "transition": { "type": "string", "enum": [ "RESOLVED", "PARTIAL", "REMOVED" ] } }, "required": [ "type", "tracker", "id", "uri", "transition" ], "additionalProperties": false } }, "gitIdentifier": { "type": "object", "properties": { "commitId": { "type": "string" }, "branch": { "type": "string" }, "repoName": { "type": "string" }, "repoUri": { "type": "string" } }, "required": [ "commitId", "repoUri" ], "additionalProperties": false }, "svnIdentifier": { "type": "object", "properties": { "revision": { "type": "integer" }, "directory": { "type": "string" }, "repoName": { "type": "string" }, "repoUri": { "type": "string" } }, "required": [ "revision", "directory", "repoUri" ], "additionalProperties": false }, "ccCompositeIdentifier": { "type": "object", "properties": { "vobs": { "type": "array", "items": { "type": "string" } }, "branch": { "type": "string" }, "configSpec": { "type": "string" } }, "required": [ "vobs", "branch", "configSpec" ], "additionalProperties": false }, "hgIdentifier": { "type": "object", "properties": { "commitId": { "type": "string" }, "branch": { "type": "string" }, "repoName": { "type": "string" }, "repoUri": { "type": "string" } }, "required": [ "commitId", "repoUri" ], "additionalProperties": false }, "customData": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": {} }, "required": [ "key", "value" ], "additionalProperties": false } } }, "additionalProperties": false }, "links": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "target": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" } }, "required": [ "type", "target" ], "additionalProperties": false } } }, "required": [ "meta", "data", "links" ], "additionalProperties": false }
o5384
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "description": "the shipment id that can be used for requesting info about a shipment or tracking it" }, "carrier_tracking_no": { "type": "string", "description": "the original tracking number that can be used on the carriers website" }, "carrier": { "type": "string", "enum": [ "dhl", "ups", "dpd", "hermes", "gls" ], "description": "acronym of the carrier" }, "created_at": { "type": "string", "description": "timestamp the shipment was created" }, "tracking_url": { "type": "string", "description": "URL you can send your customers so they can track this shipment" }, "label_url": { "type": "string", "description": "URL where you can download the label in pdf format" }, "from": { "$ref": "#/definitions/address", "description": "If missing, the default sender address (if defined in your shipcloud account) will be used" }, "to": { "$ref": "#/definitions/address", "description": "the receivers address" }, "packages": { "type": "array", "items": { "allOf": [ { "$ref": "#/definitions/package" } ], "properties": { "id": { "type": "string", "description": "identifier for a single package" }, "tracking_events": { "type": "array", "items": { "type": "object", "properties": { "timestamp": { "type": "number", "description": "timestamp of when this event occured" }, "location": { "type": "string", "description": "location of the package at this moment" }, "status": { "type": "string", "enum": [ "shipcloud_label_created", "label_created", "picked_up", "delivered", "not_delivered", "transit", "exception", "out_for_delivery", "unknown", "canceled" ], "description": "key describing the status" }, "details": { "type": "string", "description": "message the carrier sends to describe the package status" } }, "required": [ "timestamp", "location", "status", "details" ], "additionalProperties": false } } }, "required": [ "id" ], "additionalProperties": false } }, "price": { "type": "number", "description": "price that we're going to charge you (exl. VAT)" }, "reference_number": { "type": "string", "description": "a reference number (max. 30 characters) that you want this shipment to be identified with. You can use this afterwards to easier find the shipment in the shipcloud.io backoffice" } }, "required": [ "id", "carrier_tracking_no", "carrier", "created_at", "tracking_url", "label_url", "from", "to", "packages", "price", "reference_number" ], "additionalProperties": false, "definitions": { "address": { "type": "object", "properties": { "company": { "type": "string" }, "first_name": { "type": "string" }, "last_name": { "type": "string" }, "care_of": { "type": "string" }, "street": { "type": "string" }, "street_no": { "type": "string" }, "city": { "type": "string" }, "zip_code": { "type": "string" }, "country": { "type": "string", "description": "Country as uppercase ISO 3166-1 alpha-2 code" }, "phone": { "type": "string" } }, "required": [ "last_name", "street", "street_no", "city", "zip_code", "country" ], "additionalProperties": false }, "package": { "type": "object", "properties": { "width": { "type": "number" }, "height": { "type": "number" }, "length": { "type": "number" }, "weight": { "type": "number" } }, "required": [ "width", "height", "length", "weight" ], "additionalProperties": false, "description": "defines package dimensions" } } }
o61085
{ "properties": { "User": { "_id": "/User", "properties": { "email": { "_id": "/User/email", "type": "string" }, "firstName": { "_id": "/User/firstName", "type": "string" }, "lastName": { "_id": "/User/lastName", "type": "string" }, "password": { "_id": "/User/password", "type": "string" } }, "required": [ "firstName", "lastName", "password", "email" ], "type": "object" }, "emails": { "_id": "/emails", "items": { "_id": "/emails/0", "properties": { "_id": { "id": "/emails/0/id", "type": "string" }, "author": { "_id": "/emails/0/author", "type": "string" }, "html": { "_id": "/emails/0/html", "type": "string" }, "subject": { "_id": "/emails/0/subject", "type": "string" } }, "type": "object" }, "type": "array" } }, "required": [ "User", "emails" ], "type": "object" }
o60375
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "packages": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "currentVersion": { "type": "string" }, "description": { "type": "string" }, "framework": { "type": "boolean" }, "selected": { "type": "boolean" }, "images": { "type": "object", "properties": { "icon-small": { "type": "string" }, "icon-medium": { "type": "string" }, "icon-large": { "type": "string" }, "screenshots": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "tags": { "type": "array", "items": { "type": "string", "pattern": "^[^\\s]+$" } }, "versions": { "type": "object", "patternProperties": { ".{1,}": { "type": "string" } }, "additionalProperties": true } }, "required": [ "name", "currentVersion", "versions", "description", "framework", "tags" ], "additionalProperties": false } } }, "additionalProperties": false }
o79452
{ "properties": { "_id": { "type": "integer" }, "countersigned_agreement_details": { "description": "No formal validation or schema for this JSON field.", "properties": { "approvedByUserId": { "type": "integer" } }, "type": "object" }, "countersigned_agreement_path": { "type": "string" }, "countersigned_agreement_returned_at": { "format": "date-time", "type": "string" }, "framework_id": { "type": "integer" }, "signed_agreement_details": { "type": "object" }, "signed_agreement_path": { "type": "string" }, "signed_agreement_put_on_hold_at": { "format": "date-time", "type": "string" }, "signed_agreement_returned_at": { "format": "date-time", "type": "string" }, "supplier_framework": { "description": "Relationship link to a SupplierFramework instance", "type": "object" }, "supplier_id": { "type": "integer" } }, "required": [ "id", "supplier_id", "framework_id" ], "title": "FrameworkAgreement", "type": "object" }
o21093
{ "$schema": "http://json-schema.org/draft-04/schema#", "properties": { "account_identifier": { "description": "The identifier for the platform account to fund.", "maxLength": 96, "minLength": 5, "pattern": "^[\\+\\w-]{5,96}$", "type": "string" }, "client_ip": { "description": "The IP address of the person making the purchase.", "type": "string" }, "credit_card": { "description": "Details of the credit card being used to fund the account.", "properties": { "billing_address": { "description": "The billing address associated with the credit card.", "properties": { "address": { "description": "The billing address. For multi-line addresses append subsequent lines to the first.", "maxLength": 60, "minLength": 1, "type": "string" }, "city": { "description": "The city of the customer's billing address.", "maxLength": 40, "minLength": 1, "type": "string" }, "country": { "description": "The country of the customer's billing address.", "maxLength": 60, "minLength": 1, "optional": true, "type": "string" }, "email": { "description": "The customer's email address.", "maxLength": 255, "minLength": 5, "pattern": "^\\S+@\\S+$", "type": "string" }, "f_name": { "description": "The first name associated with the customer's billing address.", "maxLength": 50, "minLength": 1, "type": "string" }, "l_name": { "description": "The last name associated with the customer's billing address.", "maxLength": 50, "minLength": 1, "type": "string" }, "state": { "description": "The state of the customer's billing address. Up to 40 characters (no symbols) or a FIPS state alpha code (e.g. AL, WA, etc).", "maxLength": 40, "minLength": 1, "type": "string" }, "zip": { "description": "The postal code of the customer's billing address.", "maxLength": 20, "minLength": 1, "type": "string" } }, "required": [ "f_name", "l_name", "address", "city", "state", "zip", "email" ], "type": "object" }, "expiration": { "description": "The expiration date of the credit card in YYYY-MM format.", "pattern": "^[0-9]{4}-(?:0[1-9]|1[0-2])$", "type": "string" }, "number": { "description": "The credit card number, preferably numbers only.", "maxLength": 20, "minLength": 10, "type": "string" }, "security_code": { "description": "The 3 or 4-digit card security code (CVV2, CVC2, or CID).", "pattern": "^\\d{3,4}$", "type": "string" } }, "required": [ "number", "expiration", "security_code", "billing_address" ], "type": "object" }, "customer": { "description": "The platform's customer.", "maxLength": 96, "minLength": 1, "type": "string" } }, "required": [ "customer", "account_identifier", "client_ip", "credit_card" ], "title": "Register a card to a platform user's account.", "type": "object" }
o50681
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "base_path", "details", "document_type", "publishing_app", "rendering_app", "routes", "schema_name", "title" ], "additionalProperties": false, "properties": { "access_limited": { "$ref": "#/definitions/access_limited" }, "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "auth_bypass_ids": { "description": "A list of ids that will allow access to this item for non-authenticated users", "$ref": "#/definitions/guid_list" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "bulk_publishing": { "type": "boolean" }, "change_note": { "type": [ "null", "string" ] }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "type": "string", "enum": [ "completed_transaction" ] }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "last_edited_at": { "description": "Last time when the content received a major or minor update.", "type": "string", "format": "date-time" }, "links": { "type": "object", "additionalProperties": false, "properties": { "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" } } }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "type": "array", "items": { "type": "string" } }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "type": "string", "enum": [ "alpha", "beta", "live" ] }, "previous_version": { "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "redirects": { "type": "array", "additionalItems": false, "items": {} }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "type": "string", "enum": [ "completed_transaction" ] }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" } }, "definitions": { "description": { "type": "string" }, "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "type": "string", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$" }, "access_limited": { "type": "object", "additionalProperties": false, "properties": { "auth_bypass_ids": { "description": "Deprecated: auth_bypass_ids should be sent as a separate field", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "A list of organisation content ids permitted access to this item", "$ref": "#/definitions/guid_list" }, "users": { "type": "array", "items": { "type": "string" } } } }, "analytics_identifier": { "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations.", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "type": "object", "additionalProperties": false, "properties": { "external_related_links": { "$ref": "#/definitions/external_related_links" }, "promotion": { "type": "object", "additionalProperties": false, "oneOf": [ { "required": [ "url" ], "properties": { "category": { "enum": [ "mot_reminder" ] } } }, { "required": [ "url" ], "properties": { "category": { "enum": [ "organ_donor" ] } } }, { "required": [ "url" ], "properties": { "category": { "enum": [ "register_to_vote" ] } } }, { "required": [ "url" ], "properties": { "category": { "enum": [ "electric_vehicle" ] } } } ], "properties": { "category": { "enum": [ "mot_reminder", "organ_donor", "register_to_vote", "electric_vehicle" ] }, "opt_in_url": { "type": "string", "format": "uri" }, "opt_out_url": { "type": "string", "format": "uri" }, "url": { "type": "string", "format": "uri" } } } } }, "external_link": { "type": "object", "required": [ "title", "url" ], "additionalProperties": false, "properties": { "title": { "type": "string" }, "url": { "type": "string", "format": "uri" } } }, "external_related_links": { "type": "array", "items": { "$ref": "#/definitions/external_link" } }, "first_published_at": { "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true }, "locale": { "type": "string", "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ] }, "public_updated_at": { "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "publishing_app_name": { "description": "The application that published this item.", "type": "string", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ] }, "rendering_app": { "description": "The application that renders this item.", "type": "string", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ] }, "route": { "type": "object", "required": [ "path", "type" ], "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } } }, "routes": { "type": "array", "items": { "$ref": "#/definitions/route" }, "minItems": 1 }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] } } }
o21171
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/getBuySellInfo.result.scheme.json", "title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b getBuySellInfo", "description": "\u0421\u0445\u0435\u043c\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b getBuySellInfo", "type": "object", "properties": { "buy_sell_info": { "description": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "object", "properties": { "is_margin_sec": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 is_margin_sec", "type": "string" }, "is_asset_sec": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 is_asset_sec", "type": "string" }, "balance": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 balance", "type": "string" }, "can_buy": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 can_buy", "type": "string" }, "can_sell": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 can_sell", "type": "string" }, "position_valuation": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 position_valuation", "type": "string" }, "value": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 value", "type": "string" }, "open_value": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 open_value", "type": "string" }, "lim_long": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 lim_long", "type": "string" }, "long_coef": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 long_coef", "type": "string" }, "lim_short": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 lim_short", "type": "string" }, "short_coef": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 short_coef", "type": "string" }, "value_coef": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 value_coef", "type": "string" }, "open_value_coef": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 open_value_coef", "type": "string" }, "share": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 share", "type": "string" }, "short_wa_price": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 short_wa_price", "type": "string" }, "long_wa_price": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 long_wa_price", "type": "string" }, "profit_loss": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 profit_loss", "type": "string" }, "spread_hc": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 spread_hc", "type": "string" }, "can_buy_own": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 can_buy_own", "type": "string" }, "can_sell_own": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 can_sell_own", "type": "string" } } } }, "additionalProperties": false, "required": [ "buy_sell_info" ] }
o5208
{ "properties": { "builtin": { "enum": [ "MODIFIABLE", "DELETABLE", "IMMUTABLE", "PARTITION_ALL" ], "readonly": true, "type": "object" }, "comment": { "type": "string" }, "description": { "readonly": true, "type": "string" }, "feature": { "enum": [ "WL", "WebLogging", "SP", "SurgeProtection", "LB", "LoadBalancing", "CS", "ContentSwitching", "CR", "CacheRedirection", "SC", "SureConnect", "CMP", "CMPcntl", "CompressionControl", "PQ", "PriorityQueuing", "HDOSP", "HttpDoSProtection", "SSLVPN", "AAA", "GSLB", "GlobalServerLoadBalancing", "SSL", "SSLOffload", "SSLOffloading", "CF", "ContentFiltering", "IC", "IntegratedCaching", "OSPF", "OSPFRouting", "RIP", "RIPRouting", "BGP", "BGPRouting", "REWRITE", "IPv6PT", "IPv6protocoltranslation", "AppFw", "ApplicationFirewall", "RESPONDER", "HTMLInjection", "push", "NSPush", "NetScalerPush", "AppFlow", "CloudBridge", "ISIS", "ISISRouting", "CH", "CallHome", "AppQoE", "ContentAccelerator", "SYSTEM", "RISE", "FEO", "LSN", "LargeScaleNAT", "RDPProxy", "Rep", "Reputation", "URLFiltering", "VideoOptimization", "ForwardProxy", "SSLInterception", "AdaptiveTCP", "CQA", "CI", "ContentInspection", "Bot" ], "readonly": true, "type": "string" }, "flowtype": { "readonly": true, "type": "integer" }, "gotopriorityexpression": { "readonly": true, "type": "string" }, "hits": { "readonly": true, "type": "integer" }, "invoke_labelname": { "readonly": true, "type": "string" }, "isdefault": { "readonly": true, "type": "boolean" }, "labelname": { "type": "string" }, "labeltype": { "enum": [ "reqvserver", "resvserver", "policylabel" ], "readonly": true, "type": "string" }, "newname": { "type": "string" }, "numpol": { "readonly": true, "type": "integer" }, "priority": { "readonly": true, "type": "integer" }, "transform": { "enum": [ "http_req", "http_res", "othertcp_req", "othertcp_res", "url", "text", "clientless_vpn_req", "clientless_vpn_res", "sipudp_req", "sipudp_res", "siptcp_req", "siptcp_res", "diameter_req", "diameter_res", "radius_req", "radius_res", "dns_req", "dns_res" ], "type": "string" } }, "title": "rewritepolicylabel", "type": "object" }
o30877
{ "definitions": { "typedterminal": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "primitive", "valuespace", "propertyref", "keyword" ] }, "name": { "type": "string" }, "optional": { "type": "boolean" }, "range": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "type", "name" ] }, "stringterminal": { "type": "object", "properties": { "type": { "type": "string", "pattern": "^string$" }, "content": { "type": "string" } }, "additionalProperties": false, "required": [ "type", "content" ] }, "oneOf": { "type": "object", "properties": { "oneOf": { "type": "array", "items": { "$ref": "#/definitions/component" } }, "nonempty": { "type": "boolean" } }, "additionalProperties": false, "required": [ "oneOf" ] }, "anyOf": { "type": "object", "properties": { "anyOf": { "type": "array", "items": { "$ref": "#/definitions/component" } }, "nonempty": { "type": "boolean" } }, "additionalProperties": false, "required": [ "anyOf" ] }, "allOf": { "type": "object", "properties": { "allOf": { "type": "array", "items": { "$ref": "#/definitions/component" } }, "nonempty": { "type": "boolean" } }, "additionalProperties": false, "required": [ "allOf" ] }, "sequence": { "type": "object", "properties": { "type": { "type": "string", "pattern": "^array$" }, "items": { "oneOf": [ { "type": "array", "items": { "$ref": "#/definitions/component" } }, { "$ref": "#/definitions/component" } ] }, "minItems": { "type": "number" }, "maxItems": { "type": "number" } }, "additionalProperties": false, "required": [ "type", "items" ] }, "function": { "type": "object", "properties": { "type": { "type": "string", "pattern": "^function$" }, "arguments": { "oneOf": [ { "type": "array", "items": { "$ref": "#/definitions/component" } }, { "$ref": "#/definitions/component" } ] } }, "additionalProperties": false, "required": [ "type", "arguments" ] }, "component": { "oneOf": [ { "$ref": "#/definitions/typedterminal" }, { "$ref": "#/definitions/stringterminal" }, { "$ref": "#/definitions/oneOf" }, { "$ref": "#/definitions/anyOf" }, { "$ref": "#/definitions/allOf" }, { "$ref": "#/definitions/sequence" }, { "$ref": "#/definitions/function" } ] } }, "$ref": "#/definitions/component" }
o81108
{ "definitions": { "date": { "format": "string", "type": "string" }, "timestamp": { "format": "date-time", "type": "string" } }, "properties": { "d": { "$ref": "#/definitions/date" }, "ts": { "$ref": "#/definitions/timestamp" } }, "type": "object" }
o26198
{ "additionalProperties": false, "description": "Schema for a link click event", "properties": { "elementClasses": { "items": { "type": "string" }, "type": "array" }, "elementId": { "type": "string" }, "elementTarget": { "type": "string" }, "targetUrl": { "minLength": 1, "type": "string" } }, "required": [ "targetUrl" ], "self": { "format": "jsonschema", "name": "link_click", "vendor": "com.snowplowanalytics.snowplow", "version": "1-0-0" }, "type": "object" }
sp_294_Normalized
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSetCondition": { "description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "message": { "description": "A human readable message indicating details about the transition.", "type": "string" }, "reason": { "description": "The reason for the condition's last transition.", "type": "string" }, "status": { "description": "Status of the condition, one of True, False, Unknown.", "type": "string" }, "type": { "description": "Type of DaemonSet condition.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "DaemonSetStatus represents the current status of a daemon set.", "properties": { "collisionCount": { "description": "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", "format": "int32", "type": [ "integer", "null" ] }, "conditions": { "description": "Represents the latest available observations of a DaemonSet's current state.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSetCondition" }, "type": [ "array", "null" ], "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "currentNumberScheduled": { "description": "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", "format": "int32", "type": [ "integer", "null" ] }, "desiredNumberScheduled": { "description": "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", "format": "int32", "type": [ "integer", "null" ] }, "numberAvailable": { "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)", "format": "int32", "type": [ "integer", "null" ] }, "numberMisscheduled": { "description": "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", "format": "int32", "type": [ "integer", "null" ] }, "numberReady": { "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.", "format": "int32", "type": [ "integer", "null" ] }, "numberUnavailable": { "description": "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)", "format": "int32", "type": [ "integer", "null" ] }, "observedGeneration": { "description": "The most recent generation observed by the daemon set controller.", "format": "int64", "type": [ "integer", "null" ] }, "updatedNumberScheduled": { "description": "The total number of nodes that are running updated daemon pod", "format": "int32", "type": [ "integer", "null" ] } }, "required": [ "currentNumberScheduled", "numberMisscheduled", "desiredNumberScheduled", "numberReady" ], "type": "object" }
kb_244_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Reference of exchanges published", "id": "http://schemas.taskcluster.net/base/v1/exchanges-reference.json#", "properties": { "$schema": { "_format": "uri", "description": "Link to schema for this reference. That is a link to this very document. Typically used to identify what kind of reference this file is.", "title": "Schema Reference", "type": "string" }, "description": { "description": "Description of set of exchanges in markdown", "type": "string" }, "entries": { "items": { "additionalProperties": false, "properties": { "description": { "description": "Description (ie. documentation) for the exchange", "type": "string" }, "exchange": { "description": "Exchange name on AMQP server, must be prefixed with `exchangePrefix` from this document.", "type": "string" }, "name": { "description": "Name of exchange, this is a stable identifier for use in auto-generated client libraries", "type": "string" }, "routingKey": { "items": { "additionalProperties": false, "properties": { "constant": { "description": "Constant to be used for this field, cannot be overwritten, only present if applicable.", "type": "string" }, "multipleWords": { "description": "True, if key may contain dots, which AMQP will consider as words. This determines if `#` or `*` should be used in client libraries", "type": "boolean" }, "name": { "description": "Identifier usable in client libraries", "type": "string" }, "required": { "description": "True, if the key is always present, if `false` the value `_` will be used in place when no appropriate value is available for the key.", "type": "boolean" }, "summary": { "description": "Short description of key in markdown", "type": "string" } }, "required": [ "name", "summary", "multipleWords", "required" ], "type": "object" }, "type": "array" }, "schema": { "_format": "uri", "description": "JSON schema for messages posted on this exchange", "type": "string" }, "title": { "description": "Title of exchange entry", "type": "string" }, "type": { "description": "Type of entry, currently only `topic-exchange`.", "enum": [ "topic-exchange" ], "type": "string" } }, "required": [ "type", "exchange", "name", "title", "description", "routingKey", "schema" ], "type": "object" }, "type": "array" }, "exchangePrefix": { "description": "Prefix for all exchanges described in this document", "type": "string" }, "title": { "description": "Title for set of exchanges in markdown", "type": "string" }, "version": { "description": "Exchange reference version", "enum": [ 0, "0.2.0" ] } }, "required": [ "version", "$schema", "title", "description", "exchangePrefix", "entries" ], "title": "Exchange Reference File", "type": "object" }
o79651
{ "additionalProperties": false, "definitions": { "asset": { "additionalProperties": false, "description": "Assets reflecting files in primary storage.", "properties": { "clip": { "$ref": "#/definitions/segment", "description": "Portion of source file to extract as this asset. Note that segment is relative to clip start." }, "file": { "description": "Relative path to file under '/nyu/stage/$directory'.", "type": "string" }, "id": { "type": "integer" }, "name": { "type": "string" }, "options": { "description": "Additional transcode options to pass to ffmpeg.", "items": { "type": "string" }, "type": "array" }, "position": { "anyOf": [ { "$ref": "#/definitions/offset", "description": "Start point only (end point inferred from length)." }, { "$ref": "#/definitions/segment" }, { "description": "Automatically postioned immediately following previous positioned asset.", "enum": [ "auto" ], "type": "string" } ] }, "release": { "$ref": "#/definitions/release" }, "replace": { "description": "Original file staging path or asset id to replace.", "type": [ "string", "integer" ] } }, "title": "file", "type": "object" }, "citation": { "additionalProperties": false, "description": "Publications/products corresponding to study volumes.", "properties": { "authors": { "items": { "type": "string" }, "type": "array" }, "head": { "type": "string" }, "title": { "type": "string" }, "url": { "format": "uri", "title": "URL or DOI", "type": "string" }, "year": { "maximum": 2900, "minimum": 1900, "type": "integer" } }, "required": [ "head" ], "type": "object" }, "container": { "additionalProperties": false, "description": "Organizational unit within volume containing related files (with common annotations), often corresponding to an individual data session (single visit/acquisition/participant/group/day).", "properties": { "assets": { "description": "Attachment point of assets, which, in the case of timeseries data, should match asset.duration.", "items": { "$ref": "#/definitions/asset" }, "type": "array" }, "date": { "$ref": "#/definitions/date" }, "id": { "type": "integer" }, "key": { "type": "string" }, "name": { "type": "string" }, "records": { "description": "Attachment of records to slots.", "items": { "$ref": "#/definitions/record" }, "type": "array" }, "release": { "anyOf": [ { "$ref": "#/definitions/release" } ], "default": null, "description": "Sharing/release permissions granted by participants on (portions of) contained data." }, "top": { "default": false, "type": "boolean" } }, "required": [ "key" ], "title": "session or materials", "type": "object" }, "date": { "pattern": "^[12][0-9]{3}-[01][0-9]-[0-3][0-9]$", "type": "string" }, "link": { "additionalProperties": false, "description": "Link to externals resources/references.", "properties": { "head": { "type": "string" }, "url": { "format": "uri", "title": "URL or DOI", "type": "string" } }, "required": [ "head", "url" ], "type": "object" }, "numeric": { "pattern": "^[0-9]*(\\.[0-9]*)?$", "type": "string" }, "offset": { "description": "Point in time in milliseconds or MM:SS.sss, used as endpoint for segment. Null represents indeterminate value, usually representing +-Infinity as an endpoint.", "pattern": "^[-+]?([0-9]+:){0,2}[0-9]+(\\.[0-9]*)?$", "type": [ "number", "string", "null" ] }, "position": { "default": [ null, null ] }, "record": { "additionalProperties": false, "description": "Sets of metadata measurements organized into or applying to a single cohesive unit. These are assumed to be unique within a volume, such that two identical records are considered the same object.", "properties": { "ID": { "type": "string" }, "birth weight": { "$ref": "#/definitions/numeric" }, "birthdate": { "$ref": "#/definitions/date" }, "category": { "description": "Types of records that are relevant for data organization.", "enum": [ "participant", "pilot", "exclusion", "condition", "group", "task", "context" ] }, "country": { "type": "string" }, "description": { "type": "string" }, "disability": { "type": "string" }, "ethnicity": { "enum": [ "Not Hispanic or Latino", "Hispanic or Latino" ], "type": "string" }, "gender": { "enum": [ "Female", "Male" ], "type": "string" }, "gestational age": { "$ref": "#/definitions/numeric" }, "id": { "type": "integer" }, "info": { "type": "string" }, "key": { "type": "string" }, "language": { "type": "string" }, "name": { "type": "string" }, "positions": { "items": { "$ref": "#/definitions/segment" }, "type": "array" }, "pregnancy term": { "enum": [ "Full term", "Preterm" ], "type": "string" }, "race": { "enum": [ "American Indian or Alaska Native", "Asian", "Native Hawaiian or Other Pacific Islander", "Black or African American", "White", "More than one", "Unknown or not reported" ], "type": "string" }, "reason": { "enum": [ "Did not meet inclusion criteria", "Procedural/experimenter error", "Withdrew/fussy/tired", "Outlier" ], "type": "string" }, "setting": { "enum": [ "Lab", "Home", "Classroom", "Outdoor", "Clinic" ], "type": "string" }, "state": { "enum": [ "AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "DC", "FL", "GA", "HI", "ID", "IL", "IN", "IA", "KS", "KY", "LA", "ME", "MT", "NE", "NV", "NH", "NJ", "NM", "NY", "NC", "ND", "OH", "OK", "OR", "MD", "MA", "MI", "MN", "MS", "MO", "PA", "RI", "SC", "SD", "TN", "TX", "UT", "VT", "VA", "WA", "WV", "WI", "WY" ], "type": "string" }, "summary": { "type": "string" } }, "required": [ "key", "category" ], "type": "object" }, "release": { "description": "Levels at which participants or researchers may choose to share data.", "enum": [ null, "PRIVATE", "SHARED", "EXCERPTS", "PUBLIC" ], "title": "sharing release level" }, "segment": { "additionalItems": false, "default": [ null, null ], "description": "Explicit range of time (within a container): an empty segment, a singleton point in time, or a start and end point.", "items": { "$ref": "#/definitions/offset" }, "maxItems": 2, "type": "array" } }, "description": "Basic organizational unit for data.", "properties": { "containers": { "description": "The first container is required and must have 'top' set.", "items": { "$ref": "#/definitions/container" }, "minItems": 1, "type": "array" }, "directory": { "default": "", "description": "Staging directory (normally within /nyu/stage) within which to find all asset files.", "title": "Asset base directory", "type": "string" }, "name": { "type": "string" } }, "required": [ "name", "containers" ], "title": "Databrary Volume", "type": "object" }
o34871
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authorization_v1beta1_NonResourceAttributes": { "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface", "properties": { "path": { "description": "Path is the URL path of the request", "type": "string" }, "verb": { "description": "Verb is the standard HTTP verb", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authorization_v1beta1_ResourceAttributes": { "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface", "properties": { "group": { "description": "Group is the API Group of the Resource. \"*\" means all.", "type": "string" }, "name": { "description": "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.", "type": "string" }, "namespace": { "description": "Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces \"\" (empty) is defaulted for LocalSubjectAccessReviews \"\" (empty) is empty for cluster-scoped resources \"\" (empty) means \"all\" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview", "type": "string" }, "resource": { "description": "Resource is one of the existing resource types. \"*\" means all.", "type": "string" }, "subresource": { "description": "Subresource is one of the existing resource types. \"\" means none.", "type": "string" }, "verb": { "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", "type": "string" }, "version": { "description": "Version is the API Version of the Resource. \"*\" means all.", "type": "string" } }, "type": "object" } }, "description": "SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", "properties": { "extra": { "additionalProperties": { "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.", "type": [ "object", "null" ] }, "group": { "description": "Groups is the groups you're testing for.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "nonResourceAttributes": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authorization_v1beta1_NonResourceAttributes", "description": "NonResourceAttributes describes information for a non-resource access request" }, "resourceAttributes": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authorization_v1beta1_ResourceAttributes", "description": "ResourceAuthorizationAttributes describes information for a resource access request" }, "uid": { "description": "UID information about the requesting user.", "type": [ "string", "null" ] }, "user": { "description": "User is the user you're testing for. If you specify \"User\" but not \"Group\", then is it interpreted as \"What if User were not a member of any groups", "type": [ "string", "null" ] } }, "type": "object" }
kb_1045_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "", "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkThumbHeight": { "type": "number" }, "bookmarkThumbWidth": { "type": "number" }, "leftPanelEnabled": { "type": "boolean" }, "limitLocales": { "type": "boolean" }, "minWidthBreakPoint": { "type": "number" }, "navigatorEnabled": { "type": "boolean" }, "openTemplate": { "type": "string", "minLength": 1 }, "overrideFullScreen": { "type": "boolean" }, "pagingEnabled": { "type": "boolean" }, "pessimisticAccessControl": { "type": "boolean" }, "preserveViewport": { "type": "boolean" }, "rightPanelEnabled": { "type": "boolean" }, "saveUserSettings": { "type": "boolean" }, "searchWithinEnabled": { "type": "boolean" }, "theme": { "type": "string", "minLength": 1 }, "tokenStorage": { "type": "string", "minLength": 1 }, "useArrowKeysToNavigate": { "type": "boolean" } }, "required": [ "bookmarkThumbHeight", "bookmarkThumbWidth", "leftPanelEnabled", "limitLocales", "minWidthBreakPoint", "navigatorEnabled", "openTemplate", "overrideFullScreen", "pagingEnabled", "pessimisticAccessControl", "preserveViewport", "rightPanelEnabled", "saveUserSettings", "searchWithinEnabled", "theme", "tokenStorage", "useArrowKeysToNavigate" ] }, "modules": { "type": "object", "properties": { "contentLeftPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "elideCount": { "type": "number" }, "expandFullEnabled": { "type": "boolean" }, "galleryThumbChunkedResizingEnabled": { "type": "boolean" }, "galleryThumbChunkedResizingThreshold": { "type": "number" }, "galleryThumbHeight": { "type": "number" }, "galleryThumbLoadPadding": { "type": "number" }, "galleryThumbWidth": { "type": "number" }, "oneColThumbHeight": { "type": "number" }, "oneColThumbWidth": { "type": "number" }, "pageModeEnabled": { "type": "boolean" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" }, "tabOrder": { "type": "string" }, "thumbsEnabled": { "type": "boolean" }, "thumbsExtraHeight": { "type": "number" }, "thumbsImageFadeInDuration": { "type": "number" }, "thumbsLoadRange": { "type": "number" }, "treeEnabled": { "type": "boolean" }, "twoColThumbHeight": { "type": "number" }, "twoColThumbWidth": { "type": "number" } }, "required": [ "elideCount", "expandFullEnabled", "galleryThumbChunkedResizingEnabled", "galleryThumbChunkedResizingThreshold", "galleryThumbHeight", "galleryThumbLoadPadding", "galleryThumbWidth", "oneColThumbHeight", "oneColThumbWidth", "pageModeEnabled", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "tabOrder", "thumbsEnabled", "thumbsExtraHeight", "thumbsImageFadeInDuration", "thumbsLoadRange", "treeEnabled", "twoColThumbHeight", "twoColThumbWidth" ] }, "content": { "type": "object", "properties": { "collapse": { "type": "string", "minLength": 1 }, "collapseFull": { "type": "string", "minLength": 1 }, "date": { "type": "string", "minLength": 1 }, "expand": { "type": "string", "minLength": 1 }, "expandFull": { "type": "string", "minLength": 1 }, "index": { "type": "string", "minLength": 1 }, "select": { "type": "string", "minLength": 1 }, "selectAll": { "type": "string", "minLength": 1 }, "selection": { "type": "string", "minLength": 1 }, "sortBy": { "type": "string", "minLength": 1 }, "thumbnails": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "volume": { "type": "string", "minLength": 1 } }, "required": [ "collapse", "collapseFull", "date", "expand", "expandFull", "index", "select", "selectAll", "selection", "sortBy", "thumbnails", "title", "volume" ] } }, "required": [ "options", "content" ] }, "dialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 } }, "required": [ "close" ] } }, "required": [ "content" ] }, "downloadDialogue": { "type": "object", "properties": { "options": { "type": "object", "properties": { "confinedImageSize": { "type": "number" }, "maxImageWidth": { "type": "number" }, "selectionEnabled": { "type": "boolean" } }, "required": [ "confinedImageSize", "maxImageWidth", "selectionEnabled" ] }, "content": { "type": "object", "properties": { "currentViewAsJpg": { "type": "string", "minLength": 1 }, "download": { "type": "string", "minLength": 1 }, "downloadSelection": { "type": "string", "minLength": 1 }, "downloadSelectionButton": { "type": "string", "minLength": 1 }, "editSettings": { "type": "string", "minLength": 1 }, "entireDocument": { "type": "string", "minLength": 1 }, "entireFileAsOriginal": { "type": "string", "minLength": 1 }, "noneAvailable": { "type": "string", "minLength": 1 }, "pagingNote": { "type": "string", "minLength": 1 }, "preview": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "wholeImageHighRes": { "type": "string", "minLength": 1 }, "wholeImageLowResAsJpg": { "type": "string", "minLength": 1 } }, "required": [ "currentViewAsJpg", "download", "downloadSelection", "downloadSelectionButton", "editSettings", "entireDocument", "entireFileAsOriginal", "noneAvailable", "pagingNote", "preview", "title", "wholeImageHighRes", "wholeImageLowResAsJpg" ] } }, "required": [ "options", "content" ] }, "embedDialogue": { "type": "object", "properties": { "options": { "type": "object", "properties": { "embedTemplate": { "type": "string", "minLength": 1 } }, "required": [ "embedTemplate" ] }, "content": { "type": "object", "properties": { "customSize": { "type": "string", "minLength": 1 }, "height": { "type": "string", "minLength": 1 }, "instructions": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "width": { "type": "string", "minLength": 1 } }, "required": [ "customSize", "height", "instructions", "title", "width" ] } }, "required": [ "options", "content" ] }, "footerPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkEnabled": { "type": "boolean" }, "downloadEnabled": { "type": "boolean" }, "embedEnabled": { "type": "boolean" }, "feedbackEnabled": { "type": "boolean" }, "fullscreenEnabled": { "type": "boolean" }, "minimiseButtons": { "type": "boolean" }, "openEnabled": { "type": "boolean" } }, "required": [ "bookmarkEnabled", "downloadEnabled", "embedEnabled", "feedbackEnabled", "fullscreenEnabled", "minimiseButtons", "openEnabled" ] }, "content": { "type": "object", "properties": { "bookmark": { "type": "string", "minLength": 1 }, "download": { "type": "string", "minLength": 1 }, "embed": { "type": "string", "minLength": 1 }, "exitFullScreen": { "type": "string", "minLength": 1 }, "fullScreen": { "type": "string", "minLength": 1 }, "open": { "type": "string", "minLength": 1 } }, "required": [ "bookmark", "download", "embed", "exitFullScreen", "fullScreen", "open" ] } }, "required": [ "options", "content" ] }, "genericDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "emptyValue": { "type": "string", "minLength": 1 }, "invalidNumber": { "type": "string", "minLength": 1 }, "noMatches": { "type": "string", "minLength": 1 }, "ok": { "type": "string", "minLength": 1 }, "pageNotFound": { "type": "string", "minLength": 1 }, "refresh": { "type": "string", "minLength": 1 } }, "required": [ "emptyValue", "invalidNumber", "noMatches", "ok", "pageNotFound", "refresh" ] } }, "required": [ "content" ] }, "helpDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "text": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "text", "title" ] } }, "required": [ "content" ] }, "moreInfoRightPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "aggregateValues": { "type": "string" }, "canvasHeader": { "type": "string", "minLength": 1 }, "canvasExclude": { "type": "string" }, "displayOrder": { "type": "string" }, "manifestExclude": { "type": "string" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" }, "manifestHeader": { "type": "string", "minLength": 1 }, "textLimit": { "type": "number" }, "textLimitType": { "type": "string", "minLength": 1 } }, "required": [ "aggregateValues", "canvasHeader", "canvasExclude", "displayOrder", "manifestExclude", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "manifestHeader", "textLimit", "textLimitType" ] }, "content": { "type": "object", "properties": { "attribution": { "type": "string", "minLength": 1 }, "collapse": { "type": "string", "minLength": 1 }, "collapseFull": { "type": "string", "minLength": 1 }, "description": { "type": "string", "minLength": 1 }, "expand": { "type": "string", "minLength": 1 }, "expandFull": { "type": "string", "minLength": 1 }, "holdingText": { "type": "string", "minLength": 1 }, "less": { "type": "string", "minLength": 1 }, "license": { "type": "string", "minLength": 1 }, "logo": { "type": "string", "minLength": 1 }, "more": { "type": "string", "minLength": 1 }, "noData": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "attribution", "collapse", "collapseFull", "description", "expand", "expandFull", "holdingText", "less", "license", "logo", "more", "noData", "title" ] } }, "required": [ "options", "content" ] }, "pagingHeaderPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "autoCompleteBoxEnabled": { "type": "boolean" }, "imageSelectionBoxEnabled": { "type": "boolean" }, "localeToggleEnabled": { "type": "boolean" }, "pageModeEnabled": { "type": "boolean" }, "pagingToggleEnabled": { "type": "boolean" } }, "required": [ "autoCompleteBoxEnabled", "imageSelectionBoxEnabled", "localeToggleEnabled", "pageModeEnabled", "pagingToggleEnabled" ] }, "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 }, "emptyValue": { "type": "string", "minLength": 1 }, "first": { "type": "string", "minLength": 1 }, "firstImage": { "type": "string", "minLength": 1 }, "firstPage": { "type": "string", "minLength": 1 }, "folio": { "type": "string", "minLength": 1 }, "go": { "type": "string", "minLength": 1 }, "help": { "type": "string", "minLength": 1 }, "image": { "type": "string", "minLength": 1 }, "last": { "type": "string", "minLength": 1 }, "lastImage": { "type": "string", "minLength": 1 }, "lastPage": { "type": "string", "minLength": 1 }, "next": { "type": "string", "minLength": 1 }, "nextImage": { "type": "string", "minLength": 1 }, "nextPage": { "type": "string", "minLength": 1 }, "of": { "type": "string", "minLength": 1 }, "oneUp": { "type": "string", "minLength": 1 }, "page": { "type": "string", "minLength": 1 }, "previous": { "type": "string", "minLength": 1 }, "previousImage": { "type": "string", "minLength": 1 }, "previousPage": { "type": "string", "minLength": 1 }, "settings": { "type": "string", "minLength": 1 }, "twoUp": { "type": "string", "minLength": 1 } }, "required": [ "close", "emptyValue", "first", "firstImage", "firstPage", "folio", "go", "help", "image", "last", "lastImage", "lastPage", "next", "nextImage", "nextPage", "of", "oneUp", "page", "previous", "previousImage", "previousPage", "settings", "twoUp" ] } }, "required": [ "options", "content" ] }, "seadragonCenterPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "animationTime": { "type": "number" }, "autoHideControls": { "type": "boolean" }, "blendTime": { "type": "number" }, "constrainDuringPan": { "type": "boolean" }, "controlsFadeAfterInactive": { "type": "number" }, "controlsFadeDelay": { "type": "number" }, "controlsFadeLength": { "type": "number" }, "defaultZoomLevel": { "type": "number" }, "immediateRender": { "type": "boolean" }, "maxZoomLevel": { "type": "number" }, "navigatorPosition": { "type": "string", "minLength": 1 }, "pageGap": { "type": "number" }, "showHomeControl": { "type": "boolean" }, "trimAttributionCount": { "type": "number" }, "visibilityRatio": { "type": "number" } }, "required": [ "animationTime", "autoHideControls", "blendTime", "constrainDuringPan", "controlsFadeAfterInactive", "controlsFadeDelay", "controlsFadeLength", "defaultZoomLevel", "immediateRender", "maxZoomLevel", "navigatorPosition", "pageGap", "showHomeControl", "trimAttributionCount", "visibilityRatio" ] }, "content": { "type": "object", "properties": { "acknowledgements": { "type": "string", "minLength": 1 }, "goHome": { "type": "string", "minLength": 1 }, "imageUnavailable": { "type": "string", "minLength": 1 }, "next": { "type": "string", "minLength": 1 }, "previous": { "type": "string", "minLength": 1 }, "rotateRight": { "type": "string", "minLength": 1 }, "zoomIn": { "type": "string", "minLength": 1 }, "zoomOut": { "type": "string", "minLength": 1 } }, "required": [ "acknowledgements", "goHome", "imageUnavailable", "next", "previous", "rotateRight", "zoomIn", "zoomOut" ] } }, "required": [ "options", "content" ] }, "searchFooterPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "elideDetailsTermsCount": { "type": "number" }, "elideResultsTermsCount": { "type": "number" }, "pageModeEnabled": { "type": "boolean" } }, "required": [ "elideDetailsTermsCount", "elideResultsTermsCount", "pageModeEnabled" ] }, "content": { "type": "object", "properties": { "clearSearch": { "type": "string", "minLength": 1 }, "defaultLabel": { "type": "string", "minLength": 1 }, "displaying": { "type": "string", "minLength": 1 }, "enterKeyword": { "type": "string", "minLength": 1 }, "image": { "type": "string", "minLength": 1 }, "imageCaps": { "type": "string", "minLength": 1 }, "instanceFound": { "type": "string", "minLength": 1 }, "instancesFound": { "type": "string", "minLength": 1 }, "nextResult": { "type": "string", "minLength": 1 }, "page": { "type": "string", "minLength": 1 }, "pageCaps": { "type": "string", "minLength": 1 }, "previousResult": { "type": "string", "minLength": 1 }, "resultFoundFor": { "type": "string", "minLength": 1 }, "resultsFoundFor": { "type": "string", "minLength": 1 }, "searchWithin": { "type": "string", "minLength": 1 } }, "required": [ "clearSearch", "defaultLabel", "displaying", "enterKeyword", "image", "imageCaps", "instanceFound", "instancesFound", "nextResult", "page", "pageCaps", "previousResult", "resultFoundFor", "resultsFoundFor", "searchWithin" ] } }, "required": [ "options", "content" ] }, "settingsDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "locale": { "type": "string", "minLength": 1 }, "navigatorEnabled": { "type": "string", "minLength": 1 }, "pagingEnabled": { "type": "string", "minLength": 1 }, "preserveViewport": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "website": { "type": "string", "minLength": 1 } }, "required": [ "locale", "navigatorEnabled", "pagingEnabled", "preserveViewport", "title", "website" ] } }, "required": [ "content" ] }, "clickThroughDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "viewTerms": { "type": "string", "minLength": 1 } }, "required": [ "viewTerms" ] } }, "required": [ "content" ] }, "loginDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "login": { "type": "string", "minLength": 1 }, "cancel": { "type": "string", "minLength": 1 } }, "required": [ "login", "cancel" ] } }, "required": [ "content" ] }, "restrictedDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "cancel": { "type": "string", "minLength": 1 } }, "required": [ "cancel" ] } }, "required": [ "content" ] } }, "required": [ "contentLeftPanel", "dialogue", "downloadDialogue", "embedDialogue", "footerPanel", "genericDialogue", "helpDialogue", "moreInfoRightPanel", "pagingHeaderPanel", "seadragonCenterPanel", "searchFooterPanel", "settingsDialogue", "clickThroughDialogue", "loginDialogue", "restrictedDialogue" ] }, "localisation": { "type": "object", "properties": { "label": { "type": "string", "minLength": 1 }, "locales": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "name", "label" ], "properties": { "name": { "type": "string", "minLength": 1 }, "label": { "type": "string", "minLength": 1 } } } } }, "required": [ "label", "locales" ] }, "content": { "type": "object", "properties": { "authCORSError": { "type": "string", "minLength": 1 }, "authorisationFailedMessage": { "type": "string", "minLength": 1 }, "canvasIndexOutOfRange": { "type": "string", "minLength": 1 }, "degradedResourceMessage": { "type": "string", "minLength": 1 }, "degradedResourceLogin": { "type": "string", "minLength": 1 }, "forbiddenResourceMessage": { "type": "string", "minLength": 1 } }, "required": [ "authCORSError", "authorisationFailedMessage", "canvasIndexOutOfRange", "degradedResourceMessage", "degradedResourceLogin", "forbiddenResourceMessage" ] } }, "required": [ "options", "modules", "localisation", "content" ] }
o66714
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "nifti" ], "type": "object", "properties": { "nifti": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } } } }, "config": { "type": "object", "properties": { "output_name": { "type": "string" } } } }, "title": "Invocation manifest for FSL: fslreorient2std - Reorient Image to Standard Template" }
o41283
{ "properties": { "_id": { "id": "id", "type": "string" }, "lines": { "items": { "items": { "type": "number" }, "type": "array" }, "type": "array" } }, "required": [ "lines", "id" ], "type": "object" }
o43083
{ "properties": { "check_in_date": { "description": "The check-in date", "format": "date", "type": "string" }, "check_out_date": { "description": "The check-out date", "format": "date", "type": "string" }, "latitude": { "description": "The latitude of the current location", "type": "number" }, "longitude": { "description": "The longitude of the current location", "type": "number" } }, "required": [ "latitude", "longitude", "check_in_date", "check_out_date" ], "type": "object" }
find_nearby_hotels_b2edf798
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "in_file" ], "type": "object", "properties": { "t2_guided": { "type": "object", "properties": {} }, "in_file": { "type": "object", "properties": {} }, "out_file": { "type": "object", "properties": {} } } }, "config": { "required": [ "output_type" ], "type": "object", "properties": { "surfaces": { "type": "boolean" }, "vertical_gradient": { "type": "number" }, "remove_eyes": { "type": "boolean" }, "frac": { "type": "number" }, "reduce_bias": { "type": "boolean" }, "no_output": { "type": "boolean" }, "outline": { "type": "boolean" }, "args": { "type": "string" }, "mask": { "type": "boolean" }, "functional": { "type": "boolean" }, "padding": { "type": "boolean" }, "mesh": { "type": "boolean" }, "radius": { "type": "integer" }, "skull": { "type": "boolean" }, "output_type": { "default": "NIFTI_GZ", "enum": [ "NIFTI_PAIR", "NIFTI_PAIR_GZ", "NIFTI_GZ", "NIFTI" ], "type": "string" }, "threshold": { "type": "boolean" }, "robust": { "type": "boolean" }, "center": { "type": "array", "items": { "type": "integer" } } } } }, "title": "Invocation manifest for FSL BET (Brain Extraction Tool)" }
o41375
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "MyGame_Example_TestEnum": { "type": "string", "enum": [ "A", "B", "C" ] }, "MyGame_Example_NestedStruct": { "type": "object", "properties": { "a": { "type": "array", "items": { "type": "number" }, "minItems": 2, "maxItems": 2 }, "b": { "$ref": "#/definitions/MyGame_Example_TestEnum" }, "c": { "$ref": "#/definitions/MyGame_Example_TestEnum", "minItems": 2, "maxItems": 2 } }, "additionalProperties": false }, "MyGame_Example_ArrayStruct": { "type": "object", "properties": { "a": { "type": "number" }, "b": { "type": "array", "items": { "type": "number" }, "minItems": 15, "maxItems": 15 }, "c": { "type": "number" }, "d": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_NestedStruct" }, "minItems": 2, "maxItems": 2 } }, "additionalProperties": false }, "MyGame_Example_ArrayTable": { "type": "object", "properties": { "a": { "$ref": "#/definitions/MyGame_Example_ArrayStruct" } }, "additionalProperties": false } }, "$ref": "#/definitions/MyGame_Example_ArrayTable" }
o90894
{ "properties": { "height": { "description": "The height of the package in inches", "type": "number" }, "length": { "description": "The length of the package in inches", "type": "number" }, "weight": { "description": "The weight of the package in pounds", "type": "number" }, "width": { "description": "The width of the package in inches", "type": "number" } }, "required": [ "weight", "length", "width", "height" ], "type": "object" }
calculate_shipping_cost_4b09e153
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Guild Permissions", "description": "A WarcraftLFG guild's permissions", "type": "object", "properties": { "ad": { "type": "object", "properties": { "del": { "type": "array", "items": { "type": "integer", "min": 0, "max": 9 }, "default": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ] }, "edit": { "type": "array", "items": { "type": "integer", "min": 0, "max": 9 }, "default": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ] } } } } }
o85253
{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "state": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" } }, "required": [ "name", "type" ] }, "sub": { "type": "object", "properties": { "name": { "type": "string" }, "states": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/state" }, { "$ref": "#/definitions/sub" }, { "$ref": "#/definitions/parallel" } ] } }, "type": { "type": "string" } }, "required": [ "name", "type", "states" ] }, "parallel": { "type": "object", "properties": { "name": { "type": "string" }, "regions": { "type": "array", "items": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/state" }, { "$ref": "#/definitions/sub" }, { "$ref": "#/definitions/parallel" } ] } } }, "type": { "type": "string" } }, "required": [ "name", "type", "regions" ] }, "transition": { "type": "object", "properties": { "kind": { "type": "string" }, "name": { "type": "string" }, "source": { "type": "string" }, "target": { "type": "string" } }, "required": [ "name", "kind", "type", "source", "target" ] }, "compound_transition": { "type": "object", "properties": { "type": { "type": "string" }, "name": { "type": "string" }, "vertices": { "type": "object", "properties": { "incoming": { "type": "array", "items": { "type": "object", "properties": { "source": { "type": "string" }, "name": { "type": "string" } }, "required": [ "source", "name" ] } }, "outgoing": { "type": "array", "items": { "type": "object", "properties": { "target": { "type": "string" } }, "required": [ "target" ] } } } }, "pseudo_state": { "type": "object", "properties": { "type": { "type": "string" }, "name": { "type": "string" }, "region": { "type": "string" } }, "required": [ "name", "type", "region" ] } }, "required": [ "name", "type", "vertices", "pseudo_state" ] } }, "type": "object", "properties": { "name": { "type": "string" }, "states": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/state" }, { "$ref": "#/definitions/sub" }, { "$ref": "#/definitions/parallel" } ] } }, "transitions": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/transition" }, { "$ref": "#/definitions/compound_transition" } ] } } } }
o79622
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EndpointAddress": { "description": "EndpointAddress is a tuple that describes single IP address.", "properties": { "hostname": { "description": "The Hostname of this endpoint", "type": "string" }, "ip": { "description": "The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.", "type": "string" }, "nodeName": { "description": "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.", "type": "string" }, "targetRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference", "description": "Reference to object providing the endpoint." } }, "required": [ "ip" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EndpointPort": { "description": "EndpointPort is a tuple that describes a single port.", "properties": { "appProtocol": { "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol. Field can be enabled with ServiceAppProtocol feature gate.", "type": "string" }, "name": { "description": "The name of this port. This must match the 'name' field in the corresponding ServicePort. Must be a DNS_LABEL. Optional only if one port is defined.", "type": "string" }, "port": { "_format": "int32", "description": "The port number of the endpoint.", "type": "integer" }, "protocol": { "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.", "type": "string" } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference": { "description": "ObjectReference contains enough information to let you inspect or modify the referred object.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "fieldPath": { "description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.", "type": "string" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "namespace": { "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/", "type": "string" }, "resourceVersion": { "description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "uid": { "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids", "type": "string" } }, "type": "object" } }, "description": "EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:\n {\n Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n }\nThe resulting set of endpoints can be viewed as:\n a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],\n b: [ 10.10.1.1:309, 10.10.2.2:309 ]", "properties": { "addresses": { "description": "IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EndpointAddress" }, "type": [ "array", "null" ] }, "notReadyAddresses": { "description": "IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EndpointAddress" }, "type": [ "array", "null" ] }, "ports": { "description": "Port numbers available on the related IP addresses.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EndpointPort" }, "type": [ "array", "null" ] } }, "type": "object" }
kb_315_Normalized
{ "title": "transparencyStop", "$schema": "http://json-schema.org/draft-04/schema", "description": "The transparencyStop object defines the thematic opacity ramp in a sequence of stops. At least two stops are required. The stops must be listed in ascending order based on the value of the `value` property in each stop.", "properties": { "label": { "type": "string", "description": "A string value used to label the stop in the legend." }, "transparency": { "type": "integer", "description": "A numeric transparancy value for a stop ranging from 0-100, where 0 is opaque and 100 is 100% transparent.", "minimum": 0, "maximum": 100 }, "value": { "type": "number", "description": "The pixel intensity value. Describes the pixel intensity value that the color should be associated with." } }, "required": [ "transparency", "value" ], "additionalProperties": false, "esriDocumentation": { "examples": [ { "code": { "stop": { "value": 0, "transparency": 50 } } } ] } }
o90327
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "details_metadata": { "type": "object", "description": "generic metadata dict in details list", "properties": { "author": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "bug_reporting": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "code_repository": { "oneOf": [ { "$ref": "#/definitions/metadata_code_repository" }, { "type": "null" } ] }, "declared_licenses": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "dependencies": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "description": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "devel_dependencies": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "engines": { "oneOf": [ { "type": "object", "additionalProperties": true }, { "type": "null" } ] }, "files": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "git_head": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "homepage": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "keywords": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "metadata": { "oneOf": [ { "type": "object", "additionalProperties": true }, { "type": "null" } ] }, "name": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "platform": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "readme": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "scripts": { "oneOf": [ { "type": "object", "additionalProperties": true }, { "type": "null" } ] }, "version": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "maintainers": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "contributors": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "_tests_implemented": { "type": "boolean" }, "ecosystem": { "type": "string" }, "_dependency_tree_lock": { "oneOf": [ { "$ref": "#/definitions/metadata_lockfile" }, { "type": "null" } ] }, "path": { "oneOf": [ { "type": "string" }, { "type": "null" } ] } }, "additionalProperties": false }, "metadata_code_repository": { "type": "object", "description": "Code repository description", "properties": { "type": { "type": "string" }, "url": { "type": "string" } }, "required": [ "url" ], "additionalProperties": false }, "metadata_locked_dependency": { "type": "object", "description": "Locked dependency description", "properties": { "name": { "type": "string" }, "version": { "type": "string" }, "specification": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "resolved": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "dependencies": { "type": "array", "items": { "$ref": "#/definitions/metadata_locked_dependency" } }, "subpackages": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "metadata_lockfile": { "type": "object", "description": "Dependency lock file description", "properties": { "runtime": { "type": "string" }, "version": { "type": "string" }, "dependencies": { "type": "array", "items": { "$ref": "#/definitions/metadata_locked_dependency" } }, "name": { "type": "string" }, "hash": { "type": "string" }, "updated": { "type": "string" } }, "additionalProperties": false } }, "type": "object", "description": "Result of Mercator worker", "properties": { "schema": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the schema", "pattern": "^[a-zA-Z0-9_]+$" }, "version": { "type": "string", "description": "Version of the schema", "pattern": "^[0-9]+-[0-9]+-[0-9]+$" }, "url": { "type": "string", "description": "Full URL of the schema", "format": "uri" } }, "required": [ "name", "version" ], "additionalProperties": false }, "_release": { "type": "string", "description": "Unique release id in form of \"ecosystem:package:version\"" }, "details": { "type": "array", "items": { "$ref": "#/definitions/details_metadata" } }, "status": { "type": "string", "enum": [ "success", "error" ] }, "summary": { "type": "array", "items": { "type": "string" } } }, "required": [ "status", "summary" ], "additionalProperties": false, "title": "metadata-v3-3-0" }
o60996
{ "properties": { "connect": { "properties": { "access-control-allow-methods": { "default": "", "description": "Access control allow methods allows cross origin HTTP requests,e.g GET,POST,PUT,DELETE,HEAD", "type": "string" }, "access-control-allow-origin": { "default": "", "description": "Access control allow origin tells which domain should be accessible,by default empty string means that the resource can be accessed by any domain", "type": "string" }, "cpus": { "default": 2, "description": "CPU shares to allocate to each connect worker instance.", "minimum": 1, "type": "number" }, "group_id": { "default": "dcos-connect-group", "description": "A unique string that identifies the Connect cluster group this worker belongs to.", "type": "string" }, "heap": { "default": 768, "description": "JVM heap allocation (in MB) for connect worker task; should be ~256MB less than total memory for the instance.", "minimum": 256, "type": "number" }, "instances": { "default": 1, "description": "Number of instances to run.", "minimum": 1, "type": "integer" }, "key_converter": { "default": "io.confluent.connect.avro.AvroConverter", "description": "Key converter, e.g. org.apache.kafka.connect.json.JsonConverter, io.confluent.connect.avro.AvroConverter, ...", "type": "string" }, "key_converter_schema_enable": { "default": true, "description": "Key converter schema check enable.", "type": "boolean" }, "mem": { "default": 1024, "description": "Memory (MB) to allocate to each connect worker instance.", "minimum": 512, "type": "number" }, "name": { "default": "connect", "description": "Service name for the connect worker application(s)", "type": "string" }, "role": { "default": "*", "description": "Deploy connect worker only on nodes with this role.", "type": "string" }, "user": { "default": "nobody", "description": "The user that the service will run as.", "title": "User", "type": "string" }, "value_converter": { "default": "io.confluent.connect.avro.AvroConverter", "description": "Value converter, e.g. org.apache.kafka.connect.json.JsonConverter, io.confluent.connect.avro.AvroConverter, ...", "type": "string" }, "value_converter_schema_enable": { "default": true, "description": "Value converter schema check enable.", "type": "boolean" }, "virtual_network_enabled": { "default": false, "description": "Enable virtual networking", "type": "boolean" }, "virtual_network_name": { "default": "dcos", "description": "The name of the virtual network to join", "type": "string" }, "virtual_network_plugin_labels": { "default": [], "description": "Labels to pass to the virtual network plugin (e.g., [{\"key\": \"key_1\", \"value\": \"value_1\"}, {\"key\": \"key_2\", \"value\": \"value_2\"}])", "items": { "properties": { "key": { "default": "", "type": "string" }, "value": { "default": "", "type": "string" } }, "type": "object" }, "type": "array" } }, "required": [ "cpus", "mem", "instances", "name" ], "type": "object" }, "kafka": { "description": "Rest proxy kafka service configuration", "properties": { "bootstrap_servers": { "default": "broker.confluent-kafka.l4lb.thisdcos.directory:9092", "description": "The name of the kafka bootstrapserver. Broker vip (for TLS it is broker-tls.confluent-kafka.l4lb.thisdcos.directory:9093) or comma separated list of broker dns names (like in the kerberos case). Note slahes in a kafka service name have to be removed.", "title": "Kafka bootstrap servers", "type": "string" }, "client_sasl_kerberos_service_name": { "default": "kafka", "description": "The Kerberos principal name that Kafka runs as. This can be defined either in Kafka's JAAS config or in Kafka's config.", "title": "Kafka client sasl kerberos service name", "type": "string" }, "client_sasl_mechanism": { "default": "GSSAPI", "description": "SASL mechanism used for client connections. This may be any mechanism for which a security provider is available. GSSAPI is the default mechanism.", "title": "Kafka client sasl mechanism", "type": "string" }, "client_security_protocol": { "default": "PLAINTEXT", "description": "Protocol used to communicate with brokers. Valid values are: PLAINTEXT, SSL, SASL_PLAINTEXT, SASL_SSL", "title": "Kafka client security protocol", "type": "string" }, "kerberos_enabled": { "default": false, "description": "Enable kerberos", "type": "boolean" }, "kerberos_jaas_secret": { "default": "jaas", "description": "Kerberos jaas secret containing jaas config", "title": "Kerberos jaas secret", "type": "string" }, "kerberos_keytab_secret": { "default": "__dcos_base64___keytab", "description": "Kerberos keytab secret containing keytab", "title": "Kerberos keytab secret", "type": "string" }, "kerberos_krb5_secret": { "default": "krb5", "description": "Kerberos krb5 secret containing krb5 config", "title": "Kerberos krb5 secret", "type": "string" }, "zookeeper_connect": { "default": "master.mesos:2181/dcos-service-confluent-kafka", "description": "... . Note slahes in a kafka service name have to be removed, all excpet the first get replaced by two underscores.", "title": "Zookeeper connect", "type": "string" } }, "required": [ "bootstrap_servers", "zookeeper_connect" ], "type": "object" }, "schema-registry": { "description": "Connect schema registry configuration", "properties": { "url": { "default": "http://schema-registry.marathon.l4lb.thisdcos.directory:8081", "description": "The base URL for the schema registry.", "title": "Schema registry url", "type": "string" } }, "required": [ "url" ], "type": "object" } }, "type": "object" }
o60290
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Thing data upload", "type": "object", "properties": { "thing": { "type": "object", "properties": { "id": { "type": "string" }, "title": { "type": "string" }, "description": { "type": "string" }, "license": { "type": "string" }, "license_url": { "type": "string" } }, "additionalProperties": false, "required": [ "id", "title", "description", "license", "license_url" ] } }, "additionalProperties": false, "required": [ "thing" ] }
o53024
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "areas": { "type": "array", "description": "A list of widget areas with individual properties.", "items": { "type": "object", "required": [ "name", "i18nHtmlLabel" ], "properties": { "name": { "type": "string", "description": "Name of the widget-area to create." }, "i18nHtmlLabel": { "type": [ "string", "object" ], "description": "Label of the area's tab.", "format": "localization", "additionalProperties": { "type": "string" } }, "anonymize": { "type": "boolean", "default": false, "description": "If true the class 'ax-anonymize-me' is set on the label to support anonymization." }, "flag": { "type": "string", "format": "topic", "axRole": "outlet", "description": "Name of the flag indicating the area's visibility." }, "validOn": { "type": "string", "format": "flag-topic", "axRole": "inlet", "axPattern": "flag", "description": "Name of the flag toggling the area's visualisation of validity." }, "disabledOn": { "type": "string", "format": "flag-topic", "axRole": "inlet", "axPattern": "flag", "description": "Name of the flag toggling the area's disabled state." }, "taggedOn": { "type": "string", "format": "flag-topic", "axRole": "inlet", "axPattern": "flag", "description": "Name of the flag toggling the 'is-tagged' class on the according area." }, "selection": { "type": "object", "description": "Action that is emitted after the (possibly confirmed) selection of an area.", "properties": { "action": { "type": "string", "format": "topic", "axRole": "outlet", "description": "The selection action topic." } } }, "selectionRequest": { "type": "object", "description": "Actions under which the widget requests selection of this area and then waits for confirmation.", "properties": { "action": { "type": "string", "format": "topic", "axRole": "outlet", "description": "Action topic to request a selection of this area." }, "confirmationAction": { "type": "string", "format": "topic", "axRole": "inlet", "axPattern": "action", "description": "Confirmation action topic." } } }, "selectionRequestTrigger": { "type": "object", "description": "Action upon which the widget requests selection of the given area.", "properties": { "onActions": { "type": "array", "items": { "type": "string", "format": "topic", "axRole": "inlet", "axPattern": "action", "description": "The action topic to trigger a selection request for this area." }, "description": "Trigger action topics." } } } } } }, "i18n": { "description": "Which locale to use for displaying this widget.", "type": "object", "properties": { "locale": { "type": "string", "format": "topic", "axRole": "inlet", "description": "The topic under which to expect the locale for this widget.", "default": "default" } } } } }
o9353
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1_RuleWithOperations": { "description": "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.", "properties": { "apiGroups": { "description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.", "items": { "type": "string" }, "type": "array" }, "apiVersions": { "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", "items": { "type": "string" }, "type": "array" }, "operations": { "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, or * for all operations. If '*' is present, the length of the slice must be one. Required.", "items": { "type": "string" }, "type": "array" }, "resources": { "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", "items": { "type": "string" }, "type": "array" }, "scope": { "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1_ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "`name` is the name of the service. Required", "type": "string" }, "namespace": { "description": "`namespace` is the namespace of the service. Required", "type": "string" }, "path": { "description": "`path` is an optional URL path which will be sent in any request to this service.", "type": "string" }, "port": { "_format": "int32", "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", "type": "integer" } }, "required": [ "namespace", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1_WebhookClientConfig": { "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook", "properties": { "caBundle": { "_format": "byte", "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string" }, "service": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1_ServiceReference", "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`." }, "url": { "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" } }, "description": "MutatingWebhook describes an admission webhook and the resources and operations it applies to.", "properties": { "admissionReviewVersions": { "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "clientConfig": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1_WebhookClientConfig", "description": "ClientConfig defines how to communicate with the hook. Required" }, "failurePolicy": { "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.", "type": [ "string", "null" ] }, "matchPolicy": { "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Equivalent\"", "type": [ "string", "null" ] }, "name": { "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.", "type": [ "string", "null" ] }, "namespaceSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything." }, "objectSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything." }, "reinvocationPolicy": { "description": "reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation. Allowed values are \"Never\" and \"IfNeeded\".\n\nNever: the webhook will not be called more than once in a single admission evaluation.\n\nIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again. * webhooks that use this option may be reordered to minimize the number of additional invocations. * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead.\n\nDefaults to \"Never\".", "type": [ "string", "null" ] }, "rules": { "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1_RuleWithOperations" }, "type": [ "array", "null" ] }, "sideEffects": { "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.", "type": [ "string", "null" ] }, "timeoutSeconds": { "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 10 seconds.", "format": "int32", "type": [ "integer", "null" ] } }, "required": [ "name", "clientConfig", "sideEffects", "admissionReviewVersions" ], "type": "object" }
kb_564_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "avalon-core:asset-2.0", "description": "A unit of data", "type": "object", "additionalProperties": true, "required": [ "schema", "type", "name", "silo", "data" ], "properties": { "schema": { "description": "Schema identifier for payload", "type": "string", "enum": [ "avalon-core:asset-2.0" ], "example": "avalon-core:asset-2.0" }, "type": { "description": "The type of document", "type": "string", "enum": [ "asset" ], "example": "asset" }, "parent": { "description": "Unique identifier to parent document", "example": "592c33475f8c1b064c4d1696" }, "name": { "description": "Name of asset", "type": "string", "pattern": "^[a-zA-Z0-9_.]*$", "example": "Bruce" }, "silo": { "description": "Group or container of asset", "type": "string", "example": "assets" }, "data": { "description": "Document metadata", "type": "object", "example": { "key": "value" } } }, "definitions": {} }
o60863
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape (e.g. square, circle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_2f953bb0
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Measurement report provided by a CBSD.", "type": "object", "additionalproperties": true, "properties": { "eutraCarrierRssiRpt": { "type": "array", "description": "Report structured used by a CBSD when a measurement report type is EutraCarrierRssiNonTx or EutraCarrierRssiAlways", "items": { "$ref": "#/eutraCarrierRssiRptObject" } } }, "eutraCarrierRssiRptObject": { "type": "object", "description": "Report for a particular Carrier RSSI measurement.", "required": [ "measFrequency", "measBandwidth", "measCarrierRssi" ], "properties": { "measFrequency": { "type": "number", "description": "Frequency of the low end of the measured channel in Hz.", "minimum": 0 }, "measBandwidth": { "type": "number", "description": "Measurement bandwidth of the channel in Hz.", "minimum": 0 }, "measCarrierRssi": { "type": "number", "description": "Carrier RSSI measurement of the channel in dBm as per 3GPP TS 32.592.", "minimum": -100, "maximum": -25 } } } }
o55788
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "GeekML", "description": "Markup for a Geek", "type": "object", "properties": { "name": { "description": "The geek's name", "type": "string" }, "dateMade": { "description": "The date (ISO-8601 formatted) this markup was crafted; should work with Javascript call Date.parse()", "type": "string" }, "summary": { "description": "A paragraph describing the geek.", "type": "string" }, "contacts": { "description": "How to contact the geek: email, phone, etc.", "type": "array", "_uniqueItems": false, "items": { "$ref": "#/definitions/contact" } }, "socialMedia": { "description": "The geek's social media presence: blogs, Twitter accounts, etc.", "type": "array", "_uniqueItems": false, "items": { "$ref": "#/definitions/media" } }, "skills": { "description": "The geek's geeky skills, such as programming, advanced math, or knitting.", "type": "array", "_uniqueItems": true, "items": { "$ref": "#/definitions/ranking" } }, "organizations": { "description": "What groups the geek belongs to, such as MENSA or a Linux User Group.", "type": "array", "_uniqueItems": true, "items": { "$ref": "#/definitions/ranking" } }, "games": { "description": "The geek's favorite games, such as Dungeons and Dragons or HALO.", "type": "array", "_uniqueItems": true, "items": { "$ref": "#/definitions/ranking" } }, "fandoms": { "description": "The geek's favorite shows, movies, books, etc.", "type": "array", "_uniqueItems": true, "items": { "$ref": "#/definitions/ranking" } } }, "required": [ "name", "dateMade" ], "definitions": { "ranking": { "description": "Describes a geek's participation in geek phenomena - shows, games, etc.", "properties": { "name": { "type": "string" }, "annote": { "type": "string" }, "rank": { "enum": [ "Inventor/Author/World-Class Fan/Expert", "Recognized Fan/Expert", "Enthusiast/Professional", "Novice", "Disinterested", "Hate it" ] } }, "required": [ "name", "rank" ] }, "contact": { "description": "Describes a geek's contact information", "properties": { "contactType": { "type": "string" }, "annote": { "type": "string" }, "contactValue": { "type": "string" } }, "required": [ "contactType", "contactValue" ] }, "media": { "description": "Describes a geek's social media information", "properties": { "mediaType": { "type": "string" }, "annote": { "type": "string" }, "mediaLocator": { "type": "string" } }, "required": [ "mediaType", "mediaLocator" ] } } }
o59694
{ "definitions": { "Playlist": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "isRanked": { "type": "boolean" }, "imageUrl": { "type": [ "string", "null" ] }, "gameMode": { "type": "string" }, "isActive": { "type": "boolean" }, "id": { "type": "string" }, "contentId": { "type": "string" } }, "required": [ "name", "description", "isRanked", "imageUrl", "gameMode", "isActive", "id", "contentId" ] } }, "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "$ref": "#/definitions/Playlist" } }
o5474
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "type": "object", "properties": { "expression": { "title": "Expression", "description": "What to evaluate; JSON paths are allowed, wrapped in {{this.is.a.path}}", "type": "string", "minLength": 1 } }, "required": [ "expression" ] }
o6219
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "___traits_trait_additional_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" }, "___traits_trait_alignment_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A property used to determine horizontal positioning of a content element relative to the elements that immediately follow it in the element sequence.", "enum": [ "left", "right", "center" ], "title": "Alignment", "type": "string" }, "___traits_trait_channel_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An optional list of output types for which this element should be visible", "items": { "type": "string" }, "title": "Channel trait", "type": "array" }, "___traits_trait_id_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A globally unique identifier of the content in the ANS repository.", "title": "Globally Unique ID trait", "type": "string" }, "___traits_trait_subtype_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.", "title": "Subtype or Template", "type": "string" } }, "description": "Describes a change that has been made to the document for transparency, or describes inaccuracies or falsehoods that remain in the document.", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/___traits_trait_alignment_json" }, "channels": { "$ref": "#/definitions/___traits_trait_channel_json" }, "correction_type": { "description": "Type of correction. E.g., clarification, retraction.", "type": "string" }, "subtype": { "$ref": "#/definitions/___traits_trait_subtype_json" }, "text": { "description": "The text of the correction.", "type": "string" }, "type": { "enum": [ "correction" ], "type": "string" } }, "required": [ "type", "text" ], "title": "Correction", "type": "object" }
wp_20_Normalized
{ "title": "Inputs", "items": { "type": "object", "properties": { "files": { "type": "object", "properties": { "data_inputfiles": { "items": { "type": "string" }, "type": "array", "title": "Data Input Files" }, "signal_inputfiles": { "items": { "type": "string" }, "type": "array", "title": "Signal Input Files" }, "signal_mcweight": { "type": "number", "title": "Signal MC Weight" }, "bkg_mcinfo": { "items": { "type": "object", "properties": { "inputfiles": { "items": { "type": "string" }, "type": "array", "title": "Background Input Files" }, "name": { "type": "string" }, "weight": { "type": "number" } } }, "type": "array", "title": "Background MC Info" } }, "title": "Files" }, "title": { "type": "string", "title": "Name" } } }, "additionalProperties": false, "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "id": "yadage_stage" }
o66137
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Address", "description": "A users invoice address", "type": "object", "properties": { "company": { "type": "string" }, "first_name": { "type": "string" }, "last_name": { "type": "string" }, "care_of": { "type": "string" }, "street": { "type": "string" }, "street_no": { "type": "string" }, "city": { "type": "string" }, "zip_code": { "type": "string" }, "state": { "type": "string" }, "country": { "type": "string", "description": "Country as uppercase ISO 3166-1 alpha-2 code" }, "phone": { "type": "string" } }, "required": [ "last_name", "street", "street_no", "city", "zip_code", "country" ], "additionalProperties": false }
o75559
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "radius" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. square, triangle, circle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_77ce79d0
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "github_extracted_details": { "type": "object", "description": "Details of Github inspection", "properties": { "forks_count": { "type": "integer" }, "last_year_commits": { "$ref": "#/definitions/github_last_year_commits_details" }, "open_issues_count": { "type": "integer" }, "stargazers_count": { "type": "integer" }, "subscribers_count": { "type": "integer" }, "updated_issues": { "$ref": "#/definitions/github_issues_details" }, "updated_pull_requests": { "$ref": "#/definitions/github_pull_requests_details" }, "contributors_count": { "type": "integer" }, "topics": { "type": "array", "items": { "type": "string" } } }, "required": [ "topics" ], "additionalProperties": false }, "github_issue&prs_with_time_duration": { "type": "object", "description": "Details of Github issues + prs yearly or monthly or any given date-range", "properties": { "opened": { "type": "integer" }, "closed": { "type": "integer" } }, "required": [ "opened", "closed" ], "additionalProperties": false }, "github_issues_details": { "type": "object", "description": "Details of updated Github issues", "properties": { "year": { "$ref": "#/definitions/github_issue&prs_with_time_duration" }, "month": { "$ref": "#/definitions/github_issue&prs_with_time_duration" } }, "additionalProperties": false }, "github_last_year_commits_details": { "type": "object", "description": "Details of last year Github commits", "properties": { "sum": { "type": "integer" }, "weekly": { "type": "array", "items": { "type": "integer" } } }, "required": [ "sum", "weekly" ], "additionalProperties": false }, "github_pull_requests_details": { "type": "object", "description": "Details of updated Github pull requests", "properties": { "year": { "$ref": "#/definitions/github_issue&prs_with_time_duration" }, "month": { "$ref": "#/definitions/github_issue&prs_with_time_duration" } }, "additionalProperties": false } }, "type": "object", "description": "Result of Github worker", "properties": { "schema": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the schema", "pattern": "^[a-zA-Z0-9_]+$" }, "version": { "type": "string", "description": "Version of the schema", "pattern": "^[0-9]+-[0-9]+-[0-9]+$" }, "url": { "type": "string", "description": "Full URL of the schema", "format": "uri" } }, "required": [ "name", "version" ], "additionalProperties": false }, "_release": { "type": "string", "description": "Unique release id in form of \"ecosystem:package:version\"" }, "status": { "type": "string", "enum": [ "success", "error", "unknown" ] }, "details": { "$ref": "#/definitions/github_extracted_details" }, "summary": { "type": "array", "items": { "type": "string" } } }, "required": [ "status", "details", "summary" ], "additionalProperties": false, "title": "github_details-v1-0-3" }
o60979
{ "id": "http://schemas.triniti.io/json-schema/triniti/news/mixin/article-stats/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "_id": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single", "overridable": true } }, "status": { "type": "string", "default": "draft", "enum": [ "unknown", "published", "scheduled", "pending", "draft", "expired", "archived", "deleted" ], "pbj": { "type": "string-enum", "rule": "single" } }, "etag": { "type": "string", "pattern": "^[\\w\\.:-]+$", "pbj": { "type": "string", "rule": "single" } }, "created_at": { "type": "string", "pattern": "^[1-9]{1}[0-9]{12,15}$", "pbj": { "type": "microtime", "rule": "single" } }, "creator_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A fully qualified reference to what created this node. This is intentionally a message-ref and not a user id because it is often a program that creates nodes, not a user.", "pbj": { "type": "message-ref", "rule": "single" } }, "updated_at": { "type": "string", "pattern": "^[1-9]{1}[0-9]{12,15}$", "pbj": { "type": "microtime", "rule": "single", "useTypeDefault": false } }, "updater_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A fully qualified reference to what updated this node. This is intentionally a message-ref and not a user id because it is often a program that updates nodes, not a user. E.g. \"acme:iam:node:app:cli-scheduler\" or \"acme:iam:node:user:60c71df0-fda8-11e5-bfb9-30342d363854\"", "pbj": { "type": "message-ref", "rule": "single" } }, "last_event_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A reference to the last event that changed the state of this node. E.g. \"acme:blog:event:article-published:60c71df0-fda8-11e5-bfb9-30342d363854\"", "pbj": { "type": "message-ref", "rule": "single" } }, "title": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "comments": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "views": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "disqus_comments": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "disqus_dislikes": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "disqus_likes": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "fb_comments": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "fb_reactions": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "fb_shares": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "fb_engagement": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "description": "The sum of all fb_* metrics collected.", "pbj": { "type": "int", "rule": "single" } }, "ga_entrances": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "ga_entrance_rate": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "ga_pageviews": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "ga_unique_pageviews": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "ga_time_on_page": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "ga_avg_time_on_page": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "ga_exits": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } }, "ga_exit_rate": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295, "pbj": { "type": "int", "rule": "single" } } }, "required": [ "_id" ], "additionalProperties": true }
o82914
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "height": { "description": "The height of the rectangle or triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "width", "height" ], "type": "object" }, "shape": { "description": "The shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_763b5315
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "rootSourceString": { "type": "string" }, "rootSourceArray": { "type": "array", "items": { "type": "array", "items": { "type": "object", "properties": { "someSourceString": { "type": "string" }, "anotherSourceString": { "type": "string" }, "someSourceArray": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "someSourceString", "anotherSourceString", "someSourceArray" ] } } } }, "additionalProperties": false, "required": [ "rootSourceArray" ] }
o41802
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape (for triangle only)", "type": "number" }, "height": { "description": "The height of the shape (for triangle only)", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape (for circle only)", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_cb5fd3a6
{ "properties": { "Internal": { "type": "boolean" }, "accessdown": { "enum": [ "YES", "NO" ], "type": "string" }, "all": { "type": "boolean" }, "appflowlog": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "cacheable": { "enum": [ "YES", "NO" ], "type": "string" }, "cachetype": { "enum": [ "TRANSPARENT", "REVERSE", "FORWARD" ], "type": "string" }, "cip": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "cipheader": { "type": "string" }, "cka": { "enum": [ "YES", "NO" ], "type": "string" }, "cleartextport": { "type": "integer" }, "clmonowner": { "readonly": true, "type": "integer" }, "clmonview": { "readonly": true, "type": "integer" }, "clttimeout": { "type": "integer" }, "cmp": { "enum": [ "YES", "NO" ], "type": "string" }, "comment": { "type": "string" }, "contentinspectionprofilename": { "type": "string" }, "customserverid": { "type": "string" }, "delay": { "type": "integer" }, "dnsprofilename": { "type": "string" }, "downstateflush": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "dup_state": { "enum": [ "ENABLED", "DISABLED" ], "readonly": true, "type": "string" }, "graceful": { "enum": [ "YES", "NO" ], "type": "string" }, "gslb": { "enum": [ "REMOTE", "LOCAL" ], "readonly": true, "type": "string" }, "hashid": { "type": "integer" }, "healthmonitor": { "enum": [ "YES", "NO" ], "type": "string" }, "httpprofilename": { "type": "string" }, "ip": { "type": "string" }, "ipaddress": { "type": "string" }, "lastresponse": { "readonly": true, "type": "string" }, "maxbandwidth": { "type": "integer" }, "maxclient": { "type": "integer" }, "maxreq": { "type": "integer" }, "monconnectionclose": { "enum": [ "RESET", "FIN" ], "type": "string" }, "monitor_name_svc": { "type": "string" }, "monitor_state": { "enum": [ "UP", "DOWN", "UNKNOWN", "BUSY", "OUT OF SERVICE", "GOING OUT OF SERVICE", "DOWN WHEN GOING OUT OF SERVICE", "NS_EMPTY_STR", "Unknown", "DISABLED" ], "readonly": true, "type": "string" }, "monstatcode": { "readonly": true, "type": "integer" }, "monstatparam1": { "readonly": true, "type": "integer" }, "monstatparam2": { "readonly": true, "type": "integer" }, "monstatparam3": { "readonly": true, "type": "integer" }, "monthreshold": { "type": "integer" }, "name": { "type": "string" }, "netprofile": { "type": "string" }, "newname": { "type": "string" }, "nodefaultbindings": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "numofconnections": { "readonly": true, "type": "integer" }, "oracleserverversion": { "enum": [ "10G", "11G" ], "readonly": true, "type": "string" }, "pathmonitor": { "enum": [ "YES", "NO" ], "type": "string" }, "pathmonitorindv": { "enum": [ "YES", "NO" ], "type": "string" }, "policyname": { "readonly": true, "type": "string" }, "port": { "type": "integer" }, "processlocal": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "publicip": { "readonly": true, "type": "string" }, "publicport": { "readonly": true, "type": "integer" }, "responsetime": { "readonly": true, "type": "integer" }, "riseapbrstatsmsgcode": { "type": "integer" }, "riseapbrstatsmsgcode2": { "readonly": true, "type": "integer" }, "rtspsessionidremap": { "enum": [ "ON", "OFF" ], "type": "string" }, "sc": { "enum": [ "ON", "OFF" ], "type": "string" }, "serverid": { "type": "integer" }, "servername": { "type": "string" }, "serviceconftype": { "readonly": true, "type": "boolean" }, "serviceconftype2": { "enum": [ "Configured", "Dynamic", "Internal" ], "readonly": true, "type": "string" }, "serviceipstr": { "readonly": true, "type": "string" }, "servicetype": { "enum": [ "HTTP", "FTP", "TCP", "UDP", "SSL", "SSL_BRIDGE", "SSL_TCP", "DTLS", "NNTP", "RPCSVR", "DNS", "ADNS", "SNMP", "RTSP", "DHCPRA", "ANY", "SIP_UDP", "SIP_TCP", "SIP_SSL", "DNS_TCP", "ADNS_TCP", "MYSQL", "MSSQL", "ORACLE", "RADIUS", "RADIUSListener", "RDP", "DIAMETER", "SSL_DIAMETER", "TFTP", "SMPP", "PPTP", "GRE", "SYSLOGTCP", "SYSLOGUDP", "FIX", "SSL_FIX", "USER_TCP", "USER_SSL_TCP", "QUIC", "IPFIX", "LOGSTREAM" ], "type": "string" }, "sp": { "enum": [ "ON", "OFF" ], "type": "string" }, "state": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "statechangetimemsec": { "readonly": true, "type": "integer" }, "statechangetimesec": { "readonly": true, "type": "string" }, "stateupdatereason": { "readonly": true, "type": "integer" }, "svrstate": { "enum": [ "UP", "DOWN", "UNKNOWN", "BUSY", "OUT OF SERVICE", "GOING OUT OF SERVICE", "DOWN WHEN GOING OUT OF SERVICE", "NS_EMPTY_STR", "Unknown", "DISABLED" ], "readonly": true, "type": "string" }, "svrtimeout": { "type": "integer" }, "tcpb": { "enum": [ "YES", "NO" ], "type": "string" }, "tcpprofilename": { "type": "string" }, "td": { "type": "integer" }, "tickssincelaststatechange": { "readonly": true, "type": "integer" }, "useproxyport": { "enum": [ "YES", "NO" ], "type": "string" }, "usip": { "enum": [ "YES", "NO" ], "type": "string" }, "value": { "enum": [ "Certkey not bound", "SSL feature disabled" ], "readonly": true, "type": "string" }, "weight": { "type": "integer" } }, "title": "service", "type": "object" }
o30222
{ "properties": { "customer_name": { "description": "The name of the customer", "type": "string" }, "items": { "items": { "properties": { "item_name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price per unit of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "item_name", "quantity", "price" ], "type": "object" }, "type": "array" }, "tax_rate": { "description": "The tax rate to be applied", "type": "number" } }, "required": [ "customer_name", "items" ], "type": "object" }
create_invoice_42b94a75
{ "$schema": "http://json-schema.org/draft-07/schema", "title": "Discord Webhook", "description": "Discord Webhook JSON Schema", "definitions": { "string": { "type": "string", "default": "" }, "boolean": { "type": "boolean", "default": false }, "url": { "$ref": "#/definitions/string", "pattern": "^https?://" }, "id": { "$ref": "#/definitions/string", "pattern": "^\\d+$" } }, "type": "object", "additionalProperties": false, "anyOf": [ { "required": [ "content" ] }, { "required": [ "embeds" ] } ], "properties": { "$schema": { "description": "Allow $schema because additionalProperties is false", "$ref": "#/definitions/string" }, "content": { "description": "The message contents\nMax is 2000 characters", "$ref": "#/definitions/string", "maxLength": 2000 }, "username": { "description": "Override the default username of the webhook\nName cannot contain \"clyde\"", "$ref": "#/definitions/string", "pattern": "^((?!(c|C)(l|L)(y|Y)(d|D)(e|E)).)*$", "maxLength": 80 }, "avatar_url": { "description": "Override the default avatar of the webhook", "$ref": "#/definitions/url" }, "tts": { "description": "Whether or not this message will play in TTS\nDefault is false", "$ref": "#/definitions/boolean" }, "embeds": { "description": "Embedded rich content\nMax is 6000 characters", "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "title": { "description": "Title of embed\nMax is 256 characters", "$ref": "#/definitions/string", "maxLength": 256 }, "description": { "description": "Description of embed\nMax is 4096 characters", "$ref": "#/definitions/string", "maxLength": 4096 }, "url": { "description": "URL of embed\nOnly support http / https", "$ref": "#/definitions/url" }, "timestamp": { "description": "Timestamp of embed content\nISO8601 Timestamp", "$ref": "#/definitions/string", "format": "date-time" }, "color": { "description": "Color code of the embed\nOnly support color in decimal\nTo match embed background color, use 3092790\nDefault is 2105893", "type": "integer", "default": 2105893, "minimum": 0, "maximum": 16777215 }, "footer": { "description": "Footer information", "type": "object", "additionalProperties": false, "required": [ "text" ], "properties": { "text": { "description": "Footer text\nMax is 2048 characters", "type": "string", "default": "", "maxLength": 2048 }, "icon_url": { "description": "URL of footer icon\nOnly support http / https", "$ref": "#/definitions/url" } } }, "image": { "description": "Image information", "type": "object", "additionalProperties": false, "required": [ "url" ], "properties": { "url": { "description": "Source url of image\nOnly support http / https", "$ref": "#/definitions/url" } } }, "thumbnail": { "description": "Thumbnail information", "type": "object", "additionalProperties": false, "required": [ "url" ], "properties": { "url": { "description": "Source url of thumbnail\nOnly support http / https", "$ref": "#/definitions/url" } } }, "author": { "description": "Author information", "type": "object", "additionalProperties": false, "required": [ "name" ], "properties": { "name": { "description": "Name of author\nMax is 256 characters", "$ref": "#/definitions/string", "maxLength": 256 }, "url": { "description": "URL of author\nOnly support http / https", "$ref": "#/definitions/url" }, "icon_url": { "description": "URL of author icon\nOnly support http / https", "$ref": "#/definitions/url" } } }, "fields": { "description": "Fields information", "type": "array", "items": { "description": "Fields information", "type": "object", "additionalProperties": false, "required": [ "name", "value" ], "properties": { "name": { "description": "Name of the field\nREQUIRED Max is 256", "$ref": "#/definitions/string", "minLength": 1, "maxLength": 256 }, "value": { "description": "Value of the field\nREQUIRED Max is 1024", "$ref": "#/definitions/string", "minLength": 1, "maxLength": 1024 }, "inline": { "description": "Whether or not this field should display inline\nDefault is false", "$ref": "#/definitions/boolean" } } } } } } }, "allowed_mentions": { "description": "Allowed mentions for the message", "type": "object", "minProperties": 1, "additionalProperties": false, "properties": { "parse": { "description": "An array of allowed mention types to parse from the content.", "type": "array", "default": [], "items": { "type": "string", "enum": [ "roles", "users", "everyone" ] } }, "roles": { "description": "Array of role_ids to mention\nMax is 100 of role_ids\nMutually exclusive with parse roles", "type": [ "array", "null" ], "default": [], "uniqueItems": true, "maxItems": 100, "items": { "$ref": "#/definitions/id" } }, "users": { "description": "Array of user_ids to mention\nMax is 100 of user_ids\nMutually exclusive with parse users", "type": [ "array", "null" ], "default": [], "uniqueItems": true, "maxItems": 100, "items": { "$ref": "#/definitions/id" } } } } } }
webhook
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/sendTransaction.args.scheme.json", "title": "\u0410\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u044b \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b sendTransaction", "description": "\u0421\u0445\u0435\u043c\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u043a \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u043c\u0443 \u0432\u044b\u0437\u043e\u0432\u0443 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b sendTransaction", "type": "object", "properties": { "transaction": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 transaction", "type": "object", "additionalProperties": { "type": "string" } } }, "additionalProperties": false, "required": [ "transaction" ] }
o5261
{ "type": "object", "properties": { "timestamp": { "default": "", "type": "string" }, "meta": { "default": {}, "type": "object", "properties": { "description": { "type": "string" }, "authors": { "type": "string" }, "url": { "type": "string" }, "updated": { "type": "string" }, "updatedTime": { "type": "number" } }, "required": [ "authors", "description", "updated", "updatedTime", "url" ] }, "versions": { "default": {}, "type": "object", "additionalProperties": { "type": "object", "properties": { "snapshot": { "$ref": "#/definitions/LiteloaderVersionMeta" }, "release": { "$ref": "#/definitions/LiteloaderVersionMeta" } } } } }, "required": [ "meta", "timestamp", "versions" ], "definitions": { "LiteloaderVersionMeta": { "type": "object", "properties": { "version": { "type": "string" }, "url": { "type": "string" }, "file": { "type": "string" }, "mcversion": { "type": "string" }, "type": { "enum": [ "RELEASE", "SNAPSHOT" ], "type": "string" }, "md5": { "type": "string" }, "timestamp": { "type": "string" }, "libraries": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "url": { "type": "string" } }, "required": [ "name" ] } }, "tweakClass": { "type": "string" } }, "required": [ "file", "libraries", "mcversion", "md5", "timestamp", "tweakClass", "type", "url", "version" ] } }, "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false }
o7382
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "cancellation_reason": { "type": "string" }, "cancelled_at": { "_format": "date-time", "type": "string" }, "change_history": { "$ref": "#/definitions/change_history" }, "display_date": { "type": "string" }, "format_sub_type": { "enum": [ "national", "official" ], "type": "string" }, "latest_change_note": { "type": "string" }, "previous_display_date": { "type": "string" }, "state": { "enum": [ "cancelled", "confirmed", "provisional" ], "type": "string" } }, "required": [ "display_date", "state", "format_sub_type" ], "type": "object" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "publishing_scheduled_at": { "_format": "date-time", "description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.", "type": "string" }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "scheduled_publishing_delay_seconds": { "description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.", "type": "integer" }, "title": { "type": "string" }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "national_statistics_announcement", "official_statistics_announcement", "statistics_announcement", "national", "official" ], "type": "string" }, "first_published_at": { "anyOf": [ { "$ref": "#/definitions/first_published_at" }, { "type": "null" } ] }, "links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "level_one_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "mainstream_browse_pages": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The user needs this piece of content meets." }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/frontend_links_with_base_path" }, "original_primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The parent content item.", "maxItems": 1 }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policy_areas": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "suggested_ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Prototype-stage taxonomy label for this content item" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "anyOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "publishing_scheduled_at": { "anyOf": [ { "$ref": "#/definitions/publishing_scheduled_at" }, { "type": "null" } ] }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "scheduled_publishing_delay_seconds": { "anyOf": [ { "$ref": "#/definitions/scheduled_publishing_delay_seconds" }, { "type": "null" } ] }, "schema_name": { "enum": [ "statistics_announcement" ], "type": "string" }, "title": { "$ref": "#/definitions/title" }, "updated_at": { "_format": "date-time", "type": "string" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "required": [ "base_path", "content_id", "description", "details", "document_type", "links", "locale", "public_updated_at", "schema_name", "title", "updated_at" ], "type": "object" }
o21387
{ "definitions": { "level-1": { "properties": { "config": { "properties": { "tag": { "enum": [ "h1" ], "type": "string" } }, "type": "object" } }, "type": "object" }, "level-2": { "properties": { "config": { "properties": { "tag": { "enum": [ "h2" ], "type": "string" } }, "type": "object" } }, "type": "object" }, "level-3": { "properties": { "config": { "properties": { "tag": { "enum": [ "h3" ], "type": "string" } }, "type": "object" } }, "type": "object" }, "level-4": { "properties": { "config": { "properties": { "tag": { "enum": [ "h4" ], "type": "string" } }, "type": "object" } }, "type": "object" }, "level-5": { "properties": { "config": { "properties": { "tag": { "enum": [ "h5" ], "type": "string" } }, "type": "object" } }, "type": "object" }, "level-6": { "properties": { "config": { "properties": { "tag": { "enum": [ "h6" ], "type": "string" } }, "type": "object" } }, "type": "object" } }, "description": "A MWF heading component's schema definition.", "properties": { "config": { "properties": { "level": { "enum": [ 1, 2, 3, 4, 5, 6 ], "type": "string" } }, "required": [ "type" ], "type": "object" }, "content": { "properties": { "text": { "type": "string" } }, "type": "object" } }, "required": [ "config", "content" ], "title": "Heading", "type": "object" }
o85190
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "The value returned by GET /{db}/_changes", "properties": { "last_seq": { "type": "number" }, "results": { "items": { "properties": { "changes": { "items": { "rev": { "type": "string" }, "required": [ "rev" ], "type": "object" }, "type": "array" }, "id": { "type": "string" }, "seq": { "type": "string" } }, "required": [ "changes", "id", "seq" ], "type": "object" }, "type": "array" } }, "required": [ "last_seq", "results" ], "title": "CouchDB _changes", "type": "object" }
o60117
{ "properties": { "keywords": { "description": "The keywords for job search", "items": { "type": "string" }, "type": "array" }, "location": { "description": "The location for job search", "type": "string" }, "salary_range": { "description": "The salary range for job search", "properties": { "max": { "description": "The maximum salary", "type": "number" }, "min": { "description": "The minimum salary", "type": "number" } }, "type": "object" } }, "required": [ "keywords" ], "type": "object" }
search_jobs_f078e469
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "name": "Repository Configuration", "properties": { "abandoned": { "additionalProperties": { "description": "A valid Package name", "type": [ "boolean", "string" ] }, "description": "List of packages marked as abandoned for this repository, the mark can be boolean or a package name/URL pointing to a recommended alternative.", "type": "object" }, "archive": { "additionalProperties": false, "description": "Options for creating package archives for distribution.", "properties": { "absolute-directory": { "description": "The absolute path of the dist files.", "type": "string" }, "blacklist": { "description": "List of blacklisted packages.", "items": { "type": "string" }, "type": "array" }, "directory": { "description": "The location of the dist files.", "type": "string" }, "format": { "description": "Archive format.", "pattern": "^zip|tar$", "type": "string" }, "prefix-url": { "_format": "uri", "description": "Location of the downloads.", "type": "string" }, "skip-dev": { "description": "If true, will not create downloads for branches.", "type": "boolean" }, "whitelist": { "description": "List of whitelisted packages.", "items": { "type": "string" }, "type": "array" } }, "required": [ "directory" ], "type": "object" }, "config": { "description": "Composer options.", "properties": { "autoloader-suffix": { "description": "Optional string to be used as a suffix for the generated Composer autoloader. When null a random one will be generated.", "type": "string" }, "bin-compat": { "description": "The compatibility of the binaries, defaults to \"auto\" (automatically guessed) and can be \"full\" (compatible with both Windows and Unix-based systems).", "enum": [ "auto", "full" ] }, "bin-dir": { "description": "The location where all binaries are linked, defaults to \"vendor/bin\".", "type": "string" }, "cache-dir": { "description": "The location where all caches are located, defaults to \"~/.composer/cache\" on *nix and \"%LOCALAPPDATA%\\Composer\" on windows.", "type": "string" }, "cache-files-dir": { "description": "The location where files (zip downloads) are cached, defaults to \"{$cache-dir}/files\".", "type": "string" }, "cache-files-maxsize": { "description": "The cache max size for the files cache, defaults to \"300MiB\".", "type": [ "string", "integer" ] }, "cache-files-ttl": { "description": "The cache time-to-live for files, defaults to the value of cache-ttl.", "type": "integer" }, "cache-repo-dir": { "description": "The location where repo (git/hg repo clones) are cached, defaults to \"{$cache-dir}/repo\".", "type": "string" }, "cache-ttl": { "description": "The default cache time-to-live, defaults to 15552000 (6 months).", "type": "integer" }, "cache-vcs-dir": { "description": "The location where vcs infos (git clones, github api calls, etc. when reading vcs repos) are cached, defaults to \"{$cache-dir}/vcs\".", "type": "string" }, "classmap-authoritative": { "description": "If true, the composer autoloader will not scan the filesystem for classes that are not found in the class map, defaults to false.", "type": "boolean" }, "discard-changes": { "description": "The default style of handling dirty updates, defaults to false and can be any of true, false or \"stash\".", "type": [ "string", "boolean" ] }, "github-domains": { "description": "A list of domains to use in github mode. This is used for GitHub Enterprise setups, defaults to [\"github.com\"].", "items": { "type": "string" }, "type": "array" }, "github-expose-hostname": { "description": "Defaults to true. If set to false, the OAuth tokens created to access the github API will have a date instead of the machine hostname.", "type": "boolean" }, "github-oauth": { "additionalProperties": true, "description": "A hash of domain name => github API oauth tokens, typically {\"github.com\":\"<token>\"}.", "type": "object" }, "github-protocols": { "description": "A list of protocols to use for github.com clones, in priority order, defaults to [\"git\", \"https\", \"http\"].", "items": { "type": "string" }, "type": "array" }, "http-basic": { "additionalProperties": true, "description": "A hash of domain name => {\"username\": \"...\", \"password\": \"...\"}.", "type": "object" }, "notify-on-install": { "description": "Composer allows repositories to define a notification URL, so that they get notified whenever a package from that repository is installed. This option allows you to disable that behaviour, defaults to true.", "type": "boolean" }, "optimize-autoloader": { "description": "Always optimize when dumping the autoloader.", "type": "boolean" }, "platform": { "additionalProperties": true, "description": "This is a hash of package name (keys) and version (values) that will be used to mock the platform packages on this machine.", "type": "object" }, "preferred-install": { "description": "The install method Composer will prefer to use, defaults to auto and can be any of source, dist or auto.", "type": "string" }, "prepend-autoloader": { "description": "If false, the composer autoloader will not be prepended to existing autoloaders, defaults to true.", "type": "boolean" }, "process-timeout": { "description": "The timeout in seconds for process executions, defaults to 300 (5mins).", "type": "integer" }, "store-auths": { "description": "What to do after prompting for authentication, one of: true (store), false (do not store) or \"prompt\" (ask every time), defaults to prompt.", "type": [ "string", "boolean" ] }, "use-include-path": { "description": "If true, the Composer autoloader will also look for classes in the PHP include path.", "type": "boolean" }, "vendor-dir": { "description": "The location where all packages are installed, defaults to \"vendor\".", "type": "string" } }, "type": "object" }, "description": { "description": "Short Repository description.", "type": "string" }, "homepage": { "_format": "uri", "description": "Homepage URL for the Repository.", "type": "string" }, "minimum-stability": { "description": "The minimum stability the packages must have to be install-able. Possible values are: dev, alpha, beta, RC, stable.", "enum": [ "dev", "alpha", "beta", "rc", "RC", "stable" ], "type": [ "string" ] }, "name": { "description": "Repository name.", "type": "string" }, "notify-batch": { "description": "a URL that will be called every time a user installs a package.", "type": "string" }, "output-dir": { "description": "The directory where the static Repository is built.", "type": "string" }, "output-html": { "description": "If true, build a static web page.", "type": "boolean" }, "repositories": { "additionalProperties": true, "description": "A set of additional repositories where packages can be found.", "type": [ "object", "array" ] }, "require": { "additionalProperties": { "description": "A valid version constraint", "type": "string" }, "description": "This is a hash of package name (keys) and version constraints (values) that are required to run this package.", "minProperties": 1, "type": "object" }, "require-all": { "description": "If true, selects all versions of all packages in the repositories defined.", "type": "boolean" }, "require-dependecies": { "description": "If true, resolve and add all dependencies of each required package.", "type": "boolean" }, "require-dev-dependecies": { "description": "If true, resolve and add all Dev dependencies of each required package.", "type": "boolean" }, "twig-template": { "description": "Path to a template for the static web page.", "type": "string" } }, "required": [ "name", "homepage" ], "type": "object" }
o7607