json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "$id": "https://json.schemastore.org/httpmockrc.json", "$schema": "http://json-schema.org/draft-07/schema#", "description": "A tool for mock local requests or proxy remote requests.", "properties": { "mockFileName": { "default": "mocks", "type": "string", "description": "Root of mock files" }, "requestHeaders": { "type": "object", "description": "Custom request header" }, "responseHeaders": { "type": "object", "description": "Custom response header" }, "parseBody": { "type": "boolean", "description": "Parse post body by express.json()" }, "routes": { "type": "object", "description": "Rules for proxy and mock", "patternProperties": { "^.*$": { "type": "object", "description": "Rule of Matching route", "properties": { "path": { "type": "string", "description": "Where Mock result file located" }, "ignore": { "type": "boolean", "description": "Whether to ignore this rule, generally used for remote interfaces instead of mock in the local" }, "delay": { "type": "number", "description": "How many milliseconds are delayed to return a request, general used for control the request sequence" }, "validate": { "type": "object", "description": "Validate params in body by key and typeof value" } }, "required": ["path"] } } } }, "required": ["mockFileName", "routes"], "title": "Http-mocker configuration.", "type": "object" }
httpmockrc
{ "definitions": {}, "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "$id": "http://www.pucomex.serpro.gov.br/cct/consulta-documento-transporte.schema.json", "properties": { "numeroDocumento": { "type": "string" }, "tipoDocumento": { "type": "string" }, "viaTransporte": { "type": "string" }, "situacaoDocumento": { "type": "string" }, "cargas": { "type": "array", "items": { "type": "object", "properties": { "numeroDue": { "type": "string" }, "numeroRuc": { "type": "string" }, "conteiner": { "type": "object", "properties": { "numeroConteiner": { "type": "string" }, "tara": { "type": "number" }, "lacres": { "type": "array", "_uniqueItems": true, "items": { "type": "string" } } } } } } }, "veiculoRodoviario": { "type": "object", "properties": { "veiculo": { "type": "object", "properties": { "nomeCondutor": { "type": "string" }, "cpfCondutor": { "type": "string" }, "documentoCondutor": { "type": "string" }, "placa": { "type": "string" }, "tara": { "type": "number" }, "lacres": { "type": "array", "_uniqueItems": true, "items": { "type": "string" } } } }, "reboques": { "type": "array", "_uniqueItems": true, "items": { "type": "object", "properties": { "placa": { "type": "string" }, "tara": { "type": "number" }, "lacres": { "type": "array", "_uniqueItems": true, "items": { "type": "string" } } } } } } }, "prefixoTrem": { "type": "string" }, "quantidadeVagoes": { "type": "integer" }, "identificacaoVeiculo": { "type": "string" }, "dataEmissaoDocumentoTransporte": { "type": "string" }, "listaMensagem": { "type": "array", "items": { "type": "object", "properties": { "codigo": { "type": "string" }, "mensagem": { "type": "string" } } } } } }
o73024
{ "anyOf": [ { "$ref": "#/definitions/SkaffoldConfig" } ], "definitions": { "Artifact": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync" ], "properties": { "context": { "type": "string" }, "image": { "type": "string" }, "sync": { "additionalProperties": { "type": "string" }, "default": "{}", "type": "object" } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "docker" ], "properties": { "context": { "type": "string" }, "docker": { "$ref": "#/definitions/DockerArtifact" }, "image": { "type": "string" }, "sync": { "additionalProperties": { "type": "string" }, "default": "{}", "type": "object" } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "bazel" ], "properties": { "bazel": { "$ref": "#/definitions/BazelArtifact" }, "context": { "type": "string" }, "image": { "type": "string" }, "sync": { "additionalProperties": { "type": "string" }, "default": "{}", "type": "object" } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "jibMaven" ], "properties": { "context": { "type": "string" }, "image": { "type": "string" }, "jibMaven": { "$ref": "#/definitions/JibMavenArtifact" }, "sync": { "additionalProperties": { "type": "string" }, "default": "{}", "type": "object" } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "jibGradle" ], "properties": { "context": { "type": "string" }, "image": { "type": "string" }, "jibGradle": { "$ref": "#/definitions/JibGradleArtifact" }, "sync": { "additionalProperties": { "type": "string" }, "default": "{}", "type": "object" } } } ], "description": "represents items that need to be built, along with the context in which they should be built.", "x-intellij-html-description": "represents items that need to be built, along with the context in which they should be built." }, "BazelArtifact": { "additionalProperties": false, "description": "describes an artifact built with Bazel.", "preferredOrder": [ "target" ], "properties": { "target": { "type": "string" } }, "x-intellij-html-description": "describes an artifact built with Bazel." }, "BuildConfig": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "artifacts", "tagPolicy" ], "properties": { "artifacts": { "items": { "$ref": "#/definitions/Artifact" }, "type": "array" }, "tagPolicy": { "$ref": "#/definitions/TagPolicy" } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "tagPolicy", "local" ], "properties": { "artifacts": { "items": { "$ref": "#/definitions/Artifact" }, "type": "array" }, "local": { "$ref": "#/definitions/LocalBuild" }, "tagPolicy": { "$ref": "#/definitions/TagPolicy" } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "tagPolicy", "googleCloudBuild" ], "properties": { "artifacts": { "items": { "$ref": "#/definitions/Artifact" }, "type": "array" }, "googleCloudBuild": { "$ref": "#/definitions/GoogleCloudBuild" }, "tagPolicy": { "$ref": "#/definitions/TagPolicy" } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "tagPolicy", "kaniko" ], "properties": { "artifacts": { "items": { "$ref": "#/definitions/Artifact" }, "type": "array" }, "kaniko": { "$ref": "#/definitions/KanikoBuild" }, "tagPolicy": { "$ref": "#/definitions/TagPolicy" } } } ], "description": "contains all the configuration for the build steps", "x-intellij-html-description": "contains all the configuration for the build steps" }, "DateTimeTagger": { "additionalProperties": false, "description": "contains the configuration for the DateTime tagger.", "preferredOrder": [ "format", "timezone" ], "properties": { "format": { "type": "string" }, "timezone": { "type": "string" } }, "x-intellij-html-description": "contains the configuration for the DateTime tagger." }, "DeployConfig": { "anyOf": [ { "additionalProperties": false }, { "additionalProperties": false, "preferredOrder": [ "helm" ], "properties": { "helm": { "$ref": "#/definitions/HelmDeploy" } } }, { "additionalProperties": false, "preferredOrder": [ "kubectl" ], "properties": { "kubectl": { "$ref": "#/definitions/KubectlDeploy" } } }, { "additionalProperties": false, "preferredOrder": [ "kustomize" ], "properties": { "kustomize": { "$ref": "#/definitions/KustomizeDeploy" } } } ], "description": "contains all the configuration needed by the deploy steps", "x-intellij-html-description": "contains all the configuration needed by the deploy steps" }, "DockerArtifact": { "additionalProperties": false, "description": "describes an artifact built from a Dockerfile, usually using `docker build`.", "preferredOrder": [ "dockerfile", "buildArgs", "cacheFrom", "target" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "type": "object" }, "cacheFrom": { "default": "[]", "items": { "type": "string" }, "type": "array" }, "dockerfile": { "type": "string" }, "target": { "type": "string" } }, "x-intellij-html-description": "describes an artifact built from a Dockerfile, usually using <code>docker build</code>." }, "EnvTemplateTagger": { "additionalProperties": false, "description": "contains the configuration for the envTemplate tagger.", "preferredOrder": [ "template" ], "properties": { "template": { "type": "string" } }, "x-intellij-html-description": "contains the configuration for the envTemplate tagger." }, "GitTagger": { "description": "contains the configuration for the git tagger.", "x-intellij-html-description": "contains the configuration for the git tagger." }, "GoogleCloudBuild": { "additionalProperties": false, "description": "contains the fields needed to do a remote build on Google Cloud Build.", "preferredOrder": [ "projectId", "diskSizeGb", "machineType", "timeout", "dockerImage" ], "properties": { "diskSizeGb": { "type": "integer" }, "dockerImage": { "type": "string" }, "machineType": { "type": "string" }, "projectId": { "type": "string" }, "timeout": { "type": "string" } }, "x-intellij-html-description": "contains the fields needed to do a remote build on Google Cloud Build." }, "HelmConventionConfig": { "description": "represents image config in the syntax of image.repository and image.tag", "x-intellij-html-description": "represents image config in the syntax of image.repository and image.tag" }, "HelmDeploy": { "additionalProperties": false, "description": "contains the configuration needed for deploying with helm", "preferredOrder": [ "releases" ], "properties": { "releases": { "items": { "$ref": "#/definitions/HelmRelease" }, "type": "array" } }, "x-intellij-html-description": "contains the configuration needed for deploying with helm" }, "HelmFQNConfig": { "additionalProperties": false, "description": "represents image config to use the FullyQualifiedImageName as param to set", "preferredOrder": [ "property" ], "properties": { "property": { "type": "string" } }, "x-intellij-html-description": "represents image config to use the FullyQualifiedImageName as param to set" }, "HelmImageStrategy": { "anyOf": [ { "additionalProperties": false }, { "additionalProperties": false, "preferredOrder": [ "fqn" ], "properties": { "fqn": { "$ref": "#/definitions/HelmFQNConfig" } } }, { "additionalProperties": false, "preferredOrder": [ "helm" ], "properties": { "helm": { "$ref": "#/definitions/HelmConventionConfig" } } } ] }, "HelmPackaged": { "additionalProperties": false, "description": "represents parameters for packaging helm chart.", "preferredOrder": [ "version", "appVersion" ], "properties": { "appVersion": { "description": "set the appVersion on the chart to this version", "type": "string", "x-intellij-html-description": "set the appVersion on the chart to this version" }, "version": { "description": "sets the version on the chart to this semver version.", "type": "string", "x-intellij-html-description": "sets the version on the chart to this semver version." } }, "x-intellij-html-description": "represents parameters for packaging helm chart." }, "HelmRelease": { "additionalProperties": false, "preferredOrder": [ "name", "chartPath", "valuesFiles", "values", "namespace", "version", "setValues", "setValueTemplates", "wait", "recreatePods", "overrides", "packaged", "imageStrategy" ], "properties": { "chartPath": { "type": "string" }, "imageStrategy": { "$ref": "#/definitions/HelmImageStrategy" }, "name": { "type": "string" }, "namespace": { "type": "string" }, "overrides": {}, "packaged": { "$ref": "#/definitions/HelmPackaged" }, "recreatePods": { "default": "false", "type": "boolean" }, "setValueTemplates": { "additionalProperties": { "type": "string" }, "default": "{}", "type": "object" }, "setValues": { "additionalProperties": { "type": "string" }, "default": "{}", "type": "object" }, "values": { "additionalProperties": { "type": "string" }, "default": "{}", "type": "object" }, "valuesFiles": { "default": "[]", "items": { "type": "string" }, "type": "array" }, "version": { "type": "string" }, "wait": { "default": "false", "type": "boolean" } } }, "JibGradleArtifact": { "additionalProperties": false, "preferredOrder": [ "project" ], "properties": { "project": { "description": "Only multi-module", "type": "string", "x-intellij-html-description": "Only multi-module" } } }, "JibMavenArtifact": { "additionalProperties": false, "preferredOrder": [ "module", "profile" ], "properties": { "module": { "description": "Only multi-module", "type": "string", "x-intellij-html-description": "Only multi-module" }, "profile": { "type": "string" } } }, "KanikoBuild": { "additionalProperties": false, "description": "contains the fields needed to do a on-cluster build using the kaniko image", "preferredOrder": [ "buildContext", "pullSecret", "pullSecretName", "namespace", "timeout", "image" ], "properties": { "buildContext": { "$ref": "#/definitions/KanikoBuildContext" }, "image": { "type": "string" }, "namespace": { "type": "string" }, "pullSecret": { "type": "string" }, "pullSecretName": { "type": "string" }, "timeout": { "type": "string" } }, "x-intellij-html-description": "contains the fields needed to do a on-cluster build using the kaniko image" }, "KanikoBuildContext": { "additionalProperties": false, "description": "contains the different fields available to specify a kaniko build context", "preferredOrder": [ "gcsBucket", "localDir" ], "properties": { "gcsBucket": { "type": "string" }, "localDir": { "$ref": "#/definitions/LocalDir" } }, "x-intellij-html-description": "contains the different fields available to specify a kaniko build context" }, "KubectlDeploy": { "additionalProperties": false, "description": "contains the configuration needed for deploying with `kubectl apply`", "preferredOrder": [ "manifests", "remoteManifests", "flags" ], "properties": { "flags": { "$ref": "#/definitions/KubectlFlags" }, "manifests": { "default": "[]", "items": { "type": "string" }, "type": "array" }, "remoteManifests": { "default": "[]", "items": { "type": "string" }, "type": "array" } }, "x-intellij-html-description": "contains the configuration needed for deploying with <code>kubectl apply</code>" }, "KubectlFlags": { "additionalProperties": false, "description": "describes additional options flags that are passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete).", "preferredOrder": [ "global", "apply", "delete" ], "properties": { "apply": { "default": "[]", "items": { "type": "string" }, "type": "array" }, "delete": { "default": "[]", "items": { "type": "string" }, "type": "array" }, "global": { "default": "[]", "items": { "type": "string" }, "type": "array" } }, "x-intellij-html-description": "describes additional options flags that are passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete)." }, "KustomizeDeploy": { "additionalProperties": false, "description": "contains the configuration needed for deploying with kustomize.", "preferredOrder": [ "path", "flags" ], "properties": { "flags": { "$ref": "#/definitions/KubectlFlags" }, "path": { "type": "string" } }, "x-intellij-html-description": "contains the configuration needed for deploying with kustomize." }, "LocalBuild": { "additionalProperties": false, "description": "contains the fields needed to do a build on the local docker daemon and optionally push to a repository.", "preferredOrder": [ "push", "useDockerCLI", "useBuildkit" ], "properties": { "push": { "type": "boolean" }, "useBuildkit": { "default": "false", "type": "boolean" }, "useDockerCLI": { "default": "false", "type": "boolean" } }, "x-intellij-html-description": "contains the fields needed to do a build on the local docker daemon and optionally push to a repository." }, "LocalDir": { "description": "represents the local directory kaniko build context", "x-intellij-html-description": "represents the local directory kaniko build context" }, "Profile": { "additionalProperties": false, "description": "additional configuration that overrides default configuration when it is activated.", "preferredOrder": [ "name", "build", "test", "deploy" ], "properties": { "build": { "$ref": "#/definitions/BuildConfig" }, "deploy": { "$ref": "#/definitions/DeployConfig" }, "name": { "type": "string" }, "test": { "items": { "$ref": "#/definitions/TestCase" }, "type": "array" } }, "x-intellij-html-description": "additional configuration that overrides default configuration when it is activated." }, "ShaTagger": { "description": "contains the configuration for the SHA tagger.", "x-intellij-html-description": "contains the configuration for the SHA tagger." }, "SkaffoldConfig": { "additionalProperties": false, "preferredOrder": [ "apiVersion", "kind", "build", "test", "deploy", "profiles" ], "properties": { "apiVersion": { "type": "string" }, "build": { "$ref": "#/definitions/BuildConfig" }, "deploy": { "$ref": "#/definitions/DeployConfig" }, "kind": { "type": "string" }, "profiles": { "items": { "$ref": "#/definitions/Profile" }, "type": "array" }, "test": { "$ref": "#/definitions/TestConfig" } } }, "TagPolicy": { "additionalProperties": false, "description": "contains all the configuration for the tagging step", "preferredOrder": [ "gitCommit", "sha256", "envTemplate", "dateTime" ], "properties": { "dateTime": { "$ref": "#/definitions/DateTimeTagger" }, "envTemplate": { "$ref": "#/definitions/EnvTemplateTagger" }, "gitCommit": { "$ref": "#/definitions/GitTagger" }, "sha256": { "$ref": "#/definitions/ShaTagger" } }, "x-intellij-html-description": "contains all the configuration for the tagging step" }, "TestCase": { "additionalProperties": false, "description": "a struct containing all the specified test configuration for an image.", "preferredOrder": [ "image", "structureTests" ], "properties": { "image": { "type": "string" }, "structureTests": { "default": "[]", "items": { "type": "string" }, "type": "array" } }, "x-intellij-html-description": "a struct containing all the specified test configuration for an image." }, "TestConfig": { "items": { "$ref": "#/definitions/TestCase" }, "type": "array" } }, "type": "object" }
o6347
{ "$id": "https://json.schemastore.org/lefthook.json", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "Skip": { "description": "Skip all or specific commands and scripts", "oneOf": [ { "type": "boolean" }, { "type": "array", "items": { "type": "string" } } ] }, "Only": { "description": "Force the command, script, or hook to execute only in certain conditions. This acts like the opposite of skip.", "oneOf": [ { "type": "array", "items": { "type": "object", "properties": { "ref": { "type": "string" } } } }, { "type": "string" } ] }, "Tags": { "description": "Specify tags for commands and scripts, useful for excluding", "type": "string" }, "Env": { "type": "object", "description": "Specify environment variables for the command or script.", "additionalProperties": { "type": "string" } }, "FailText": { "description": "Text to show when the command or script fails.", "type": "string" }, "StageFixed": { "description": "Only for the 'pre-commit' hooks, this automatically calls 'git add' after running the command or script.", "type": "boolean" }, "Interactive": { "description": "Whether to use interactive mode and provide a STDIN for a command or script.", "type": "boolean" }, "GitHook": { "type": "object", "additionalProperties": false, "properties": { "skip": { "$ref": "#/definitions/Skip" }, "only": { "$ref": "#/definitions/Only" }, "files": { "description": "A custom git command for files to be referenced in {files} template.", "type": "string" }, "parallel": { "description": "Whether run commands and scripts concurrently.", "type": "boolean", "default": false }, "piped": { "description": "Whether run commands and scripts sequentially. Will stop execution if one of the commands/scripts fail.", "default": false, "type": "boolean" }, "follow": { "description": "Follow the STDOUT of the running commands and scripts.", "type": "boolean", "default": false }, "exclude_tags": { "type": "string", "description": "Tags or command names that you want to exclude." }, "commands": { "description": "Commands to be executed for the hook.", "type": "object", "additionalProperties": { "$ref": "#/definitions/Command" } }, "scripts": { "description": "Scripts to be executed for the hook.", "type": "object", "additionalProperties": { "$ref": "#/definitions/Script" } } } }, "Command": { "type": "object", "additionalProperties": false, "required": ["run"], "properties": { "run": { "description": "The command that is executed for the hook", "type": "string" }, "skip": { "$ref": "#/definitions/Skip" }, "only": { "$ref": "#/definitions/Only" }, "tags": { "$ref": "#/definitions/Tags" }, "glob": { "description": "Set a glob to filter files for your command.", "type": "string" }, "files": { "description": "Custom Git commit for files to be referenced in {files} template for the 'run' setting.", "type": "string" }, "env": { "$ref": "#/definitions/Env" }, "root": { "type": "string", "description": "Change the CWD for the command you execute." }, "exclude": { "description": "Provide a regular expression to exclude some files from being passed to the 'run' command.", "type": "string" }, "fail_text": { "$ref": "#/definitions/FailText" }, "stage_fixed": { "$ref": "#/definitions/StageFixed" }, "interactive": { "$ref": "#/definitions/Interactive" } } }, "Script": { "type": "object", "additionalProperties": false, "properties": { "runner": { "type": "string" }, "skip": { "$ref": "#/definitions/Skip" }, "only": { "$ref": "#/definitions/Only" }, "tags": { "$ref": "#/definitions/Tags" }, "env": { "$ref": "#/definitions/Env" }, "fail_text": { "$ref": "#/definitions/FailText" }, "stage_fixed": { "$ref": "#/definitions/StageFixed" }, "interactive": { "$ref": "#/definitions/Interactive" } } } }, "properties": { "colors": { "description": "Whether enable or disable colorful output of Lefthook.", "oneOf": [ { "type": "boolean" }, { "type": "object", "additionalProperties": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } } ] }, "no_tty": { "description": "Whether hide spinner and other interactive things.", "type": "boolean" }, "extends": { "description": "Specify files to extend config with.", "type": "array", "items": { "type": "string" } }, "min_version": { "description": "Specify a minimum version for the lefthook binary.", "type": "string" }, "skip_output": { "description": "Manage verbosity by skipping the printing of output of some steps.", "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "meta", "success", "failure", "summary", "execution", "execution_out", "execution_info", "skips" ] } }, "source_dir": { "description": "Change a directory for script files. Directory for script files contains folders with git hook names which contain script files.", "type": "string", "default": ".lefthook/" }, "source_dir_local": { "description": "Change a directory for local script files (not stored in VCS).", "type": "string", "default": ".lefthook-local/" }, "rc": { "description": "Provide an rc file, which is actually a simple sh script", "type": "string" }, "remote": { "description": "Remote configs enable sharing of lefthook configuration across many projects.", "type": "object", "additionalProperties": false, "properties": { "git_url": { "description": "A URL to Git repository. It will be accessed with priveleges of the machine lefthook runs on.", "type": "string" }, "ref": { "description": "An optional branch or tag name.", "type": "string" }, "config": { "description": "An optional config path from remote's root.", "type": "string" } } }, "pre-applypatch": { "$ref": "#/definitions/GitHook" }, "applypatch-msg": { "$ref": "#/definitions/GitHook" }, "post-applypatch": { "$ref": "#/definitions/GitHook" }, "commit-msg": { "$ref": "#/definitions/GitHook" }, "fsmonitor-watchman": { "$ref": "#/definitions/GitHook" }, "p4-changelist": { "$ref": "#/definitions/GitHook" }, "p4-post-changelist": { "$ref": "#/definitions/GitHook" }, "p4-pre-submit": { "$ref": "#/definitions/GitHook" }, "p4-prepare-changelist": { "$ref": "#/definitions/GitHook" }, "pre-commit": { "$ref": "#/definitions/GitHook" }, "post-commit": { "$ref": "#/definitions/GitHook" }, "pre-receive": { "$ref": "#/definitions/GitHook" }, "proc-receive": { "$ref": "#/definitions/GitHook" }, "post-receive": { "$ref": "#/definitions/GitHook" }, "post-merge": { "$ref": "#/definitions/GitHook" }, "pre-rebase": { "$ref": "#/definitions/GitHook" }, "rebase": { "$ref": "#/definitions/GitHook" }, "update": { "$ref": "#/definitions/GitHook" }, "post-update": { "$ref": "#/definitions/GitHook" }, "post-rewrite": { "$ref": "#/definitions/GitHook" }, "post-checkout": { "$ref": "#/definitions/GitHook" }, "post-index-change": { "$ref": "#/definitions/GitHook" }, "pre-auto-gc": { "$ref": "#/definitions/GitHook" }, "pre-merge-commit": { "$ref": "#/definitions/GitHook" }, "pre-push": { "$ref": "#/definitions/GitHook" }, "prepare-commit-msg": { "$ref": "#/definitions/GitHook" }, "push-to-checkout": { "$ref": "#/definitions/GitHook" }, "reference-transaction": { "$ref": "#/definitions/GitHook" }, "sendemail-validate": { "$ref": "#/definitions/GitHook" } }, "type": "object" }
lefthook
{ "description": "HTTPHeader describes a custom header to be used in HTTP probes", "properties": { "name": { "description": "The header field name", "type": [ "string", "null" ] }, "value": { "description": "The header field value", "type": [ "string", "null" ] } }, "required": [ "name", "value" ], "type": "object" }
kb_423_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "flowId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "iconData": { "type": "string", "maxLength": 32767, "pattern": "^data:image/(jpg|jpeg|png|svg\\+xml);base64,[0-9a-zA-Z+/=]*$" }, "enabled": { "type": "boolean" }, "defaultVersionId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "minimumAgentVersion": { "type": "string", "pattern": "^(0|([1-9]\\d*))\\.(0|([1-9]\\d*))\\.(0|([1-9]\\d*))$" }, "flowClass": { "type": "string", "enum": [ "cloud", "edge", "experience", "customNode" ] }, "triggers": { "type": "array", "items": { "oneOf": [ { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "customNodeStart", "deviceCommand", "deviceIdConnect", "deviceTagConnect", "deviceIdDisconnect", "deviceTagDisconnect", "integration", "notebook", "onBoot", "onConnect", "onDisconnect", "request", "udp", "webhook" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "customNodeStart", "deviceCommand", "deviceIdsTagsConnect", "deviceIdsTagsDisconnect", "flowError", "googlePubSub", "meridian", "mqtt", "notebook", "onBoot", "onConnect", "onDisconnect", "particle", "request", "udp", "webhook" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "triggerId": { "type": "string", "maxLength": 48 }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "dataTable" ] }, "config": { "type": "object", "properties": { "bulkInsert": { "type": "boolean" }, "delete": { "type": "boolean" }, "insert": { "type": "boolean" }, "update": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "dataTable" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "deviceId", "deviceTag" ] }, "config": { "type": "object", "properties": { "attributeBlacklist": { "type": "array", "maxItems": 100, "items": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" } }, "attributeWhitelist": { "type": "array", "maxItems": 100, "items": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" } }, "maxAge": { "type": "number" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "deviceIdsTags", "device", "deviceTag" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "timeUnit": { "type": "string", "maxLength": 48 }, "maxAgeToggle": { "type": "boolean" }, "allowedAttributeType": { "type": "string", "enum": [ "attributeWhitelist", "any", "attributeBlacklist" ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "deviceIdInactivity", "deviceTagInactivity" ] }, "config": { "type": "object", "properties": { "seconds": { "type": "number" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "deviceIdsTagsInactivity" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "endpoint" ] }, "config": { "type": "object", "properties": { "experienceVersion": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "endpoint" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "event" ] }, "config": { "type": "object", "properties": { "subject": { "type": "string", "maxLength": 255 }, "new": { "type": "boolean" }, "acknowledged": { "type": "boolean" }, "resolved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "event" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "fileTail" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "encoding": { "type": "string", "maxLength": 48 }, "byteLength": { "type": "string", "maxLength": 48 }, "delimiter": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "fileTail" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "fileWatch" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "fileAdded": { "type": "boolean" }, "fileChanged": { "type": "boolean" }, "fileRemoved": { "type": "boolean" }, "directoryAdded": { "type": "boolean" }, "directoryRemoved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "fileWatch" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "flowError" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "flowError" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "mqttTopic" ] }, "config": { "type": "object", "properties": { "integrationId": { "type": "string", "enum": [ "losant", "local" ] } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "mqtt" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "triggerId": { "type": "string", "maxLength": 48 }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "opcua" ] }, "config": { "type": "object", "properties": { "uri": { "type": "string", "maxLength": 1024 }, "securityPolicy": { "type": "string", "maxLength": 255 }, "securityMode": { "type": "string", "maxLength": 255 }, "username": { "type": "string", "maxLength": 1024 }, "password": { "type": "string", "maxLength": 1024 }, "cert": { "type": "string", "maxLength": 32767 }, "privateKey": { "type": "string", "maxLength": 32767 }, "nameSpace": { "type": "string", "maxLength": 255 }, "identifier": { "type": "string", "maxLength": 255 }, "samplingInterval": { "type": "string", "maxLength": 255 }, "eventFilter": { "type": "array", "maxItems": 100, "items": { "type": "string", "maxLength": 255 } } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "opcua" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "redis" ] }, "config": { "type": "object", "properties": { "host": { "type": "string", "maxLength": 1024 }, "port": { "type": "string", "maxLength": 16 }, "password": { "type": "string", "maxLength": 1024 }, "topic": { "type": "string", "maxLength": 1024 }, "fileAdded": { "type": "boolean" }, "fileChanged": { "type": "boolean" }, "fileRemoved": { "type": "boolean" }, "directoryAdded": { "type": "boolean" }, "directoryRemoved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "redisTrigger" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "serial" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "baudRate": { "type": "number" }, "encoding": { "type": "string", "maxLength": 48 }, "writeOnOpen": { "type": "string", "maxLength": 1024 }, "byteLength": { "type": "string", "maxLength": 48 }, "delimiter": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "serial" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "parseBy": { "type": "string", "enum": [ "byteLength", "delimiter" ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "timer" ] }, "config": { "type": "object", "properties": { "seconds": { "type": "number" }, "cron": { "type": "string", "maxLength": 255 }, "tz": { "type": "string", "maxLength": 255 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "timer" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "timerTypeSelect": { "type": "string", "enum": [ "cronWeekly", "seconds", "cron" ] }, "timeAt": { "type": "string", "maxLength": 255 }, "timezone": { "type": "string", "maxLength": 255 }, "weekdays": { "type": "array", "maxItems": 7, "items": { "type": "number" } } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "virtualButton" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "virtualButton" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "groupId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "payload": { "type": "string", "maxLength": 262144 }, "deviceId": { "oneOf": [ { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, { "type": "string", "enum": [ "" ] }, { "type": "null" } ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false } ] } }, "nodes": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "minLength": 1, "maxLength": 1024 }, "config": { "type": "object" }, "meta": { "type": "object" }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "additionalProperties": false, "required": [ "type" ] } }, "customNodeConfig": { "type": "object", "properties": { "outputCount": { "type": "number", "enum": [ 1, 2 ] }, "resultMode": { "type": "string", "enum": [ "optional", "required", "none" ] }, "resultDescription": { "type": "string", "maxLength": 32767 }, "fields": { "type": "array", "maxItems": 100, "items": { "oneOf": [ { "type": "object", "properties": { "type": { "type": "string", "enum": [ "checkbox" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "select" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "minLength": 1, "maxLength": 1024 }, "options": { "type": "array", "minItems": 1, "maxItems": 100, "items": { "type": "object", "properties": { "label": { "type": "string", "maxLength": 1024 }, "value": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "additionalProperties": false, "required": [ "value" ] } } }, "additionalProperties": false, "required": [ "type", "label", "defaultValue", "options" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "stringTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "maxLength": 1024 }, "required": { "type": "boolean" }, "validRegExp": { "type": "string", "maxLength": 1024 } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "numberTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "number" }, "required": { "type": "boolean" }, "validMin": { "type": "number" }, "validMax": { "type": "number" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "jsonTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "maxLength": 32767 }, "required": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "payloadPath" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "required": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "section" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 } }, "additionalProperties": false, "required": [ "type", "label" ] } ] } } }, "additionalProperties": false, "required": [ "outputCount", "resultMode", "fields" ] }, "customNodeSupports": { "type": "array", "items": { "type": "string", "enum": [ "cloud" ] } }, "customNodeUseCount": { "type": "number" }, "globals": { "type": "array", "maxItems": 100, "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "json": { "type": "string", "minLength": 1, "maxLength": 32767 } }, "additionalProperties": false, "required": [ "key", "json" ] } }, "deletedInDevelop": { "type": "boolean" }, "stats": { "type": "object", "properties": { "runCount": { "type": "number" }, "errorCount": { "type": "number" }, "byVersion": { "type": "object", "patternProperties": { ".*": { "type": "object", "properties": { "runCount": { "type": "number" }, "errorCount": { "type": "number" } } } } } } } } }
o9904
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/transcend-io/cli/main/pathfinder-policy-yml-schema.json", "title": "pathfinderPolicy.yml", "description": "Define the schema for the the Transcend AI Proxy service.", "type": "object", "properties": { "enabledIntegrations": { "type": "object", "properties": { "openAI": { "type": "object", "required": ["enabledRoutes"], "properties": { "enabledRoutes": { "type": "array", "items": { "type": "object", "required": ["routeName", "enabledPolicies"], "properties": { "routeName": { "anyOf": [ { "const": "/v1/chat/completions" }, { "const": "/v1/embeddings" } ] }, "enabledPolicies": { "type": "array", "items": { "anyOf": [ { "const": "redactEmail" }, { "const": "log" } ] } } } } } } } } } } }
pathfinder-policy-yml-schema
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "NanoInteractive Adapter Params", "description": "A schema which validates params accepted by the NanoInteractive adapter", "type": "object", "properties": { "pid": { "type": "string", "description": "Placement idd" }, "nq": { "type": "array", "items": { "type": "string" }, "description": "search queries" }, "category": { "type": "string", "description": "IAB Category" }, "subId": { "type": "string", "description": "any segment value provided by publisher" }, "ref": { "type": "string", "description": "referer" } }, "required": [ "pid" ] }
o68322
{ "definitions": {}, "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "$id": "http://www.pucomex.serpro.gov.br/lpco/detalhar_retificacao.schema.json", "properties": { "situacao": { "type": "object", "properties": { "id": { "type": "string" }, "descricao": { "type": "string" } } }, "dataRegistro": { "type": "string" }, "listaAlteracoes": { "type": "array", "itens": { "type": "object", "properties": { "codigoCampo": { "type": "string" }, "origem": { "type": "string" }, "nomeCampo": { "type": "string" }, "valorOriginal": { "type": [ "string", "null" ] }, "valorAlterado": { "type": [ "string", "null" ] } } } } } }
o73039
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A news item as JSON object -- copyright 2020 IPTC - International Press Telecommunications Council - www.iptc.org - This document is published under the Creative Commons Attribution 4.0 license, see http://creativecommons.org/licenses/by/4.0/", "id": "http://www.iptc.org/std/ninjs/ninjs-schema_1.3.json#", "patternProperties": { "^description_[a-zA-Z0-9_]+": { "title": "Description", "description": "A free-form textual description of the content of the item. (The string appended to description_ in the property name should reflect the format and/or the purpose of the text, separating the parts with _). nar:description", "type": "string" }, "^body_[a-zA-Z0-9_]+": { "title": "Body", "description": "The textual content of the news object. (The string appended to body_ in the property name should reflect the format and/or the purpose of the text, separating the parts with _). nar:inlineData or nar:inlineXML", "type": "string" }, "^headline_[a-zA-Z0-9_]+": { "title": "Extra headlines", "description": "Additional headlines or strings of that type can be handled here. This is not replacing the main headline-property in ninjs. (The string appended to headline_ in the property name should reflect the format and/or the purpose of the text, separating the parts with _) nar:headline with roles issue #13. (Added in 1.3)", "type": "string" } }, "properties": { "uri": { "title": "Uniform Resource Identifier", "description": "The identifier for this news object. nar:newsItem@guid", "type": "string", "format": "uri" }, "type": { "title": "Type", "description": "The generic news type of this news object. (Value 'component' added in version 1.2 as issue #21.). nar:itemClass", "type": "string", "enum": [ "text", "audio", "video", "picture", "graphic", "composite", "component" ] }, "mimetype": { "title": "MIME type", "description": "A MIME type which applies to this news object. nar:contentType", "type": "string" }, "representationtype": { "title": "Representation type", "description": "Indicates how complete this representation of a news item is. No mapping to nar. Specific for ninjs.", "type": "string", "enum": ["complete", "incomplete"] }, "profile": { "title": "Profile", "description": "An identifier for the structure of the news object. This can be any string but we suggest something identifying the structure of the content such as 'text-only' or 'text-photo'. Profiles are typically provider-specific. nar:profile", "type": "string" }, "version": { "title": "Version", "description": "The version of the news object which is identified by the uri property. nar:newsItem@version", "type": "string" }, "firstcreated": { "title": "First created", "description": "Indicates when the first version of the item was created. (Added in version 1.2 from issue #5). nar:firstCreated", "type": "string", "format": "date-time" }, "versioncreated": { "title": "Version created", "description": "The date and time when this version of the news object was created. nar:versionCreated", "type": "string", "format": "date-time" }, "embargoed": { "title": "Embargoed", "description": "The date and time before which all versions of the news object are embargoed. If absent, this object is not embargoed. nar:embargoed", "type": "string", "format": "date-time" }, "pubstatus": { "title": "Publication status", "description": "The publishing status of the news object, its value is *usable* by default. nar:pubStatus", "type": "string", "enum": ["usable", "withheld", "canceled"] }, "urgency": { "title": "Urgency", "description": "The editorial urgency of the content from 1 to 9. 1 represents the highest urgency, 9 the lowest. nar:urgency", "type": "number" }, "copyrightholder": { "title": "Copyright holder", "description": "The person or organisation claiming the intellectual property for the content. nar:copyrightHolder", "type": "string" }, "copyrightnotice": { "title": "Copyright notice", "description": "Any necessary copyright notice for claiming the intellectual property for the content. nar:copyrightNotice", "type": "string" }, "usageterms": { "title": "Usage terms", "description": "A natural-language statement about the usage terms pertaining to the content. nar:usageTerms", "type": "string" }, "ednote": { "title": "Editorial note", "description": "A note that is intended to be read by internal staff at the receiving organisation, but not published to the end-user. (Added in version 1.2 from issue #6.) . ednote: nar:edNote", "type": "string" }, "language": { "title": "Language", "description": "The human language used by the content. The value should follow IETF BCP47. nar:language", "type": "string" }, "person": { "title": "Person", "description": "An individual human being. nar:subject", "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "name": { "title": "Name", "description": "The name of a person", "type": "string" }, "rel": { "title": "Relationship", "description": "The relationship of the content of the news object to the person", "type": "string" }, "scheme": { "title": "Scheme", "description": "The identifier of a scheme (= controlled vocabulary) which includes a code for the person", "type": "string", "format": "uri" }, "code": { "title": "Code", "description": "The code for the person in a scheme (= controlled vocabulary) which is identified by the scheme property", "type": "string" } } } }, "organisation": { "title": "Organisation", "description": "An administrative and functional structure which may act as as a business, as a political party or not-for-profit party. nar:subject", "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "name": { "title": "Name", "description": "The name of the organisation", "type": "string" }, "rel": { "title": "Relationship", "description": "The relationship of the content of the news object to the organisation", "type": "string" }, "scheme": { "title": "Scheme", "description": "The identifier of a scheme (= controlled vocabulary) which includes a code for the organisation", "type": "string", "format": "uri" }, "code": { "title": "Code", "description": "The code for the organisation in a scheme (= controlled vocabulary) which is identified by the scheme property", "type": "string" }, "symbols": { "title": "Symbols", "description": "Symbols used for a financial instrument linked to the organisation at a specific market place", "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "ticker": { "title": "Ticker", "description": "Ticker symbol used for the financial instrument", "type": "string" }, "exchange": { "title": "Exchange", "description": "Identifier for the marketplace which uses the ticker symbols of the ticker property", "type": "string" } } } } } } }, "place": { "title": "Place", "description": "A named location. nar:subject", "type": "array", "items": { "type": "object", "additionalProperties": false, "patternProperties": { "^geometry_[a-zA-Z0-9_]+": { "description": "An object holding geo data of this place. Could be of any relevant geo data JSON object definition.", "type": "object" } }, "properties": { "name": { "title": "Name", "description": "The name of the place", "type": "string" }, "rel": { "title": "Relationship", "description": "The relationship of the content of the news object to the place", "type": "string" }, "scheme": { "title": "Scheme", "description": "The identifier of a scheme (= controlled vocabulary) which includes a code for the place", "type": "string", "format": "uri" }, "code": { "title": "Code", "description": "The code for the place in a scheme (= controlled vocabulary) which is identified by the scheme property", "type": "string" } } } }, "subject": { "title": "Subject", "description": "A concept with a relationship to the content. nar:subject", "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "name": { "title": "Name", "description": "The name of the subject", "type": "string" }, "rel": { "title": "Relationship", "description": "The relationship of the content of the news object to the subject", "type": "string" }, "scheme": { "title": "Scheme", "description": "The identifier of a scheme (= controlled vocabulary) which includes a code for the subject", "type": "string", "format": "uri" }, "code": { "title": "Code", "description": "The code for the subject in a scheme (= controlled vocabulary) which is identified by the scheme property", "type": "string" } } } }, "event": { "title": "Event", "description": "Something which happens in a planned or unplanned manner. nar:?", "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "name": { "title": "Name", "description": "The name of the event", "type": "string" }, "rel": { "title": "Relationship", "description": "The relationship of the content of the news object to the event", "type": "string" }, "scheme": { "title": "Scheme", "description": "The identifier of a scheme (= controlled vocabulary) which includes a code for the event", "type": "string", "format": "uri" }, "code": { "title": "Code", "description": "The code for the event in a scheme (= controlled vocabulary) which is identified by the scheme property", "type": "string" } } } }, "object": { "title": "Object", "description": "Something material, excluding persons. nar:subject", "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "name": { "title": "Name", "description": "The name of the object", "type": "string" }, "rel": { "title": "Relationship", "description": "The relationship of the content of the news object to the object", "type": "string" }, "scheme": { "title": "Scheme", "description": "The identifier of a scheme (= controlled vocabulary) which includes a code for the object", "type": "string", "format": "uri" }, "code": { "title": "Code", "description": "The code for the object in a scheme (= controlled vocabulary) which is identified by the scheme property", "type": "string" } } } }, "infosource": { "title": "Info source", "description": "A party (person or organisation) which originated, modified, enhanced, distributed, aggregated or supplied the content or provided some information used to create or enhance the content. (Added in version 1.2 according to issue #15.) . infosource: nar:infoSource", "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "name": { "title": "Name", "description": "The name of the infosource", "type": "string" }, "rel": { "title": "Relationship", "description": "The relationship of the content of the news object to the infosource", "type": "string" }, "scheme": { "title": "Schema", "description": "The identifier of a scheme (= controlled vocabulary) which includes a code for the infosource", "type": "string", "format": "uri" }, "code": { "title": "Code", "description": "The code for the infosource in a scheme (= controlled vocabulary) which is identified by the scheme property", "type": "string" } } } }, "title": { "title": "Title", "description": "A short natural-language name for the item. (Added in version 1.2 according to issue #9). nar:itemMeta/title", "type": "string" }, "byline": { "title": "Byline", "description": "The name(s) of the creator(s) of the content. nar:by", "type": "string" }, "headline": { "title": "Headline", "description": "A brief and snappy introduction to the content, designed to catch the reader's attention. nar:headline", "type": "string" }, "slugline": { "title": "Slugline", "description": "A human-readable identifier for the item. (Added in version 1.2 from issue #4.). nar:slugline", "type": "string" }, "located": { "title": "Located", "description": "The name of the location from which the content originates. nar:located", "type": "string" }, "charcount": { "title": "Character count", "description": "The total character count in the article excluding figure captions. (Added in version 1.2 according to issue #27.). nar:charcount", "type": "number" }, "wordcount": { "title": "Word count", "description": "The total number of words in the article excluding figure captions. (Added in version 1.2 according to issue #27.). nar:wordcount", "type": "number" }, "renditions": { "title": "Renditions", "description": "Wrapper for different renditions of the news object. nar:remoteContent", "type": "object", "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9_]+": { "description": "A specific rendition of the content of the news object. (Description changed in version 1.2 according to issue #17.)", "type": "object", "additionalProperties": false, "properties": { "href": { "title": "href", "description": "The URL for accessing the rendition as a resource. nar:remoteContent@ref", "type": "string", "format": "uri" }, "mimetype": { "title": "mimetype", "description": "A MIME type which applies to the rendition. nar:remoteContent@contenttype", "type": "string" }, "title": { "title": "Title", "description": "A title for the link to the rendition resource", "type": "string" }, "height": { "title": "Height", "description": "For still and moving images: the height of the display area measured in pixels. nar:remoteContent@height", "type": "number" }, "width": { "title": "Width", "description": "For still and moving images: the width of the display area measured in pixels. nar:remoteContent@width", "type": "number" }, "sizeinbytes": { "title": "Size in bytes", "description": "The size of the rendition resource in bytes", "type": "number" }, "duration": { "title": "Duration", "description": "The total time duration of the content in seconds. (Added in version 1.2. Issue #18). nar:remoteContent@duration", "type": "number" }, "format": { "title": "Format", "description": "Binary format name. (Added in version 1.2. Issue #18). nar:remoteContent@format", "type": "string" } } } } }, "associations": { "description": "Content of news objects which are associated with this news object. nar:link", "type": "object", "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9_]+": { "$ref": "http://www.iptc.org/std/ninjs/ninjs-schema_1.3.json#" } } }, "altids": { "title": "Alternative id", "description": "Alternative identifiers of the item. It is up to the individual provider to name and set type on the alternative identifiers they like to use. nar:altId issue #3. (Added in version 1.3)", "type": "object", "additionalProperties": true }, "trustindicator": { "title": "Trust indicator", "description": "An array of objects to allow links to documents about trust indicators. (nar:link) issue #44. (Added in version 1.3)", "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "scheme": { "title": "Scheme", "description": "The identifier of a scheme (= controlled vocabulary) which includes a code for the trust indicator", "type": "string", "format": "uri" }, "code": { "title": "Code", "description": "The code for the trust indicator in a scheme (= controlled vocabulary) which is identified by the scheme property", "type": "string" }, "title": { "title": "Title", "description": "The title of the resource being referenced.", "type": "string" }, "href": { "title": "href", "description": "The URL for accessing the trust indicator resource.", "type": "string", "format": "uri" } } } }, "$standard": { "title": "Standard", "type": "object", "description": "An object with information about standard, version and schema this instance is valid against. nar:standard, nar:standardversion and xml:schema issue #43. (Added in version 1.3)", "additionalProperties": false, "properties": { "name": { "type": "string", "title": "Name of standard.", "description": "For example ninjs. nar:standard" }, "version": { "type": "string", "title": "Version of standard.", "description": "For example 1.3. nar:standardversion" }, "schema": { "type": "string", "format": "uri", "title": "Schema", "description": "The uri of the json schema to use for validation." } } }, "genre": { "title": "Genre", "description": "A nature, intellectual or journalistic form of the content. nar:genre. (Added in version 1.3)", "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "name": { "title": "Name", "description": "The name of the genre", "type": "string" }, "scheme": { "title": "Scheme", "description": "The identifier of a scheme (= controlled vocabulary) which includes a code for the genre. Normally http://cv.iptc.org/newscodes/genre/", "type": "string", "format": "uri" }, "code": { "title": "Code", "description": "The code for the genre in a scheme (= controlled vocabulary) which is identified by the scheme property", "type": "string" } } } } }, "required": ["uri"], "title": "IPTC ninjs - News in JSON - 1.3 (approved, 13 May 2020)", "type": "object" }
ninjs-1
{ "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" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerStatus": { "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" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference": { "description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.", "properties": { "apiGroup": { "description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.", "type": "string" }, "kind": { "description": "Kind is the type of resource being referenced", "type": "string" }, "name": { "description": "Name is the name of resource being referenced", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_HTTPIngressPath": { "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.", "properties": { "backend": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressBackend", "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to." }, "path": { "description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.", "type": "string" }, "pathType": { "description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types. Defaults to ImplementationSpecific.", "type": "string" } }, "required": [ "backend" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_HTTPIngressRuleValue": { "description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.", "properties": { "paths": { "description": "A collection of paths that map requests to backends.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_HTTPIngressPath" }, "type": "array" } }, "required": [ "paths" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_Ingress": { "description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": "string" }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "Ingress" ], "type": "string" }, "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_networking_v1beta1_IngressSpec", "description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressStatus", "description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", "kind": "Ingress", "version": "v1beta1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressBackend": { "description": "IngressBackend describes all endpoints for a given service and port.", "properties": { "resource": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference", "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified." }, "serviceName": { "description": "Specifies the name of the referenced service.", "type": "string" }, "servicePort": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Specifies the port of the referenced service." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressRule": { "description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.", "properties": { "host": { "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.", "type": "string" }, "http": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_HTTPIngressRuleValue" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressSpec": { "description": "IngressSpec describes the Ingress the user wishes to exist.", "properties": { "backend": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressBackend", "description": "A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default." }, "ingressClassName": { "description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.", "type": "string" }, "rules": { "description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressRule" }, "type": "array" }, "tls": { "description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressTLS" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressStatus": { "description": "IngressStatus describe the current state of the Ingress.", "properties": { "loadBalancer": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerStatus", "description": "LoadBalancer contains the current status of the load-balancer." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressTLS": { "description": "IngressTLS describes the transport layer security associated with an Ingress.", "properties": { "hosts": { "description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", "items": { "type": "string" }, "type": "array" }, "secretName": { "description": "SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.", "type": "string" } }, "type": "object" }, "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_ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "properties": { "continue": { "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.", "type": "string" }, "remainingItemCount": { "_format": "int64", "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.", "type": "integer" }, "resourceVersion": { "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. 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" } }, "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": "IngressList is a collection of Ingress.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "networking.k8s.io/v1beta1" ], "type": [ "string", "null" ] }, "items": { "description": "Items is the list of Ingress.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_Ingress" }, "type": [ "array", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "IngressList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", "kind": "IngressList", "version": "v1beta1" } ] }
kb_449_Normalized
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape (only applicable for triangle)", "type": "number" }, "height": { "description": "The height of the shape (only applicable for triangle)", "type": "number" }, "length": { "description": "The length or radius of the shape", "type": "number" }, "width": { "description": "The width of the shape (only applicable for rectangle)", "type": "number" } }, "required": [ "length" ], "type": "object" }, "shape": { "description": "The type of shape (e.g., square, circle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_d00d5a51
{ "additionalProperties": false, "description": "Context containing ID of parent event (useful for annotating events derived from other events)", "properties": { "parentEventId": { "_format": "uuid", "type": "string" } }, "required": [ "parentEventId" ], "self": { "format": "jsonschema", "name": "parent_event", "vendor": "com.snowplowanalytics.snowplow", "version": "1-0-0" }, "type": "object" }
sp_301_Normalized
{ "anyOf": [ { "$ref": "#/definitions/SkaffoldConfig" } ], "definitions": { "Activation": { "additionalProperties": false, "description": "criteria by which a profile is auto-activated.", "preferredOrder": [ "env", "kubeContext", "command" ], "properties": { "command": { "description": "a Skaffold command for which the profile is auto-activated.", "examples": [ "dev" ], "type": "string", "x-intellij-html-description": "a Skaffold command for which the profile is auto-activated." }, "env": { "description": "a `key=pattern` pair. The profile is auto-activated if an Environment Variable `key` matches the pattern. If the pattern starts with `!`, activation happens if the remaining pattern is _not_ matched. The pattern matches if the Environment Variable value is exactly `pattern`, or the regex `pattern` is found in it. An empty `pattern` (e.g. `env: \"key=\"`) always only matches if the Environment Variable is undefined or empty.", "examples": [ "ENV=production" ], "type": "string", "x-intellij-html-description": "a <code>key=pattern</code> pair. The profile is auto-activated if an Environment Variable <code>key</code> matches the pattern. If the pattern starts with <code>!</code>, activation happens if the remaining pattern is <em>not</em> matched. The pattern matches if the Environment Variable value is exactly <code>pattern</code>, or the regex <code>pattern</code> is found in it. An empty <code>pattern</code> (e.g. <code>env: &quot;key=&quot;</code>) always only matches if the Environment Variable is undefined or empty." }, "kubeContext": { "description": "a Kubernetes context for which the profile is auto-activated.", "examples": [ "minikube" ], "type": "string", "x-intellij-html-description": "a Kubernetes context for which the profile is auto-activated." } }, "x-intellij-html-description": "criteria by which a profile is auto-activated." }, "Artifact": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "description": "*beta* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "docker" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "docker": { "$ref": "#/definitions/DockerArtifact", "description": "*beta* describes an artifact built from a Dockerfile.", "x-intellij-html-description": "<em>beta</em> describes an artifact built from a Dockerfile." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "description": "*beta* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "bazel" ], "properties": { "bazel": { "$ref": "#/definitions/BazelArtifact", "description": "*beta* requires bazel CLI to be installed and the sources to contain [Bazel](https://bazel.build/) configuration files.", "x-intellij-html-description": "<em>beta</em> requires bazel CLI to be installed and the sources to contain <a href=\"https://bazel.build/\">Bazel</a> configuration files." }, "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "description": "*beta* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "jib" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "jib": { "$ref": "#/definitions/JibArtifact", "description": "builds images using the [Jib plugins for Maven or Gradle](https://github.com/GoogleContainerTools/jib/).", "x-intellij-html-description": "builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/\">Jib plugins for Maven or Gradle</a>." }, "sync": { "$ref": "#/definitions/Sync", "description": "*beta* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "kaniko" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "kaniko": { "$ref": "#/definitions/KanikoArtifact", "description": "builds images using [kaniko](https://github.com/GoogleContainerTools/kaniko).", "x-intellij-html-description": "builds images using <a href=\"https://github.com/GoogleContainerTools/kaniko\">kaniko</a>." }, "sync": { "$ref": "#/definitions/Sync", "description": "*beta* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "buildpack" ], "properties": { "buildpack": { "$ref": "#/definitions/BuildpackArtifact", "description": "builds images using [Cloud Native Buildpacks](https://buildpacks.io/).", "x-intellij-html-description": "builds images using <a href=\"https://buildpacks.io/\">Cloud Native Buildpacks</a>." }, "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "description": "*beta* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "custom" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "custom": { "$ref": "#/definitions/CustomArtifact", "description": "*beta* builds images using a custom build script written by the user.", "x-intellij-html-description": "<em>beta</em> builds images using a custom build script written by the user." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "description": "*beta* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified." } } } ], "description": "items that need to be built, along with the context in which they should be built.", "required": [ "image" ], "x-intellij-html-description": "items that need to be built, along with the context in which they should be built." }, "BazelArtifact": { "additionalProperties": false, "description": "describes an artifact built with [Bazel](https://bazel.build/).", "preferredOrder": [ "target", "args" ], "properties": { "args": { "default": "[]", "description": "additional args to pass to `bazel build`.", "examples": [ "[\"-flag\", \"--otherflag\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional args to pass to <code>bazel build</code>." }, "target": { "description": "`bazel build` target to run.", "examples": [ "//:skaffold_example.tar" ], "type": "string", "x-intellij-html-description": "<code>bazel build</code> target to run." } }, "required": [ "target" ], "x-intellij-html-description": "describes an artifact built with <a href=\"https://bazel.build/\">Bazel</a>." }, "BuildConfig": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "local" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "local": { "$ref": "#/definitions/LocalBuild", "description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.", "x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "googleCloudBuild" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "googleCloudBuild": { "$ref": "#/definitions/GoogleCloudBuild", "description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/).", "x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/\">Google Cloud Build</a>." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "cluster" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "cluster": { "$ref": "#/definitions/ClusterDetails", "description": "*beta* describes how to do an on-cluster build.", "x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } } ], "description": "contains all the configuration for the build steps.", "x-intellij-html-description": "contains all the configuration for the build steps." }, "BuildpackArtifact": { "additionalProperties": false, "description": "*alpha* describes an artifact built using [Cloud Native Buildpacks](https://buildpacks.io/). It can be used to build images out of project's sources without any additional configuration.", "preferredOrder": [ "forcePull", "builder", "runImage", "dependencies" ], "properties": { "builder": { "description": "builder image used.", "type": "string", "x-intellij-html-description": "builder image used." }, "dependencies": { "$ref": "#/definitions/BuildpackDependencies", "description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact.", "x-intellij-html-description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact." }, "forcePull": { "default": "false", "description": "should the builder image be pull before each build.", "type": "boolean", "x-intellij-html-description": "should the builder image be pull before each build." }, "runImage": { "description": "overrides the stack's default run image.", "type": "string", "x-intellij-html-description": "overrides the stack's default run image." } }, "required": [ "builder" ], "x-intellij-html-description": "<em>alpha</em> describes an artifact built using <a href=\"https://buildpacks.io/\">Cloud Native Buildpacks</a>. It can be used to build images out of project's sources without any additional configuration." }, "BuildpackDependencies": { "additionalProperties": false, "description": "*alpha* used to specify dependencies for an artifact built by a buildpack.", "preferredOrder": [ "paths", "ignore" ], "properties": { "ignore": { "default": "[]", "description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both `paths` and in `ignore`, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with `paths`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both <code>paths</code> and in <code>ignore</code>, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with <code>paths</code>." }, "paths": { "default": "[]", "description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization." } }, "x-intellij-html-description": "<em>alpha</em> used to specify dependencies for an artifact built by a buildpack." }, "ClusterDetails": { "additionalProperties": false, "description": "*beta* describes how to do an on-cluster build.", "preferredOrder": [ "HTTP_PROXY", "HTTPS_PROXY", "pullSecret", "pullSecretName", "pullSecretMountPath", "namespace", "timeout", "dockerConfig", "resources", "concurrency" ], "properties": { "HTTPS_PROXY": { "description": "for kaniko pod.", "type": "string", "x-intellij-html-description": "for kaniko pod." }, "HTTP_PROXY": { "description": "for kaniko pod.", "type": "string", "x-intellij-html-description": "for kaniko pod." }, "concurrency": { "description": "how many artifacts can be built concurrently. 0 means \"no-limit\" Defaults to 0.", "type": "integer", "x-intellij-html-description": "how many artifacts can be built concurrently. 0 means &quot;no-limit&quot; Defaults to 0." }, "dockerConfig": { "$ref": "#/definitions/DockerConfig", "description": "describes how to mount the local Docker configuration into a pod.", "x-intellij-html-description": "describes how to mount the local Docker configuration into a pod." }, "namespace": { "description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration.", "type": "string", "x-intellij-html-description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration." }, "pullSecret": { "description": "path to the Google Cloud service account secret key file.", "type": "string", "x-intellij-html-description": "path to the Google Cloud service account secret key file." }, "pullSecretMountPath": { "description": "path the pull secret will be mounted at within the running container.", "type": "string", "x-intellij-html-description": "path the pull secret will be mounted at within the running container." }, "pullSecretName": { "default": "kaniko-secret", "description": "name of the Kubernetes secret for pulling the files from the build context and pushing the final image. If given, the secret needs to contain the Google Cloud service account secret key under the key `kaniko-secret`.", "type": "string", "x-intellij-html-description": "name of the Kubernetes secret for pulling the files from the build context and pushing the final image. If given, the secret needs to contain the Google Cloud service account secret key under the key <code>kaniko-secret</code>." }, "resources": { "$ref": "#/definitions/ResourceRequirements", "description": "define the resource requirements for the kaniko pod.", "x-intellij-html-description": "define the resource requirements for the kaniko pod." }, "timeout": { "description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (`20m`).", "type": "string", "x-intellij-html-description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (<code>20m</code>)." } }, "x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build." }, "CustomArtifact": { "additionalProperties": false, "description": "*beta* describes an artifact built from a custom build script written by the user. It can be used to build images with builders that aren't directly integrated with skaffold.", "preferredOrder": [ "buildCommand", "dependencies" ], "properties": { "buildCommand": { "description": "command executed to build the image.", "type": "string", "x-intellij-html-description": "command executed to build the image." }, "dependencies": { "$ref": "#/definitions/CustomDependencies", "description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact.", "x-intellij-html-description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact." } }, "x-intellij-html-description": "<em>beta</em> describes an artifact built from a custom build script written by the user. It can be used to build images with builders that aren't directly integrated with skaffold." }, "CustomDependencies": { "additionalProperties": false, "description": "*beta* used to specify dependencies for an artifact built by a custom build script. Either `dockerfile` or `paths` should be specified for file watching to work as expected.", "preferredOrder": [ "dockerfile", "command", "paths", "ignore" ], "properties": { "command": { "description": "represents a custom command that skaffold executes to obtain dependencies. The output of this command *must* be a valid JSON array.", "type": "string", "x-intellij-html-description": "represents a custom command that skaffold executes to obtain dependencies. The output of this command <em>must</em> be a valid JSON array." }, "dockerfile": { "$ref": "#/definitions/DockerfileDependency", "description": "should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies.", "x-intellij-html-description": "should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies." }, "ignore": { "default": "[]", "description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both `paths` and in `ignore`, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with `paths`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both <code>paths</code> and in <code>ignore</code>, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with <code>paths</code>." }, "paths": { "default": "[]", "description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization." } }, "x-intellij-html-description": "<em>beta</em> used to specify dependencies for an artifact built by a custom build script. Either <code>dockerfile</code> or <code>paths</code> should be specified for file watching to work as expected." }, "DateTimeTagger": { "additionalProperties": false, "description": "*beta* tags images with the build timestamp.", "preferredOrder": [ "format", "timezone" ], "properties": { "format": { "default": "2006-01-02_15-04-05.999_MST", "description": "formats the date and time. See [#Time.Format](https://golang.org/pkg/time/#Time.Format).", "type": "string", "x-intellij-html-description": "formats the date and time. See <a href=\"https://golang.org/pkg/time/#Time.Format\">#Time.Format</a>." }, "timezone": { "description": "sets the timezone for the date and time. See [Time.LoadLocation](https://golang.org/pkg/time/#Time.LoadLocation). Defaults to the local timezone.", "type": "string", "x-intellij-html-description": "sets the timezone for the date and time. See <a href=\"https://golang.org/pkg/time/#Time.LoadLocation\">Time.LoadLocation</a>. Defaults to the local timezone." } }, "x-intellij-html-description": "<em>beta</em> tags images with the build timestamp." }, "DeployConfig": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "statusCheckDeadlineSeconds", "kubeContext" ], "properties": { "kubeContext": { "description": "Kubernetes context that Skaffold should deploy to.", "examples": [ "minikube" ], "type": "string", "x-intellij-html-description": "Kubernetes context that Skaffold should deploy to." }, "statusCheckDeadlineSeconds": { "description": "*beta* deadline for deployments to stabilize in seconds.", "type": "integer", "x-intellij-html-description": "<em>beta</em> deadline for deployments to stabilize in seconds." } } }, { "additionalProperties": false, "preferredOrder": [ "statusCheckDeadlineSeconds", "kubeContext", "helm" ], "properties": { "helm": { "$ref": "#/definitions/HelmDeploy", "description": "*beta* uses the `helm` CLI to apply the charts to the cluster.", "x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster." }, "kubeContext": { "description": "Kubernetes context that Skaffold should deploy to.", "examples": [ "minikube" ], "type": "string", "x-intellij-html-description": "Kubernetes context that Skaffold should deploy to." }, "statusCheckDeadlineSeconds": { "description": "*beta* deadline for deployments to stabilize in seconds.", "type": "integer", "x-intellij-html-description": "<em>beta</em> deadline for deployments to stabilize in seconds." } } }, { "additionalProperties": false, "preferredOrder": [ "statusCheckDeadlineSeconds", "kubeContext", "kubectl" ], "properties": { "kubeContext": { "description": "Kubernetes context that Skaffold should deploy to.", "examples": [ "minikube" ], "type": "string", "x-intellij-html-description": "Kubernetes context that Skaffold should deploy to." }, "kubectl": { "$ref": "#/definitions/KubectlDeploy", "description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.", "x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster." }, "statusCheckDeadlineSeconds": { "description": "*beta* deadline for deployments to stabilize in seconds.", "type": "integer", "x-intellij-html-description": "<em>beta</em> deadline for deployments to stabilize in seconds." } } }, { "additionalProperties": false, "preferredOrder": [ "statusCheckDeadlineSeconds", "kubeContext", "kustomize" ], "properties": { "kubeContext": { "description": "Kubernetes context that Skaffold should deploy to.", "examples": [ "minikube" ], "type": "string", "x-intellij-html-description": "Kubernetes context that Skaffold should deploy to." }, "kustomize": { "$ref": "#/definitions/KustomizeDeploy", "description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.", "x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to &quot;patch&quot; a deployment for a target environment." }, "statusCheckDeadlineSeconds": { "description": "*beta* deadline for deployments to stabilize in seconds.", "type": "integer", "x-intellij-html-description": "<em>beta</em> deadline for deployments to stabilize in seconds." } } } ], "description": "contains all the configuration needed by the deploy steps.", "x-intellij-html-description": "contains all the configuration needed by the deploy steps." }, "DockerArtifact": { "additionalProperties": false, "description": "describes an artifact built from a Dockerfile, usually using `docker build`.", "preferredOrder": [ "dockerfile", "target", "buildArgs", "network", "cacheFrom", "noCache" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build." }, "cacheFrom": { "default": "[]", "description": "the Docker images used as cache sources.", "examples": [ "[\"golang:1.10.1-alpine3.7\", \"alpine:3.7\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the Docker images used as cache sources." }, "dockerfile": { "default": "Dockerfile", "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." }, "network": { "description": "passed through to docker and overrides the network configuration of docker builder. If unset, use whatever is configured in the underlying docker daemon. Valid modes are `host`: use the host's networking stack. `bridge`: use the bridged network configuration. `none`: no networking in the container.", "enum": [ "host", "bridge", "none" ], "type": "string", "x-intellij-html-description": "passed through to docker and overrides the network configuration of docker builder. If unset, use whatever is configured in the underlying docker daemon. Valid modes are <code>host</code>: use the host's networking stack. <code>bridge</code>: use the bridged network configuration. <code>none</code>: no networking in the container." }, "noCache": { "default": "false", "description": "used to pass in --no-cache to docker build to prevent caching.", "type": "boolean", "x-intellij-html-description": "used to pass in --no-cache to docker build to prevent caching." }, "target": { "description": "Dockerfile target name to build.", "type": "string", "x-intellij-html-description": "Dockerfile target name to build." } }, "x-intellij-html-description": "describes an artifact built from a Dockerfile, usually using <code>docker build</code>." }, "DockerConfig": { "additionalProperties": false, "description": "contains information about the docker `config.json` to mount.", "preferredOrder": [ "path", "secretName" ], "properties": { "path": { "description": "path to the docker `config.json`.", "type": "string", "x-intellij-html-description": "path to the docker <code>config.json</code>." }, "secretName": { "description": "Kubernetes secret that contains the `config.json` Docker configuration. Note that the expected secret type is not 'kubernetes.io/dockerconfigjson' but 'Opaque'.", "type": "string", "x-intellij-html-description": "Kubernetes secret that contains the <code>config.json</code> Docker configuration. Note that the expected secret type is not 'kubernetes.io/dockerconfigjson' but 'Opaque'." } }, "x-intellij-html-description": "contains information about the docker <code>config.json</code> to mount." }, "DockerfileDependency": { "additionalProperties": false, "description": "*beta* used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile.", "preferredOrder": [ "path", "buildArgs" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\", \"key3\": \"{{.ENV_VARIABLE}}\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax." }, "path": { "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." } }, "x-intellij-html-description": "<em>beta</em> used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile." }, "EnvTemplateTagger": { "additionalProperties": false, "description": "*beta* tags images with a configurable template string.", "preferredOrder": [ "template" ], "properties": { "template": { "description": "used to produce the image name and tag. See golang [text/template](https://golang.org/pkg/text/template/). The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section.", "examples": [ "{{.RELEASE}}-{{.IMAGE_NAME}}" ], "type": "string", "x-intellij-html-description": "used to produce the image name and tag. See golang <a href=\"https://golang.org/pkg/text/template/\">text/template</a>. The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section." } }, "required": [ "template" ], "x-intellij-html-description": "<em>beta</em> tags images with a configurable template string." }, "GitTagger": { "additionalProperties": false, "description": "*beta* tags images with the git tag or commit of the artifact's workspace.", "preferredOrder": [ "variant" ], "properties": { "variant": { "description": "determines the behavior of the git tagger. Valid variants are `Tags` (default): use git tags or fall back to abbreviated commit hash. `CommitSha`: use the full git commit sha. `AbbrevCommitSha`: use the abbreviated git commit sha. `TreeSha`: use the full tree hash of the artifact workingdir. `AbbrevTreeSha`: use the abbreviated tree hash of the artifact workingdir.", "enum": [ "Tags", "CommitSha", "AbbrevCommitSha", "TreeSha", "AbbrevTreeSha" ], "type": "string", "x-intellij-html-description": "determines the behavior of the git tagger. Valid variants are <code>Tags</code> (default): use git tags or fall back to abbreviated commit hash. <code>CommitSha</code>: use the full git commit sha. <code>AbbrevCommitSha</code>: use the abbreviated git commit sha. <code>TreeSha</code>: use the full tree hash of the artifact workingdir. <code>AbbrevTreeSha</code>: use the abbreviated tree hash of the artifact workingdir." } }, "x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace." }, "GoogleCloudBuild": { "additionalProperties": false, "description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/docs/). Docker and Jib artifacts can be built on Cloud Build. The `projectId` needs to be provided and the currently logged in user should be given permissions to trigger new builds.", "preferredOrder": [ "projectId", "diskSizeGb", "machineType", "timeout", "dockerImage", "kanikoImage", "mavenImage", "gradleImage", "concurrency" ], "properties": { "concurrency": { "description": "how many artifacts can be built concurrently. 0 means \"no-limit\" Defaults to 0.", "type": "integer", "x-intellij-html-description": "how many artifacts can be built concurrently. 0 means &quot;no-limit&quot; Defaults to 0." }, "diskSizeGb": { "description": "disk size of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).", "type": "integer", "x-intellij-html-description": "disk size of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>." }, "dockerImage": { "default": "gcr.io/cloud-builders/docker", "description": "image that runs a Docker build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Docker build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "gradleImage": { "default": "gcr.io/cloud-builders/gradle", "description": "image that runs a Gradle build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Gradle build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "kanikoImage": { "default": "gcr.io/kaniko-project/executor", "description": "image that runs a Kaniko build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Kaniko build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "machineType": { "description": "type of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).", "type": "string", "x-intellij-html-description": "type of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>." }, "mavenImage": { "default": "gcr.io/cloud-builders/mvn", "description": "image that runs a Maven build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Maven build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "projectId": { "description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name `gcr.io/myproject/image`, Skaffold will use the `myproject` GCP project.", "type": "string", "x-intellij-html-description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name <code>gcr.io/myproject/image</code>, Skaffold will use the <code>myproject</code> GCP project." }, "timeout": { "description": "amount of time (in seconds) that this build should be allowed to run. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build).", "type": "string", "x-intellij-html-description": "amount of time (in seconds) that this build should be allowed to run. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build\">Cloud Build Reference</a>." } }, "x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/docs/\">Google Cloud Build</a>. Docker and Jib artifacts can be built on Cloud Build. The <code>projectId</code> needs to be provided and the currently logged in user should be given permissions to trigger new builds." }, "HelmConventionConfig": { "additionalProperties": false, "description": "image config in the syntax of image.repository and image.tag.", "preferredOrder": [ "explicitRegistry" ], "properties": { "explicitRegistry": { "default": "false", "description": "separates `image.registry` to the image config syntax. Useful for some charts e.g. `postgresql`.", "type": "boolean", "x-intellij-html-description": "separates <code>image.registry</code> to the image config syntax. Useful for some charts e.g. <code>postgresql</code>." } }, "x-intellij-html-description": "image config in the syntax of image.repository and image.tag." }, "HelmDeploy": { "additionalProperties": false, "description": "*beta* uses the `helm` CLI to apply the charts to the cluster.", "preferredOrder": [ "releases", "flags" ], "properties": { "flags": { "$ref": "#/definitions/HelmDeployFlags", "description": "additional option flags that are passed on the command line to `helm`.", "x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>." }, "releases": { "description": "a list of Helm releases.", "items": { "$ref": "#/definitions/HelmRelease" }, "type": "array", "x-intellij-html-description": "a list of Helm releases." } }, "required": [ "releases" ], "x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster." }, "HelmDeployFlags": { "additionalProperties": false, "description": "additional option flags that are passed on the command line to `helm`.", "preferredOrder": [ "global", "install", "upgrade" ], "properties": { "global": { "default": "[]", "description": "additional flags passed on every command.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on every command." }, "install": { "default": "[]", "description": "additional flags passed to (`helm install`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed to (<code>helm install</code>)." }, "upgrade": { "default": "[]", "description": "additional flags passed to (`helm upgrade`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed to (<code>helm upgrade</code>)." } }, "x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>." }, "HelmFQNConfig": { "additionalProperties": false, "description": "image config to use the FullyQualifiedImageName as param to set.", "preferredOrder": [ "property" ], "properties": { "property": { "description": "defines the image config.", "type": "string", "x-intellij-html-description": "defines the image config." } }, "x-intellij-html-description": "image config to use the FullyQualifiedImageName as param to set." }, "HelmImageStrategy": { "anyOf": [ { "additionalProperties": false }, { "additionalProperties": false, "preferredOrder": [ "fqn" ], "properties": { "fqn": { "$ref": "#/definitions/HelmFQNConfig", "description": "image configuration uses the syntax `IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG`.", "x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "helm" ], "properties": { "helm": { "$ref": "#/definitions/HelmConventionConfig", "description": "image configuration uses the syntax `IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG`.", "x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG</code>." } } } ], "description": "adds image configurations to the Helm `values` file.", "x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file." }, "HelmPackaged": { "additionalProperties": false, "description": "parameters for packaging helm chart (`helm package`).", "preferredOrder": [ "version", "appVersion" ], "properties": { "appVersion": { "description": "sets the `appVersion` on the chart to this version.", "type": "string", "x-intellij-html-description": "sets the <code>appVersion</code> on the chart to this version." }, "version": { "description": "sets the `version` on the chart to this semver version.", "type": "string", "x-intellij-html-description": "sets the <code>version</code> on the chart to this semver version." } }, "x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)." }, "HelmRelease": { "additionalProperties": false, "description": "describes a helm release to be deployed.", "preferredOrder": [ "name", "chartPath", "valuesFiles", "values", "namespace", "version", "setValues", "setValueTemplates", "setFiles", "wait", "recreatePods", "skipBuildDependencies", "useHelmSecrets", "remote", "overrides", "packaged", "imageStrategy" ], "properties": { "chartPath": { "description": "path to the Helm chart.", "type": "string", "x-intellij-html-description": "path to the Helm chart." }, "imageStrategy": { "$ref": "#/definitions/HelmImageStrategy", "description": "adds image configurations to the Helm `values` file.", "x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file." }, "name": { "description": "name of the Helm release.", "type": "string", "x-intellij-html-description": "name of the Helm release." }, "namespace": { "description": "Kubernetes namespace.", "type": "string", "x-intellij-html-description": "Kubernetes namespace." }, "overrides": { "description": "key-value pairs. If present, Skaffold will build a Helm `values` file that overrides the original and use it to call Helm CLI (`--f` flag).", "x-intellij-html-description": "key-value pairs. If present, Skaffold will build a Helm <code>values</code> file that overrides the original and use it to call Helm CLI (<code>--f</code> flag)." }, "packaged": { "$ref": "#/definitions/HelmPackaged", "description": "parameters for packaging helm chart (`helm package`).", "x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)." }, "recreatePods": { "default": "false", "description": "if `true`, Skaffold will send `--recreate-pods` flag to Helm CLI when upgrading a new version of a chart in subsequent dev loop deploy.", "type": "boolean", "x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--recreate-pods</code> flag to Helm CLI when upgrading a new version of a chart in subsequent dev loop deploy." }, "remote": { "default": "false", "description": "specifies whether the chart path is remote, or exists on the host filesystem. `remote: true` implies `skipBuildDependencies: true`.", "type": "boolean", "x-intellij-html-description": "specifies whether the chart path is remote, or exists on the host filesystem. <code>remote: true</code> implies <code>skipBuildDependencies: true</code>." }, "setFiles": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will send `--set-file` flag to Helm CLI and append all pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will send <code>--set-file</code> flag to Helm CLI and append all pairs after the flag." }, "setValueTemplates": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send `--set` flag to Helm CLI and append all parsed pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send <code>--set</code> flag to Helm CLI and append all parsed pairs after the flag." }, "setValues": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will send `--set` flag to Helm CLI and append all pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will send <code>--set</code> flag to Helm CLI and append all pairs after the flag." }, "skipBuildDependencies": { "default": "false", "description": "should build dependencies be skipped.", "type": "boolean", "x-intellij-html-description": "should build dependencies be skipped." }, "useHelmSecrets": { "default": "false", "description": "instructs skaffold to use secrets plugin on deployment.", "type": "boolean", "x-intellij-html-description": "instructs skaffold to use secrets plugin on deployment." }, "values": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs supplementing the Helm `values` file.", "type": "object", "x-intellij-html-description": "key-value pairs supplementing the Helm <code>values</code> file." }, "valuesFiles": { "default": "[]", "description": "paths to the Helm `values` files.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "paths to the Helm <code>values</code> files." }, "version": { "description": "version of the chart.", "type": "string", "x-intellij-html-description": "version of the chart." }, "wait": { "default": "false", "description": "if `true`, Skaffold will send `--wait` flag to Helm CLI.", "type": "boolean", "x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--wait</code> flag to Helm CLI." } }, "required": [ "name", "chartPath" ], "x-intellij-html-description": "describes a helm release to be deployed." }, "JSONPatch": { "additionalProperties": false, "description": "patch to be applied by a profile.", "preferredOrder": [ "op", "path", "from", "value" ], "properties": { "from": { "description": "source position in the yaml, used for `copy` or `move` operations.", "type": "string", "x-intellij-html-description": "source position in the yaml, used for <code>copy</code> or <code>move</code> operations." }, "op": { "default": "replace", "description": "operation carried by the patch: `add`, `remove`, `replace`, `move`, `copy` or `test`.", "type": "string", "x-intellij-html-description": "operation carried by the patch: <code>add</code>, <code>remove</code>, <code>replace</code>, <code>move</code>, <code>copy</code> or <code>test</code>." }, "path": { "description": "position in the yaml where the operation takes place. For example, this targets the `dockerfile` of the first artifact built.", "examples": [ "/build/artifacts/0/docker/dockerfile" ], "type": "string", "x-intellij-html-description": "position in the yaml where the operation takes place. For example, this targets the <code>dockerfile</code> of the first artifact built." }, "value": { "description": "value to apply. Can be any portion of yaml.", "x-intellij-html-description": "value to apply. Can be any portion of yaml." } }, "required": [ "path" ], "x-intellij-html-description": "patch to be applied by a profile." }, "JibArtifact": { "additionalProperties": false, "description": "builds images using the [Jib plugins for Maven and Gradle](https://github.com/GoogleContainerTools/jib/).", "preferredOrder": [ "project", "args", "type" ], "properties": { "args": { "default": "[]", "description": "additional build flags passed to the builder.", "examples": [ "[\"--no-build-cache\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional build flags passed to the builder." }, "project": { "description": "selects which sub-project to build for multi-module builds.", "type": "string", "x-intellij-html-description": "selects which sub-project to build for multi-module builds." }, "type": { "description": "the Jib builder type; normally determined automatically. Valid types are `maven`: for Maven. `gradle`: for Gradle.", "enum": [ "maven", "gradle" ], "type": "string", "x-intellij-html-description": "the Jib builder type; normally determined automatically. Valid types are <code>maven</code>: for Maven. <code>gradle</code>: for Gradle." } }, "x-intellij-html-description": "builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/\">Jib plugins for Maven and Gradle</a>." }, "KanikoArtifact": { "additionalProperties": false, "description": "describes an artifact built from a Dockerfile, with kaniko.", "preferredOrder": [ "flags", "dockerfile", "target", "buildArgs", "buildContext", "image", "cache", "reproducible", "skipTLS" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\", \"key3\": \"{{.ENV_VARIABLE}}\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax." }, "buildContext": { "$ref": "#/definitions/KanikoBuildContext", "description": "where the build context for this artifact resides.", "x-intellij-html-description": "where the build context for this artifact resides." }, "cache": { "$ref": "#/definitions/KanikoCache", "description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.", "x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds." }, "dockerfile": { "default": "Dockerfile", "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." }, "flags": { "default": "[]", "description": "additional flags to be passed to Kaniko command line. See [Kaniko Additional Flags](https://github.com/GoogleContainerTools/kaniko#additional-flags). Deprecated - instead the named, unique fields should be used, e.g. `buildArgs`, `cache`, `target`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags to be passed to Kaniko command line. See <a href=\"https://github.com/GoogleContainerTools/kaniko#additional-flags\">Kaniko Additional Flags</a>. Deprecated - instead the named, unique fields should be used, e.g. <code>buildArgs</code>, <code>cache</code>, <code>target</code>." }, "image": { "description": "Docker image used by the Kaniko pod. Defaults to the latest released version of `gcr.io/kaniko-project/executor`.", "type": "string", "x-intellij-html-description": "Docker image used by the Kaniko pod. Defaults to the latest released version of <code>gcr.io/kaniko-project/executor</code>." }, "reproducible": { "default": "false", "description": "used to strip timestamps out of the built image.", "type": "boolean", "x-intellij-html-description": "used to strip timestamps out of the built image." }, "skipTLS": { "default": "false", "description": "skips TLS verification when pulling and pushing the image.", "type": "boolean", "x-intellij-html-description": "skips TLS verification when pulling and pushing the image." }, "target": { "description": "Dockerfile target name to build.", "type": "string", "x-intellij-html-description": "Dockerfile target name to build." } }, "x-intellij-html-description": "describes an artifact built from a Dockerfile, with kaniko." }, "KanikoBuildContext": { "additionalProperties": false, "description": "contains the different fields available to specify a Kaniko build context.", "preferredOrder": [ "gcsBucket", "localDir" ], "properties": { "gcsBucket": { "description": "GCS bucket to which sources are uploaded. Kaniko will need access to that bucket to download the sources.", "type": "string", "x-intellij-html-description": "GCS bucket to which sources are uploaded. Kaniko will need access to that bucket to download the sources." }, "localDir": { "$ref": "#/definitions/LocalDir", "description": "configures how Kaniko mounts sources directly via an `emptyDir` volume.", "x-intellij-html-description": "configures how Kaniko mounts sources directly via an <code>emptyDir</code> volume." } }, "x-intellij-html-description": "contains the different fields available to specify a Kaniko build context." }, "KanikoCache": { "additionalProperties": false, "description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.", "preferredOrder": [ "repo", "hostPath" ], "properties": { "hostPath": { "description": "specifies a path on the host that is mounted to each pod as read only cache volume containing base images. If set, must exist on each node and prepopulated with kaniko-warmer.", "type": "string", "x-intellij-html-description": "specifies a path on the host that is mounted to each pod as read only cache volume containing base images. If set, must exist on each node and prepopulated with kaniko-warmer." }, "repo": { "description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See [Kaniko Caching](https://github.com/GoogleContainerTools/kaniko#caching).", "type": "string", "x-intellij-html-description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See <a href=\"https://github.com/GoogleContainerTools/kaniko#caching\">Kaniko Caching</a>." } }, "x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds." }, "KubectlDeploy": { "additionalProperties": false, "description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.", "preferredOrder": [ "manifests", "remoteManifests", "flags" ], "properties": { "flags": { "$ref": "#/definitions/KubectlFlags", "description": "additional flags passed to `kubectl`.", "x-intellij-html-description": "additional flags passed to <code>kubectl</code>." }, "manifests": { "default": "[\"k8s/*.yaml\"]", "description": "the Kubernetes yaml or json manifests.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the Kubernetes yaml or json manifests." }, "remoteManifests": { "default": "[]", "description": "Kubernetes manifests in remote clusters.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "Kubernetes manifests in remote clusters." } }, "x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster." }, "KubectlFlags": { "additionalProperties": false, "description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete).", "preferredOrder": [ "global", "apply", "delete" ], "properties": { "apply": { "default": "[]", "description": "additional flags passed on creations (`kubectl apply`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on creations (<code>kubectl apply</code>)." }, "delete": { "default": "[]", "description": "additional flags passed on deletions (`kubectl delete`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on deletions (<code>kubectl delete</code>)." }, "global": { "default": "[]", "description": "additional flags passed on every command.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on every command." } }, "x-intellij-html-description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete)." }, "KustomizeDeploy": { "additionalProperties": false, "description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.", "preferredOrder": [ "path", "flags", "buildArgs" ], "properties": { "buildArgs": { "default": "[]", "description": "additional args passed to `kustomize build`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional args passed to <code>kustomize build</code>." }, "flags": { "$ref": "#/definitions/KubectlFlags", "description": "additional flags passed to `kubectl`.", "x-intellij-html-description": "additional flags passed to <code>kubectl</code>." }, "path": { "default": ".", "description": "path to Kustomization files.", "type": "string", "x-intellij-html-description": "path to Kustomization files." } }, "x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to &quot;patch&quot; a deployment for a target environment." }, "LocalBuild": { "additionalProperties": false, "description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.", "preferredOrder": [ "push", "useDockerCLI", "useBuildkit" ], "properties": { "push": { "description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster.", "type": "boolean", "x-intellij-html-description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster." }, "useBuildkit": { "default": "false", "description": "use BuildKit to build Docker images.", "type": "boolean", "x-intellij-html-description": "use BuildKit to build Docker images." }, "useDockerCLI": { "default": "false", "description": "use `docker` command-line interface instead of Docker Engine APIs.", "type": "boolean", "x-intellij-html-description": "use <code>docker</code> command-line interface instead of Docker Engine APIs." } }, "x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository." }, "LocalDir": { "additionalProperties": false, "description": "configures how Kaniko mounts sources directly via an `emptyDir` volume.", "preferredOrder": [ "initImage" ], "properties": { "initImage": { "description": "image used to run init container which mounts kaniko context.", "type": "string", "x-intellij-html-description": "image used to run init container which mounts kaniko context." } }, "x-intellij-html-description": "configures how Kaniko mounts sources directly via an <code>emptyDir</code> volume." }, "Metadata": { "additionalProperties": false, "description": "holds an optional name of the project.", "preferredOrder": [ "name" ], "properties": { "name": { "description": "an identifier for the project.", "type": "string", "x-intellij-html-description": "an identifier for the project." } }, "x-intellij-html-description": "holds an optional name of the project." }, "PortForwardResource": { "additionalProperties": false, "description": "describes a resource to port forward.", "preferredOrder": [ "resourceType", "resourceName", "namespace", "port", "localPort" ], "properties": { "localPort": { "description": "local port to forward to. If the port is unavailable, Skaffold will choose a random open port to forward to. *Optional*.", "type": "integer", "x-intellij-html-description": "local port to forward to. If the port is unavailable, Skaffold will choose a random open port to forward to. <em>Optional</em>." }, "namespace": { "description": "namespace of the resource to port forward.", "type": "string", "x-intellij-html-description": "namespace of the resource to port forward." }, "port": { "description": "resource port that will be forwarded.", "type": "integer", "x-intellij-html-description": "resource port that will be forwarded." }, "resourceName": { "description": "name of the Kubernetes resource to port forward.", "type": "string", "x-intellij-html-description": "name of the Kubernetes resource to port forward." }, "resourceType": { "description": "Kubernetes type that should be port forwarded. Acceptable resource types include: `Service`, `Pod` and Controller resource type that has a pod spec: `ReplicaSet`, `ReplicationController`, `Deployment`, `StatefulSet`, `DaemonSet`, `Job`, `CronJob`.", "type": "string", "x-intellij-html-description": "Kubernetes type that should be port forwarded. Acceptable resource types include: <code>Service</code>, <code>Pod</code> and Controller resource type that has a pod spec: <code>ReplicaSet</code>, <code>ReplicationController</code>, <code>Deployment</code>, <code>StatefulSet</code>, <code>DaemonSet</code>, <code>Job</code>, <code>CronJob</code>." } }, "x-intellij-html-description": "describes a resource to port forward." }, "Profile": { "additionalProperties": false, "description": "used to override any `build`, `test` or `deploy` configuration.", "preferredOrder": [ "name", "build", "test", "deploy", "portForward", "patches", "activation" ], "properties": { "activation": { "description": "criteria by which a profile can be auto-activated. The profile is auto-activated if any one of the activations are triggered. An activation is triggered if all of the criteria (env, kubeContext, command) are triggered.", "items": { "$ref": "#/definitions/Activation" }, "type": "array", "x-intellij-html-description": "criteria by which a profile can be auto-activated. The profile is auto-activated if any one of the activations are triggered. An activation is triggered if all of the criteria (env, kubeContext, command) are triggered." }, "build": { "$ref": "#/definitions/BuildConfig", "description": "describes how images are built.", "x-intellij-html-description": "describes how images are built." }, "deploy": { "$ref": "#/definitions/DeployConfig", "description": "describes how images are deployed.", "x-intellij-html-description": "describes how images are deployed." }, "name": { "description": "a unique profile name.", "examples": [ "profile-prod" ], "type": "string", "x-intellij-html-description": "a unique profile name." }, "patches": { "description": "patches applied to the configuration. Patches use the JSON patch notation.", "items": { "$ref": "#/definitions/JSONPatch" }, "type": "array", "x-intellij-html-description": "patches applied to the configuration. Patches use the JSON patch notation." }, "portForward": { "description": "describes user defined resources to port-forward.", "items": { "$ref": "#/definitions/PortForwardResource" }, "type": "array", "x-intellij-html-description": "describes user defined resources to port-forward." }, "test": { "description": "describes how images are tested.", "items": { "$ref": "#/definitions/TestCase" }, "type": "array", "x-intellij-html-description": "describes how images are tested." } }, "required": [ "name" ], "x-intellij-html-description": "used to override any <code>build</code>, <code>test</code> or <code>deploy</code> configuration." }, "ResourceRequirement": { "additionalProperties": false, "description": "stores the CPU/Memory requirements for the pod.", "preferredOrder": [ "cpu", "memory", "ephemeralStorage", "resourceStorage" ], "properties": { "cpu": { "description": "the number cores to be used.", "examples": [ "2`, `2.0` or `200m" ], "type": "string", "x-intellij-html-description": "the number cores to be used." }, "ephemeralStorage": { "description": "the amount of Ephemeral storage to allocate to the pod.", "examples": [ "1Gi` or `1000Mi" ], "type": "string", "x-intellij-html-description": "the amount of Ephemeral storage to allocate to the pod." }, "memory": { "description": "the amount of memory to allocate to the pod.", "examples": [ "1Gi` or `1000Mi" ], "type": "string", "x-intellij-html-description": "the amount of memory to allocate to the pod." }, "resourceStorage": { "description": "the amount of resource storage to allocate to the pod.", "examples": [ "1Gi` or `1000Mi" ], "type": "string", "x-intellij-html-description": "the amount of resource storage to allocate to the pod." } }, "x-intellij-html-description": "stores the CPU/Memory requirements for the pod." }, "ResourceRequirements": { "additionalProperties": false, "description": "describes the resource requirements for the kaniko pod.", "preferredOrder": [ "requests", "limits" ], "properties": { "limits": { "$ref": "#/definitions/ResourceRequirement", "description": "[resource limits](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.", "x-intellij-html-description": "<a href=\"https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container\">resource limits</a> for the Kaniko pod." }, "requests": { "$ref": "#/definitions/ResourceRequirement", "description": "[resource requests](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.", "x-intellij-html-description": "<a href=\"https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container\">resource requests</a> for the Kaniko pod." } }, "x-intellij-html-description": "describes the resource requirements for the kaniko pod." }, "ResourceType": { "description": "describes the Kubernetes resource types used for port forwarding.", "type": "string", "x-intellij-html-description": "describes the Kubernetes resource types used for port forwarding." }, "ShaTagger": { "description": "*beta* tags images with their sha256 digest.", "x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest." }, "SkaffoldConfig": { "additionalProperties": false, "description": "holds the fields parsed from the Skaffold configuration file (skaffold.yaml).", "preferredOrder": [ "apiVersion", "kind", "metadata", "build", "test", "deploy", "portForward", "profiles" ], "properties": { "apiVersion": { "description": "version of the configuration.", "type": "string", "x-intellij-html-description": "version of the configuration." }, "build": { "$ref": "#/definitions/BuildConfig", "description": "describes how images are built.", "x-intellij-html-description": "describes how images are built." }, "deploy": { "$ref": "#/definitions/DeployConfig", "description": "describes how images are deployed.", "x-intellij-html-description": "describes how images are deployed." }, "kind": { "default": "Config", "description": "always `Config`.", "type": "string", "x-intellij-html-description": "always <code>Config</code>." }, "metadata": { "$ref": "#/definitions/Metadata", "description": "holds additional information about the config.", "x-intellij-html-description": "holds additional information about the config." }, "portForward": { "description": "describes user defined resources to port-forward.", "items": { "$ref": "#/definitions/PortForwardResource" }, "type": "array", "x-intellij-html-description": "describes user defined resources to port-forward." }, "profiles": { "description": "*beta* can override be used to `build`, `test` or `deploy` configuration.", "items": { "$ref": "#/definitions/Profile" }, "type": "array", "x-intellij-html-description": "<em>beta</em> can override be used to <code>build</code>, <code>test</code> or <code>deploy</code> configuration." }, "test": { "description": "describes how images are tested.", "items": { "$ref": "#/definitions/TestCase" }, "type": "array", "x-intellij-html-description": "describes how images are tested." } }, "required": [ "apiVersion", "kind" ], "x-intellij-html-description": "holds the fields parsed from the Skaffold configuration file (skaffold.yaml)." }, "Sync": { "additionalProperties": false, "description": "*beta* specifies what files to sync into the container. This is a list of sync rules indicating the intent to sync for source files.", "preferredOrder": [ "manual", "infer" ], "properties": { "infer": { "default": "[]", "description": "file patterns which may be synced into the container. The container destination is inferred by the builder. Currently only available for docker artifacts.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "file patterns which may be synced into the container. The container destination is inferred by the builder. Currently only available for docker artifacts." }, "manual": { "description": "manual sync rules indicating the source and destination.", "items": { "$ref": "#/definitions/SyncRule" }, "type": "array", "x-intellij-html-description": "manual sync rules indicating the source and destination." } }, "x-intellij-html-description": "<em>beta</em> specifies what files to sync into the container. This is a list of sync rules indicating the intent to sync for source files." }, "SyncRule": { "additionalProperties": false, "description": "specifies which local files to sync to remote folders.", "preferredOrder": [ "src", "dest", "strip" ], "properties": { "dest": { "description": "destination path in the container where the files should be synced to.", "examples": [ "\"app/\"" ], "type": "string", "x-intellij-html-description": "destination path in the container where the files should be synced to." }, "src": { "description": "a glob pattern to match local paths against. Directories should be delimited by `/` on all platforms.", "examples": [ "\"css/**/*.css\"" ], "type": "string", "x-intellij-html-description": "a glob pattern to match local paths against. Directories should be delimited by <code>/</code> on all platforms." }, "strip": { "description": "specifies the path prefix to remove from the source path when transplanting the files into the destination folder.", "examples": [ "\"css/\"" ], "type": "string", "x-intellij-html-description": "specifies the path prefix to remove from the source path when transplanting the files into the destination folder." } }, "required": [ "src", "dest" ], "x-intellij-html-description": "specifies which local files to sync to remote folders." }, "TagPolicy": { "additionalProperties": false, "description": "contains all the configuration for the tagging step.", "preferredOrder": [ "gitCommit", "sha256", "envTemplate", "dateTime" ], "properties": { "dateTime": { "$ref": "#/definitions/DateTimeTagger", "description": "*beta* tags images with the build timestamp.", "x-intellij-html-description": "<em>beta</em> tags images with the build timestamp." }, "envTemplate": { "$ref": "#/definitions/EnvTemplateTagger", "description": "*beta* tags images with a configurable template string.", "x-intellij-html-description": "<em>beta</em> tags images with a configurable template string." }, "gitCommit": { "$ref": "#/definitions/GitTagger", "description": "*beta* tags images with the git tag or commit of the artifact's workspace.", "x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace." }, "sha256": { "$ref": "#/definitions/ShaTagger", "description": "*beta* tags images with their sha256 digest.", "x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest." } }, "x-intellij-html-description": "contains all the configuration for the tagging step." }, "TestCase": { "additionalProperties": false, "description": "a list of structure tests to run on images that Skaffold builds.", "preferredOrder": [ "image", "structureTests" ], "properties": { "image": { "description": "artifact on which to run those tests.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "artifact on which to run those tests." }, "structureTests": { "default": "[]", "description": "the [Container Structure Tests](https://github.com/GoogleContainerTools/container-structure-test) to run on that artifact.", "examples": [ "[\"./test/*\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the <a href=\"https://github.com/GoogleContainerTools/container-structure-test\">Container Structure Tests</a> to run on that artifact." } }, "required": [ "image" ], "x-intellij-html-description": "a list of structure tests to run on images that Skaffold builds." } }, "type": "object" }
o6343
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "side_length": { "description": "The side length of the square", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape (e.g., circle, square, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_4ba17ecf
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "bulk_publishing": { "type": "boolean" }, "links": { "type": "object", "additionalProperties": false, "properties": { "documents": { "$ref": "#/definitions/guid_list" }, "facet_groups": { "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.", "$ref": "#/definitions/guid_list" }, "facet_values": { "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups.", "$ref": "#/definitions/guid_list" }, "finder": { "description": "Powers links from content back to finders the content is surfaced on", "$ref": "#/definitions/guid_list" }, "government": { "description": "The government associated with this document", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "lead_organisations": { "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.", "$ref": "#/definitions/guid_list" }, "mainstream_browse_pages": { "description": "Powers the /browse section of the site. These are known as sections in some legacy apps.", "$ref": "#/definitions/guid_list" }, "meets_user_needs": { "description": "The user needs this piece of content meets.", "$ref": "#/definitions/guid_list" }, "ordered_related_items": { "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.", "$ref": "#/definitions/guid_list" }, "ordered_related_items_overrides": { "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation.", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "All organisations linked to this content item. This should include lead organisations.", "$ref": "#/definitions/guid_list" }, "original_primary_publishing_organisation": { "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.", "$ref": "#/definitions/guid_list" }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" }, "primary_publishing_organisation": { "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.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "related_guides": { "$ref": "#/definitions/guid_list" }, "related_mainstream_content": { "$ref": "#/definitions/guid_list" }, "related_policies": { "$ref": "#/definitions/guid_list" }, "suggested_ordered_related_items": { "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.", "$ref": "#/definitions/guid_list" }, "taxons": { "description": "Prototype-stage taxonomy label for this content item", "$ref": "#/definitions/guid_list" }, "topics": { "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps.", "$ref": "#/definitions/guid_list" } } }, "previous_version": { "type": "string" } }, "definitions": { "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 } } }
o21194
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "items": { "type": "array", "items": { "title": "Application Template", "description": "Schema for a single Application Template", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 1024 }, "public": { "type": "boolean" }, "authorName": { "type": "string", "maxLength": 255 }, "imageUrl": { "type": "string", "maxLength": 1024 }, "authorUrl": { "type": "string", "maxLength": 1024 }, "templateUrl": { "type": "string", "maxLength": 1024 }, "summary": { "type": "object", "properties": { "applicationCertificateAuthorityCount": { "type": "number" }, "dashboardCount": { "type": "number" }, "deviceCount": { "type": "number" }, "deviceRecipeCount": { "type": "number" }, "dataTableCount": { "type": "number" }, "experienceGroupCount": { "type": "number" }, "experienceUserCount": { "type": "number" }, "experienceVersionCount": { "type": "number" }, "experienceViewCount": { "type": "number" }, "experienceEndpointCount": { "type": "number" }, "fileCount": { "type": "number" }, "flowCount": { "type": "number" }, "integrationCount": { "type": "number" }, "notebookCount": { "type": "number" }, "dataTableCsvSize": { "type": "number" }, "webhookCount": { "type": "number" } } } } } }, "count": { "type": "integer" }, "totalCount": { "type": "integer" }, "perPage": { "type": "integer" }, "page": { "type": "integer" }, "filter": { "type": "string" }, "filterField": { "type": "string" }, "sortField": { "type": "string" }, "sortDirection": { "type": "string", "enum": [ "asc", "desc", "ASC", "DESC", "" ] } } }
o9793
{ "title": "AuthoringInfo Visual Variable", "type": "object", "$schema": "http://json-schema.org/draft-04/schema", "description": "This visual variable pertains specifically to [authoringInfo](authoringInfo.md) and is different from visual variables directly on the [renderer](renderer.md).", "properties": { "endTime": { "type": [ "number", "string" ], "description": "A Unix stamp. Both `startTime` or `endTime` can be fields. If this is the case, their names must be different." }, "field": { "type": "string", "description": "The attribute field the user chose in the Smart Mapping gallery. Must be the same as in either `startTime` or `endTime`." }, "maxSliderValue": { "type": "number", "description": "A numeric value indicating the maximum value displayed." }, "minSliderValue": { "type": "number", "description": "A numeric value indicating the minimum value displayed." }, "startTime": { "type": [ "number", "string" ], "description": "A Unix time stamp. Both `startTime` or `endTime` can be fields. If this is the case, their names must be different." }, "style": { "type": "string", "description": "(This property is used for comparison rendering). It is used to map the ratio between two numbers. It is possible to express that relationship as percentages, simple ratios, or an overall percentage.", "enum": [ "percent", "percentTotal", "ratio" ] }, "theme": { "type": "string", "description": "Theme to be used only when working with visual variables of type `colorInfo`. Default is `high-to-low`.", "enum": [ "above-and-below", "centered-on", "extremes", "high-to-low" ] }, "type": { "type": "string", "description": "A string value specifying the type of renderer's visual variable.", "enum": [ "colorInfo", "rotationInfo", "sizeInfo", "transparencyInfo" ] }, "units": { "type": "string", "description": "(This property is used only with age renderers.) Units for startTime and endTime.", "enum": [ "days", "hours", "minutes", "months", "seconds", "years" ] } }, "additionalProperties": false, "esriDocumentation": { "examples": [ { "title": "Attribute Transparency", "description": "Allows displaying features with different levels of opacity.", "schema": "authoringInfo_schema.json", "code": { "authoringInfo": { "visualVariables": [ { "type": "transparencyInfo", "minSliderValue": 0.0003, "maxSliderValue": 23.8951 } ] } } }, { "title": "Continuous Size Renderer", "description": "If a layer contains date values, it is possible to use a sequence of proportional symbols to view dates sequentially on a scene.", "schema": "authoringInfo_schema.json", "code": { "authoringInfo": { "visualVariables": [ { "type": "sizeInfo", "minSliderValue": 1, "maxSliderValue": 14928.5396 } ] } } }, { "title": "Continuous Color Renderer", "description": "If a layer contains date values, it is possible to use color to view data sequentially from new to old or before and after a key date.", "schema": "authoringInfo_schema.json", "code": { "authoringInfo": { "visualVariables": [ { "type": "colorInfo", "minSliderValue": 1, "maxSliderValue": 14928.5396, "theme": "high-to-low" } ] } } }, { "title": "Age-Size Renderer", "description": "If a layer contains date or time values, it is possible to use a sequence of proportional symbols to view the age of features. Age reflects the length of time (in seconds, minutes, hours, days, months, or years) from a start date or time to an end date or time.", "schema": "authoringInfo_schema.json", "code": { "authoringInfo": { "visualVariables": [ { "type": "sizeInfo", "minSliderValue": -129.2625, "maxSliderValue": 234.7374, "units": "days", "startTime": "DATE", "endTime": 1471970511924, "field": "DATE" } ] } } }, { "title": "Age-Color Renderer", "description": "If a layer contains date or time values, it is possible to use color to represent the age of features. Age reflects the length of time (in seconds, minutes, hours, days, months, or years) from a start date or time to an end date or time.", "schema": "authoringInfo_schema.json", "code": { "authoringInfo": { "visualVariables": [ { "type": "colorInfo", "minSliderValue": -129.2625, "maxSliderValue": 234.7374, "units": "days", "startTime": "DATE", "endTime": 1471970511924, "field": "DATE", "theme": "high-to-low" } ] } } }, { "title": "Compare Renderer (special color renderer)", "description": "This style allows mapping the ratio between two numbers and expresses that relationship as percentages, simple ratios, or overall percentage.", "schema": "authoringInfo_schema.json", "code": { "authoringInfo": { "visualVariables": [ { "type": "colorInfo", "minSliderValue": 0.0003858501658018686, "maxSliderValue": 23.89513157894737, "theme": "above-and-below", "style": "ratio" } ] } } }, { "title": "Predominance Renderer", "description": "This style uses transparency to show the relative strength of the predominant attribute for each feature in the layer. The strength, or degree, of predominance is calculated as a percentage of the total value of all the attributes for a given feature.", "schema": "authoringInfo_schema.json", "code": { "authoringInfo": { "type": "predominance", "fields": [ "COST", "DOLLARS", "PRICE" ], "visualVariables": [ { "type": "transparencyInfo", "minSliderValue": 0, "maxSliderValue": 100 } ] } } } ] } }
o90155
{ "properties": { "attendees": { "description": "Email addresses of the attendees", "items": { "type": "string" }, "type": "array" }, "end_time": { "description": "The end time of the event", "type": "string" }, "location": { "description": "The location of the event", "type": "string" }, "start_time": { "description": "The start time of the event", "type": "string" }, "title": { "description": "The title of the event", "type": "string" } }, "required": [ "title", "start_time", "end_time" ], "type": "object" }
create_calendar_event_359df4de
{ "id": "https://opendesk.cc/schemata/base/value.json", "$schema": "http://json-schema.org/draft-04/schema#", "title": "Winnow Value", "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "long_description": { "type": "string" }, "type": { "type": "string" }, "value": { "type": "string" }, "schema": { "type": "string" }, "definitions": { "type": "object" }, "images": { "type": "array", "items": { "type": "object", "properties": { "asset": { "type": "string" }, "type": { "type": "string" } }, "required": [ "asset" ], "additionalProperties": false } } }, "required": [ "type" ] }
o65515
{ "id": "https://opendesk.cc/schemata/base/option.json", "$schema": "http://json-schema.org/draft-04/schema#", "title": "Winnow Option", "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "description": { "type": "string" }, "images": { "type": "array", "items": { "type": "object", "properties": { "asset": { "type": "string" }, "type": { "type": "string" } }, "required": [ "asset" ], "additionalProperties": false } }, "scopes": { "type": "array", "items": { "type": "string", "oneOf": [ { "pattern": "customer" }, { "pattern": "maker" }, { "pattern": "operator" }, { "pattern": "admin" }, { "pattern": "designer" } ] } } }, "required": [ "type" ] }
o65510
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "", "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkThumbHeight": { "type": "number" }, "bookmarkThumbWidth": { "type": "number" }, "dropEnabled": { "type": "boolean" }, "footerPanelEnabled": { "type": "boolean" }, "headerPanelEnabled": { "type": "boolean" }, "leftPanelEnabled": { "type": "boolean" }, "limitLocales": { "type": "boolean" }, "openTemplate": { "type": "string", "minLength": 1 }, "pessimisticAccessControl": { "type": "boolean" }, "rightPanelEnabled": { "type": "boolean" }, "theme": { "type": "string", "minLength": 1 } }, "required": [ "bookmarkThumbHeight", "bookmarkThumbWidth", "dropEnabled", "footerPanelEnabled", "headerPanelEnabled", "leftPanelEnabled", "limitLocales", "openTemplate", "pessimisticAccessControl", "rightPanelEnabled", "theme" ] }, "modules": { "type": "object", "properties": { "shareDialogue": { "type": "object", "properties": { "options": { "type": "object", "properties": { "embedTemplate": { "type": "string", "minLength": 1 } }, "required": [ "embedTemplate" ] }, "content": { "type": "object", "properties": { "customSize": { "type": "string", "minLength": 1 }, "embed": { "type": "string", "minLength": 1 }, "embedInstructions": { "type": "string", "minLength": 1 }, "height": { "type": "string", "minLength": 1 }, "iiif": { "type": "string", "minLength": 1 }, "share": { "type": "string", "minLength": 1 }, "shareInstructions": { "type": "string", "minLength": 1 }, "size": { "type": "string", "minLength": 1 }, "width": { "type": "string", "minLength": 1 } }, "required": [ "customSize", "embed", "embedInstructions", "height", "iiif", "share", "shareInstructions", "size", "width" ] } }, "required": [ "options", "content" ] }, "footerPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkEnabled": { "type": "boolean" }, "embedEnabled": { "type": "boolean" }, "feedbackEnabled": { "type": "boolean" }, "minimiseButtons": { "type": "boolean" }, "openEnabled": { "type": "boolean" }, "shareEnabled": { "type": "boolean" } }, "required": [ "bookmarkEnabled", "embedEnabled", "feedbackEnabled", "minimiseButtons", "openEnabled", "shareEnabled" ] }, "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": { "ok": { "type": "string", "minLength": 1 } }, "required": [ "ok" ] } }, "required": [ "content" ] }, "headerPanel": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 }, "help": { "type": "string", "minLength": 1 } }, "required": [ "close", "help" ] } }, "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" ] }, "mediaelementCenterPanel": { "type": "object", "properties": { "defaultHeight": { "type": "number" }, "defaultWidth": { "type": "number" }, "content": { "type": "object", "properties": {}, "required": [] } }, "required": [ "defaultHeight", "defaultWidth", "content" ] }, "moreInfoRightPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "canvasDisplayOrder": { "type": "string" }, "canvasExclude": { "type": "string" }, "copyToClipboardEnabled": { "type": "boolean" }, "manifestDisplayOrder": { "type": "string" }, "manifestExclude": { "type": "string" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" }, "rtlLanguageCodes": { "type": "string", "minLength": 1 }, "showAllLanguages": { "type": "boolean" }, "textLimit": { "type": "number" }, "textLimitType": { "type": "string", "minLength": 1 } }, "required": [ "canvasDisplayOrder", "canvasExclude", "copyToClipboardEnabled", "manifestDisplayOrder", "manifestExclude", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "rtlLanguageCodes", "showAllLanguages", "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 }, "page": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "manifestHeader": { "type": "string", "minLength": 1 }, "canvasHeader": { "type": "string", "minLength": 1 }, "copyToClipboard": { "type": "string", "minLength": 1 }, "copiedToClipboard": { "type": "string", "minLength": 1 } }, "required": [ "attribution", "collapse", "collapseFull", "description", "expand", "expandFull", "holdingText", "less", "license", "logo", "more", "noData", "page", "title", "manifestHeader", "canvasHeader", "copyToClipboard", "copiedToClipboard" ] } }, "required": [ "options", "content" ] }, "resourcesLeftPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "expandFullEnabled": { "type": "boolean" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" } }, "required": [ "expandFullEnabled", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen" ] }, "content": { "type": "object", "properties": { "title": { "type": "string", "minLength": 1 } }, "required": [ "title" ] } }, "required": [ "options", "content" ] }, "dialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 } }, "required": [ "close" ] } }, "required": [ "content" ] }, "downloadDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "download": { "type": "string", "minLength": 1 }, "entireFileAsOriginal": { "type": "string", "minLength": 1 }, "noneAvailable": { "type": "string", "minLength": 1 }, "preview": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "download", "entireFileAsOriginal", "noneAvailable", "preview", "title" ] } }, "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" ] }, "settingsDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "locale": { "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", "pagingEnabled", "preserveViewport", "title", "website" ] } }, "required": [ "content" ] } }, "required": [ "shareDialogue", "footerPanel", "genericDialogue", "headerPanel", "helpDialogue", "mediaelementCenterPanel", "moreInfoRightPanel", "resourcesLeftPanel", "dialogue", "downloadDialogue", "loginDialogue", "settingsDialogue" ] }, "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 }, "degradedResourceMessage": { "type": "string", "minLength": 1 }, "degradedResourceLogin": { "type": "string", "minLength": 1 }, "forbiddenResourceMessage": { "type": "string", "minLength": 1 } }, "required": [ "authCORSError", "authorisationFailedMessage", "degradedResourceMessage", "degradedResourceLogin", "forbiddenResourceMessage" ] } }, "required": [ "options", "modules", "localisation", "content" ] }
o16058
{ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Space Monkey", "description": "Like a monkey, ready to be shot into space", "type": "object", "properties": { "id": { "description": "Unique identifier", "type": "integer", "minimum": 1 }, "firstName": { "description": "First name", "type": "string", "maxLength": 10 }, "lastName": { "description": "Last name", "type": "string", "maxLength": 10 }, "isAlive": { "description": "Is alive?", "type": "boolean" }, "age": { "type": "number", "minimum": 0 }, "projects": { "description": "Projects involved in", "type": "array", "items": { "type": "string" }, "minItems": 1, "maxItems": 3, "_uniqueItems": true }, "attributes": { "type": "object", "properties": { "isReal": { "type": "boolean" }, "episodes": { "type": "integer", "minimum": 0 }, "aliases": { "type": "array", "items": { "type": "string", "maxLength": 15 }, "_uniqueItems": true } }, "required": [ "isReal" ] } }, "required": [ "id", "firstName", "lastName", "isAlive", "age" ] }
o1262
{ "Action": { "properties": { "description": { "type": "string" }, "id": { "type": "string" }, "reporter": { "type": "string" }, "schema": { "type": "string" }, "tag": { "type": "string" }, "time": { "format": "date-time", "type": "string" }, "type": { "enum": [ "chat", "audio", "video", "av", "screen", "file", "midi", "activity_context", "availability_context", "location_context", "heart_rate_contexst", "user_steps_context", "battery_context", "sleep_context", "light_context", "humidity_context", "power", "user_activity_context", "user_communication_context" ] }, "unit": { "enum": [ "meter", "gram", "second", "ampere", "kelvin", "candela", "mole", "hertz", "radian", "steradian", "newton", "pascal", "joule", "watt", "coulomb", "volt", "farad", "ohm", "siemens", "weber", "tesla", "henry", "degrees_celsius", "lumen", "lux", "becquerel", "gray", "sievert", "katal", "ph_acidity", "value_of_a_switch", "counter_value", "relative_humidity", "area", "volume_in_liters", "velocity", "acceleration", "flow_rate_in_liters_per_second", "irradiance", "luminance", "bel_sound_pressure_level", "bits_per_second", "degrees_latitude", "degrees_longitude", "remaining_battery_energy_level_in_percents", "remaining_battery_energy_level_in_seconds", "heart_rate_in_beats_per_minute", "cumulative_number_of_heart_beats", "steps", "pres", "act", "comm" ] }, "url": { "type": "string" }, "values": { "items": { "$ref": "#/ContextValue" }, "type": "array" }, "version": { "type": "integer" } }, "required": [ "url", "reporter", "schema", "id", "type", "values" ], "stereotype": "syncobjectchild", "type": "object" }, "Actions": { "properties": { "listener": { "constant": "<actions>" }, "observerPermissions": { "constant": "write" }, "parent": { "constant": "context" }, "type": { "constant": "<Action>" } }, "required": [ "parent", "listener", "type", "observerPermissions" ], "stereotype": "children", "type": "object" }, "ContextValue": { "properties": { "expires": { "format": "date-time", "type": "string" }, "name": { "enum": [ "meter", "gram", "second", "ampere", "kelvin", "candela", "mole", "hertz", "radian", "steradian", "newton", "pascal", "joule", "watt", "coulomb", "volt", "farad", "ohm", "siemens", "weber", "tesla", "henry", "degrees_celsius", "lumen", "lux", "becquerel", "gray", "sievert", "katal", "ph_acidity", "value_of_a_switch", "counter_value", "relative_humidity", "area", "volume_in_liters", "velocity", "acceleration", "flow_rate_in_liters_per_second", "irradiance", "luminance", "bel_sound_pressure_level", "bits_per_second", "degrees_latitude", "degrees_longitude", "remaining_battery_energy_level_in_percents", "remaining_battery_energy_level_in_seconds", "heart_rate_in_beats_per_minute", "cumulative_number_of_heart_beats", "steps", "availability", "user_activity", "user_communication" ] }, "sum": { "enum": [ "meter", "gram", "second", "ampere", "kelvin", "candela", "mole", "hertz", "radian", "steradian", "newton", "pascal", "joule", "watt", "coulomb", "volt", "farad", "ohm", "siemens", "weber", "tesla", "henry", "degrees_celsius", "lumen", "lux", "becquerel", "gray", "sievert", "katal", "ph_acidity", "value_of_a_switch", "counter_value", "relative_humidity", "area", "volume_in_liters", "velocity", "acceleration", "flow_rate_in_liters_per_second", "irradiance", "luminance", "bel_sound_pressure_level", "bits_per_second", "degrees_latitude", "degrees_longitude", "remaining_battery_energy_level_in_percents", "remaining_battery_energy_level_in_seconds", "heart_rate_in_beats_per_minute", "cumulative_number_of_heart_beats", "steps", "pres", "act", "comm" ] }, "time": { "format": "date-time", "type": "string" }, "type": { "enum": [ "chat", "audio", "video", "av", "screen", "file", "midi", "activity_context", "availability_context", "location_context", "heart_rate_contexst", "user_steps_context", "battery_context", "sleep_context", "light_context", "humidity_context", "power", "user_activity_context", "user_communication_context" ] }, "unit": { "enum": [ "meter", "gram", "second", "ampere", "kelvin", "candela", "mole", "hertz", "radian", "steradian", "newton", "pascal", "joule", "watt", "coulomb", "volt", "farad", "ohm", "siemens", "weber", "tesla", "henry", "degrees_celsius", "lumen", "lux", "becquerel", "gray", "sievert", "katal", "ph_acidity", "value_of_a_switch", "counter_value", "relative_humidity", "area", "volume_in_liters", "velocity", "acceleration", "flow_rate_in_liters_per_second", "irradiance", "luminance", "bel_sound_pressure_level", "bits_per_second", "degrees_latitude", "degrees_longitude", "remaining_battery_energy_level_in_percents", "remaining_battery_energy_level_in_seconds", "heart_rate_in_beats_per_minute", "cumulative_number_of_heart_beats", "steps", "pres", "act", "comm" ] }, "updateTime": { "format": "date-time", "type": "string" }, "value": { "type": "object" } }, "required": [ "name", "value" ], "type": "object" }, "_comment": "This Spec is for Phase 1!! Most updated version is at https://github.com/reTHINK-project/specs/tree/master/schemas", "properties": { "address": { "type": "string" }, "childUrls": { "items": { "type": "string" }, "type": "array" }, "children": { "items": { "type": "string" }, "type": "array" }, "description": { "type": "string" }, "id": { "type": "string" }, "name": { "type": "string" }, "reporter": { "type": "string" }, "schema": { "type": "string" }, "scheme": { "constant": "context" }, "tag": { "type": "string" }, "time": { "format": "date-time", "type": "string" }, "type": { "enum": [ "chat", "audio", "video", "av", "screen", "file", "midi", "activity_context", "availability_context", "location_context", "heart_rate_contexst", "user_steps_context", "battery_context", "sleep_context", "light_context", "humidity_context", "power", "user_activity_context", "user_communication_context" ] }, "unit": { "enum": [ "meter", "gram", "second", "ampere", "kelvin", "candela", "mole", "hertz", "radian", "steradian", "newton", "pascal", "joule", "watt", "coulomb", "volt", "farad", "ohm", "siemens", "weber", "tesla", "henry", "degrees_celsius", "lumen", "lux", "becquerel", "gray", "sievert", "katal", "ph_acidity", "value_of_a_switch", "counter_value", "relative_humidity", "area", "volume_in_liters", "velocity", "acceleration", "flow_rate_in_liters_per_second", "irradiance", "luminance", "bel_sound_pressure_level", "bits_per_second", "degrees_latitude", "degrees_longitude", "remaining_battery_energy_level_in_percents", "remaining_battery_energy_level_in_seconds", "heart_rate_in_beats_per_minute", "cumulative_number_of_heart_beats", "steps", "pres", "act", "comm" ] }, "url": { "type": "string" }, "values": { "items": { "$ref": "#/ContextValue" }, "type": "array" }, "version": { "type": "integer" } }, "required": [ "url", "reporter", "schema", "name", "scheme", "id", "values" ], "type": "object" }
o69761
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "file1": { "title": "Fichier 1", "description": "Selectionner lequel est le `file1` parmis ceux que vous avez selectionne pour le job.", "type": "string", "enum": [ "__PIRUS_INPUT_FILES__" ] }, "file2": { "title": "Fichier 2", "description": "Selectionner lequel est le `file2` parmis ceux que vous avez selectionne pour le job.", "type": "string", "enum": [ "__PIRUS_INPUT_FILES__" ] }, "ref": { "title": "Genome de reference", "description": "Choisissez votre genome de reference parmis les base de donnees disponible", "type": "string", "enum": [ "__PIRUS_DB_REFS__" ] }, "confirm": { "title": "Vous etes sur ?", "description": "En cochant cette case vous vous engagez blablabla.", "type": "boolean", "default": false }, "witherror": { "title": "Crash ?", "description": "Cochez cette case si vous souhaitez que le job crash... pour voir comment ca se passe.", "type": "boolean", "default": false }, "duration": { "title": "Duree du job", "description": "Indiquez le nombre de seconde que va durer le job.", "type": "integer", "default": 100 }, "outfilename": { "title": "Fichier resultat", "description": "Comment souhaitez vous nommer le fichier resultat que generera ce job.", "type": "string", "default": "result.txt" } }, "required": [ "outfilename" ] }
o13150
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "bulk_publishing": { "type": "boolean" }, "links": { "type": "object", "additionalProperties": false, "properties": { "facet_groups": { "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.", "$ref": "#/definitions/guid_list" }, "facet_values": { "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups.", "$ref": "#/definitions/guid_list" }, "field_of_operation": { "$ref": "#/definitions/guid_list", "maxItems": 1 }, "finder": { "description": "Powers links from content back to finders the content is surfaced on", "$ref": "#/definitions/guid_list" }, "lead_organisations": { "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.", "$ref": "#/definitions/guid_list" }, "mainstream_browse_pages": { "description": "Powers the /browse section of the site. These are known as sections in some legacy apps.", "$ref": "#/definitions/guid_list" }, "meets_user_needs": { "description": "The user needs this piece of content meets.", "$ref": "#/definitions/guid_list" }, "ordered_related_items": { "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.", "$ref": "#/definitions/guid_list" }, "ordered_related_items_overrides": { "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation.", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "All organisations linked to this content item. This should include lead organisations.", "$ref": "#/definitions/guid_list" }, "original_primary_publishing_organisation": { "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.", "$ref": "#/definitions/guid_list" }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "people": { "description": "People that are associated with this document, typically the person part of a role association", "$ref": "#/definitions/guid_list" }, "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" }, "primary_publishing_organisation": { "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.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "roles": { "description": "Government roles that are associated with this document, typically the role part of a role association", "$ref": "#/definitions/guid_list" }, "suggested_ordered_related_items": { "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.", "$ref": "#/definitions/guid_list" }, "taxons": { "description": "Prototype-stage taxonomy label for this content item", "$ref": "#/definitions/guid_list" }, "topics": { "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps.", "$ref": "#/definitions/guid_list" } } }, "previous_version": { "type": "string" } }, "definitions": { "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 } } }
o21217
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "namedResource": { "properties": { "name": { "type": "string" }, "resource_uri": { "type": "string" } }, "required": [ "name", "resource_uri" ], "type": "object" } }, "properties": { "created": { "pattern": "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}.\\d{6}", "type": "string" }, "generation": { "type": "integer" }, "id": { "type": "integer" }, "modified": { "pattern": "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}.\\d{6}", "type": "string" }, "name": { "type": "string" }, "release_year": { "type": "integer" }, "resource_uri": { "type": "string" } }, "required": [ "name", "id", "resource_uri", "created", "modified", "release_year", "generation" ], "type": "object" }
o12620
{ "$schema": "http://json-schema.org/draft-04/schema#", "anyOf": [ { "required": [ "title" ] }, { "required": [ "description" ] }, { "required": [ "filing_type_name" ] } ], "description": "A statutory filing", "properties": { "date": { "_format": "date", "type": "string" }, "description": { "type": "string" }, "filing_type_code": { "type": "string" }, "filing_type_name": { "type": "string" }, "other_attributes": { "type": "object" }, "title": { "type": "string" }, "uid": { "type": "string" }, "url": { "type": "string" } }, "required": [ "date" ], "type": "object" }
o65451
{ "anyOf": [ { "$ref": "#/definitions/SkaffoldConfig" } ], "definitions": { "Activation": { "additionalProperties": false, "description": "criteria by which a profile is auto-activated.", "preferredOrder": [ "env", "kubeContext", "command" ], "properties": { "command": { "description": "a Skaffold command for which the profile is auto-activated.", "examples": [ "dev" ], "type": "string", "x-intellij-html-description": "a Skaffold command for which the profile is auto-activated." }, "env": { "description": "a `key=value` pair. The profile is auto-activated if an Environment Variable `key` has value `value`.", "examples": [ "ENV=production" ], "type": "string", "x-intellij-html-description": "a <code>key=value</code> pair. The profile is auto-activated if an Environment Variable <code>key</code> has value <code>value</code>." }, "kubeContext": { "description": "a Kubernetes context for which the profile is auto-activated.", "examples": [ "minikube" ], "type": "string", "x-intellij-html-description": "a Kubernetes context for which the profile is auto-activated." } }, "x-intellij-html-description": "criteria by which a profile is auto-activated." }, "Artifact": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "plugin" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "plugin": { "$ref": "#/definitions/BuilderPlugin", "description": "plugin used to build this artifact.", "x-intellij-html-description": "plugin used to build this artifact." }, "sync": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "*alpha* local files synced to pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders.", "examples": [ "{\"*.py\": \".\", \"css/**/*.css\": \"app/css\"}" ], "type": "object", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "plugin", "docker" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "docker": { "$ref": "#/definitions/DockerArtifact", "description": "*beta* describes an artifact built from a Dockerfile.", "x-intellij-html-description": "<em>beta</em> describes an artifact built from a Dockerfile." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "plugin": { "$ref": "#/definitions/BuilderPlugin", "description": "plugin used to build this artifact.", "x-intellij-html-description": "plugin used to build this artifact." }, "sync": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "*alpha* local files synced to pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders.", "examples": [ "{\"*.py\": \".\", \"css/**/*.css\": \"app/css\"}" ], "type": "object", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "plugin", "bazel" ], "properties": { "bazel": { "$ref": "#/definitions/BazelArtifact", "description": "*beta* requires bazel CLI to be installed and the sources to contain [Bazel](https://bazel.build/) configuration files.", "x-intellij-html-description": "<em>beta</em> requires bazel CLI to be installed and the sources to contain <a href=\"https://bazel.build/\">Bazel</a> configuration files." }, "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "plugin": { "$ref": "#/definitions/BuilderPlugin", "description": "plugin used to build this artifact.", "x-intellij-html-description": "plugin used to build this artifact." }, "sync": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "*alpha* local files synced to pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders.", "examples": [ "{\"*.py\": \".\", \"css/**/*.css\": \"app/css\"}" ], "type": "object", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "plugin", "jibMaven" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "jibMaven": { "$ref": "#/definitions/JibMavenArtifact", "description": "*alpha* builds images using the [Jib plugin for Maven](https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin).", "x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin\">Jib plugin for Maven</a>." }, "plugin": { "$ref": "#/definitions/BuilderPlugin", "description": "plugin used to build this artifact.", "x-intellij-html-description": "plugin used to build this artifact." }, "sync": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "*alpha* local files synced to pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders.", "examples": [ "{\"*.py\": \".\", \"css/**/*.css\": \"app/css\"}" ], "type": "object", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "plugin", "jibGradle" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "jibGradle": { "$ref": "#/definitions/JibGradleArtifact", "description": "*alpha* builds images using the [Jib plugin for Gradle](https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin).", "x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin\">Jib plugin for Gradle</a>." }, "plugin": { "$ref": "#/definitions/BuilderPlugin", "description": "plugin used to build this artifact.", "x-intellij-html-description": "plugin used to build this artifact." }, "sync": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "*alpha* local files synced to pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders.", "examples": [ "{\"*.py\": \".\", \"css/**/*.css\": \"app/css\"}" ], "type": "object", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders." } } } ], "description": "items that need to be built, along with the context in which they should be built.", "required": [ "image" ], "x-intellij-html-description": "items that need to be built, along with the context in which they should be built." }, "BazelArtifact": { "additionalProperties": false, "description": "*beta* describes an artifact built with [Bazel](https://bazel.build/).", "preferredOrder": [ "target", "args" ], "properties": { "args": { "default": "[]", "description": "additional args to pass to `bazel build`.", "examples": [ "[\"-flag\", \"--otherflag\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional args to pass to <code>bazel build</code>." }, "target": { "description": "`bazel build` target to run.", "examples": [ "//:skaffold_example.tar" ], "type": "string", "x-intellij-html-description": "<code>bazel build</code> target to run." } }, "required": [ "target" ], "x-intellij-html-description": "<em>beta</em> describes an artifact built with <a href=\"https://bazel.build/\">Bazel</a>." }, "BuildConfig": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "artifacts", "tagPolicy", "executionEnvironment" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "executionEnvironment": { "$ref": "#/definitions/ExecutionEnvironment", "description": "environment in which the build should run. Possible values: googleCloudBuild.", "x-intellij-html-description": "environment in which the build should run. Possible values: googleCloudBuild." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "tagPolicy", "executionEnvironment", "local" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "executionEnvironment": { "$ref": "#/definitions/ExecutionEnvironment", "description": "environment in which the build should run. Possible values: googleCloudBuild.", "x-intellij-html-description": "environment in which the build should run. Possible values: googleCloudBuild." }, "local": { "$ref": "#/definitions/LocalBuild", "description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.", "x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "tagPolicy", "executionEnvironment", "googleCloudBuild" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "executionEnvironment": { "$ref": "#/definitions/ExecutionEnvironment", "description": "environment in which the build should run. Possible values: googleCloudBuild.", "x-intellij-html-description": "environment in which the build should run. Possible values: googleCloudBuild." }, "googleCloudBuild": { "$ref": "#/definitions/GoogleCloudBuild", "description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/).", "x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/\">Google Cloud Build</a>." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "tagPolicy", "executionEnvironment", "kaniko" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "executionEnvironment": { "$ref": "#/definitions/ExecutionEnvironment", "description": "environment in which the build should run. Possible values: googleCloudBuild.", "x-intellij-html-description": "environment in which the build should run. Possible values: googleCloudBuild." }, "kaniko": { "$ref": "#/definitions/KanikoBuild", "description": "*beta* describes how to do an on-cluster build using [Kaniko](https://github.com/GoogleContainerTools/kaniko).", "x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build using <a href=\"https://github.com/GoogleContainerTools/kaniko\">Kaniko</a>." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {}</code>." } } } ], "description": "contains all the configuration for the build steps.", "x-intellij-html-description": "contains all the configuration for the build steps." }, "BuilderPlugin": { "additionalProperties": false, "description": "contains all fields necessary for specifying a build plugin.", "preferredOrder": [ "name", "properties" ], "properties": { "name": { "description": "name of the build plugin.", "type": "string", "x-intellij-html-description": "name of the build plugin." }, "properties": { "additionalProperties": {}, "default": "{}", "description": "key-value pairs passed to the plugin.", "type": "object", "x-intellij-html-description": "key-value pairs passed to the plugin." } }, "x-intellij-html-description": "contains all fields necessary for specifying a build plugin." }, "DateTimeTagger": { "additionalProperties": false, "description": "*beta* tags images with the build timestamp.", "preferredOrder": [ "format", "timezone" ], "properties": { "format": { "default": "2006-01-02_15-04-05.999_MST", "description": "formats the date and time. See [#Time.Format](https://golang.org/pkg/time/#Time.Format).", "type": "string", "x-intellij-html-description": "formats the date and time. See <a href=\"https://golang.org/pkg/time/#Time.Format\">#Time.Format</a>." }, "timezone": { "description": "sets the timezone for the date and time. See [Time.LoadLocation](https://golang.org/pkg/time/#Time.LoadLocation). Defaults to the local timezone.", "type": "string", "x-intellij-html-description": "sets the timezone for the date and time. See <a href=\"https://golang.org/pkg/time/#Time.LoadLocation\">Time.LoadLocation</a>. Defaults to the local timezone." } }, "x-intellij-html-description": "<em>beta</em> tags images with the build timestamp." }, "DeployConfig": { "anyOf": [ { "additionalProperties": false }, { "additionalProperties": false, "preferredOrder": [ "helm" ], "properties": { "helm": { "$ref": "#/definitions/HelmDeploy", "description": "*beta* uses the `helm` CLI to apply the charts to the cluster.", "x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster." } } }, { "additionalProperties": false, "preferredOrder": [ "kubectl" ], "properties": { "kubectl": { "$ref": "#/definitions/KubectlDeploy", "description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.", "x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster." } } }, { "additionalProperties": false, "preferredOrder": [ "kustomize" ], "properties": { "kustomize": { "$ref": "#/definitions/KustomizeDeploy", "description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.", "x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to &quot;patch&quot; a deployment for a target environment." } } } ], "description": "contains all the configuration needed by the deploy steps.", "x-intellij-html-description": "contains all the configuration needed by the deploy steps." }, "DockerArtifact": { "additionalProperties": false, "description": "*beta* describes an artifact built from a Dockerfile, usually using `docker build`.", "preferredOrder": [ "dockerfile", "target", "buildArgs", "cacheFrom" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build." }, "cacheFrom": { "default": "[]", "description": "the Docker images used as cache sources.", "examples": [ "[\"golang:1.10.1-alpine3.7\", \"alpine:3.7\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the Docker images used as cache sources." }, "dockerfile": { "default": "Dockerfile", "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." }, "target": { "description": "Dockerfile target name to build.", "type": "string", "x-intellij-html-description": "Dockerfile target name to build." } }, "x-intellij-html-description": "<em>beta</em> describes an artifact built from a Dockerfile, usually using <code>docker build</code>." }, "DockerConfig": { "additionalProperties": false, "description": "contains information about the docker `config.json` to mount.", "preferredOrder": [ "path", "secretName" ], "properties": { "path": { "description": "path to the docker `config.json`.", "type": "string", "x-intellij-html-description": "path to the docker <code>config.json</code>." }, "secretName": { "description": "Kubernetes secret that will hold the Docker configuration.", "type": "string", "x-intellij-html-description": "Kubernetes secret that will hold the Docker configuration." } }, "x-intellij-html-description": "contains information about the docker <code>config.json</code> to mount." }, "EnvTemplateTagger": { "additionalProperties": false, "description": "*beta* tags images with a configurable template string.", "preferredOrder": [ "template" ], "properties": { "template": { "description": "used to produce the image name and tag. See golang [text/template](https://golang.org/pkg/text/template/). The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section.", "examples": [ "{{.RELEASE}}-{{.IMAGE_NAME}}" ], "type": "string", "x-intellij-html-description": "used to produce the image name and tag. See golang <a href=\"https://golang.org/pkg/text/template/\">text/template</a>. The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section." } }, "required": [ "template" ], "x-intellij-html-description": "<em>beta</em> tags images with a configurable template string." }, "ExecEnvironment": { "description": "name of an execution environment.", "type": "string", "x-intellij-html-description": "name of an execution environment." }, "ExecutionEnvironment": { "additionalProperties": false, "description": "environment in which the build should run (ex. local or in-cluster, etc.).", "preferredOrder": [ "name", "properties" ], "properties": { "name": { "$ref": "#/definitions/ExecEnvironment", "description": "name of the environment.", "x-intellij-html-description": "name of the environment." }, "properties": { "additionalProperties": {}, "default": "{}", "description": "key-value pairs passed to the environment.", "type": "object", "x-intellij-html-description": "key-value pairs passed to the environment." } }, "x-intellij-html-description": "environment in which the build should run (ex. local or in-cluster, etc.)." }, "GitTagger": { "description": "*beta* tags images with the git tag or commit of the artifact's workspace.", "x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace." }, "GoogleCloudBuild": { "additionalProperties": false, "description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/docs/). Docker and Jib artifacts can be built on Cloud Build. The `projectId` needs to be provided and the currently logged in user should be given permissions to trigger new builds.", "preferredOrder": [ "projectId", "diskSizeGb", "machineType", "timeout", "dockerImage", "mavenImage", "gradleImage" ], "properties": { "diskSizeGb": { "description": "disk size of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).", "type": "integer", "x-intellij-html-description": "disk size of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>." }, "dockerImage": { "default": "gcr.io/cloud-builders/docker", "description": "image that runs a Docker build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Docker build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "gradleImage": { "default": "gcr.io/cloud-builders/gradle", "description": "image that runs a Gradle build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Gradle build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "machineType": { "description": "type of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).", "type": "string", "x-intellij-html-description": "type of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>." }, "mavenImage": { "default": "gcr.io/cloud-builders/mvn", "description": "image that runs a Maven build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Maven build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "projectId": { "description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name `gcr.io/myproject/image`, Skaffold will use the `myproject` GCP project.", "type": "string", "x-intellij-html-description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name <code>gcr.io/myproject/image</code>, Skaffold will use the <code>myproject</code> GCP project." }, "timeout": { "description": "amount of time (in seconds) that this build should be allowed to run. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build).", "type": "string", "x-intellij-html-description": "amount of time (in seconds) that this build should be allowed to run. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build\">Cloud Build Reference</a>." } }, "x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/docs/\">Google Cloud Build</a>. Docker and Jib artifacts can be built on Cloud Build. The <code>projectId</code> needs to be provided and the currently logged in user should be given permissions to trigger new builds." }, "HelmConventionConfig": { "description": "image config in the syntax of image.repository and image.tag.", "x-intellij-html-description": "image config in the syntax of image.repository and image.tag." }, "HelmDeploy": { "additionalProperties": false, "description": "*beta* uses the `helm` CLI to apply the charts to the cluster.", "preferredOrder": [ "releases", "flags" ], "properties": { "flags": { "$ref": "#/definitions/HelmDeployFlags", "description": "additional option flags that are passed on the command line to `helm`.", "x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>." }, "releases": { "description": "a list of Helm releases.", "items": { "$ref": "#/definitions/HelmRelease" }, "type": "array", "x-intellij-html-description": "a list of Helm releases." } }, "required": [ "releases" ], "x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster." }, "HelmDeployFlags": { "additionalProperties": false, "description": "additional option flags that are passed on the command line to `helm`.", "preferredOrder": [ "global", "install", "upgrade" ], "properties": { "global": { "default": "[]", "description": "additional flags passed on every command.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on every command." }, "install": { "default": "[]", "description": "additional flags passed to (`helm install`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed to (<code>helm install</code>)." }, "upgrade": { "default": "[]", "description": "additional flags passed to (`helm upgrade`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed to (<code>helm upgrade</code>)." } }, "x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>." }, "HelmFQNConfig": { "additionalProperties": false, "description": "image config to use the FullyQualifiedImageName as param to set.", "preferredOrder": [ "property" ], "properties": { "property": { "description": "defines the image config.", "type": "string", "x-intellij-html-description": "defines the image config." } }, "x-intellij-html-description": "image config to use the FullyQualifiedImageName as param to set." }, "HelmImageStrategy": { "anyOf": [ { "additionalProperties": false }, { "additionalProperties": false, "preferredOrder": [ "fqn" ], "properties": { "fqn": { "$ref": "#/definitions/HelmFQNConfig", "description": "image configuration uses the syntax `IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG`.", "x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "helm" ], "properties": { "helm": { "$ref": "#/definitions/HelmConventionConfig", "description": "image configuration uses the syntax `IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG`.", "x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG</code>." } } } ], "description": "adds image configurations to the Helm `values` file.", "x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file." }, "HelmPackaged": { "additionalProperties": false, "description": "parameters for packaging helm chart (`helm package`).", "preferredOrder": [ "version", "appVersion" ], "properties": { "appVersion": { "description": "sets the `appVersion` on the chart to this version.", "type": "string", "x-intellij-html-description": "sets the <code>appVersion</code> on the chart to this version." }, "version": { "description": "sets the `version` on the chart to this semver version.", "type": "string", "x-intellij-html-description": "sets the <code>version</code> on the chart to this semver version." } }, "x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)." }, "HelmRelease": { "additionalProperties": false, "description": "describes a helm release to be deployed.", "preferredOrder": [ "name", "chartPath", "valuesFiles", "values", "namespace", "version", "setValues", "setValueTemplates", "wait", "recreatePods", "skipBuildDependencies", "overrides", "packaged", "imageStrategy" ], "properties": { "chartPath": { "description": "path to the Helm chart.", "type": "string", "x-intellij-html-description": "path to the Helm chart." }, "imageStrategy": { "$ref": "#/definitions/HelmImageStrategy", "description": "adds image configurations to the Helm `values` file.", "x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file." }, "name": { "description": "name of the Helm release.", "type": "string", "x-intellij-html-description": "name of the Helm release." }, "namespace": { "description": "Kubernetes namespace.", "type": "string", "x-intellij-html-description": "Kubernetes namespace." }, "overrides": { "description": "key-value pairs. If present, Skaffold will build a Helm `values` file that overrides the original and use it to call Helm CLI (`--f` flag).", "x-intellij-html-description": "key-value pairs. If present, Skaffold will build a Helm <code>values</code> file that overrides the original and use it to call Helm CLI (<code>--f</code> flag)." }, "packaged": { "$ref": "#/definitions/HelmPackaged", "description": "parameters for packaging helm chart (`helm package`).", "x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)." }, "recreatePods": { "default": "false", "description": "if `true`, Skaffold will send `--recreate-pods` flag to Helm CLI.", "type": "boolean", "x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--recreate-pods</code> flag to Helm CLI." }, "setValueTemplates": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send `--set` flag to Helm CLI and append all parsed pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send <code>--set</code> flag to Helm CLI and append all parsed pairs after the flag." }, "setValues": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will send `--set` flag to Helm CLI and append all pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will send <code>--set</code> flag to Helm CLI and append all pairs after the flag." }, "skipBuildDependencies": { "default": "false", "description": "should build dependencies be skipped.", "type": "boolean", "x-intellij-html-description": "should build dependencies be skipped." }, "values": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs supplementing the Helm `values` file.", "type": "object", "x-intellij-html-description": "key-value pairs supplementing the Helm <code>values</code> file." }, "valuesFiles": { "default": "[]", "description": "paths to the Helm `values` files.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "paths to the Helm <code>values</code> files." }, "version": { "description": "version of the chart.", "type": "string", "x-intellij-html-description": "version of the chart." }, "wait": { "default": "false", "description": "if `true`, Skaffold will send `--wait` flag to Helm CLI.", "type": "boolean", "x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--wait</code> flag to Helm CLI." } }, "required": [ "name", "chartPath" ], "x-intellij-html-description": "describes a helm release to be deployed." }, "JSONPatch": { "additionalProperties": false, "description": "patch to be applied by a profile.", "preferredOrder": [ "op", "path", "from", "value" ], "properties": { "from": { "description": "source position in the yaml, used for `copy` or `move` operations.", "type": "string", "x-intellij-html-description": "source position in the yaml, used for <code>copy</code> or <code>move</code> operations." }, "op": { "default": "replace", "description": "operation carried by the patch: `add`, `remove`, `replace`, `move`, `copy` or `test`.", "type": "string", "x-intellij-html-description": "operation carried by the patch: <code>add</code>, <code>remove</code>, <code>replace</code>, <code>move</code>, <code>copy</code> or <code>test</code>." }, "path": { "description": "position in the yaml where the operation takes place. For example, this targets the `dockerfile` of the first artifact built.", "examples": [ "/build/artifacts/0/docker/dockerfile" ], "type": "string", "x-intellij-html-description": "position in the yaml where the operation takes place. For example, this targets the <code>dockerfile</code> of the first artifact built." }, "value": { "description": "value to apply. Can be any portion of yaml.", "x-intellij-html-description": "value to apply. Can be any portion of yaml." } }, "required": [ "path" ], "x-intellij-html-description": "patch to be applied by a profile." }, "JibGradleArtifact": { "additionalProperties": false, "description": "*alpha* builds images using the [Jib plugin for Gradle](https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin).", "preferredOrder": [ "project", "args" ], "properties": { "args": { "default": "[]", "description": "additional build flags passed to Gradle.", "examples": [ "[\"--no-build-cache\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional build flags passed to Gradle." }, "project": { "description": "selects which Gradle project to build.", "type": "string", "x-intellij-html-description": "selects which Gradle project to build." } }, "x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin\">Jib plugin for Gradle</a>." }, "JibMavenArtifact": { "additionalProperties": false, "description": "*alpha* builds images using the [Jib plugin for Maven](https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin).", "preferredOrder": [ "module", "profile", "args" ], "properties": { "args": { "default": "[]", "description": "additional build flags passed to Maven.", "examples": [ "[\"-x\", \"-DskipTests\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional build flags passed to Maven." }, "module": { "description": "selects which Maven module to build, for a multi module project.", "type": "string", "x-intellij-html-description": "selects which Maven module to build, for a multi module project." }, "profile": { "description": "selects which Maven profile to activate.", "type": "string", "x-intellij-html-description": "selects which Maven profile to activate." } }, "x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin\">Jib plugin for Maven</a>." }, "KanikoBuild": { "additionalProperties": false, "description": "*beta* describes how to do an on-cluster build using [Kaniko](https://github.com/GoogleContainerTools/kaniko).", "preferredOrder": [ "buildContext", "cache", "flags", "pullSecret", "pullSecretName", "namespace", "timeout", "image", "dockerConfig" ], "properties": { "buildContext": { "$ref": "#/definitions/KanikoBuildContext", "description": "defines where Kaniko gets the sources from.", "x-intellij-html-description": "defines where Kaniko gets the sources from." }, "cache": { "$ref": "#/definitions/KanikoCache", "description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.", "x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds." }, "dockerConfig": { "$ref": "#/definitions/DockerConfig", "description": "describes how to mount the local Docker configuration into the Kaniko pod.", "x-intellij-html-description": "describes how to mount the local Docker configuration into the Kaniko pod." }, "flags": { "default": "[]", "description": "additional flags to be passed to Kaniko command line. See [Kaniko Additional Flags](https://github.com/GoogleContainerTools/kaniko#additional-flags).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags to be passed to Kaniko command line. See <a href=\"https://github.com/GoogleContainerTools/kaniko#additional-flags\">Kaniko Additional Flags</a>." }, "image": { "description": "Docker image used by the Kaniko pod. Defaults to the latest released version of `gcr.io/kaniko-project/executor`.", "type": "string", "x-intellij-html-description": "Docker image used by the Kaniko pod. Defaults to the latest released version of <code>gcr.io/kaniko-project/executor</code>." }, "namespace": { "description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration.", "type": "string", "x-intellij-html-description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration." }, "pullSecret": { "description": "path to the secret key file. See [Kaniko Documentation](https://github.com/GoogleContainerTools/kaniko#running-kaniko-in-a-kubernetes-cluster).", "type": "string", "x-intellij-html-description": "path to the secret key file. See <a href=\"https://github.com/GoogleContainerTools/kaniko#running-kaniko-in-a-kubernetes-cluster\">Kaniko Documentation</a>." }, "pullSecretName": { "default": "kaniko-secret", "description": "name of the Kubernetes secret for pulling the files from the build context and pushing the final image.", "type": "string", "x-intellij-html-description": "name of the Kubernetes secret for pulling the files from the build context and pushing the final image." }, "timeout": { "description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (`20m`).", "type": "string", "x-intellij-html-description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (<code>20m</code>)." } }, "x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build using <a href=\"https://github.com/GoogleContainerTools/kaniko\">Kaniko</a>." }, "KanikoBuildContext": { "additionalProperties": false, "description": "contains the different fields available to specify a Kaniko build context.", "preferredOrder": [ "gcsBucket", "localDir" ], "properties": { "gcsBucket": { "description": "CGS bucket to which sources are uploaded. Kaniko will need access to that bucket to download the sources.", "type": "string", "x-intellij-html-description": "CGS bucket to which sources are uploaded. Kaniko will need access to that bucket to download the sources." }, "localDir": { "$ref": "#/definitions/LocalDir", "description": "configures how Kaniko mounts sources directly via an `emptyDir` volume.", "x-intellij-html-description": "configures how Kaniko mounts sources directly via an <code>emptyDir</code> volume." } }, "x-intellij-html-description": "contains the different fields available to specify a Kaniko build context." }, "KanikoCache": { "additionalProperties": false, "description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.", "preferredOrder": [ "repo" ], "properties": { "repo": { "description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See [Kaniko Caching](https://github.com/GoogleContainerTools/kaniko#caching).", "type": "string", "x-intellij-html-description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See <a href=\"https://github.com/GoogleContainerTools/kaniko#caching\">Kaniko Caching</a>." } }, "x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds." }, "KubectlDeploy": { "additionalProperties": false, "description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.", "preferredOrder": [ "manifests", "remoteManifests", "flags" ], "properties": { "flags": { "$ref": "#/definitions/KubectlFlags", "description": "additional flags passed to `kubectl`.", "x-intellij-html-description": "additional flags passed to <code>kubectl</code>." }, "manifests": { "default": "[\"k8s/*.yaml\"]", "description": "the Kubernetes yaml or json manifests.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the Kubernetes yaml or json manifests." }, "remoteManifests": { "default": "[]", "description": "Kubernetes manifests in remote clusters.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "Kubernetes manifests in remote clusters." } }, "x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster." }, "KubectlFlags": { "additionalProperties": false, "description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete).", "preferredOrder": [ "global", "apply", "delete" ], "properties": { "apply": { "default": "[]", "description": "additional flags passed on creations (`kubectl apply`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on creations (<code>kubectl apply</code>)." }, "delete": { "default": "[]", "description": "additional flags passed on deletions (`kubectl delete`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on deletions (<code>kubectl delete</code>)." }, "global": { "default": "[]", "description": "additional flags passed on every command.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on every command." } }, "x-intellij-html-description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete)." }, "KustomizeDeploy": { "additionalProperties": false, "description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.", "preferredOrder": [ "path", "flags" ], "properties": { "flags": { "$ref": "#/definitions/KubectlFlags", "description": "additional flags passed to `kubectl`.", "x-intellij-html-description": "additional flags passed to <code>kubectl</code>." }, "path": { "default": ".", "description": "path to Kustomization files.", "type": "string", "x-intellij-html-description": "path to Kustomization files." } }, "x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to &quot;patch&quot; a deployment for a target environment." }, "LocalBuild": { "additionalProperties": false, "description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.", "preferredOrder": [ "push", "useDockerCLI", "useBuildkit" ], "properties": { "push": { "description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster.", "type": "boolean", "x-intellij-html-description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster." }, "useBuildkit": { "default": "false", "description": "use BuildKit to build Docker images.", "type": "boolean", "x-intellij-html-description": "use BuildKit to build Docker images." }, "useDockerCLI": { "default": "false", "description": "use `docker` command-line interface instead of Docker Engine APIs.", "type": "boolean", "x-intellij-html-description": "use <code>docker</code> command-line interface instead of Docker Engine APIs." } }, "x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository." }, "LocalDir": { "description": "configures how Kaniko mounts sources directly via an `emptyDir` volume.", "x-intellij-html-description": "configures how Kaniko mounts sources directly via an <code>emptyDir</code> volume." }, "Profile": { "additionalProperties": false, "description": "*beta* profiles are used to override any `build`, `test` or `deploy` configuration.", "preferredOrder": [ "name", "build", "test", "deploy", "patches", "activation" ], "properties": { "activation": { "description": "criteria by which a profile can be auto-activated.", "items": { "$ref": "#/definitions/Activation" }, "type": "array", "x-intellij-html-description": "criteria by which a profile can be auto-activated." }, "build": { "$ref": "#/definitions/BuildConfig", "description": "replaces the main `build` configuration.", "x-intellij-html-description": "replaces the main <code>build</code> configuration." }, "deploy": { "$ref": "#/definitions/DeployConfig", "description": "replaces the main `deploy` configuration.", "x-intellij-html-description": "replaces the main <code>deploy</code> configuration." }, "name": { "description": "a unique profile name.", "examples": [ "profile-prod" ], "type": "string", "x-intellij-html-description": "a unique profile name." }, "patches": { "description": "patches applied to the configuration. Patches use the JSON patch notation.", "items": { "$ref": "#/definitions/JSONPatch" }, "type": "array", "x-intellij-html-description": "patches applied to the configuration. Patches use the JSON patch notation." }, "test": { "description": "replaces the main `test` configuration.", "items": { "$ref": "#/definitions/TestCase" }, "type": "array", "x-intellij-html-description": "replaces the main <code>test</code> configuration." } }, "required": [ "name" ], "x-intellij-html-description": "<em>beta</em> profiles are used to override any <code>build</code>, <code>test</code> or <code>deploy</code> configuration." }, "ShaTagger": { "description": "*beta* tags images with their sha256 digest.", "x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest." }, "SkaffoldConfig": { "additionalProperties": false, "description": "describes a Skaffold pipeline.", "preferredOrder": [ "apiVersion", "kind", "build", "test", "deploy", "profiles" ], "properties": { "apiVersion": { "description": "version of the configuration.", "type": "string", "x-intellij-html-description": "version of the configuration." }, "build": { "$ref": "#/definitions/BuildConfig", "description": "describes how images are built.", "x-intellij-html-description": "describes how images are built." }, "deploy": { "$ref": "#/definitions/DeployConfig", "description": "describes how images are deployed.", "x-intellij-html-description": "describes how images are deployed." }, "kind": { "default": "Config", "description": "always `Config`.", "type": "string", "x-intellij-html-description": "always <code>Config</code>." }, "profiles": { "description": "*beta* can override be used to `build`, `test` or `deploy` configuration.", "items": { "$ref": "#/definitions/Profile" }, "type": "array", "x-intellij-html-description": "<em>beta</em> can override be used to <code>build</code>, <code>test</code> or <code>deploy</code> configuration." }, "test": { "description": "describes how images are tested.", "items": { "$ref": "#/definitions/TestCase" }, "type": "array", "x-intellij-html-description": "describes how images are tested." } }, "x-intellij-html-description": "describes a Skaffold pipeline." }, "TagPolicy": { "additionalProperties": false, "description": "contains all the configuration for the tagging step.", "preferredOrder": [ "gitCommit", "sha256", "envTemplate", "dateTime" ], "properties": { "dateTime": { "$ref": "#/definitions/DateTimeTagger", "description": "*beta* tags images with the build timestamp.", "x-intellij-html-description": "<em>beta</em> tags images with the build timestamp." }, "envTemplate": { "$ref": "#/definitions/EnvTemplateTagger", "description": "*beta* tags images with a configurable template string.", "x-intellij-html-description": "<em>beta</em> tags images with a configurable template string." }, "gitCommit": { "$ref": "#/definitions/GitTagger", "description": "*beta* tags images with the git tag or commit of the artifact's workspace.", "x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace." }, "sha256": { "$ref": "#/definitions/ShaTagger", "description": "*beta* tags images with their sha256 digest.", "x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest." } }, "x-intellij-html-description": "contains all the configuration for the tagging step." }, "TestCase": { "additionalProperties": false, "description": "a list of structure tests to run on images that Skaffold builds.", "preferredOrder": [ "image", "structureTests" ], "properties": { "image": { "description": "artifact on which to run those tests.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "artifact on which to run those tests." }, "structureTests": { "default": "[]", "description": "the [Container Structure Tests](https://github.com/GoogleContainerTools/container-structure-test) to run on that artifact.", "examples": [ "[\"./test/*\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the <a href=\"https://github.com/GoogleContainerTools/container-structure-test\">Container Structure Tests</a> to run on that artifact." } }, "required": [ "image" ], "x-intellij-html-description": "a list of structure tests to run on images that Skaffold builds." } }, "type": "object" }
o6362
{ "properties": { "dimensions": { "properties": { "base": { "description": "Base of the shape", "type": "number" }, "height": { "description": "Height of the shape", "type": "number" }, "length": { "description": "Length of the shape", "type": "number" }, "radius": { "description": "Radius of the shape", "type": "number" }, "width": { "description": "Width of the shape", "type": "number" } }, "type": "object" }, "shape": { "description": "Type of shape (e.g. square, triangle, circle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_2cd15688
{ "additionalProperties": false, "description": "common schema for user application processing stage 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" ] }, "stage": { "description": "application specific process stage", "type": "string" } }, "required": [ "_id", "_timestamp", "period", "stage", "count" ], "title": "application-stage-volumes", "type": "object" }
o60884
{ "$id": "https://json.schemastore.org/typewiz.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "common": { "type": "object", "properties": { "rootDir": { "type": "string", "description": "If given, all the file paths in the collected type info will be resolved relative to this directory." }, "tsConfig": { "type": "string", "description": "Path to your project's tsconfig file. This is required for several other options like implicit this instrumentation and type inference using static analysis." } } }, "instrument": { "type": "object", "properties": { "instrumentCallExpressions": { "type": "boolean", "description": "Try to find even more types by combining static analysis with the runtime analysis. TypeWiz will try to use TypeScript's inferred types when determining the type of a function argument.", "default": false }, "instrumentImplicitThis": { "type": "boolean", "description": "Find type of this in non-class member functions. Requires common.tsConfig to be set", "default": false }, "skipTwizDeclarations": { "type": "boolean", "description": "Don't add a declaration of $_$twiz to instrumented files.", "default": false } } }, "applyTypes": { "type": "object", "properties": { "prefix": { "type": "string", "description": "A prefix that will be added in front of each type applied. You can use a javascript comment to mark the automatically added types. The prefix will be added after the colon character, just before the actual type." } } } }, "title": "Typewiz configuration schema", "type": "object" }
typewiz
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "HttpEndpoint": { "additionalProperties": false, "properties": { "@type": { "default": "http", "enum": [ "http" ], "type": "string" }, "domain": { "type": "string" }, "encoding": { "default": "<no-encoding>", "type": "string" }, "headers": { "items": { "type": "string" }, "type": "array" }, "id": { "type": "string" }, "method": { "type": "string" }, "parameters": { "items": { "$ref": "#/definitions/HttpParameter" }, "type": "array" }, "path": { "type": "string" }, "port": { "type": "string" }, "protocol": { "type": "string" } }, "required": [ "@type", "domain", "port", "path", "method", "protocol" ], "type": "object" }, "HttpParameter": { "additionalProperties": false, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "parameter-type": { "enum": [ "REQ_PARAM", "BODY", "URL_PART", "HEADER", "FORM" ], "type": "string" } }, "required": [ "name", "parameter-type" ], "type": "object" } }, "properties": { "endpoints": { "items": { "oneOf": [ { "$ref": "#/definitions/HttpEndpoint" } ] }, "type": "array" }, "id": { "type": "string" }, "timestamp": { "pattern": "\\d{4}-\\d{2}-\\d{2}T\\d{2}-\\d{2}-\\d{2}-\\d{3}\\w*", "type": "string" } }, "required": [ "timestamp" ], "title": "Application Model", "type": "object" }
o3906
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "link": { "type": "object", "additionalProperties": false, "properties": { "href": { "type": "string" } } }, "error": { "type": "object", "additionalProperties": false, "properties": { "code": { "type": "integer" }, "message": { "type": "string" } } } }, "properties": { "link": { "$ref": "#/definitions/link" }, "error": { "$ref": "#/definitions/error" } }, "required": [ "link", "error" ] }
o39397
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference": { "description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.", "properties": { "apiGroup": { "description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.", "type": "string" }, "kind": { "description": "Kind is the type of resource being referenced", "type": "string" }, "name": { "description": "Name is the name of resource being referenced", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "IngressBackend describes all endpoints for a given service and port.", "properties": { "resource": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference", "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified." }, "serviceName": { "description": "Specifies the name of the referenced service.", "type": [ "string", "null" ] }, "servicePort": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Specifies the port of the referenced service." } }, "type": "object" }
kb_439_Normalized
{ "additionalProperties": false, "description": "Schema for a Google Analytics exception hit", "properties": { "description": { "maxLength": 150, "type": [ "string", "null" ] }, "isFatal": { "type": [ "boolean", "null" ] } }, "self": { "format": "jsonschema", "name": "exception", "vendor": "com.google.analytics.measurement-protocol", "version": "1-0-0" }, "type": "object" }
sp_44_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "_elements" ], "oneOf": [ { "properties": { "_attributes": { "type": "object", "required": [ "init_system" ], "properties": { "init_system": { "not": { "enum": [ "upstart" ] }, "type": "string", "minLength": 1 } } }, "_elements": { "type": "array", "items": { "type": "object", "required": [ "name", "state" ], "properties": { "name": { "type": "string", "minLength": 1 }, "state": { "type": "string", "minLength": 1 } } } } } }, { "properties": { "_attributes": { "type": "object", "required": [ "init_system" ], "properties": { "init_system": { "enum": [ "upstart" ] } } }, "_elements": { "type": "array", "items": { "type": "object", "required": [ "name", "state", "legacy_sysv" ], "properties": { "name": { "type": "string", "minLength": 1 }, "state": { "type": "string", "minLength": 1 }, "legacy_sysv": { "type": "boolean" } } } } } } ] }
o25761
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "length", "width" ], "type": "object" }, "shape": { "description": "The geometric shape, e.g. circle, rectangle", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_2ad37fb0
{ "properties": { "accesscount": { "readonly": true, "type": "object" }, "accessratio": { "readonly": true, "type": "object" }, "accessrationew": { "readonly": true, "type": "object" }, "avgbandsize": { "readonly": true, "type": "object" }, "avgbandsizenew": { "readonly": true, "type": "object" }, "banddata": { "readonly": true, "type": "object" }, "banddatanew": { "readonly": true, "type": "object" }, "bandrange": { "readonly": true, "type": "integer" }, "nodeid": { "type": "integer" }, "numberofbands": { "readonly": true, "type": "integer" }, "reqbandsize": { "type": "integer" }, "respbandsize": { "type": "integer" }, "totalbandsize": { "readonly": true, "type": "object" }, "totals": { "readonly": true, "type": "object" }, "type": { "enum": [ "REQUEST", "RESPONSE" ], "type": "string" } }, "title": "protocolhttpband", "type": "object" }
o30846
{ "properties": { "customer_name": { "description": "The name of the customer", "type": "string" }, "discount": { "description": "The discount on the total amount", "type": "number" }, "order_items": { "items": { "properties": { "item_name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "item_name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_name", "order_items" ], "type": "object" }
generate_invoice_0f5973c9
{ "description": "ContainerPort represents a network port in a single container.", "properties": { "containerPort": { "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", "format": "int32", "type": [ "integer", "null" ] }, "hostIP": { "description": "What host IP to bind the external port to.", "type": [ "string", "null" ] }, "hostPort": { "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.", "format": "int32", "type": [ "integer", "null" ] }, "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", "null" ] }, "protocol": { "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".", "type": [ "string", "null" ] } }, "required": [ "containerPort" ], "type": "object" }
kb_124_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "adresse": { "type": "string", "default": "localhost" }, "passWord": { "type": "string", "default": "passwort" }, "port": { "type": "string", "default": "3000" }, "userName": { "type": "string", "default": "Tester" } }, "required": [ "adresse", "passWord", "port", "userName" ] }
o79722
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Add-on Version Checker file", "description": "A KSP-AVC version file's content", "type": "object", "properties": { "NAME": { "description": "The display name for the add-on", "type": "string" }, "URL": { "description": "Location of a remote version file for update checking", "type": "string", "format": "uri" }, "DOWNLOAD": { "description": "Web address where the latest version can be downloaded", "type": "string", "format": "uri" }, "CHANGE_LOG": { "description": "The complete or incremental change log for the add-on", "type": "string" }, "CHANGE_LOG_URL": { "description": "Populates the CHANGE_LOG field using the file at this url", "type": "string", "format": "uri" }, "GITHUB": { "description": "Allows KSP-AVC to do release checks with GitHub including setting a download location if one is not specified. If the latest release version is not equal to the version in the file, an update notification will not appear.", "type": "object", "properties": { "USERNAME ": { "description": "Your GitHub username", "type": "string" }, "REPOSITORY ": { "description": "The name of the source repository", "type": "string" }, "ALLOW_PRE_RELEASE ": { "description": "Include pre-releases in the latest release search", "type": "boolean" } }, "required": [ "USERNAME", "REPOSITORY" ] }, "KERBAL_STUFF_URL": { "description": "URL to this mod's page on KerbalStuff", "type": "string", "format": "uri" }, "VERSION": { "description": "The version of the add-on", "$ref": "#/definitions/version" }, "KSP_VERSION": { "description": "Version of KSP that the add-on was made to support", "$ref": "#/definitions/version" }, "KSP_VERSION_MIN": { "description": "Minimum version of KSP that the add-on supports", "$ref": "#/definitions/version" }, "KSP_VERSION_MAX": { "description": "Maximum version of KSP that the add-on supports", "$ref": "#/definitions/version" }, "DISALLOW_VERSION_OVERRIDE": { "type": "boolean", "description": "If true, don't trust KSP-AVC's idea of which game versions are compatible with which other game versions, based on user configuration" }, "ASSEMBLY_NAME": { "type": "string", "description": "DO NOT USE, won't work with CKAN; name of a DLL to check for VERSION on the fly" }, "KSP_VERSION_INCLUDE": { "description": "DO NOT USE, won't work with CKAN; a list of versions with which this mod is compatible", "type": "array", "items": { "$ref": "#/definitions/version" }, "uniqueItems": true }, "KSP_VERSION_EXCLUDE": { "description": "DO NOT USE, won't work with CKAN; a list of versions with which this mod is incompatible", "type": "array", "items": { "$ref": "#/definitions/version" }, "uniqueItems": true }, "LOCAL_HAS_PRIORITY": { "type": "boolean", "description": "DO NOT USE, won't work with CKAN; if true, don't override properties using the remote version file" }, "REMOTE_HAS_PRIORITY": { "type": "boolean", "description": "DO NOT USE, won't work with CKAN; if false, don't override properties using the remote version file" }, "INSTALL_LOC|INSTALL_LOC*": { "description": "Stanza to define file location to check, used by MADLAD", "$ref": "#/definitions/install_loc" } }, "required": [ "NAME", "VERSION" ], "definitions": { "version": { "description": "A semantic(?) version", "anyOf": [ { "type": "string", "pattern": "^(any|[0-9]+\\.[0-9]+(\\.[0-9]+)?)$" }, { "type": "object", "properties": { "MAJOR": { "description": "Change major version when you make incompatible API changes", "type": "integer" }, "MINOR": { "description": "Change minor version when you add functionality in a backwards-compatible manner", "type": "integer" }, "PATCH": { "description": "Change patch version when you make backwards-compatible bug fixes", "type": "integer" }, "BUILD": { "description": "Build informaion", "type": "integer" } }, "required": [ "MAJOR" ] } ] }, "install_loc": { "description": "definition of the install_loc fields", "NAME": { "type": "string", "description": "Name of the mod, If not specified, uses the Modname from the .version file" }, "PATH": { "type": "string", "description": "Path to the directory, begins below the GameData. Must be there, but will be empty in most cases" }, "DIRECTORY": { "type": "string", "description": "Directory where file is" }, "FILE": { "type": "string", "description": "filename to be checked. If not specified, then it checks for the directory only" }, "required": [ "PATH", "DIRECTORY" ] } } }
KSP-AVC
{ "description": "The configuration of a thumbnail associated to a scene. An instance of <a href=\"#scene-thumbnail\">a scene thumbnail.</a>", "properties": { "height": { "description": "Height of the thumbnail.", "example": 50, "title": "Height", "type": "number" }, "uid": { "description": "The UID of the thumbnail.", "example": "thumb-0", "title": "UID", "type": "string" }, "url": { "description": "URL of the thumbnail: the file can be local or on a distant server, but must be a valid image format.", "example": "./images/scene-0-thumbnail.jpg", "title": "URL", "type": "string" }, "width": { "description": "Width of the thumbnail.", "example": 100, "title": "Width", "type": "number" } }, "title": "SceneThumbConfig", "type": "object" }
o44303
{ "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" } }, "required": [ "length", "width", "radius", "base", "height" ], "type": "object" }, "shape": { "description": "The type of shape (e.g., rectangle, circle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_2ee5dd9a
{ "properties": { "include_lowercase": { "description": "Indicates whether to include lowercase letters in the password", "type": "boolean" }, "include_numbers": { "description": "Indicates whether to include numbers in the password", "type": "boolean" }, "include_symbols": { "description": "Indicates whether to include symbols in the password", "type": "boolean" }, "include_uppercase": { "description": "Indicates whether to include uppercase letters in the password", "type": "boolean" }, "length": { "description": "The length of the password", "type": "integer" } }, "required": [ "length" ], "type": "object" }
generate_random_password_706aa41a
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "developer": { "type": "object", "properties": { "shortCode": { "type": "string", "description": "the developer's shortcode" }, "name": { "type": "string", "description": "the developer's name" }, "blurb": { "type": "string", "description": "the developer's blurb" }, "description": { "type": "string", "description": "the developer's description" } }, "additionalProperties": false, "required": [ "shortCode", "name", "blurb" ] } }, "type": "object", "description": "details about a specific app", "additionalProperties": false, "properties": { "shortCode": { "type": "string", "description": "the app's shortcode" }, "name": { "type": "string", "description": "the app's name" }, "blurb": { "type": "string", "description": "the app's blurb" }, "description": { "type": "string", "description": "the app's description" }, "logoUrl": { "type": "string", "format": "url", "description": "the app's logo" }, "learnMoreUrl": { "type": "string", "description": "the app's learnMoreUrl" }, "principalType": { "type": "string", "description": "the app's principal type (if it is SSO)" }, "developer": { "$ref": "#/definitions/developer" } }, "required": [ "shortCode", "name", "blurb", "developer" ] }
o79473
{ "$id": "https://example.com/restapi/HasFormats.json", "$schema": "http://json-schema.org/draft-04/schema#", "title": "HasFormats", "type": "object", "definitions": { "MyDateTime": { "type": "string", "format": "date-time" }, "MyUtcMillisec": { "type": "number", "format": "utc-millisec" }, "MyObj": { "type": "object", "properties": { "name": { "type": "string" } } } }, "properties": { "TheDateAndTime": { "$ref": "#/definitions/MyDateTime" }, "TheDateAndTimeArray": { "type": "array", "items": { "$ref": "#/definitions/MyDateTime" } }, "TheDateAndTimeArray2": { "type": "array", "items": { "$ref": "#/definitions/MyObj" } }, "TheTimestamp": { "$ref": "#/definitions/MyUtcMillisec" }, "TheDate": { "type": "string", "format": "date" }, "TheTime": { "type": "string", "format": "time" }, "AnotherDateTime": { "type": "string", "format": "date-time" }, "int64": { "type": "integer", "format": "int64" }, "UnhandledFormat": { "type": "string", "format": "chickenbutt" } } }
o58620
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the square or rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "The geometric shape (e.g., circle, square, rectangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_f9bf95b6
{ "properties": { "items": { "description": "The list of items on the invoice", "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "quantity": { "description": "The quantity of the item", "type": "integer" }, "unit_price": { "description": "The unit price of the item", "type": "number" } }, "required": [ "name", "quantity", "unit_price" ], "type": "object" }, "type": "array" } }, "required": [ "items" ], "type": "object" }
generate_invoice_62e6f8e4
{ "defs": { "feed": { "additionalProperties": false, "properties": { "cache_timestamp": { "type": "string" }, "caching_enabled": { "type": "boolean" }, "default": { "type": "boolean" }, "delete_local_file": { "type": "boolean" }, "delta_merge": { "type": "boolean" }, "distribution": { "type": "string" }, "enabled": { "type": "boolean" }, "event_id": { "type": "string" }, "fixed_event": { "type": "boolean" }, "headers": { "type": "string" }, "id": { "type": "string" }, "input_source": { "enum": [ "network", "local" ], "type": "string" }, "lookup_visible": { "type": "boolean" }, "name": { "type": "string" }, "override_ids": { "type": "boolean" }, "provider": { "type": "string" }, "publish": { "type": "boolean" }, "rules": { "type": "string" }, "settings": { "type": "string" }, "sharing_group_id": { "type": "string" }, "source_format": { "enum": [ "misp", "csv", "freetext" ], "type": "string" }, "tag_id": { "type": "string" }, "url": { "type": "string" } }, "required": [ "id", "name", "provider", "url", "rules", "enabled", "distribution", "sharing_group_id", "tag_id", "default", "source_format", "fixed_event", "delta_merge", "event_id", "publish", "override_ids", "settings", "input_source", "delete_local_file", "lookup_visible" ], "type": "object" }, "tag": { "additionalProperties": false, "properties": { "colour": { "type": "string" }, "exportable": { "type": "boolean" }, "hide_tag": { "type": "boolean" }, "id": { "type": "string" }, "name": { "type": "string" }, "org_id": { "type": "string" } }, "required": [ "id", "name", "colour", "exportable", "org_id", "hide_tag" ], "type": "object" } }, "items": { "additionalProperties": false, "properties": { "Feed": { "$ref": "#/defs/feed" }, "Tag": { "$ref": "#/defs/tag" } }, "required": [ "Feed" ], "type": "object" }, "title": "Validator for MISP feed metadata", "type": "array", "_uniqueItems": true }
o36008
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Query", "description": "A JSON format to support searching for collections in the CMR.", "additionalProperties": false, "type": "object", "properties": { "condition": { "$ref": "#/definitions/QueryCondition" } }, "definitions": { "QueryCondition": { "description": "Condition used to filter collection search results from the CMR. If multiple properties are provided in a single condition they will be implicitly AND'ed.", "additionalProperties": false, "minProperties": 1, "type": "object", "properties": { "and": { "description": "Groups together conditions to return the intersection of the results.", "type": "array", "items": { "$ref": "#/definitions/QueryCondition" }, "minItems": 1 }, "or": { "description": "Groups together conditions to return the union of the results.", "type": "array", "items": { "$ref": "#/definitions/QueryCondition" }, "minItems": 1 }, "not": { "description": "Negates the provided condition.", "$ref": "#/definitions/QueryCondition" }, "entry_title": { "description": "UMM Entry Title", "$ref": "#/definitions/StringCondition" }, "entry_id": { "description": "UMM Entry ID", "$ref": "#/definitions/StringCondition" }, "provider": { "description": "UMM Provider", "$ref": "#/definitions/StringCondition" }, "short_name": { "description": "UMM Short Name", "$ref": "#/definitions/StringCondition" }, "updated_since": { "description": "Revisions with revision date later than provided value", "format": "date-time", "type": "string" }, "version": { "description": "UMM Version", "$ref": "#/definitions/StringCondition" }, "processing_level_id": { "description": "UMM Processing Level ID", "$ref": "#/definitions/StringCondition" }, "concept_id": { "description": "CMR concept ID", "oneOf": [ { "type": "string" }, { "type": "object", "additionalProperties": false, "description": "Concept ID searches are always case sensitive", "properties": { "value": { "type": "string" }, "pattern": { "$ref": "#/definitions/PatternOption" } }, "required": [ "value" ] } ] }, "tag": { "description": "Search against the subfields of associated tag.", "$ref": "#/definitions/TagCondition" }, "platform": { "description": "Search against any of the subfields in the platform hierarchy", "type": "object", "additionalProperties": false, "minProperties": 1, "properties": { "category": { "description": "Top level classification of platforms.", "type": "string" }, "series_entity": { "description": "Second level classification under category. These keywords usually (but not always) refer to a series of Earth or space observing satellites.", "type": "string" }, "short_name": { "description": "Abbreviated name of the platform (source) used to acquire the data.", "type": "string" }, "long_name": { "description": "Full name of the platform (source) used to acquire the data.", "type": "string" }, "uuid": { "description": "Unique identifier for the platform within the GCMD Keyword Management System.", "type": "string" }, "ignore_case": { "$ref": "#/definitions/IgnoreCaseOption" }, "pattern": { "$ref": "#/definitions/PatternOption" }, "any": { "description": "Search against any of the platform subfields (category, series_entity, etc.) for the provided value.", "type": "string" } } }, "instrument": { "description": "Search against any of the subfields in the instrument hierarchy", "type": "object", "additionalProperties": false, "minProperties": 1, "properties": { "category": { "description": "Top level classification of instruments.", "type": "string" }, "class": { "description": "Second level classification under category.", "type": "string" }, "type": { "description": "Third level classification under class.", "type": "string" }, "subtype": { "description": "Fourth level classification under type.", "type": "string" }, "short_name": { "description": "Abbreviated name of the instrument used to acquire the data.", "type": "string" }, "long_name": { "description": "Full name of the instrument used to acquire the data.", "type": "string" }, "uuid": { "description": "Unique identifier for the instrument within the GCMD Keyword Management System.", "type": "string" }, "ignore_case": { "$ref": "#/definitions/IgnoreCaseOption" }, "pattern": { "$ref": "#/definitions/PatternOption" }, "any": { "description": "Search against any of the instrument subfields (category, class, etc.) for the provided value.", "type": "string" } } }, "sensor": { "description": "UMM sensor short name", "$ref": "#/definitions/StringCondition" }, "project": { "description": "UMM project short name", "$ref": "#/definitions/StringCondition" }, "data_center": { "description": "Search for data centers of any type (archive, distribution, processing, and originating are all searched.)", "$ref": "#/definitions/DataCenterCondition" }, "archive_center": { "description": "Search for data centers with a type of archive center.", "$ref": "#/definitions/DataCenterCondition" }, "spatial_keyword": { "description": "UMM spatial keyword", "$ref": "#/definitions/StringCondition" }, "location_keyword": { "description": "Search against any of the subfields in the UMM location keyword hierarchy", "type": "object", "additionalProperties": false, "minProperties": 1, "properties": { "category": { "description": "Top level classification of locations.", "type": "string" }, "type": { "description": "Second level classification under category.", "type": "string" }, "subregion_1": { "description": "Third level classification under type.", "type": "string" }, "subregion_2": { "description": "Fourth level classification under subregion_1.", "type": "string" }, "subregion_3": { "description": "Fifth level classification under subregion_2.", "type": "string" }, "uuid": { "description": "Unique identifier for the location keyword within the GCMD Keyword Management System.", "type": "string" }, "detailed_location": { "description": "Filter collections by the detailed location subfield within UMM location keywords.", "type": "string" }, "ignore_case": { "$ref": "#/definitions/IgnoreCaseOption" }, "pattern": { "$ref": "#/definitions/PatternOption" }, "any": { "description": "Search against any of the location keyword subfields (category, type, etc.) for the provided value.", "type": "string" } } }, "two_d_coordinate_system_name": { "description": "UMM two dimensional coordinate system name", "$ref": "#/definitions/StringCondition" }, "keyword": { "description": "Used for free text search across most search fields. Refer to the section 'Find collections by keyword search' on https://cmr.earthdata.nasa.gov/search/site/search_api_docs.html for a list of all fields searched against. Searches are always case insensitive and treat '?' and '*' as wild-cards.", "type": "string" }, "science_keywords": { "description": "UMM Science keywords", "type": "object", "additionalProperties": false, "minProperties": 1, "properties": { "category": { "type": "string" }, "topic": { "type": "string" }, "term": { "type": "string" }, "variable_level_1": { "type": "string" }, "variable_level_2": { "type": "string" }, "variable_level_3": { "type": "string" }, "detailed_variable": { "type": "string" }, "uuid": { "description": "Unique identifier for the science keyword within the GCMD Keyword Management System.", "type": "string" }, "ignore_case": { "$ref": "#/definitions/IgnoreCaseOption" }, "pattern": { "$ref": "#/definitions/PatternOption" }, "any": { "description": "Search against any of the science keyword subfields (category, term, etc.) for the provided value.", "type": "string" } } }, "bounding_box": { "description": "Specifies a bounding rectangle search.", "$ref": "#/definitions/BoundingBoxCondition" }, "doi": { "description": "Specifies a Digital Object Identifier search.", "$ref": "#/definitions/StringCondition" }, "temporal": { "description": "Specifies a temporal search.", "type": "object", "additionalProperties": false, "minProperties": 1, "properties": { "start_date": { "description": "The temporal coverage start date.", "format": "date-time", "type": "string" }, "end_date": { "description": "The temporal coverage end date.", "format": "date-time", "type": "string" }, "recurring_start_day": { "description": "An integer representing the day to get collections with a temporal extent over a recurring annual period starting on or after the given day.", "type": "integer", "minimum": 0, "maximum": 366 }, "recurring_end_day": { "description": "An integer representing the day to get collections with a temporal extent over a recurring annual period ending on or before the given day.", "type": "integer", "minimum": 0, "maximum": 366 }, "exclude_boundary": { "description": "If set to true, the search will not include the boundary date times. It has no impact on periodic temporal searches. Defaults to false.", "type": "boolean" } } }, "additional_attribute_name": { "description": "Search for additional attributes by name and/or group. One of name or group is required.", "type": "object", "additionalProperties": false, "properties": { "name": { "$ref": "#/definitions/AttributeNameCondition" }, "group": { "$ref": "#/definitions/AttributeGroupCondition" }, "pattern": { "$ref": "#/definitions/PatternOption" } } }, "additional_attribute_value": { "description": "Search for additional attributes by an exact value.", "type": "object", "additionalProperties": false, "properties": { "name": { "$ref": "#/definitions/AttributeNameCondition" }, "group": { "$ref": "#/definitions/AttributeGroupCondition" }, "type": { "$ref": "#/definitions/AttributeTypeCondition" }, "value": { "description": "Search for an exact value.", "$ref": "#/definitions/AttributeValueCondition" } }, "required": [ "name", "type", "value" ] }, "additional_attribute_range": { "description": "Search for additional attributes by range. One of min_value or max_value are required in addition to name and type.", "type": "object", "additionalProperties": false, "properties": { "name": { "$ref": "#/definitions/AttributeNameCondition" }, "group": { "$ref": "#/definitions/AttributeGroupCondition" }, "type": { "$ref": "#/definitions/AttributeTypeCondition" }, "min_value": { "description": "Search for values for an additional attribute which are greater than the provided value.", "$ref": "#/definitions/AttributeValueCondition" }, "max_value": { "description": "Search for values for an additional attribute which are less than the provided value.", "$ref": "#/definitions/AttributeValueCondition" }, "exclude_boundary": { "description": "If set to true, the search will not include the boundary values for min and max values. Defaults to false.", "type": "boolean" } }, "required": [ "name", "type" ] } } }, "StringCondition": { "description": "String searches can take either a string or an object with a value to search for and options to apply for the search.", "oneOf": [ { "type": "string" }, { "description": "Used to specify the value and options to apply when searching against a particular field. 'value' is required.", "type": "object", "properties": { "value": { "description": "The value to search for the given field.", "type": "string" }, "ignore_case": { "$ref": "#/definitions/IgnoreCaseOption" }, "pattern": { "$ref": "#/definitions/PatternOption" } }, "additionalProperties": false, "required": [ "value" ] } ] }, "CaseInsensitiveStringCondition": { "description": "String searches can take either a string or an object with a value to search for and options to apply for the search. This is similar to StringCondition, but it does not support ignore_case options.", "oneOf": [ { "type": "string" }, { "description": "Used to specify the value and options to apply when searching against a particular field. 'value' is required.", "type": "object", "properties": { "value": { "description": "The value to search for the given field.", "type": "string" }, "pattern": { "$ref": "#/definitions/PatternOption" } }, "additionalProperties": false, "required": [ "value" ] } ] }, "BoundingBoxCondition": { "description": "Specifies a bounding rectangle search.", "oneOf": [ { "type": "array", "description": "Must contain 4 numbers in the following order: west, south, east, north. West and east represent longitudes (-180 to 180), south and north represent latitudes (-90 to 90).", "items": { "type": "number", "minimum": -180, "maximum": 180 }, "minItems": 4, "maxItems": 4 }, { "type": "object", "additionalProperties": false, "properties": { "north": { "type": "number", "description": "Northern latitude (-90 to 90).", "minimum": -90, "maximum": 90 }, "south": { "type": "number", "description": "Southern latitude (-90 to 90).", "minimum": -90, "maximum": 90 }, "east": { "type": "number", "description": "Eastern longitude (-180 to 180).", "minimum": -180, "maximum": 180 }, "west": { "type": "number", "description": "Western longitude (-180 to 180).", "minimum": -180, "maximum": 180 } }, "required": [ "north", "south", "east", "west" ] } ] }, "AttributeNameCondition": { "description": "Additional attribute name.", "type": "string" }, "AttributeGroupCondition": { "description": "Additional attribute group, which is generally a namespace.", "type": "string" }, "AttributeTypeCondition": { "description": "The data type of the attribute being searched against.", "enum": [ "string", "boolean", "time", "date", "datetime", "int", "float" ] }, "AttributeValueCondition": { "description": "An attribute value to search against.", "anyOf": [ { "type": "string" }, { "type": "integer" }, { "type": "number" } ] }, "DataCenterCondition": { "description": "Search against any of the subfields in the data center hierarchy", "type": "object", "additionalProperties": false, "minProperties": 1, "properties": { "level_0": { "description": "Top level classification of data centers.", "type": "string" }, "level_1": { "description": "Second level classification under level 0.", "type": "string" }, "level_2": { "description": "Third level classification under level 1.", "type": "string" }, "level_3": { "description": "Fourth level classification under level 2.", "type": "string" }, "short_name": { "description": "Abbreviated name of the data center.", "type": "string" }, "long_name": { "description": "The full name of the data center.", "type": "string" }, "url": { "description": "The Uniform Resource Locator (URL) of the data center.", "type": "string" }, "uuid": { "description": "Unique identifier for the data center within the GCMD Keyword Management System.", "type": "string" }, "ignore_case": { "$ref": "#/definitions/IgnoreCaseOption" }, "pattern": { "$ref": "#/definitions/PatternOption" }, "any": { "description": "Search against any of the data center subfields (level0, url, etc.) for the provided value.", "type": "string" } } }, "TagCondition": { "description": "Search against the subfields of tags associated with the collection", "type": "object", "additionalProperties": false, "minProperties": 1, "properties": { "tag_key": { "description": "Key of the associated tag.", "type": "string" }, "originator_id": { "description": "Originator id of the associated tag.", "type": "string" }, "pattern": { "$ref": "#/definitions/PatternOption" } } }, "IgnoreCaseOption": { "description": "If set to true, the search will be case insensitive and if set to false, the search will be case sensitive. Defaults to true.", "type": "boolean" }, "PatternOption": { "description": "If set to true, the search will treat the value provided for the given field as a pattern with wild-cards, in which '*' matches zero or more characters and '?' matches any single character. ", "type": "boolean" } } }
o62820
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "anitya_response": { "type": "object", "description": "Anitya maps upstream components to downstream packages", "properties": {}, "additionalProperties": true }, "changes": { "type": "object", "description": "Breakdown of changed lines per given file", "properties": { "lines": { "type": "array", "items": { "type": "string" } }, "file": { "type": "string" } }, "required": [ "lines", "file" ], "additionalProperties": false }, "diff": { "type": "object", "description": "Information about changed files and lines", "properties": { "files": { "type": "integer" }, "lines": { "type": "integer" }, "changes": { "type": "array", "items": { "$ref": "#/definitions/changes" } } }, "required": [ "files", "lines", "changes" ], "additionalProperties": false }, "downstream": { "type": "object", "description": "Patch information about downstream SRPM", "properties": { "diff": { "$ref": "#/definitions/diff" }, "patch_files": { "type": "array", "items": { "type": "string" } }, "package": { "type": "string" } }, "required": [ "diff", "patch_files", "package" ], "additionalProperties": false }, "downstream_usage_summary": { "type": "object", "properties": { "package_names": { "type": "array", "items": { "type": "string" } }, "registered_srpms": { "type": "array", "items": { "$ref": "#/definitions/srpm_record" } }, "all_rhn_channels": { "type": "array", "items": { "type": "string" } }, "all_rhsm_content_sets": { "type": "array", "items": { "type": "string" } }, "all_rhsm_product_names": { "type": "array", "items": { "type": "string" } }, "rh_mvn_matched_versions": { "type": "array", "items": { "type": "string" } } }, "required": [ "package_names", "registered_srpms", "all_rhn_channels", "all_rhsm_content_sets", "all_rhsm_product_names", "rh_mvn_matched_versions" ], "additionalProperties": false }, "pulp_cdn_response": { "type": "object", "description": "The Pulp CDN handles Red Hat's SRPM publication", "properties": { "srpm_filename": { "type": "string" }, "rhn_channels": { "type": "array", "items": { "type": "string" } }, "rhsm_content_sets": { "type": "array", "items": { "type": "string" } }, "rhsm_product_names": { "type": "array", "items": { "type": "string" } } }, "required": [ "srpm_filename", "rhn_channels", "rhsm_content_sets", "rhsm_product_names" ], "additionalProperties": true }, "srpm_record": { "type": "object", "description": "Summary of Red Hat tracked SRPM", "properties": { "package_name": { "type": "string" }, "epoch": { "type": "number" }, "version": { "type": "string" }, "release": { "type": "string" }, "patch_count": { "type": "number" }, "modified_line_count": { "type": "number" }, "modified_file_count": { "type": "number" }, "published_in": { "type": "array", "items": { "type": "string" } }, "tags": { "type": "array", "items": { "type": "string" } }, "architectures": { "type": "array", "items": { "type": "string" } }, "hashes": { "type": "object", "properties": { "md5": { "type": "string" }, "sha1": { "type": "string" }, "sha256": { "type": "string" } } } }, "required": [ "package_name", "epoch", "version", "release", "patch_count", "modified_line_count", "modified_file_count" ], "additionalProperties": false }, "toolchain_responses": { "type": "object", "properties": { "redhat_anitya": { "$ref": "#/definitions/anitya_response" }, "brew": { "type": "array", "items": { "$ref": "#/definitions/downstream" } }, "pulp_cdn": { "type": "array", "items": { "$ref": "#/definitions/pulp_cdn_response" } } }, "additionalProperties": false } }, "type": "object", "description": "Result of DownstreamUsage 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" ] }, "details": { "$ref": "#/definitions/toolchain_responses" }, "summary": { "$ref": "#/definitions/downstream_usage_summary" } }, "required": [ "status", "summary" ], "additionalProperties": false, "title": "downstream_usage_result-v2-2-1" }
o42058
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "SendLocalListResponse", "type": "object", "properties": { "status": { "type": "string", "enum": [ "Accepted", "Failed", "HashError", "NotSupported", "VersionMismatch" ] }, "hash": { "type": "string" } }, "required": [ "status" ] }
o69139
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "oneOf": [ { "not": { "required": [ "width", "height", "base" ] }, "required": [ "radius" ] }, { "not": { "required": [ "radius", "base" ] }, "required": [ "width", "height" ] }, { "not": { "required": [ "radius", "width" ] }, "required": [ "base", "height" ] } ], "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the 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", "base" ], "type": "object" }, "shape": { "description": "The shape type", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_e6818129
{ "properties": { "base": { "description": "The base of the triangle (if shape is triangle)", "type": "number" }, "height": { "description": "The height of the triangle (if shape is triangle)", "type": "number" }, "length": { "description": "The length of the rectangle (if shape is rectangle)", "type": "number" }, "radius": { "description": "The radius of the circle (if shape is circle)", "type": "number" }, "shape": { "description": "The shape for which to calculate the area", "enum": [ "circle", "square", "rectangle", "triangle" ], "type": "string" }, "side_length": { "description": "The side length of the square (if shape is square)", "type": "number" }, "width": { "description": "The width of the rectangle (if shape is rectangle)", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_9fc94a1b
{ "$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": { "applies_to_all_organisations": { "description": "Whether all linked organisations meet this need", "type": "boolean" }, "benefit": { "description": "Why the user wants to do it", "type": "string" }, "change_history": { "$ref": "#/definitions/change_history" }, "goal": { "description": "What the user wants to do", "type": "string" }, "impact": { "description": "Impact of GOV.UK not doing this", "type": "string" }, "justifications": { "description": "How this need fits in the proposition for GOV.UK", "items": { "type": "string" }, "type": "array" }, "legislation": { "description": "Legislation that underpins this need", "type": "string" }, "met_when": { "description": "Provides criteria that define when this user need has been met", "items": { "type": "string" }, "type": "array" }, "need_id": { "description": "Six digit id which used to be the primary id for Needs. Still being displayed in Maslow and Info-Frontend, but likely to be deprecated in the future.", "type": "string" }, "other_evidence": { "description": "Any other evidence to support this need, ie. user research, campaigns, user demand", "type": "string" }, "role": { "description": "The type of user, such as a small business, a tax agent, a healthcare practitioner", "type": "string" }, "yearly_need_views": { "description": "Number of pageviews specific to this need generated each year", "type": "integer" }, "yearly_searches": { "description": "Number of searches specific to this need carried out each year", "type": "integer" }, "yearly_site_views": { "description": "Number of yearly pageviews of the whole site of the requester", "type": "integer" }, "yearly_user_contacts": { "description": "Number of user contacts received about this need each year. Includes calls to contact centres, emails, customer service tickets", "type": "integer" } }, "required": [ "role", "goal", "benefit" ], "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": [ "need" ], "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", "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_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": [ "need" ], "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" }
o21299
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1_BoundObjectReference": { "description": "BoundObjectReference is a reference to an object that a token is bound to.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "kind": { "description": "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.", "type": "string" }, "name": { "description": "Name of the referent.", "type": "string" }, "uid": { "description": "UID of the referent.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1_TokenRequestSpec": { "description": "TokenRequestSpec contains client provided parameters of a token request.", "properties": { "audiences": { "description": "Audiences are the intendend audiences of the token. A recipient of a token must identitfy themself with an identifier in the list of audiences of the token, and otherwise should reject the token. A token issued for multiple audiences may be used to authenticate against any of the audiences listed but implies a high degree of trust between the target audiences.", "items": { "type": "string" }, "type": "array" }, "boundObjectRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1_BoundObjectReference", "description": "BoundObjectRef is a reference to an object that the token will be bound to. The token will only be valid for as long as the bound object exists. NOTE: The API server's TokenReview endpoint will validate the BoundObjectRef, but other audiences may not. Keep ExpirationSeconds small if you want prompt revocation." }, "expirationSeconds": { "_format": "int64", "description": "ExpirationSeconds is the requested duration of validity of the request. The token issuer may return a token with a different validity duration so a client needs to check the 'expiration' field in a response.", "type": "integer" } }, "required": [ "audiences" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1_TokenRequestStatus": { "description": "TokenRequestStatus is the result of a token request.", "properties": { "expirationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "ExpirationTimestamp is the time of expiration of the returned token." }, "token": { "description": "Token is the opaque bearer token.", "type": "string" } }, "required": [ "token", "expirationTimestamp" ], "type": "object" }, "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_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" } }, "description": "TokenRequest requests a token for a given service account.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": [ "string", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "TokenRequest" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1_TokenRequestSpec" }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1_TokenRequestStatus" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "authentication.k8s.io", "kind": "TokenRequest", "version": "v1" } ] }
kb_1065_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Expense", "type": "object", "properties": { "amount": { "title": "Amount", "description": "Expenses associated with the running of the business", "type": "number", "multipleOf": 0.01, "minimum": 0 } }, "required": [ "amount" ], "additionalProperties": false }
o17460
{ "additionalProperties": false, "description": "Schema for an event which has been successfully enriched and stored in Elasticsearch", "patternProperties": { "^contexts_.*": { "type": "array" }, "^unstruct_event_.*": {} }, "properties": { "app_id": { "type": "string" }, "base_currency": { "type": "string" }, "br_colordepth": { "type": "string" }, "br_cookies": { "type": "boolean" }, "br_family": { "type": "string" }, "br_features_director": { "type": "boolean" }, "br_features_flash": { "type": "boolean" }, "br_features_gears": { "type": "boolean" }, "br_features_java": { "type": "boolean" }, "br_features_pdf": { "type": "boolean" }, "br_features_quicktime": { "type": "boolean" }, "br_features_realplayer": { "type": "boolean" }, "br_features_silverlight": { "type": "boolean" }, "br_features_windowsmedia": { "type": "boolean" }, "br_lang": { "type": "string" }, "br_name": { "type": "string" }, "br_renderengine": { "type": "string" }, "br_type": { "type": "string" }, "br_version": { "type": "string" }, "br_viewheight": { "type": "integer" }, "br_viewwidth": { "type": "integer" }, "collector_tstamp": { "type": "string" }, "doc_charset": { "type": "string" }, "doc_height": { "type": "integer" }, "doc_width": { "type": "integer" }, "domain_sessionidx": { "type": "integer" }, "domain_userid": { "type": "string" }, "dvce_ismobile": { "type": "boolean" }, "dvce_screenheight": { "type": "integer" }, "dvce_screenwidth": { "type": "integer" }, "dvce_sent_tstamp": { "type": "string" }, "dvce_tstamp": { "type": "string" }, "dvce_type": { "type": "string" }, "etl_tags": { "type": "string" }, "etl_tstamp": { "type": "string" }, "event": { "type": "string" }, "event_id": { "type": "string" }, "geo_city": { "type": "string" }, "geo_country": { "type": "string" }, "geo_latitude": { "type": "number" }, "geo_location": { "pattern": "-?[0-9]+(?:\\.[0-9+])?,-?[0-9]+(?:\\.[0-9+])?", "type": "string" }, "geo_longitude": { "type": "number" }, "geo_region": { "type": "string" }, "geo_region_name": { "type": "string" }, "geo_timezone": { "type": "string" }, "geo_zipcode": { "type": "string" }, "ip_domain": { "type": "string" }, "ip_isp": { "type": "string" }, "ip_netspeed": { "type": "string" }, "ip_org": { "type": "string" }, "mkt_campaign": { "type": "string" }, "mkt_clickid": { "type": "string" }, "mkt_content": { "type": "string" }, "mkt_medium": { "type": "string" }, "mkt_network": { "type": "string" }, "mkt_source": { "type": "string" }, "mkt_term": { "type": "string" }, "name_tracker": { "type": "string" }, "network_userid": { "type": "string" }, "os_family": { "type": "string" }, "os_manufacturer": { "type": "string" }, "os_name": { "type": "string" }, "os_timezone": { "type": "string" }, "page_referrer": { "type": "string" }, "page_title": { "type": "string" }, "page_url": { "type": "string" }, "page_urlfragment": { "type": "string" }, "page_urlhost": { "type": "string" }, "page_urlpath": { "type": "string" }, "page_urlport": { "type": "integer" }, "page_urlquery": { "type": "string" }, "page_urlscheme": { "type": "string" }, "platform": { "type": "string" }, "pp_xoffset_max": { "type": "integer" }, "pp_xoffset_min": { "type": "integer" }, "pp_yoffset_max": { "type": "integer" }, "pp_yoffset_min": { "type": "integer" }, "refr_domain_userid": { "type": "string" }, "refr_dvce_tstamp": { "type": "string" }, "refr_medium": { "type": "string" }, "refr_source": { "type": "string" }, "refr_term": { "type": "string" }, "refr_urlfragment": { "type": "string" }, "refr_urlhost": { "type": "string" }, "refr_urlpath": { "type": "string" }, "refr_urlport": { "type": "integer" }, "refr_urlquery": { "type": "string" }, "refr_urlscheme": { "type": "string" }, "se_action": { "type": "string" }, "se_category": { "type": "string" }, "se_label": { "type": "string" }, "se_property": { "type": "string" }, "se_value": { "type": "string" }, "session_id": { "type": "string" }, "ti_category": { "type": "string" }, "ti_currency": { "type": "string" }, "ti_name": { "type": "string" }, "ti_orderid": { "type": "string" }, "ti_price": { "type": "number" }, "ti_price_base": { "type": "number" }, "ti_quantity": { "type": "integer" }, "ti_sku": { "type": "string" }, "tr_affiliation": { "type": "string" }, "tr_city": { "type": "string" }, "tr_country": { "type": "string" }, "tr_currency": { "type": "string" }, "tr_orderid": { "type": "string" }, "tr_shipping": { "type": "number" }, "tr_shipping_base": { "type": "number" }, "tr_state": { "type": "string" }, "tr_tax": { "type": "number" }, "tr_tax_base": { "type": "number" }, "tr_total": { "type": "number" }, "tr_total_base": { "type": "number" }, "txn_id": { "type": "integer" }, "user_fingerprint": { "type": "string" }, "user_id": { "type": "string" }, "user_ipaddress": { "type": "string" }, "useragent": { "type": "string" }, "v_collector": { "type": "string" }, "v_etl": { "type": "string" }, "v_tracker": { "type": "string" } }, "self": { "format": "jsonschema", "name": "elasticsearch_enriched_event", "vendor": "com.snowplowanalytics.snowplow", "version": "1-0-1" }, "type": "object" }
sp_280_Normalized
{ "allOf": [ { "additionalProperties": false, "properties": { "__version": { "exclusiveMinimum": 0, "type": "integer" }, "dag": { "$ref": "#/definitions/dag" } }, "required": [ "__version", "dag" ], "type": "object" } ], "definitions": { "color": { "pattern": "^#[a-fA-F0-9]{3,6}$", "type": "string" }, "dag": { "additionalProperties": false, "properties": { "_access_control": { "$ref": "#/definitions/dict" }, "_concurrency": { "type": "number" }, "_dag_id": { "type": "string" }, "_default_view": { "type": "string" }, "_description": { "type": "string" }, "catchup": { "type": "boolean" }, "dagrun_timeout": { "$ref": "#/definitions/timedelta" }, "default_args": { "$ref": "#/definitions/dict" }, "doc_md": { "type": "string" }, "end_date": { "$ref": "#/definitions/datetime" }, "fileloc": { "type": "string" }, "is_paused_upon_creation": { "type": "boolean" }, "is_subdag": { "type": "boolean" }, "max_active_runs": { "type": "number" }, "orientation": { "type": "string" }, "params": { "$ref": "#/definitions/dict" }, "schedule_interval": { "anyOf": [ { "type": "null" }, { "type": "string" }, { "$ref": "#/definitions/typed_timedelta" }, { "$ref": "#/definitions/typed_relativedelta" } ] }, "start_date": { "$ref": "#/definitions/datetime" }, "tags": { "type": "array" }, "tasks": { "$ref": "#/definitions/tasks" }, "timezone": { "$ref": "#/definitions/timezone" } }, "required": [ "_dag_id", "fileloc", "tasks" ], "type": "object" }, "datetime": { "description": "A date time, stored as fractional seconds since the epoch", "type": "number" }, "dict": { "description": "A python dictionary containing values of any type", "type": "object" }, "extra_links": { "items": { "maxProperties": 1, "minProperties": 1, "type": "object" }, "type": "array" }, "operator": { "$comment": "A task/operator in a DAG", "additionalProperties": true, "properties": { "_downstream_task_ids": { "items": { "type": "string" }, "type": "array" }, "_operator_extra_links": { "$ref": "#/definitions/extra_links" }, "_task_module": { "type": "string" }, "_task_type": { "type": "string" }, "depends_on_past": { "type": "boolean" }, "do_xcom_push": { "type": "boolean" }, "end_date": { "$ref": "#/definitions/datetime" }, "execution_timeout": { "$ref": "#/definitions/timedelta" }, "executor_config": { "$ref": "#/definitions/dict" }, "owner": { "type": "string" }, "params": { "$ref": "#/definitions/dict" }, "pool": { "type": "string" }, "pool_slots": { "type": "number" }, "priority_weight": { "type": "number" }, "queue": { "type": "string" }, "retries": { "type": "number" }, "retry_delay": { "$ref": "#/definitions/timedelta" }, "retry_exponential_backoff": { "type": "boolean" }, "start_date": { "$ref": "#/definitions/datetime" }, "subdag": { "$ref": "#/definitions/dag" }, "task_id": { "type": "string" }, "template_fields": { "items": { "type": "string" }, "type": "array" }, "trigger_rule": { "type": "string" }, "ui_color": { "$ref": "#/definitions/color" }, "ui_fgcolor": { "$ref": "#/definitions/color" }, "wait_for_downstream": { "type": "boolean" }, "weight_rule": { "type": "string" } }, "required": [ "_task_type", "_task_module", "task_id", "ui_color", "ui_fgcolor", "template_fields" ], "type": "object" }, "tasks": { "additionalProperties": { "$ref": "#/definitions/operator" }, "type": "array" }, "timedelta": { "minimum": 0, "type": "number" }, "timezone": { "type": "string" }, "typed_relativedelta": { "description": "A dateutil.relativedelta.relativedelta object", "properties": { "__type": { "const": "relativedelta", "type": "string" }, "__var": { "additionalProperties": { "type": "integer" }, "properties": { "weekday": { "items": { "type": "integer" }, "maxItems": 2, "minItems": 1, "type": "array" } }, "type": "object" } }, "type": "object" }, "typed_timedelta": { "additionalProperties": false, "properties": { "__type": { "const": "timedelta", "type": "string" }, "__var": { "$ref": "#/definitions/timedelta" } }, "required": [ "__type", "__var" ], "type": "object" } }, "type": "object" }
o89496
{ "additionalProperties": false, "description": "Schema for an application foreground event", "properties": { "foregroundIndex": { "maximum": 2147483647, "minimum": 0, "type": "integer" } }, "self": { "format": "jsonschema", "name": "application_foreground", "vendor": "com.snowplowanalytics.snowplow", "version": "1-0-0" }, "type": "object" }
sp_260_Normalized
{ "properties": { "customer_name": { "description": "The name of the customer", "type": "string" }, "items": { "description": "The items included in the invoice", "items": { "properties": { "price": { "description": "The price of the product", "type": "number" }, "product": { "description": "The name of the product", "type": "string" }, "quantity": { "description": "The quantity of the product", "type": "integer" } }, "required": [ "product", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_name", "items" ], "type": "object" }
generate_invoice_af917751
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "definitions": { "status": { "type": "string", "enum": [ "active", "inactive" ] } }, "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationKeyId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "key": { "type": "string" }, "status": { "$ref": "#/definitions/status" }, "secret": { "type": "string" }, "deviceIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } }, "deviceTags": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": { "type": "string" } } } } } }
o6171
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Attribute", "description": "An attribute card within the game.", "type": "object", "properties": { "_id": { "description": "The unique identifier for the attribute", "type": "integer" }, "name": { "description": "The attributes name.", "type": "string" }, "abbreviation": { "description": "The attributes 3 letter abbreviation.", "type": "string", "maxLength": 3, "minLength": 3 }, "type": { "description": "the type of attribute", "type": "string", "enum": [ "Goalkeeper", "Defence", "Attack", "Generic" ] }, "description": { "description": "The description of the attribute", "type": "string" } }, "required": [ "_id", "name", "abbreviation", "type", "description" ] }
o66113
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "length", "width" ], "type": "object" }, "shape": { "description": "The shape, e.g. circle, rectangle", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_da426b4f
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery": { "description": "GroupVersion contains the \"group/version\" and \"version\" string of a version. It is made a struct to keep extensibility.", "properties": { "groupVersion": { "description": "groupVersion specifies the API group and version in the form \"group/version\"", "type": "string" }, "version": { "description": "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.", "type": "string" } }, "required": [ "groupVersion", "version" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR": { "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.", "properties": { "clientCIDR": { "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.", "type": "string" }, "serverAddress": { "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.", "type": "string" } }, "required": [ "clientCIDR", "serverAddress" ], "type": "object" } }, "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": [ "string", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "APIGroup" ], "type": [ "string", "null" ] }, "name": { "description": "name is the name of the group.", "type": [ "string", "null" ] }, "preferredVersion": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery", "description": "preferredVersion is the version preferred by the API server, which probably is the storage version." }, "serverAddressByClientCIDRs": { "description": "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR" }, "type": [ "array", "null" ] }, "versions": { "description": "versions are the versions supported in this group.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery" }, "type": [ "array", "null" ] } }, "required": [ "name", "versions" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "APIGroup", "version": "v1" } ] }
kb_17_Normalized
{ "additionalProperties": false, "properties": { "createdAt": { "_format": "date-time", "type": "string" }, "educationPricing": { "type": "boolean" }, "id": { "pattern": "^([0-9]{16})$", "type": "string" }, "incidentEscalation": { "type": "boolean" }, "lot": { "enum": [ "SCS" ] }, "minimumContractPeriod": { "enum": [ "Hour", "Day", "Month", "Year", "Other" ] }, "priceInterval": { "enum": [ "", "Second", "Minute", "Hour", "Day", "Week", "Month", "Quarter", "6 months", "Year" ] }, "priceMax": { "type": [ "number", "null" ] }, "priceMin": { "type": "number" }, "priceString": { "type": "string" }, "priceUnit": { "enum": [ "Unit", "Person", "Licence", "User", "Device", "Instance", "Server", "Virtual machine", "Transaction", "Megabyte", "Gigabyte", "Terabyte" ] }, "pricingDocument": { "type": "string" }, "pricingDocumentURL": { "_format": "uri", "type": "string" }, "serviceBenefits": { "items": { "maxLength": 120, "pattern": "^(?:\\S+\\s+){0,9}\\S+$", "type": "string" }, "maxItems": 10, "minItems": 1, "type": "array" }, "serviceDefinitionDocument": { "type": "string" }, "serviceDefinitionDocumentURL": { "_format": "uri", "type": "string" }, "serviceFeatures": { "items": { "maxLength": 120, "pattern": "^(?:\\S+\\s+){0,9}\\S+$", "type": "string" }, "maxItems": 10, "minItems": 1, "type": "array" }, "serviceName": { "maxLength": 100, "minLength": 1, "type": "string" }, "serviceSummary": { "maxLength": 500, "pattern": "^(?:\\S+\\s+){0,49}\\S+$", "type": "string" }, "serviceTypes": { "items": { "enum": [ "Implementation", "Ongoing support", "Planning", "Testing", "Training" ] }, "maxItems": 5, "type": "array", "_uniqueItems": true }, "sfiaRateDocument": { "type": "string" }, "sfiaRateDocumentURL": { "_format": "uri", "type": "string" }, "status": { "enum": [ "disabled", "enabled", "published" ] }, "supplierId": { "type": "integer" }, "supportAvailability": { "type": "string" }, "supportForThirdParties": { "type": "boolean" }, "supportResponseTime": { "type": "string" }, "supportTypes": { "items": { "enum": [ "Service desk", "Email", "Phone", "Live chat", "Onsite" ] }, "maxItems": 5, "type": "array", "_uniqueItems": true }, "terminationCost": { "type": "boolean" }, "termsAndConditionsDocument": { "type": "string" }, "termsAndConditionsDocumentURL": { "_format": "uri", "type": "string" }, "title": { "type": "string" }, "vatIncluded": { "type": "boolean" }, "vendorCertifications": { "items": { "type": "string" }, "maxItems": 10, "type": "array" } }, "required": [ "id", "supplierId", "lot", "title", "serviceTypes", "serviceName", "serviceSummary", "serviceBenefits", "serviceFeatures", "serviceDefinitionDocument", "serviceDefinitionDocumentURL", "termsAndConditionsDocument", "termsAndConditionsDocumentURL", "minimumContractPeriod", "terminationCost", "priceMin", "priceUnit", "priceString", "vatIncluded", "educationPricing", "pricingDocument", "pricingDocumentURL", "supportForThirdParties", "supportAvailability", "supportResponseTime", "incidentEscalation", "supportTypes" ], "title": "G6 Submissions SCS Schema", "type": "object" }
o62061
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle (if shape is triangle)", "type": "number" }, "height": { "description": "The height of the triangle (if shape is triangle)", "type": "number" }, "length": { "description": "The length of the rectangle (if shape is rectangle)", "type": "number" }, "radius": { "description": "The radius of the circle (if shape is circle)", "type": "number" }, "width": { "description": "The width of the rectangle (if shape is rectangle)", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape of the object (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_fbca771d
{ "properties": { "agenda": { "description": "The agenda of the meeting", "type": "string" }, "end_time": { "description": "The end time of the meeting in YYYY-MM-DD HH:MM format", "type": "string" }, "location": { "description": "The location of the meeting", "type": "string" }, "participants": { "description": "The participants of the meeting", "items": { "type": "string" }, "type": "array" }, "start_time": { "description": "The start time of the meeting in YYYY-MM-DD HH:MM format", "type": "string" } }, "required": [ "participants", "start_time", "end_time" ], "type": "object" }
schedule_meeting_cb41c343
{ "description": "TokenReviewSpec is a description of the token authentication request.", "properties": { "audiences": { "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "token": { "description": "Token is the opaque bearer token.", "type": [ "string", "null" ] } }, "type": "object" }
kb_1074_Normalized
{ "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", "null" ] }, "ip": { "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)", "type": [ "string", "null" ] } }, "type": "object" }
kb_538_Normalized
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "base": { "description": "The base of the triangle (if shape is triangle)", "type": "number" }, "height": { "description": "The height of the triangle (if shape is triangle)", "type": "number" }, "length": { "description": "The length of the rectangle (if shape is rectangle)", "type": "number" }, "radius": { "description": "The radius of the circle (if shape is circle)", "type": "number" }, "width": { "description": "The width of the rectangle (if shape is rectangle)", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape for which area needs to be calculated", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_ad439bec
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "LiteralType", "description": "", "type": "object", "properties": { "value": { "anyOf": [ { "enum": [ false ] }, { "enum": [ 0 ] }, { "enum": [ 100 ] }, { "enum": [ "foo" ] } ] } }, "additionalProperties": false, "required": [ "value" ] }
o75595
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Get feedback - emoting (SSME)", "description": "", "longDescription": "The Delivery Pipeline automates the continuous deployment of OpenWhisk Emoting artifacts.", "type": "object", "properties": { "app-region": { "description": "The bluemix region", "type": "string" }, "app-organization": { "description": "The bluemix org", "type": "string" }, "app-space": { "description": "The bluemix space", "type": "string" } }, "required": [ "app-region", "app-organization", "app-space" ], "form": [ { "type": "validator", "url": "/devops/setup/bm-helper/helper.html" }, { "type": "table", "columnCount": 3, "widths": [ "33%", "33%", "33%" ], "items": [ { "type": "label", "title": "Region" }, { "type": "label", "title": "Organization" }, { "type": "label", "title": "Space" }, { "type": "select", "key": "app-region" }, { "type": "select", "key": "app-organization" }, { "type": "select", "key": "app-space", "readonly": false } ] } ] }
o38553
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "", "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkThumbHeight": { "type": "number" }, "bookmarkThumbWidth": { "type": "number" }, "limitLocales": { "type": "boolean" }, "minWidthBreakPoint": { "type": "number" }, "openTemplate": { "type": "string", "minLength": 1 }, "pessimisticAccessControl": { "type": "boolean" }, "rightPanelEnabled": { "type": "boolean" }, "theme": { "type": "string", "minLength": 1 } }, "required": [ "bookmarkThumbHeight", "bookmarkThumbWidth", "limitLocales", "minWidthBreakPoint", "openTemplate", "pessimisticAccessControl", "rightPanelEnabled", "theme" ] }, "modules": { "type": "object", "properties": { "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" }, "minimiseButtons": { "type": "boolean" }, "openEnabled": { "type": "boolean" } }, "required": [ "bookmarkEnabled", "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": { "ok": { "type": "string", "minLength": 1 } }, "required": [ "ok" ] } }, "required": [ "content" ] }, "headerPanel": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 }, "help": { "type": "string", "minLength": 1 } }, "required": [ "close", "help" ] } }, "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": { "displayOrder": { "type": "string" }, "exclude": { "type": "string" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" } }, "required": [ "displayOrder", "exclude", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth" ] }, "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" ] }, "pdfCenterPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "titleEnabled": { "type": "boolean" }, "usePdfJs": { "type": "boolean" } }, "required": [ "titleEnabled", "usePdfJs" ] }, "content": { "type": "object", "properties": {}, "required": [] } }, "required": [ "options", "content" ] }, "treeViewLeftPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "elideCount": { "type": "number" }, "galleryThumbHeight": { "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" }, "thumbsEnabled": { "type": "boolean" }, "thumbsExtraHeight": { "type": "number" }, "thumbsImageFadeInDuration": { "type": "number" }, "thumbsLoadRange": { "type": "number" }, "treeEnabled": { "type": "boolean" }, "twoColThumbHeight": { "type": "number" }, "twoColThumbWidth": { "type": "number" } }, "required": [ "elideCount", "galleryThumbHeight", "galleryThumbWidth", "oneColThumbHeight", "oneColThumbWidth", "pageModeEnabled", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "thumbsEnabled", "thumbsExtraHeight", "thumbsImageFadeInDuration", "thumbsLoadRange", "treeEnabled", "twoColThumbHeight", "twoColThumbWidth" ] } }, "required": [ "options" ] }, "dialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 } }, "required": [ "close" ] } }, "required": [ "content" ] }, "downloadDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "download": { "type": "string", "minLength": 1 }, "entireFileAsOriginal": { "type": "string", "minLength": 1 }, "noneAvailable": { "type": "string", "minLength": 1 }, "preview": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "download", "entireFileAsOriginal", "noneAvailable", "preview", "title" ] } }, "required": [ "content" ] }, "loginDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "login": { "type": "string", "minLength": 1 } }, "required": [ "login" ] } }, "required": [ "content" ] }, "settingsDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "locale": { "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", "pagingEnabled", "preserveViewport", "title", "website" ] } }, "required": [ "content" ] } }, "required": [ "embedDialogue", "footerPanel", "genericDialogue", "headerPanel", "helpDialogue", "moreInfoRightPanel", "pdfCenterPanel", "treeViewLeftPanel", "dialogue", "downloadDialogue", "loginDialogue", "settingsDialogue" ] }, "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": { "degradedResourceMessage": { "type": "string", "minLength": 1 }, "degradedResourceLogin": { "type": "string", "minLength": 1 } }, "required": [ "degradedResourceMessage", "degradedResourceLogin" ] } }, "required": [ "options", "modules", "localisation", "content" ] }
o58764
{ "additionalProperties": false, "description": "Webhook event for deleting a company.", "properties": { "appId": { "description": "The ID of your application. (In case you have multiple applications pointing to the same webhook URL.)", "maximum": 2147483647, "minimum": 0, "type": "integer" }, "attemptNumber": { "description": "Which attempt this is to notify your service of this event (starting at 0). If your service times-out or throws an error as described in 'Retries' below, we will attempt to send the notification to your service again.", "maximum": 2147483647, "minimum": 0, "type": "integer" }, "changeFlag": { "maxLength": 128, "type": "string" }, "changeSource": { "description": "The source of this change. Can be any of the change sources that you find on contact property histories.", "maxLength": 128, "type": "string" }, "eventId": { "description": "The unique ID of the event that triggered this notification.", "maximum": 2147483647, "minimum": 0, "type": "integer" }, "objectId": { "description": "The ID of the object that was created/changed/deleted. For contacts this is the vid; for companies, the companyId; and for deals the dealId.", "maximum": 2147483647, "minimum": 0, "type": "integer" }, "occurredAt": { "_format": "date-time", "description": "When this event occurred.", "type": "string" }, "portalId": { "description": "The customer's portalId that this event came from.", "maximum": 2147483647, "minimum": 0, "type": "integer" }, "subscriptionId": { "description": "The ID of the subscription that caused us to send you a notification of this event.", "maximum": 2147483647, "minimum": 0, "type": "integer" } }, "self": { "format": "jsonschema", "name": "company_deletion", "vendor": "com.hubspot", "version": "1-0-0" }, "type": "object" }
sp_100_Normalized
{ "additionalProperties": { "type": "integer" }, "description": "# Brief\n\nUnique values for groups with count for each group value.\n", "example": { "java": 1, "python": 8 }, "type": "object" }
o45635
{ "version": "0.3", "definitions": { "color": { "type": "string", "pattern": "^#[0-9a-fA-F]{6}([0-9a-fA-F]{2})?$", "title": "Color", "description": "Color in #RRGGBB or #RRGGBBAA format", "examples": [ "#123abc", "#123abc80" ] }, "ColorPaletteBase": { "type": "object", "properties": { "Actions.Red": { "$ref": "#/definitions/color", "description": "Action colors are for icons that appear on toolbars" }, "Actions.Yellow": { "$ref": "#/definitions/color" }, "Actions.Green": { "$ref": "#/definitions/color" }, "Actions.Blue": { "$ref": "#/definitions/color" }, "Actions.Grey": { "$ref": "#/definitions/color" }, "Actions.GreyInline": { "$ref": "#/definitions/color", "description": "Light-gray icons at the right side in input fields and combo boxes" }, "Actions.GreyInline.Dark": { "$ref": "#/definitions/color", "description": "Use for dark themes" }, "Objects.Grey": { "$ref": "#/definitions/color", "description": "Object colors are for icons in lists and trees" }, "Objects.Blue": { "$ref": "#/definitions/color" }, "Objects.Green": { "$ref": "#/definitions/color" }, "Objects.Yellow": { "$ref": "#/definitions/color" }, "Objects.YellowDark": { "$ref": "#/definitions/color" }, "Objects.Purple": { "$ref": "#/definitions/color" }, "Objects.Pink": { "$ref": "#/definitions/color" }, "Objects.Red": { "$ref": "#/definitions/color" }, "Objects.RedStatus": { "$ref": "#/definitions/color" }, "Objects.GreenAndroid": { "$ref": "#/definitions/color" }, "Objects.BlackText": { "$ref": "#/definitions/color" }, "Checkbox.Background.Default": { "$ref": "#/definitions/color", "description": "An unchecked checkbox or radio button" }, "Checkbox.Border.Default": { "$ref": "#/definitions/color" }, "Checkbox.Background.Selected": { "$ref": "#/definitions/color", "description": "A checked checkbox or radio button" }, "Checkbox.Border.Selected": { "$ref": "#/definitions/color" }, "Checkbox.Foreground.Selected": { "$ref": "#/definitions/color" }, "Checkbox.Background.Disabled": { "$ref": "#/definitions/color", "description": "A disabled checkbox or radio button" }, "Checkbox.Border.Disabled": { "$ref": "#/definitions/color" }, "Checkbox.Foreground.Disabled": { "$ref": "#/definitions/color" }, "Checkbox.Focus.Thin.Default": { "$ref": "#/definitions/color", "description": "1px inner border in the focused state" }, "Checkbox.Focus.Thin.Selected": { "$ref": "#/definitions/color" }, "Checkbox.Focus.Wide": { "$ref": "#/definitions/color", "description": "2px outer border in the focused state" }, "Checkbox.Background.Default.Dark": { "$ref": "#/definitions/color", "description": "Use for dark themes" }, "Checkbox.Border.Default.Dark": { "$ref": "#/definitions/color", "description": "Use for dark themes" }, "Checkbox.Background.Selected.Dark": { "$ref": "#/definitions/color", "description": "Use for dark themes" }, "Checkbox.Border.Selected.Dark": { "$ref": "#/definitions/color", "description": "Use for dark themes" }, "Checkbox.Foreground.Selected.Dark": { "$ref": "#/definitions/color", "description": "Use for dark themes" }, "Checkbox.Background.Disabled.Dark": { "$ref": "#/definitions/color", "description": "Use for dark themes" }, "Checkbox.Border.Disabled.Dark": { "$ref": "#/definitions/color", "description": "Use for dark themes" }, "Checkbox.Foreground.Disabled.Dark": { "$ref": "#/definitions/color", "description": "Use for dark themes" }, "Checkbox.Focus.Thin.Default.Dark": { "$ref": "#/definitions/color", "description": "Use for dark themes" }, "Checkbox.Focus.Thin.Selected.Dark": { "$ref": "#/definitions/color", "description": "Use for dark themes" }, "Checkbox.Focus.Wide.Dark": { "$ref": "#/definitions/color", "description": "Use for dark themes" }, "Tree.iconColor": { "$ref": "#/definitions/color", "description": "Color of expand/collapse icons" } } }, "ColorPalette": { "anyOf": [ { "$ref": "#/definitions/ColorPaletteBase" } ], "properties": { "Protanopia": { "$ref": "#/definitions/ColorPaletteBase", "description": "Color palette for protanopia vision deficiency" }, "Deuteranopia": { "$ref": "#/definitions/ColorPaletteBase", "description": "Color palette for deuteranopia vision deficiency" } } } }, "type": "object", "$schema": "http://json-schema.org/draft-07/schema#", "required": [ "name", "dark", "author", "ui" ], "properties": { "name": { "type": "string", "title": "Theme name", "description": "Theme name", "default": "", "examples": [ "My Brand New Theme" ] }, "dark": { "type": "boolean", "title": "Dark theme", "description": "If 'true' then Darcula theme will be used as the base for modification, otherwise Light theme will be used.", "default": false, "examples": [ true ] }, "author": { "type": "string", "title": "Theme author", "description": "The author of the theme", "default": "", "examples": [ "John Doe" ] }, "editorScheme": { "type": "string", "title": "Path to the editor schema xml file starting with '/'", "default": "", "pattern": "^/", "examples": [ "/editorScheme.xml" ] }, "ui": { "type": "object" }, "background": { "type": "object", "required": [ "image" ], "title": "Background image", "description": "Background image for entire window", "properties": { "image": { "type": "string", "title": "Path to the background image", "description": "Path to the background image starting with '/'", "default": "", "examples": [ "/background.jpg" ] }, "transparency": { "type": "integer", "title": "Transparency for background image.", "description": "An integer from 0 to 100.", "default": 10, "minimum": 0, "maximum": 100, "examples": [ 10 ] }, "fill": { "type": "string", "title": "Background image filling options", "default": "scale", "description": "Background image filling options. One of the following values: plain, scale, tile", "enum": [ "plain", "scale", "tile" ], "examples": [ "scale" ] }, "anchor": { "type": "string", "title": "Background image anchor", "default": "center", "description": "Background image anchor. One of the following values: top_left, top_center, top_right, middle_left, center, middle_right, bottom_left, bottom_center, bottom_right", "enum": [ "top_left", "top_center", "top_right", "middle_left", "center", "middle_right", "bottom_left", "bottom_center", "bottom_right" ], "examples": [ "center" ] } } }, "icons": { "type": "object", "patternProperties": { "^/": { "type": "string", "pattern": "^/" }, "^[^/]": { "type": "object", "patternProperties": { "^/": { "type": "string", "pattern": "^/" } } } }, "properties": { "ColorPalette": { "$ref": "#/definitions/ColorPalette" } } }, "colors": { "type": "object", "title": "Theme Color Palette", "description": "Define common colors here and use color names in 'ui' section instead of #rrggbb values", "patternProperties": { ".*": { "$ref": "#/definitions/color" } } } } }
o90957
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "tournament_id", "motion", "number" ], "properties": { "title": { "type": "string", "minLength": 1, "maxLength": 255, "faker": "lorem.sentence" }, "tournament_id": { "type": "integer", "minimum": 1, "faker": { "random.number": [ { "max": 5, "min": 1 } ] } }, "motion_type_id": { "type": "integer", "minimum": 1, "faker": { "random.number": [ { "max": 5, "min": 1 } ] } }, "number": { "type": "integer", "faker": { "random.number": [ { "max": 5, "min": 1 } ] } }, "teams": { "type": "integer", "faker": { "random.number": [ { "max": 5, "min": 1 } ] } }, "adjudicators": { "type": "integer", "faker": { "random.number": [ { "max": 5, "min": 1 } ] } }, "motion": { "type": "string", "random": "lorem.sentence" }, "context": { "type": "string", "faker": "lorem.paragraph" } } }
o26592
{ "definitions": { "AddAccountsDataPayload": { "example": { "email": "[email protected]", "name": "\u5c71\u7530 \u592a\u90ce" }, "properties": { "email": { "description": "email", "example": "[email protected]", "format": "email", "type": "string" }, "name": { "description": "\u540d\u524d", "example": "\u5c71\u7530 \u592a\u90ce", "type": "string" } }, "required": [ "name", "email" ], "title": "AddAccountsDataPayload", "type": "object" }, "AddAccountsPayload": { "example": { "email": "[email protected]", "name": "\u5c71\u7530 \u592a\u90ce" }, "properties": { "email": { "description": "email", "example": "[email protected]", "format": "email", "type": "string" }, "name": { "description": "\u540d\u524d", "example": "\u5c71\u7530 \u592a\u90ce", "type": "string" } }, "required": [ "name", "email" ], "title": "AddAccountsPayload", "type": "object" }, "AddBottlesDataPayload": { "example": { "account_id": 1, "name": "\u8d64\u30ef\u30a4\u30f3\u306a\u306b\u304b", "quantity": 0 }, "properties": { "account_id": { "description": "\u30a2\u30ab\u30a6\u30f3\u30c8ID", "example": 1, "format": "int64", "type": "integer" }, "name": { "default": "", "description": "\u30dc\u30c8\u30eb\u540d", "example": "\u8d64\u30ef\u30a4\u30f3\u306a\u306b\u304b", "type": "string" }, "quantity": { "description": "\u6570\u91cf", "example": 0, "format": "int64", "type": "integer" } }, "required": [ "account_id", "name", "quantity" ], "title": "AddBottlesDataPayload", "type": "object" }, "AddBottlesPayload": { "example": { "account_id": 1, "name": "\u8d64\u30ef\u30a4\u30f3\u306a\u306b\u304b", "quantity": 0 }, "properties": { "account_id": { "description": "\u30a2\u30ab\u30a6\u30f3\u30c8ID", "example": 1, "format": "int64", "type": "integer" }, "name": { "default": "", "description": "\u30dc\u30c8\u30eb\u540d", "example": "\u8d64\u30ef\u30a4\u30f3\u306a\u306b\u304b", "type": "string" }, "quantity": { "description": "\u6570\u91cf", "example": 0, "format": "int64", "type": "integer" } }, "required": [ "account_id", "name", "quantity" ], "title": "AddBottlesPayload", "type": "object" }, "UpdateAccountsDataPayload": { "example": { "email": "[email protected]", "name": "Enim et." }, "properties": { "email": { "default": "", "description": "email", "example": "[email protected]", "format": "email", "type": "string" }, "name": { "default": "", "description": "\u540d\u524d", "example": "Enim et.", "type": "string" } }, "title": "UpdateAccountsDataPayload", "type": "object" }, "UpdateAccountsPayload": { "example": { "email": "[email protected]", "name": "Eum illum nemo." }, "properties": { "email": { "default": "", "description": "email", "example": "[email protected]", "format": "email", "type": "string" }, "name": { "default": "", "description": "\u540d\u524d", "example": "Eum illum nemo.", "type": "string" } }, "title": "UpdateAccountsPayload", "type": "object" }, "UpdateBottlesDataPayload": { "example": { "name": "\u8d64\u30ef\u30a4\u30f3\u306a\u306b\u304b", "quantity": 10 }, "properties": { "name": { "default": "", "description": "\u30dc\u30c8\u30eb\u540d", "example": "\u8d64\u30ef\u30a4\u30f3\u306a\u306b\u304b", "type": "string" }, "quantity": { "default": 0, "description": "\u6570\u91cf", "example": 10, "minimum": 0, "type": "integer" } }, "title": "UpdateBottlesDataPayload", "type": "object" }, "UpdateBottlesPayload": { "example": { "name": "\u8d64\u30ef\u30a4\u30f3\u306a\u306b\u304b", "quantity": 0 }, "properties": { "name": { "default": "", "description": "\u30dc\u30c8\u30eb\u540d", "example": "\u8d64\u30ef\u30a4\u30f3\u306a\u306b\u304b", "type": "string" }, "quantity": { "default": 0, "description": "\u6570\u91cf", "example": 0, "minimum": 0, "type": "integer" } }, "title": "UpdateBottlesPayload", "type": "object" }, "accounts": { "links": [ { "href": "/api/v1/accounts/", "mediaType": "application/vnd.goa.error", "method": "POST", "rel": "add", "schema": { "$ref": "#/definitions/AddAccountsPayload", "description": "add payload" }, "targetSchema": { "$ref": "#/definitions/error" }, "title": "add" }, { "href": "/api/v1/accounts/{id}", "mediaType": "application/vnd.goa.error", "method": "DELETE", "rel": "delete", "targetSchema": { "$ref": "#/definitions/error" }, "title": "delete" }, { "href": "/api/v1/accounts/", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "list", "targetSchema": { "$ref": "#/definitions/error" }, "title": "list" }, { "href": "/api/v1/accounts/{id}", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "self", "targetSchema": { "$ref": "#/definitions/error" }, "title": "show" }, { "href": "/api/v1/accounts/{id}", "mediaType": "application/vnd.goa.error", "method": "PUT", "rel": "update", "schema": { "$ref": "#/definitions/UpdateAccountsPayload", "description": "update payload" }, "targetSchema": { "$ref": "#/definitions/error" }, "title": "update" } ], "title": "accounts", "type": "object" }, "accounts_data": { "links": [ { "href": "/api/v1/accounts_data/", "mediaType": "application/vnd.goa.error", "method": "POST", "rel": "add", "schema": { "$ref": "#/definitions/AddAccountsDataPayload", "description": "add payload" }, "targetSchema": { "$ref": "#/definitions/error" }, "title": "add" }, { "href": "/api/v1/accounts_data/{id}", "mediaType": "application/vnd.goa.error", "method": "DELETE", "rel": "delete", "targetSchema": { "$ref": "#/definitions/error" }, "title": "delete" }, { "href": "/api/v1/accounts_data/", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "list", "targetSchema": { "$ref": "#/definitions/error" }, "title": "list" }, { "href": "/api/v1/accounts_data/{id}", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "self", "targetSchema": { "$ref": "#/definitions/error" }, "title": "show" }, { "href": "/api/v1/accounts_data/{id}", "mediaType": "application/vnd.goa.error", "method": "PUT", "rel": "update", "schema": { "$ref": "#/definitions/UpdateAccountsDataPayload", "description": "update payload" }, "targetSchema": { "$ref": "#/definitions/error" }, "title": "update" } ], "title": "accounts_data", "type": "object" }, "actions": { "links": [ { "href": "/api/v1/actions/hello", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "hello", "targetSchema": { "$ref": "#/definitions/error" }, "title": "hello" }, { "href": "/api/v1/actions/{id}", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "id", "targetSchema": { "$ref": "#/definitions/error" }, "title": "id" }, { "href": "/api/v1/actions/ping", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "ping", "targetSchema": { "$ref": "#/definitions/error" }, "title": "ping" } ], "title": "actions", "type": "object" }, "bottles": { "links": [ { "href": "/api/v1/bottles/", "mediaType": "application/vnd.goa.error", "method": "POST", "rel": "add", "schema": { "$ref": "#/definitions/AddBottlesPayload", "description": "add payload" }, "targetSchema": { "$ref": "#/definitions/error" }, "title": "add" }, { "href": "/api/v1/bottles/{id}", "mediaType": "application/vnd.goa.error", "method": "DELETE", "rel": "delete", "targetSchema": { "$ref": "#/definitions/error" }, "title": "delete" }, { "href": "/api/v1/bottles/", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "list", "targetSchema": { "$ref": "#/definitions/error" }, "title": "list" }, { "href": "/api/v1/bottles/relation", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "listRelation", "targetSchema": { "$ref": "#/definitions/error" }, "title": "listRelation" }, { "href": "/api/v1/bottles/{id}", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "self", "targetSchema": { "$ref": "#/definitions/error" }, "title": "show" }, { "href": "/api/v1/bottles/{id}", "mediaType": "application/vnd.goa.error", "method": "PUT", "rel": "update", "schema": { "$ref": "#/definitions/UpdateBottlesPayload", "description": "update payload" }, "targetSchema": { "$ref": "#/definitions/error" }, "title": "update" } ], "title": "bottles", "type": "object" }, "bottles_data": { "links": [ { "href": "/api/v1/bottles_data/", "mediaType": "application/vnd.goa.error", "method": "POST", "rel": "add", "schema": { "$ref": "#/definitions/AddBottlesDataPayload", "description": "add payload" }, "targetSchema": { "$ref": "#/definitions/error" }, "title": "add" }, { "href": "/api/v1/bottles_data/{id}", "mediaType": "application/vnd.goa.error", "method": "DELETE", "rel": "delete", "targetSchema": { "$ref": "#/definitions/error" }, "title": "delete" }, { "href": "/api/v1/bottles_data/", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "list", "targetSchema": { "$ref": "#/definitions/error" }, "title": "list" }, { "href": "/api/v1/bottles_data/{id}", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "self", "targetSchema": { "$ref": "#/definitions/error" }, "title": "show" }, { "href": "/api/v1/bottles_data/{id}", "mediaType": "application/vnd.goa.error", "method": "PUT", "rel": "update", "schema": { "$ref": "#/definitions/UpdateBottlesDataPayload", "description": "update payload" }, "targetSchema": { "$ref": "#/definitions/error" }, "title": "update" } ], "title": "bottles_data", "type": "object" }, "error": { "description": "Error response media type (default view)", "example": { "code": "invalid_value", "detail": "Value of ID must be an integer", "id": "3F1FKVRR", "meta": { "timestamp": 1458609066 }, "status": "400" }, "media": { "type": "application/vnd.goa.error; view=default" }, "properties": { "code": { "description": "an application-specific error code, expressed as a string value.", "example": "invalid_value", "type": "string" }, "detail": { "description": "a human-readable explanation specific to this occurrence of the problem.", "example": "Value of ID must be an integer", "type": "string" }, "id": { "description": "a unique identifier for this particular occurrence of the problem.", "example": "3F1FKVRR", "type": "string" }, "meta": { "additionalProperties": true, "description": "a meta object containing non-standard meta-information about the error.", "example": { "timestamp": 1458609066 }, "type": "object" }, "status": { "description": "the HTTP status code applicable to this problem, expressed as a string value.", "example": "400", "type": "string" } }, "title": "Mediatype identifier: application/vnd.goa.error; view=default", "type": "object" }, "js": { "title": "js", "type": "object" }, "method": { "links": [ { "href": "/api/v1/method/users/{id}/follow/{type}", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "etc", "targetSchema": { "$ref": "#/definitions/error" }, "title": "etc" }, { "href": "/api/v1/method/users/follow", "mediaType": "application/vnd.goa.error", "method": "PUT", "rel": "follow", "targetSchema": { "$ref": "#/definitions/error" }, "title": "follow" }, { "href": "/api/v1/method/users/follow", "mediaType": "application/vnd.goa.error", "method": "DELETE", "rel": "follow", "targetSchema": { "$ref": "#/definitions/error" }, "title": "follow" }, { "href": "/api/v1/method/list", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "list", "targetSchema": { "$ref": "#/definitions/error" }, "title": "list" }, { "href": "/api/v1/method/list/new", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "list", "targetSchema": { "$ref": "#/definitions/error" }, "title": "list" }, { "href": "/api/v1/method/list/topic", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "list", "targetSchema": { "$ref": "#/definitions/error" }, "title": "list" }, { "href": "/api/v1/method/get", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "method", "targetSchema": { "$ref": "#/definitions/error" }, "title": "method" }, { "href": "/api/v1/method/post", "mediaType": "application/vnd.goa.error", "method": "POST", "rel": "method", "targetSchema": { "$ref": "#/definitions/error" }, "title": "method" }, { "href": "/api/v1/method/delete", "mediaType": "application/vnd.goa.error", "method": "DELETE", "rel": "method", "targetSchema": { "$ref": "#/definitions/error" }, "title": "method" }, { "href": "/api/v1/method/put", "mediaType": "application/vnd.goa.error", "method": "PUT", "rel": "method", "targetSchema": { "$ref": "#/definitions/error" }, "title": "method" } ], "title": "method", "type": "object" }, "response": { "links": [ { "href": "/api/v1/response/users/array", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "array", "targetSchema": { "$ref": "#/definitions/error" }, "title": "array" }, { "href": "/api/v1/response/users/hash", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "hash", "targetSchema": { "$ref": "#/definitions/error" }, "title": "hash" }, { "href": "/api/v1/response/users", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "list", "targetSchema": { "$ref": "#/definitions/error" }, "title": "list" }, { "href": "/api/v1/response/users/nested", "method": "GET", "rel": "nested", "title": "nested" }, { "href": "/api/v1/response/users/{id}", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "self", "targetSchema": { "$ref": "#/definitions/error" }, "title": "show" } ], "title": "response", "type": "object" }, "security": { "links": [ { "href": "/api/v1/securiy/", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "security", "targetSchema": { "$ref": "#/definitions/error" }, "title": "security" } ], "title": "security", "type": "object" }, "swagger": { "title": "swagger", "type": "object" }, "validation": { "links": [ { "href": "/api/v1/validation/", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "validation", "targetSchema": { "$ref": "#/definitions/error" }, "title": "validation" } ], "title": "validation", "type": "object" } }, "description": "goa\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059", "links": [ { "href": "http://localhost:8080", "rel": "self" }, { "href": "/schema", "method": "GET", "rel": "self", "targetSchema": { "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": true } } ], "properties": { "AddAccountsDataPayload": { "$ref": "#/definitions/AddAccountsDataPayload" }, "AddAccountsPayload": { "$ref": "#/definitions/AddAccountsPayload" }, "AddBottlesDataPayload": { "$ref": "#/definitions/AddBottlesDataPayload" }, "AddBottlesPayload": { "$ref": "#/definitions/AddBottlesPayload" }, "UpdateAccountsDataPayload": { "$ref": "#/definitions/UpdateAccountsDataPayload" }, "UpdateAccountsPayload": { "$ref": "#/definitions/UpdateAccountsPayload" }, "UpdateBottlesDataPayload": { "$ref": "#/definitions/UpdateBottlesDataPayload" }, "UpdateBottlesPayload": { "$ref": "#/definitions/UpdateBottlesPayload" }, "accounts": { "$ref": "#/definitions/accounts" }, "accounts_data": { "$ref": "#/definitions/accounts_data" }, "actions": { "$ref": "#/definitions/actions" }, "bottles": { "$ref": "#/definitions/bottles" }, "bottles_data": { "$ref": "#/definitions/bottles_data" }, "error": { "$ref": "#/definitions/error" }, "js": { "$ref": "#/definitions/js" }, "method": { "$ref": "#/definitions/method" }, "response": { "$ref": "#/definitions/response" }, "security": { "$ref": "#/definitions/security" }, "swagger": { "$ref": "#/definitions/swagger" }, "validation": { "$ref": "#/definitions/validation" } }, "title": "pei0804/goa-simple-sample", "type": "object" }
o81117
{ "id": "https://gae123.com/sd2-schema", "$schema": "http://json-schema.org/draft-04/schema#", "title": "root", "type": "object", "properties": { "config": { "title": "sd2 configuration", "type": "object", "additionalProperties": false, "default": {}, "properties": { "HaltOnSuspendResume": { "type": "boolean", "default": true }, "RsynCheckPeriodInSeconds": { "type": "number", "default": 900 }, "DockerCheckPeriodInSeconds": { "type": "number", "default": 60 } } }, "images": { "title": "Your docker images", "type": "array", "items": { "$ref": "#/definitions/image" } }, "hosts": { "type": "array", "items": { "type": "object" }, "minItems": 1 }, "workspaces": { "type": "array", "items": { "$ref": "#/definitions/workspace" } }, "containers": { "type": "array", "items": { "$ref": "#/definitions/container" } } }, "required": [ "workspaces", "hosts" ], "additionalProperties": false, "definitions": { "host": { "type": "object", "required": [ "name" ], "additionalProperties": false, "properties": { "name": { "type": "string" }, "abstract": { "type": "boolean" }, "extends": { "type": "string" }, "sudo_ssh": { "type": "string", "description": "Uses sudo ssh to connect to the host, useful if you want to forward locally ports like 80 or 443" }, "User": { "type": "string", "description": "Used in .ssh/config defaults to the $USER who runs sd2" }, "Port": { "type": "integer" }, "IdentityFile": { "type": "string" }, "StrictHostKeyChecking": { "type": "string" }, "ProxyCommand": { "type": "string" }, "ProxyJump": { "type": "string" }, "AddKeysToAgent": { "type": "string" }, "UseKeychain": { "type": "string" }, "UserKnownHostsFile": { "type": "string" }, "ForwardAgent": { "type": "string" }, "ServerAliveInterval": { "type": "integer" }, "PKCS11Provider": { "type": "string" }, "SmartcardDevice": { "type": "string" }, "HostKeyAlias": { "type": "string" }, "LocalForward": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "containers": { "type": "array", "description": "List of containers to run on this host", "items": { "type": "object", "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/container" } ] } }, "Operations": { "type": "object", "additionalProperties": false, "properties": { "start": { "type": "string" }, "stop": { "type": "string" } } } } }, "container": { "type": "object", "required": [ "name", "imagename", "hostname" ], "additionalProperties": false, "properties": { "name": { "type": [ "string", "number" ] }, "aliases": { "type": "array", "description": "Names that will be added to /etc/hosts for this container", "items": { "type": "string" } }, "abstract": { "type": "boolean" }, "extends": { "type": "string" }, "imagename": { "type": "string" }, "hostname": { "type": "string" }, "enabled": { "type": "boolean", "descrption": "Should the container be started if it is missing", "default": true }, "disabled": { "type": "boolean", "descrption": "Should the container be started if it is missing", "default": false }, "remove_if_version_mismatch": { "type": "boolean", "description": "If the container is running with the wrong image remove it and restart it.", "default": false }, "remove_if_running_when_disabled": { "type": "boolean", "description": "If the container is running and should not remove it.", "default": false } } }, "image": { "type": "object", "required": [ "name", "docker_image_name" ], "additionalProperties": false, "properties": { "name": { "type": "string" }, "docker_image_name": { "type": "string", "description": "The docker image name" }, "docker_auth": { "type": "string", "description": "A command to run just before running docker, usually used for authentication" }, "mount_home_dir": { "type": "boolean", "default": true }, "ports": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "env": { "description": "Environment variables array to be passed to the container", "type": "array", "items": { "type": "object", "required": [ "name", "value" ], "_uniqueItems": true, "additionalProperties": false, "properties": { "name": { "type": "string" }, "value": { "type": "string" } } }, "_uniqueItems": true }, "environ": { "description": "Environment variables array to be passed to the container", "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "extra_flags": { "type": [ "string", "array" ], "description": "Flags to add to the docker command line", "items": { "type": "string" } }, "command": { "type": "string" } } }, "workspace": { "type": "object", "required": [ "name" ], "additionalProperties": false, "properties": { "name": { "type": "string" }, "enabled": { "type": "boolean" }, "abstract": { "type": "boolean" }, "extends": { "type": "string" }, "source_root": { "description": "The root of the source directory, required for non abstract workspaces", "type": "string" }, "dest_root": { "description": "The destination directory. Optional, if missing it will be the same the source_root", "type": "string" }, "delete": { "description": "Exact mirror, delete any files that exist only in dest.", "type": "boolean" }, "paths": { "type": "array", "items": { "$ref": "#/definitions/includeexclude" } }, "targets": { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/desthost" } ] }, "_uniqueItems": true } } }, "desthost": { "type": "object", "required": [ "name" ], "additionalProperties": false, "properties": { "name": { "type": "string" }, "enabled": { "type": "boolean" }, "disabled": { "type": "boolean" } } }, "includeexclude": { "type": "object", "properties": { "include": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "exclude": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true } } } } }
o42252
{ "$schema": "http://json-schema.org/draft-07/schema", "title": "repository", "description": "A repository of the current user\nhttps://github.com/DannyBen/secret_hub#bulk-operations", "type": "object", "patternProperties": { ".": { "title": "secrets", "description": "Secrets of the current repository\nhttps://github.com/DannyBen/secret_hub#bulk-operations", "oneOf": [ { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "description": "A secret of the current repository\nhttps://github.com/DannyBen/secret_hub#bulk-operations", "type": "string", "minLength": 1, "examples": [ "SECRET", "PASSWORD" ] } }, { "title": "secret", "type": "object", "patternProperties": { ".": { "description": "A secret of the current repository\nhttps://github.com/DannyBen/secret_hub#bulk-operations", "type": [ "string", "null" ] } } } ] } }, "additionalProperties": false }
secrethub
{ "$schema": "http://json-schema.org/draft-04/schema#", "name": "Package", "type": "object", "additionalProperties": false, "required": [ "name", "description", "version", "update-type", "maintainer", "changelog", "filemapping" ], "properties": { "name": { "type": "string", "description": "Package name" }, "description": { "type": "string", "description": "Short package description." }, "version": { "type": "string", "description": "Package version, see http://semver.org for more info on valid schemes." }, "update-type": { "description": "Package update type, either 'minor' for minor releases, 'security' for security issues etc. or a custom type ([a-z0-9-]+) defined by whatever this package applies to.", "type": "string" }, "maintainer": { "type": "string", "description": "Package maintainer name." }, "changelog": { "type": "array", "description": "List of all changes that will be applied (changelog).", "items": { "type": "string", "additionalProperties": false } }, "filemapping": { "type": "array", "description": "List of all files that will be removed, modified or added when upgrading the app.", "items": { "type": "string", "additionalProperties": false } }, "include": { "type": "string", "description": "A list of paths to include." }, "time": { "type": "string", "description": "Package release date, in 'YYYY-MM-DD', 'YYYY-MM-DD HH:MM:SS' or 'YYYY-MM-DDTHH:MM:SSZ' format." } } }
o19185
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": true, "definitions": { "link": { "properties": { "href": { "type": "string" }, "properties": { "$ref": "#/definitions/property" }, "rel": { "type": "string" }, "template": { "_format": "uri", "type": "string" }, "titles": { "additionalProperties": { "type": "string" }, "properties": { "default": { "type": "string" } }, "type": "object" }, "type": { "type": "string" } }, "type": "object" }, "property": { "additionalProperties": { "type": [ "null", "string" ] }, "type": "object" } }, "properties": { "aliases": { "items": { "type": "string" }, "type": "array" }, "expires": { "_format": "date-time", "type": "string" }, "links": { "items": { "$ref": "#/definitions/link" }, "type": "array" }, "properties": { "$ref": "#/definitions/property" }, "subject": { "_format": "uri", "type": "string" } }, "required": [ "subject" ], "title": "JSON schema for host-meta files", "type": "object" }
o73927
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Notebook", "description": "A subnote notebook", "type": "object", "properties": { "topLevelSubnotes": { "description": "The UUID of the root subnote in the notebook", "type": "array", "items": { "$ref": "#/definitions/uuid" } }, "subnotes": { "description": "A collection of subnote nodes, using UUID v4 as keys.", "type": "object", "patternProperties": { "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4{1}[a-fA-F0-9]{3}-[89abAB]{1}[a-fA-F0-9]{3}-[a-fA-F0-9]{12}$": { "$ref": "#/definitions/subnote" } } } }, "definitions": { "subtopic": { "title": "subtopic field", "description": "The subtopic of a subnote.", "type": "string", "minLength": 1 }, "note": { "title": "Note field", "description": "The note portion of a subnote. Processed as Markdown.", "type": "string", "minLength": 1 }, "time": { "title": "Time field", "description": "Estimated time in seconds that a question will take to answer. When set in a flashcard it acts as default for that flashcard's QAs.", "type": "number", "minimum": 1 }, "question": { "title": "Question field", "description": "A question in a QA node. Processed as Markdown", "type": "string", "minLength": 1 }, "answer": { "title": "Answer field", "description": "An answer to a question in a QA node. Processed as Markdown", "type": "string", "minLength": 1 }, "answerRegEx": { "title": "Regular expression answer field", "description": "A regular expression matching an answer in a flashcard.", "type": "string", "minLength": 1 }, "reviewDate": { "title": "Review date field", "description": "The date of a flashcard review.", "type": "string", "format": "date-time" }, "nextReviewDate": { "title": "Next review date field", "description": "The scheduled date of the next flashcard review.", "type": "string", "format": "date-time" }, "response": { "title": "Response field", "description": "The confidence of a user in their answer to a question on a 0 to 5 scale. 0, 1, and 2 represent incorrect answers. 3, 4, and 5 represent correct answers. 0, had no clue. 1, sounds familiar. 2, should have known that. 3, that was hard. 4, took me a second. 5, that was easy.", "type": "integer", "minimum": 0, "maximum": 5 }, "algorithm": { "title": "Algorithm field", "description": "The name of the scheduling algorithm used to calculate the next review date. TODO: Add pattern???", "type": "string", "minLength": 1, "maxLength": 30 }, "algorithmDateTimeParameters": { "title": "Algorithm date-time parameters", "description": "An array of date-times that can be passed to the scheduling algorithm at the next review.", "type": "array", "items": { "type": "string", "format": "date-time" } }, "algorithmNumberParameters": { "title": "Algorithm number parameters", "description": "An array of numbers that can be passed to the scheduling algorithm at the next review.", "type": "array", "items": { "type": "number" } }, "qaNum": { "title": "QA number field", "description": "The index number of the QA reviewed", "type": "integer" }, "uuid": { "title": "UUID v4", "description": "A string matching the UUID v4 format.", "type": "string", "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4{1}[a-fA-F0-9]{3}-[89abAB]{1}[a-fA-F0-9]{3}-[a-fA-F0-9]{12}$" }, "subnote": { "title": "Subnote node", "type": "object", "properties": { "subtopic": { "$ref": "#/definitions/subtopic" }, "note": { "$ref": "#/definitions/note" }, "flashcards": { "$ref": "#/definitions/flashcards" }, "tags": { "$ref": "#/definitions/tags" }, "childSubnotes": { "type": "array", "items": { "$ref": "#/definitions/uuid" } } }, "required": [ "note" ] }, "subnotes": { "title": "Array of subnote UUIDs", "description": "An array of child subnote UUIDs", "type": "array", "items": { "$ref": "#/definitions/uuid" } }, "tag": { "title": "Tag", "description": "A tag or label that can be applied to different types of nodes. TODO: Add pattern???", "type": "string", "minLength": 1, "maxLength": 25 }, "tags": { "title": "Array of tags", "items": { "$ref": "#/definitions/tag" } }, "flashcard": { "title": "Flashcard node", "type": "object", "properties": { "qas": { "$ref": "#/definitions/qas" }, "reviews": { "$ref": "#/definitions/review" }, "time": { "$ref": "#/definitions/time" }, "tags": { "$ref": "#/definitions/tags" } }, "required": [ "qas" ] }, "flashcards": { "title": "Array of flashcard nodes", "type": "array", "items": { "$ref": "#/definitions/flashcard" } }, "qa": { "title": "QA node", "type": "object", "properties": { "question": { "$ref": "#/definitions/question" }, "answer": { "$ref": "#/definitions/answer" }, "answerRegEx": { "$ref": "#/definitions/answerRegEx" }, "time": { "$ref": "#/definitions/time" }, "tags": { "$ref": "#/definitions/tags" } }, "required": [ "question", "answer" ] }, "qas": { "title": "Array of QA nodes", "type": "array", "items": { "$ref": "#/definitions/qa" } }, "review": { "title": "Review node", "type": "object", "properties": { "reviewDate": { "$ref": "#/definitions/reviewDate" }, "nextReviewDate": { "$ref": "#/definitions/nextReviewDate" }, "response": { "$ref": "#/definitions/response" }, "algorithm": { "$ref": "#/definitions/algorithm" }, "algorithmDateTimeParameters": { "$ref": "#/definitions/algorithmDateTimeParameters" }, "algorithmNumberParameters": { "$ref": "#/definitions/algorithmNumberParameters" }, "qaNum": { "$ref": "#/definitions/qaNum" } }, "required": [ "reviewDate", "nextReviewDate", "response", "algorithm" ] }, "reviews": { "title": "Array of review nodes", "items": { "$ref": "#/definitions/review" } } } }
o78777
{ "properties": { "acronym": { "type": "string" }, "code": { "type": "string" }, "enddate": { "type": "string" }, "funder": { "properties": { "$ref": { "type": "string" } }, "type": "object" }, "identifiers": { "properties": { "eurepo": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "oaf": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "purl": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "internal_id": { "type": "string" }, "program": { "type": "string" }, "remote_modified": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "startdate": { "type": "string" }, "title": { "type": "string" }, "url": { "type": "string" } }, "type": "object" }
o48009
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "bridge fdb show", "type": "array", "items": { "type": "object", "properties": { "dev": { "type": "string" }, "dst": { "description": "host name or ip address", "type": "string" }, "flags": { "type": "array", "items": { "enum": [ "self", "master", "router", "offload" ] }, "_uniqueItems": true }, "linkNetNsId": { "type": "integer" }, "mac": { "type": "string" }, "master": { "type": "string" }, "opCode": { "description": "used to indicate fdb entry del", "enum": [ "deleted" ] }, "port": { "type": "integer" }, "state": { "description": "permanent, static, stale, state=#x", "type": "string" }, "updated": { "type": "integer" }, "used": { "type": "integer" }, "viaIf": { "type": "string" }, "viaIfIndex": { "type": "integer" }, "vlan": { "type": "integer" }, "vni": { "type": "integer" } } } }
o84873
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.EiffelActivityFinishedEvent", "extendsJavaClass": "com.ericsson.eiffel.semantics.events.Event", "properties": { "meta": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.EiffelActivityFinishedEventMeta", "javaInterfaces": [ "com.ericsson.eiffel.semantics.events.Meta" ], "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": [ "EiffelActivityFinishedEvent" ] }, "version": { "type": "string", "enum": [ "1.1.0" ], "default": "1.1.0" }, "time": { "type": "integer", "format": "utc-millisec" }, "tags": { "type": "array", "items": { "type": "string" } }, "source": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Source", "properties": { "domainId": { "type": "string" }, "host": { "type": "string" }, "name": { "type": "string" }, "serializer": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Serializer", "properties": { "groupId": { "type": "string" }, "artifactId": { "type": "string" }, "version": { "type": "string" } }, "required": [ "groupId", "artifactId", "version" ], "additionalProperties": false }, "uri": { "type": "string" } }, "additionalProperties": false }, "security": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Security", "properties": { "sdm": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Sdm", "properties": { "authorIdentity": { "type": "string" }, "encryptedDigest": { "type": "string" } }, "required": [ "authorIdentity", "encryptedDigest" ], "additionalProperties": false } }, "additionalProperties": false } }, "required": [ "id", "type", "version", "time" ], "additionalProperties": false }, "data": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.EiffelActivityFinishedEventData", "properties": { "outcome": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.EiffelActivityFinishedEventOutcome", "properties": { "conclusion": { "type": "string", "enum": [ "SUCCESSFUL", "UNSUCCESSFUL", "FAILED", "ABORTED", "TIMED_OUT", "INCONCLUSIVE" ] }, "description": { "type": "string" } }, "required": [ "conclusion" ] }, "persistentLogs": { "type": "array", "items": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.PersistentLog", "properties": { "name": { "type": "string" }, "uri": { "type": "string" } }, "required": [ "name", "uri" ], "additionalProperties": false } }, "customData": { "type": "array", "items": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.CustomData", "properties": { "key": { "type": "string" }, "value": { "anyOf": [ { "type": "object" }, { "type": "string" }, { "type": "array" }, { "type": "number" } ] } }, "required": [ "key", "value" ], "additionalProperties": false } } }, "additionalProperties": false, "required": [ "outcome" ] }, "links": { "type": "array", "items": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Link", "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 }
o89718
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "level": { "type": "string", "enum": [ "info", "warning", "error", "critical" ] }, "state": { "type": "string", "enum": [ "new", "acknowledged", "resolved" ] }, "subject": { "type": "string", "minLength": 1, "maxLength": 255 }, "message": { "type": "string", "maxLength": 32767 }, "data": {}, "deviceId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "eventTags": { "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false } }, "required": [ "level", "subject" ], "additionalProperties": false }
o9862
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Category Definition Schema", "properties": { "name": { "$ref": "#/definitions/name" }, "imageUrl": { "$ref": "#/definitions/link" }, "description": { "$ref": "#/definitions/description" }, "presentation": { "id": "#presentation", "type": "integer", "title": "product ordering, 1000=featured", "minimum": 0 } }, "required": [ "name", "description", "imageUrl" ], "definitions": { "name": { "id": "#/definitions/name", "type": "string", "title": "", "minLength": 2 }, "link": { "id": "#/definitions/link", "type": "string", "_format": "uri", "title": "", "pattern": "^(http|https)://[\\w\\-_]+(\\.[\\w\\-_]+)+([\\w\\-\\.,@?^=%&amp;:/~\\+#]*[\\w\\-\\@?^=%&amp;/~\\+#])?$" }, "description": { "id": "#/definitions/description", "type": "string", "title": "", "minLength": 0 } } }
o16736
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "RecipientProfile schema", "description": "A Blockcerts extension allowing inclusion of additional recipient details, including recipient publicKey and name. Inclusion of the recipient publicKey allows the recipient to make a strong claim of ownership over the key, and hence the badge being awarded. In the future, publicKey will be deprecated in favor of a decentralized id (DID) in the `id` field.", "type": "object", "properties": { "id": { "type": "string", "description": "reserved for future use as DID" }, "name": { "type": "string", "description": "Name of recipient, http://schema.org/name" }, "publicKey": { "type": "string", "format": "uri", "description": "In Blockcerts `publicKey` IRIs are typically represented with a `<scheme>:` prefix. For Bitcoin transactions, this would be the recipient public Bitcoin address prefixed with `ecdsa-koblitz-pubkey:`; e.g. `ecdsa-koblitz-pubkey:14RZvYazz9H2DC2skBfpPVxax54g4yabxe`" } } }
o33940
{ "properties": { "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "shape": { "description": "The shape to calculate the area for", "enum": [ "circle", "square", "rectangle" ], "type": "string" }, "side": { "description": "The side length of the square", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }
calculate_area_f14d71b8
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "orgId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "members": { "type": "array", "items": { "type": "object", "properties": { "userId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "firstName": { "type": "string" }, "lastName": { "type": "string" }, "email": { "type": "string", "format": "email", "maxLength": 1024 }, "role": { "type": "string", "enum": [ "admin", "edit", "view" ] } } } }, "summary": { "type": "object", "properties": { "appCount": { "type": "number" }, "dashCount": { "type": "number" } } } } }
o6232
{ "id": "http://schema.hyperrest.com/ietf/rfc3339_timestamps.json", "$schema": "http://json-schema.org/draft-04/schema#", "definations": { "date_fullyear": { "title": "Year", "description": "Full year (YYYY)", "type": "string", "minLength": 4, "maxLength": 4, "pattern": "/^[0-9]{4}$/", "example": "2001" }, "full_date": { "title": "Date", "description": "Full date (YYYY-MM-DD)", "minLength": 10, "maxLength": 10, "pattern": "/^[0-9]{4}-[0-9]{2}-[0-9]{2}$/", "example": "2001-12-21" } }, "properties": { "definations.date_fullyear": { "$ref": "#/definations/date_fullyear" }, "definations.full_date": { "$ref": "#/definations/full_date" } }, "required": [ "definations.date_fullyear", "definations.full_date" ] }
o21833
{ "$schema": "http://json-schema.org/draft-04/schema", "description": "Latitidue and Longitude of the content", "properties": { "latitude": { "type": "number" }, "longitude": { "type": "number" } }, "title": "Geo", "type": "object" }
wp_64_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "oneOf": [ { "type": "integer" }, { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "type": "null" } ] }
o41599
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "memo", "description": "Memo objects represent arbitrary data that can be included in a transaction", "type": "object", "properties": { "type": { "pattern": "^[A-Za-z0-9\\-._~:/?#\\[\\]@!$&'()*+,;=%]*$", "description": "Conventionally, a unique relation (according to [RFC 5988](http://tools.ietf.org/html/rfc5988#section-4)) that defines the format of this memo. Only characters allowed in URLs are permitted." }, "format": { "pattern": "^[A-Za-z0-9\\-._~:/?#\\[\\]@!$&'()*+,;=%]*$", "description": "Conventionally containing information on how the memo is encoded, for example as a [MIME type](http://www.iana.org/assignments/media-types/media-types.xhtml). Only characters allowed in URLs are permitted." }, "data": { "type": "string", "description": "Arbitrary string, conventionally containing the content of the memo." } }, "additionalProperties": false, "anyOf": [ { "required": [ "data" ] }, { "required": [ "type" ] } ] }
o89147
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base length of the triangle (if applicable)", "type": "number" }, "height": { "description": "The height of the triangle (if applicable)", "type": "number" }, "radius": { "description": "The radius of the circle (if applicable)", "type": "number" }, "side": { "description": "The side length of the square (if applicable)", "type": "number" } }, "required": [ "radius", "base", "height", "side" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, triangle, square)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_01b078bf
{ "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", "null" ] }, "endpointsNamespace": { "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": [ "string", "null" ] }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": [ "string", "null" ] }, "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", "null" ] } }, "required": [ "endpoints", "path" ], "type": "object" }
kb_380_Normalized