json_schema
stringlengths 43
1.28M
| unique_id
stringlengths 2
41
|
---|---|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"pets": {
"type": "object",
"properties": {
"dog": {
"type": "string"
},
"cat": {
"type": "string"
}
},
"required": [
"dog",
"cat"
]
},
"morePets": {
"allOf": [
{
"$ref": "#/definitions/pets"
},
{
"type": "object",
"properties": {
"horse": {
"type": "string"
}
}
}
]
}
},
"properties": {
"pets": {
"$ref": "#/definitions/pets"
},
"morePets": {
"$ref": "#/definitions/morePets"
}
},
"required": [
"pets",
"morePets"
]
} | o41640 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"foo": {
"type": "string",
"default": "foo"
},
"bar": {
"type": "string",
"default": "bar"
}
},
"required": [
"foo",
"bar"
]
} | o63950 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v1_JobCondition": {
"description": "JobCondition describes current state of a job.",
"properties": {
"lastProbeTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Last time the condition was checked."
},
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Last time the condition transit from one status to another."
},
"message": {
"description": "Human readable message indicating details about last transition.",
"type": "string"
},
"reason": {
"description": "(brief) reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "Status of the condition, one of True, False, Unknown.",
"type": "string"
},
"type": {
"description": "Type of job condition, Complete or Failed.",
"type": "string"
}
},
"required": [
"type",
"status"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v1_JobSpec": {
"description": "JobSpec describes how the job execution will look like.",
"properties": {
"activeDeadlineSeconds": {
"_format": "int64",
"description": "Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer",
"type": "integer"
},
"backoffLimit": {
"_format": "int32",
"description": "Specifies the number of retries before marking this job failed. Defaults to 6",
"type": "integer"
},
"completions": {
"_format": "int32",
"description": "Specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/",
"type": "integer"
},
"manualSelector": {
"description": "manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector",
"type": "boolean"
},
"parallelism": {
"_format": "int32",
"description": "Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/",
"type": "integer"
},
"selector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors"
},
"template": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec",
"description": "Describes the pod that will be created when executing a job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/"
},
"ttlSecondsAfterFinished": {
"_format": "int32",
"description": "ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted. When the Job is being deleted, its lifecycle guarantees (e.g. finalizers) will be honored. If this field is unset, the Job won't be automatically deleted. If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes. This field is alpha-level and is only honored by servers that enable the TTLAfterFinished feature.",
"type": "integer"
}
},
"required": [
"template"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v1_JobStatus": {
"description": "JobStatus represents the current state of a Job.",
"properties": {
"active": {
"_format": "int32",
"description": "The number of actively running pods.",
"type": "integer"
},
"completionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC."
},
"conditions": {
"description": "The latest available observations of an object's current state. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v1_JobCondition"
},
"type": "array",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge"
},
"failed": {
"_format": "int32",
"description": "The number of pods which reached phase Failed.",
"type": "integer"
},
"startTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC."
},
"succeeded": {
"_format": "int32",
"description": "The number of pods which reached phase Succeeded.",
"type": "integer"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": {
"description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
"type": "integer"
},
"readOnly": {
"description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "boolean"
},
"volumeID": {
"description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity": {
"description": "Affinity is a group of affinity scheduling rules.",
"properties": {
"nodeAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity",
"description": "Describes node affinity scheduling rules for the pod."
},
"podAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity",
"description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))."
},
"podAntiAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity",
"description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": {
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
"properties": {
"cachingMode": {
"description": "Host Caching mode: None, Read Only, Read Write.",
"type": "string"
},
"diskName": {
"description": "The Name of the data disk in the blob storage",
"type": "string"
},
"diskURI": {
"description": "The URI the data disk in the blob storage",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"kind": {
"description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
}
},
"required": [
"diskName",
"diskURI"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource": {
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
"properties": {
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretName": {
"description": "the name of secret that contains Azure Storage Account Name and Key",
"type": "string"
},
"shareName": {
"description": "Share Name",
"type": "string"
}
},
"required": [
"secretName",
"shareName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": {
"description": "Represents a source location of a volume to mount, managed by an external CSI driver",
"properties": {
"driver": {
"description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.",
"type": "string"
},
"nodePublishSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed."
},
"readOnly": {
"description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).",
"type": "boolean"
},
"volumeAttributes": {
"additionalProperties": {
"type": "string"
},
"description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.",
"type": "object"
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": {
"description": "Adds and removes POSIX capabilities from running containers.",
"properties": {
"add": {
"description": "Added capabilities",
"items": {
"type": "string"
},
"type": "array"
},
"drop": {
"description": "Removed capabilities",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": {
"description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"monitors": {
"description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "boolean"
},
"secretFile": {
"description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
},
"user": {
"description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource": {
"description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
},
"volumeID": {
"description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource": {
"description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector": {
"description": "Selects a key from a ConfigMap.",
"properties": {
"key": {
"description": "The key to select.",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its key must be defined",
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection": {
"description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": {
"description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container": {
"description": "A single application container that you want to run within a pod.",
"properties": {
"args": {
"description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"description": "List of environment variables to set in the container. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"envFrom": {
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"image": {
"description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.",
"type": "string"
},
"imagePullPolicy": {
"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
"type": "string"
},
"lifecycle": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle",
"description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated."
},
"livenessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"name": {
"description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.",
"type": "string"
},
"ports": {
"description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"containerPort",
"protocol"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "containerPort",
"x-kubernetes-patch-strategy": "merge"
},
"readinessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"resources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements",
"description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/"
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext",
"description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
},
"startupProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"stdin": {
"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
"type": "boolean"
},
"stdinOnce": {
"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
"type": "boolean"
},
"terminationMessagePath": {
"description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
"type": "string"
},
"terminationMessagePolicy": {
"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
"type": "string"
},
"tty": {
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
"type": "boolean"
},
"volumeDevices": {
"description": "volumeDevices is the list of block devices to be used by the container.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice"
},
"type": "array",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge"
},
"volumeMounts": {
"description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort": {
"description": "ContainerPort represents a network port in a single container.",
"properties": {
"containerPort": {
"_format": "int32",
"description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.",
"type": "integer"
},
"hostIP": {
"description": "What host IP to bind the external port to.",
"type": "string"
},
"hostPort": {
"_format": "int32",
"description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.",
"type": "integer"
},
"name": {
"description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.",
"type": "string"
},
"protocol": {
"description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
"type": "string"
}
},
"required": [
"containerPort"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": {
"description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.",
"properties": {
"items": {
"description": "Items is a list of DownwardAPIVolume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": {
"description": "DownwardAPIVolumeFile represents information to create the file containing the pod field",
"properties": {
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported."
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'",
"type": "string"
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported."
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": {
"description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "Items is a list of downward API volume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": {
"description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
"properties": {
"medium": {
"description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir",
"type": "string"
},
"sizeLimit": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource": {
"description": "EnvFromSource represents the source of a set of ConfigMaps",
"properties": {
"configMapRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource",
"description": "The ConfigMap to select from"
},
"prefix": {
"description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource",
"description": "The Secret to select from"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar": {
"description": "EnvVar represents an environment variable present in a Container.",
"properties": {
"name": {
"description": "Name of the environment variable. Must be a C_IDENTIFIER.",
"type": "string"
},
"value": {
"description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".",
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource",
"description": "Source for the environment variable's value. Cannot be used if value is not empty."
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource": {
"description": "EnvVarSource represents a source for the value of an EnvVar.",
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector",
"description": "Selects a key of a ConfigMap."
},
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs."
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported."
},
"secretKeyRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector",
"description": "Selects a key of a secret in the pod's namespace"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer": {
"description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.",
"properties": {
"args": {
"description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"description": "List of environment variables to set in the container. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"envFrom": {
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"image": {
"description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images",
"type": "string"
},
"imagePullPolicy": {
"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
"type": "string"
},
"lifecycle": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle",
"description": "Lifecycle is not allowed for ephemeral containers."
},
"livenessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"name": {
"description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.",
"type": "string"
},
"ports": {
"description": "Ports are not allowed for ephemeral containers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort"
},
"type": "array"
},
"readinessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"resources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements",
"description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod."
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext",
"description": "SecurityContext is not allowed for ephemeral containers."
},
"startupProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"stdin": {
"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
"type": "boolean"
},
"stdinOnce": {
"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
"type": "boolean"
},
"targetContainerName": {
"description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.",
"type": "string"
},
"terminationMessagePath": {
"description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
"type": "string"
},
"terminationMessagePolicy": {
"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
"type": "string"
},
"tty": {
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
"type": "boolean"
},
"volumeDevices": {
"description": "volumeDevices is the list of block devices to be used by the container.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice"
},
"type": "array",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge"
},
"volumeMounts": {
"description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": {
"description": "ExecAction describes a \"run in container\" action.",
"properties": {
"command": {
"description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": {
"description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "Optional: FC target lun number",
"type": "integer"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"targetWWNs": {
"description": "Optional: FC target worldwide names (WWNs)",
"items": {
"type": "string"
},
"type": "array"
},
"wwids": {
"description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource": {
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
"properties": {
"driver": {
"description": "Driver is the name of the driver to use for this volume.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.",
"type": "string"
},
"options": {
"additionalProperties": {
"type": "string"
},
"description": "Optional: Extra command options if any.",
"type": "object"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts."
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": {
"description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.",
"properties": {
"datasetName": {
"description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
"type": "string"
},
"datasetUUID": {
"description": "UUID of the dataset. This is unique identifier of a Flocker dataset",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": {
"description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "integer"
},
"pdName": {
"description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "boolean"
}
},
"required": [
"pdName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource": {
"description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
"properties": {
"directory": {
"description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.",
"type": "string"
},
"repository": {
"description": "Repository URL",
"type": "string"
},
"revision": {
"description": "Commit hash for the specified revision.",
"type": "string"
}
},
"required": [
"repository"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": {
"description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"endpoints": {
"description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"path": {
"description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "boolean"
}
},
"required": [
"endpoints",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction": {
"description": "HTTPGetAction describes an action based on HTTP Get requests.",
"properties": {
"host": {
"description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
"type": "string"
},
"httpHeaders": {
"description": "Custom headers to set in the request. HTTP allows repeated headers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader"
},
"type": "array"
},
"path": {
"description": "Path to access on the HTTP server.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
},
"scheme": {
"description": "Scheme to use for connecting to the host. Defaults to HTTP.",
"type": "string"
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": {
"description": "HTTPHeader describes a custom header to be used in HTTP probes",
"properties": {
"name": {
"description": "The header field name",
"type": "string"
},
"value": {
"description": "The header field value",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": {
"description": "Handler defines a specific action that should be taken",
"properties": {
"exec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"httpGet": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"tcpSocket": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias": {
"description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
"properties": {
"hostnames": {
"description": "Hostnames for the above IP address.",
"items": {
"type": "string"
},
"type": "array"
},
"ip": {
"description": "IP address of the host file entry.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": {
"description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
},
"type": {
"description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource": {
"description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
"properties": {
"chapAuthDiscovery": {
"description": "whether support iSCSI Discovery CHAP authentication",
"type": "boolean"
},
"chapAuthSession": {
"description": "whether support iSCSI Session CHAP authentication",
"type": "boolean"
},
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi",
"type": "string"
},
"initiatorName": {
"description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
"type": "string"
},
"iqn": {
"description": "Target iSCSI Qualified Name.",
"type": "string"
},
"iscsiInterface": {
"description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "iSCSI Target Lun number.",
"type": "integer"
},
"portals": {
"description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"items": {
"type": "string"
},
"type": "array"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "CHAP Secret for iSCSI target and initiator authentication"
},
"targetPortal": {
"description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"type": "string"
}
},
"required": [
"targetPortal",
"iqn",
"lun"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath": {
"description": "Maps a string key to a path within a volume.",
"properties": {
"key": {
"description": "The key to project.",
"type": "string"
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.",
"type": "string"
}
},
"required": [
"key",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle": {
"description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.",
"properties": {
"postStart": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler",
"description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
},
"preStop": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler",
"description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": {
"description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": {
"description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "boolean"
},
"server": {
"description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
}
},
"required": [
"server",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity": {
"description": "Node affinity is a group of node affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector",
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": {
"description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.",
"properties": {
"nodeSelectorTerms": {
"description": "Required. A list of node selector terms. The terms are ORed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm"
},
"type": "array"
}
},
"required": [
"nodeSelectorTerms"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": {
"description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "The label key that the selector applies to.",
"type": "string"
},
"operator": {
"description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
"type": "string"
},
"values": {
"description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": {
"description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.",
"properties": {
"matchExpressions": {
"description": "A list of node selector requirements by node's labels.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
},
"matchFields": {
"description": "A list of node selector requirements by node's fields.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": {
"description": "ObjectFieldSelector selects an APIVersioned field of an object.",
"properties": {
"apiVersion": {
"description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
"type": "string"
},
"fieldPath": {
"description": "Path of the field to select in the specified API version.",
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": {
"description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).",
"properties": {
"claimName": {
"description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
"type": "string"
},
"readOnly": {
"description": "Will force the ReadOnly setting in VolumeMounts. Default false.",
"type": "boolean"
}
},
"required": [
"claimName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": {
"description": "Represents a Photon Controller persistent disk resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"pdID": {
"description": "ID that identifies Photon Controller persistent disk",
"type": "string"
}
},
"required": [
"pdID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity": {
"description": "Pod affinity is a group of inter pod affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": {
"description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running",
"properties": {
"labelSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "A label query over a set of resources, in this case pods."
},
"namespaces": {
"description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"",
"items": {
"type": "string"
},
"type": "array"
},
"topologyKey": {
"description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.",
"type": "string"
}
},
"required": [
"topologyKey"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": {
"description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig": {
"description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.",
"properties": {
"nameservers": {
"description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.",
"items": {
"type": "string"
},
"type": "array"
},
"options": {
"description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption"
},
"type": "array"
},
"searches": {
"description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption": {
"description": "PodDNSConfigOption defines DNS resolver options of a pod.",
"properties": {
"name": {
"description": "Required.",
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate": {
"description": "PodReadinessGate contains the reference to a pod condition",
"properties": {
"conditionType": {
"description": "ConditionType refers to a condition in the pod's condition list with matching type.",
"type": "string"
}
},
"required": [
"conditionType"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext": {
"description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.",
"properties": {
"fsGroup": {
"_format": "int64",
"description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.",
"type": "integer"
},
"fsGroupChangePolicy": {
"description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".",
"type": "string"
},
"runAsGroup": {
"_format": "int64",
"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"type": "integer"
},
"runAsNonRoot": {
"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "boolean"
},
"runAsUser": {
"_format": "int64",
"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"type": "integer"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container."
},
"supplementalGroups": {
"description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.",
"items": {
"_format": "int64",
"type": "integer"
},
"type": "array"
},
"sysctls": {
"description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl"
},
"type": "array"
},
"windowsOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions",
"description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec": {
"description": "PodSpec is a description of a pod.",
"properties": {
"activeDeadlineSeconds": {
"_format": "int64",
"description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.",
"type": "integer"
},
"affinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity",
"description": "If specified, the pod's scheduling constraints"
},
"automountServiceAccountToken": {
"description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.",
"type": "boolean"
},
"containers": {
"description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"dnsConfig": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig",
"description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy."
},
"dnsPolicy": {
"description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.",
"type": "string"
},
"enableServiceLinks": {
"description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.",
"type": "boolean"
},
"ephemeralContainers": {
"description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"hostAliases": {
"description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias"
},
"type": "array",
"x-kubernetes-patch-merge-key": "ip",
"x-kubernetes-patch-strategy": "merge"
},
"hostIPC": {
"description": "Use the host's ipc namespace. Optional: Default to false.",
"type": "boolean"
},
"hostNetwork": {
"description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.",
"type": "boolean"
},
"hostPID": {
"description": "Use the host's pid namespace. Optional: Default to false.",
"type": "boolean"
},
"hostname": {
"description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.",
"type": "string"
},
"imagePullSecrets": {
"description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"initContainers": {
"description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"nodeName": {
"description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.",
"type": "string"
},
"nodeSelector": {
"additionalProperties": {
"type": "string"
},
"description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/",
"type": "object"
},
"overhead": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.",
"type": "object"
},
"preemptionPolicy": {
"description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.",
"type": "string"
},
"priority": {
"_format": "int32",
"description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.",
"type": "integer"
},
"priorityClassName": {
"description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.",
"type": "string"
},
"readinessGates": {
"description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate"
},
"type": "array"
},
"restartPolicy": {
"description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy",
"type": "string"
},
"runtimeClassName": {
"description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.",
"type": "string"
},
"schedulerName": {
"description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.",
"type": "string"
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext",
"description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field."
},
"serviceAccount": {
"description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
"type": "string"
},
"serviceAccountName": {
"description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
"type": "string"
},
"shareProcessNamespace": {
"description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.",
"type": "boolean"
},
"subdomain": {
"description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.",
"type": "string"
},
"terminationGracePeriodSeconds": {
"_format": "int64",
"description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.",
"type": "integer"
},
"tolerations": {
"description": "If specified, the pod's tolerations.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration"
},
"type": "array"
},
"topologySpreadConstraints": {
"description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is only honored by clusters that enable the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"topologyKey",
"whenUnsatisfiable"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "topologyKey",
"x-kubernetes-patch-strategy": "merge"
},
"volumes": {
"description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge,retainKeys"
}
},
"required": [
"containers"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec": {
"description": "PodTemplateSpec describes the data a pod should have when created from a template",
"properties": {
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec",
"description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": {
"description": "PortworxVolumeSource represents a Portworx volume resource.",
"properties": {
"fsType": {
"description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"volumeID": {
"description": "VolumeID uniquely identifies a Portworx volume",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm": {
"description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).",
"properties": {
"preference": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm",
"description": "A node selector term, associated with the corresponding weight."
},
"weight": {
"_format": "int32",
"description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
"type": "integer"
}
},
"required": [
"weight",
"preference"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe": {
"description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.",
"properties": {
"exec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"failureThreshold": {
"_format": "int32",
"description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
"type": "integer"
},
"httpGet": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"initialDelaySeconds": {
"_format": "int32",
"description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
"type": "integer"
},
"periodSeconds": {
"_format": "int32",
"description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
"type": "integer"
},
"successThreshold": {
"_format": "int32",
"description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.",
"type": "integer"
},
"tcpSocket": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
},
"timeoutSeconds": {
"_format": "int32",
"description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
"type": "integer"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource": {
"description": "Represents a projected volume source",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"sources": {
"description": "list of volume projections",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection"
},
"type": "array"
}
},
"required": [
"sources"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": {
"description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.",
"properties": {
"group": {
"description": "Group to map volume access to Default is no group",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.",
"type": "boolean"
},
"registry": {
"description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes",
"type": "string"
},
"tenant": {
"description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin",
"type": "string"
},
"user": {
"description": "User to map volume access to Defaults to serivceaccount user",
"type": "string"
},
"volume": {
"description": "Volume is a string that references an already created Quobyte volume by name.",
"type": "string"
}
},
"required": [
"registry",
"volume"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource": {
"description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd",
"type": "string"
},
"image": {
"description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"keyring": {
"description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"monitors": {
"description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"pool": {
"description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
},
"user": {
"description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors",
"image"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": {
"description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
"properties": {
"containerName": {
"description": "Container name: required for volumes, optional for env vars",
"type": "string"
},
"divisor": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Specifies the output format of the exposed resources, defaults to \"1\""
},
"resource": {
"description": "Required: resource to select",
"type": "string"
}
},
"required": [
"resource"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements": {
"description": "ResourceRequirements describes the compute resource requirements.",
"properties": {
"limits": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": "object"
},
"requests": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": {
"description": "SELinuxOptions are the labels to be applied to the container",
"properties": {
"level": {
"description": "Level is SELinux level label that applies to the container.",
"type": "string"
},
"role": {
"description": "Role is a SELinux role label that applies to the container.",
"type": "string"
},
"type": {
"description": "Type is a SELinux type label that applies to the container.",
"type": "string"
},
"user": {
"description": "User is a SELinux user label that applies to the container.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": {
"description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".",
"type": "string"
},
"gateway": {
"description": "The host address of the ScaleIO API Gateway.",
"type": "string"
},
"protectionDomain": {
"description": "The name of the ScaleIO Protection Domain for the configured storage.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
},
"sslEnabled": {
"description": "Flag to enable/disable SSL communication with Gateway, default false",
"type": "boolean"
},
"storageMode": {
"description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
"type": "string"
},
"storagePool": {
"description": "The ScaleIO Storage Pool associated with the protection domain.",
"type": "string"
},
"system": {
"description": "The name of the storage system as configured in ScaleIO.",
"type": "string"
},
"volumeName": {
"description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
"type": "string"
}
},
"required": [
"gateway",
"system",
"secretRef"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource": {
"description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector": {
"description": "SecretKeySelector selects a key of a Secret.",
"properties": {
"key": {
"description": "The key of the secret to select from. Must be a valid secret key.",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection": {
"description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": {
"description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"optional": {
"description": "Specify whether the Secret or its keys must be defined",
"type": "boolean"
},
"secretName": {
"description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext": {
"description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.",
"properties": {
"allowPrivilegeEscalation": {
"description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN",
"type": "boolean"
},
"capabilities": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities",
"description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime."
},
"privileged": {
"description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.",
"type": "boolean"
},
"procMount": {
"description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.",
"type": "string"
},
"readOnlyRootFilesystem": {
"description": "Whether this container has a read-only root filesystem. Default is false.",
"type": "boolean"
},
"runAsGroup": {
"_format": "int64",
"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "integer"
},
"runAsNonRoot": {
"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "boolean"
},
"runAsUser": {
"_format": "int64",
"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "integer"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
},
"windowsOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions",
"description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": {
"description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).",
"properties": {
"audience": {
"description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.",
"type": "string"
},
"expirationSeconds": {
"_format": "int64",
"description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.",
"type": "integer"
},
"path": {
"description": "Path is the path relative to the mount point of the file to project the token into.",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": {
"description": "Represents a StorageOS persistent volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted."
},
"volumeName": {
"description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.",
"type": "string"
},
"volumeNamespace": {
"description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl": {
"description": "Sysctl defines a kernel parameter to be set",
"properties": {
"name": {
"description": "Name of a property to set",
"type": "string"
},
"value": {
"description": "Value of a property to set",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction": {
"description": "TCPSocketAction describes an action based on opening a socket",
"properties": {
"host": {
"description": "Optional: Host name to connect to, defaults to the pod IP.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": {
"description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
"properties": {
"effect": {
"description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
"type": "string"
},
"key": {
"description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.",
"type": "string"
},
"operator": {
"description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.",
"type": "string"
},
"tolerationSeconds": {
"_format": "int64",
"description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.",
"type": "integer"
},
"value": {
"description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint": {
"description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
"properties": {
"labelSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain."
},
"maxSkew": {
"_format": "int32",
"description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.",
"type": "integer"
},
"topologyKey": {
"description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.",
"type": "string"
},
"whenUnsatisfiable": {
"description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.",
"type": "string"
}
},
"required": [
"maxSkew",
"topologyKey",
"whenUnsatisfiable"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume": {
"description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
"properties": {
"awsElasticBlockStore": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource",
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
},
"azureDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource",
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
},
"azureFile": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource",
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
},
"cephfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource",
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
},
"cinder": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource",
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
},
"configMap": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource",
"description": "ConfigMap represents a configMap that should populate this volume"
},
"csi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource",
"description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)."
},
"downwardAPI": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource",
"description": "DownwardAPI represents downward API about the pod that should populate this volume"
},
"emptyDir": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource",
"description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
},
"fc": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource",
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
},
"flexVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource",
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
},
"flocker": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource",
"description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
},
"gcePersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource",
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
},
"gitRepo": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource",
"description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
},
"glusterfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource",
"description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
},
"hostPath": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource",
"description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
},
"iscsi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource",
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
},
"name": {
"description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"nfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource",
"description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
},
"persistentVolumeClaim": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource",
"description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
},
"photonPersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource",
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
},
"portworxVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource",
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
},
"projected": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource",
"description": "Items for all in one resources secrets, configmaps, and downward API"
},
"quobyte": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource",
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
},
"rbd": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource",
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
},
"scaleIO": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource",
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
},
"secret": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource",
"description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
},
"storageos": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource",
"description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
},
"vsphereVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource",
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": {
"description": "volumeDevice describes a mapping of a raw block device within a container.",
"properties": {
"devicePath": {
"description": "devicePath is the path inside of the container that the device will be mapped to.",
"type": "string"
},
"name": {
"description": "name must match the name of a persistentVolumeClaim in the pod",
"type": "string"
}
},
"required": [
"name",
"devicePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": {
"description": "VolumeMount describes a mounting of a Volume within a container.",
"properties": {
"mountPath": {
"description": "Path within the container at which the volume should be mounted. Must not contain ':'.",
"type": "string"
},
"mountPropagation": {
"description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.",
"type": "string"
},
"name": {
"description": "This must match the Name of a Volume.",
"type": "string"
},
"readOnly": {
"description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
"type": "boolean"
},
"subPath": {
"description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
"type": "string"
},
"subPathExpr": {
"description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.",
"type": "string"
}
},
"required": [
"name",
"mountPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": {
"description": "Projection that may be projected along with other supported volume types",
"properties": {
"configMap": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection",
"description": "information about the configMap data to project"
},
"downwardAPI": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection",
"description": "information about the downwardAPI data to project"
},
"secret": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection",
"description": "information about the secret data to project"
},
"serviceAccountToken": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection",
"description": "information about the serviceAccountToken data to project"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": {
"description": "Represents a vSphere volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"storagePolicyID": {
"description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
"type": "string"
},
"storagePolicyName": {
"description": "Storage Policy Based Management (SPBM) profile name.",
"type": "string"
},
"volumePath": {
"description": "Path that identifies vSphere volume vmdk",
"type": "string"
}
},
"required": [
"volumePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": {
"description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
"properties": {
"podAffinityTerm": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm",
"description": "Required. A pod affinity term, associated with the corresponding weight."
},
"weight": {
"_format": "int32",
"description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
"type": "integer"
}
},
"required": [
"weight",
"podAffinityTerm"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": {
"description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
"properties": {
"gmsaCredentialSpec": {
"description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.",
"type": "string"
},
"gmsaCredentialSpecName": {
"description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
"type": "string"
},
"runAsUserName": {
"description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"description": "Job represents the configuration of a single job.",
"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": [
"Job"
],
"type": [
"string",
"null"
]
},
"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_batch_v1_JobSpec",
"description": "Specification of the desired behavior of a job. 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_batch_v1_JobStatus",
"description": "Current status of a job. 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": "batch",
"kind": "Job",
"version": "v1"
}
]
} | kb_479_Normalized |
{
"description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": [
"string",
"null"
]
},
"lun": {
"description": "Optional: FC target lun number",
"format": "int32",
"type": [
"integer",
"null"
]
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": [
"boolean",
"null"
]
},
"targetWWNs": {
"description": "Optional: FC target worldwide names (WWNs)",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"wwids": {
"description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
}
},
"type": "object"
} | kb_348_Normalized |
{
"properties": {
"attendees": {
"description": "The email addresses of the attendees",
"items": {
"type": "string"
},
"type": "array"
},
"end_date": {
"description": "The end date of the event",
"format": "date-time",
"type": "string"
},
"location": {
"description": "The location of the event",
"type": "string"
},
"start_date": {
"description": "The start date of the event",
"format": "date-time",
"type": "string"
},
"title": {
"description": "The title of the event",
"type": "string"
}
},
"required": [
"title",
"start_date",
"end_date"
],
"type": "object"
} | create_event_3a2451b9 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"logins",
"passwords"
],
"properties": {
"logins": {
"type": "object",
"properties": {
"login": {
"type": "string"
}
}
},
"passwords": {
"type": "object",
"properties": {
"password": {
"type": "string"
}
}
}
}
} | o42170 |
{
"id": "http://schemas.triniti.io/json-schema/triniti/common/mixin/themeable/1-0-0.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"theme": {
"type": "string",
"pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$",
"minLength": 0,
"maxLength": 255,
"description": "A string used to indicate that a visual treatment should be applied to a piece of content, e.g. \"christmas\" or \"taco\".",
"pbj": {
"type": "string",
"rule": "single",
"format": "slug"
}
}
},
"additionalProperties": true
} | o82725 |
{
"properties": {
"include_lowercase": {
"description": "Include lowercase letters in the password",
"type": "boolean"
},
"include_numbers": {
"description": "Include numbers in the password",
"type": "boolean"
},
"include_special_characters": {
"description": "Include special characters in the password",
"type": "boolean"
},
"include_uppercase": {
"description": "Include uppercase letters in the password",
"type": "boolean"
},
"length": {
"description": "The length of the password",
"type": "integer"
}
},
"required": [
"length",
"include_lowercase",
"include_uppercase",
"include_numbers",
"include_special_characters"
],
"type": "object"
} | generate_random_password_abb214be |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"meta": {
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
},
"type": {
"type": "string",
"enum": [
"EiffelFlowContextDefinedEvent"
]
},
"version": {
"type": "string",
"enum": [
"2.0.0"
],
"default": "2.0.0"
},
"time": {
"type": "integer"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"source": {
"type": "object",
"properties": {
"domainId": {
"type": "string"
},
"host": {
"type": "string"
},
"name": {
"type": "string"
},
"serializer": {
"type": "string",
"pattern": "^pkg:"
},
"uri": {
"type": "string"
}
},
"additionalProperties": false
},
"security": {
"type": "object",
"properties": {
"sdm": {
"type": "object",
"properties": {
"authorIdentity": {
"type": "string"
},
"encryptedDigest": {
"type": "string"
}
},
"required": [
"authorIdentity",
"encryptedDigest"
],
"additionalProperties": false
}
},
"additionalProperties": false
}
},
"required": [
"id",
"type",
"version",
"time"
],
"additionalProperties": false
},
"data": {
"type": "object",
"properties": {
"product": {
"type": "string"
},
"project": {
"type": "string"
},
"program": {
"type": "string"
},
"track": {
"type": "string"
},
"version": {
"type": "string"
},
"customData": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"value": {}
},
"required": [
"key",
"value"
],
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"target": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
}
},
"required": [
"type",
"target"
],
"additionalProperties": false
}
}
},
"required": [
"meta",
"data",
"links"
],
"additionalProperties": false
} | o5373 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "An explanation about the purpose of this instance.",
"properties": {
"dhcp_subnet": {
"type": "array",
"description": "An explanation about the purpose of this instance.",
"items": {
"type": "object",
"description": "An explanation about the purpose of this instance.",
"properties": {
"default_lease_time": {
"type": "integer",
"description": "An explanation about the purpose of this instance.",
"default": 21600
},
"dhcp_range": {
"type": "null",
"description": "An explanation about the purpose of this instance.",
"default": null
},
"dns_server_list": {
"type": "string",
"description": "An explanation about the purpose of this instance.",
"default": "['127.0.0.1', '8.8.8.8']"
},
"max_lease_time": {
"type": "integer",
"description": "An explanation about the purpose of this instance.",
"default": 43200
},
"search_domains_list": {
"type": "string",
"description": "An explanation about the purpose of this instance.",
"default": "['englab.juniper.net']"
},
"subnet_address": {
"type": "string",
"description": "An explanation about the purpose of this instance.",
"default": "99.1.1.0"
},
"subnet_domain": {
"type": "string",
"description": "An explanation about the purpose of this instance.",
"default": "englab.juniper.net"
},
"subnet_gateway": {
"type": "string",
"description": "An explanation about the purpose of this instance.",
"default": "99.1.1.9"
},
"subnet_mask": {
"type": "string",
"description": "An explanation about the purpose of this instance.",
"default": "255.255.255.0"
}
},
"required": [
"subnet_address",
"subnet_domain",
"subnet_gateway",
"subnet_mask"
]
}
}
}
} | o8489 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"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",
"price",
"quantity"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"items"
],
"type": "object"
} | generate_invoice_931195a6 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"skills": {
"type": "array",
"items": {
"type": "number"
}
}
},
"required": [
"id",
"name",
"skills"
]
},
"properties": {},
"additionalProperties": false
} | o45209 |
{
"additionalProperties": false,
"description": "Schema for a Google Analytics Ecommerce transaction item",
"properties": {
"category": {
"maxLength": 500,
"type": "string"
},
"code": {
"maxLength": 500,
"type": "string"
},
"currency": {
"maxLength": 3,
"minLength": 3,
"type": "string"
},
"name": {
"maxLength": 500,
"type": "string"
},
"price": {
"multipleOf": 0.01,
"type": "number"
},
"quantity": {
"type": "integer"
}
},
"self": {
"format": "jsonschema",
"name": "item",
"vendor": "com.google.analytics.ecommerce",
"version": "1-0-0"
},
"type": "object"
} | sp_31_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": [
"object",
"null"
],
"additionalProperties": true
} | o71844 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySelectorLabelRequirement": {
"description": "A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.",
"properties": {
"key": {
"description": "The label key that the selector applies to.",
"type": "string"
},
"values": {
"description": "An array of string values. One value must match the label to be selected. Each entry in Values is ORed.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"values"
],
"type": "object"
}
},
"description": "A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future.",
"properties": {
"matchLabelExpressions": {
"description": "A list of topology selector requirements by labels.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySelectorLabelRequirement"
},
"type": [
"array",
"null"
]
}
},
"type": "object"
} | kb_1083_Normalized |
{
"additionalProperties": false,
"properties": {
"dimensions": {
"items": {
"type": "string"
},
"type": "array"
},
"filters": {
"oneOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "string"
}
]
},
"frequency": {
"type": "string"
},
"id": {
"pattern": "^[a-z0-9:]+$",
"type": "string"
},
"maxResults": {
"type": "integer"
},
"metrics": {
"items": {
"type": "string"
},
"type": "array"
},
"segment": {
"type": "string"
},
"sort": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"metrics"
],
"title": "Google Analytics Collector Query",
"type": "object"
} | o21481 |
{
"properties": {
"changeDetection": {
"alias": "c",
"default": "Default",
"description": "Specifies the change detection strategy.",
"enum": [
"Default",
"OnPush"
],
"type": "string"
},
"entryComponent": {
"default": false,
"description": "Specifies if the component is an entry component of declaring module.",
"type": "boolean"
},
"export": {
"default": false,
"description": "Specifies if declaring module exports the component.",
"type": "boolean"
},
"flat": {
"default": false,
"description": "Flag to indicate if a dir is created.",
"type": "boolean"
},
"inlineStyle": {
"alias": "s",
"description": "Specifies if the style will be in the ts file.",
"type": "boolean"
},
"inlineTemplate": {
"alias": "t",
"description": "Specifies if the template will be in the ts file.",
"type": "boolean"
},
"module": {
"alias": "m",
"description": "Allows specification of the declaring module.",
"type": "string"
},
"name": {
"$default": {
"$source": "argv",
"index": 0
},
"description": "The name of the component.",
"type": "string",
"x-prompt": "What should be the name of the component?"
},
"path": {
"description": "The path to create the component.",
"format": "path",
"type": "string",
"visible": false
},
"prefix": {
"alias": "p",
"description": "The prefix to apply to generated selectors.",
"format": "html-selector",
"type": "string"
},
"project": {
"$default": {
"$source": "projectName"
},
"description": "The name of the project.",
"type": "string"
},
"routing": {
"default": false,
"description": "Specifies whether Angular routing is enabled. This controls whether anchor elements use href or routerLink",
"type": "boolean"
},
"selector": {
"description": "The selector to use for the component.",
"format": "html-selector",
"type": "string"
},
"skipImport": {
"default": false,
"description": "Flag to skip the module import.",
"type": "boolean"
},
"skipTests": {
"description": "When true, does not generate a test file.",
"type": "boolean"
},
"style": {
"description": "The file extension to be used for style files.",
"type": "string"
},
"viewEncapsulation": {
"alias": "v",
"description": "Specifies the view encapsulation strategy.",
"enum": [
"Emulated",
"None"
],
"type": "string"
}
},
"required": [
"name"
],
"title": "Material Navigation Options Schema",
"type": "object"
} | o33714 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": {
"description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
"properties": {
"effect": {
"description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
"type": "string"
},
"key": {
"description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.",
"type": "string"
},
"operator": {
"description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.",
"type": "string"
},
"tolerationSeconds": {
"_format": "int64",
"description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.",
"type": "integer"
},
"value": {
"description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1beta1_Overhead": {
"description": "Overhead structure represents the resource overhead associated with running a pod.",
"properties": {
"podFixed": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "PodFixed represents the fixed resource overhead associated with running a pod.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1beta1_RuntimeClass": {
"description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md",
"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"
},
"handler": {
"description": "Handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must conform to the DNS Label (RFC 1123) requirements, and is immutable.",
"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": [
"RuntimeClass"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"overhead": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1beta1_Overhead",
"description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.15, and is only honored by servers that enable the PodOverhead feature."
},
"scheduling": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1beta1_Scheduling",
"description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes."
}
},
"required": [
"handler"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "node.k8s.io",
"kind": "RuntimeClass",
"version": "v1beta1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1beta1_Scheduling": {
"description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.",
"properties": {
"nodeSelector": {
"additionalProperties": {
"type": "string"
},
"description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.",
"type": "object"
},
"tolerations": {
"description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration"
},
"type": "array",
"x-kubernetes-list-type": "atomic"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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"
}
},
"description": "RuntimeClassList is a list of RuntimeClass objects.",
"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": [
"node.k8s.io/v1beta1"
],
"type": [
"string",
"null"
]
},
"items": {
"description": "Items is a list of schema objects.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1beta1_RuntimeClass"
},
"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": [
"RuntimeClassList"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta",
"description": "Standard list 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": "node.k8s.io",
"kind": "RuntimeClassList",
"version": "v1beta1"
}
]
} | kb_900_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A schema to describe a target gene web request graph for Targetscope, building a tree of individual operations, inputs and outputs",
"properties": {
"client_id": {
"description": "Unique identifier for client making request",
"type": "string"
},
"dtsubmission": {
"_format": "date-time",
"description": "An RFC3339-formatted request graph submission timestamp in UTC time",
"type": "string"
},
"id": {
"description": "A unique identifier for a target gene request graph instance",
"type": "string"
},
"name": {
"description": "Name of the operation request graph instance",
"type": "string"
},
"operations": {
"description": "List of request graph Operation components",
"items": {
"properties": {
"id": {
"description": "A unique identifier for this Operation",
"type": "string"
},
"name": {
"description": "Name of this Operation",
"type": "string"
},
"parameters": {
"description": "List of Operation parameters",
"items": {
"properties": {
"arguments": {
"description": "Operation parameter arguments",
"items": {
"properties": {
"options": {
"items": {
"properties": {
"kind": {
"description": "Operation option kind",
"enum": [
"range_start",
"range_stop",
"filter_score",
"filter_name",
"filter_strand",
"filter_chromosome",
"filter_interaction_component",
"set_range_left",
"set_range_right",
"set_dhs_range_left",
"set_dhs_range_right",
"equal_operation",
"greater_operation",
"less_operation",
"greater_equal_operation",
"less_equal_operation",
"precision",
"inverse_operation",
"set_overlap_bases",
"set_overlap_fraction_both",
"set_overlap_fraction_either",
"set_overlap_fraction_map",
"set_overlap_fraction_ref",
"set_overlap_exact",
"set_overlap_range_start",
"set_overlap_range_stop",
"summary_report_type",
"kth_report_argument",
"kth_mean_report_lower_bound",
"kth_mean_report_upper_bound",
"mad_report_argument"
],
"type": "string"
},
"value": {
"description": "Operation option value",
"type": "string"
}
},
"required": [
"value",
"kind"
],
"type": "object"
},
"type": "array"
},
"sets": {
"description": "List of Operation input or output sets (either Element or Interaction Set)",
"items": {
"properties": {
"id": {
"description": "A unique identifier for a defined input Element or Interaction Set",
"type": "string"
},
"kind": {
"description": "Set input/output kind",
"enum": [
"input",
"input_reference",
"input_map",
"output"
],
"type": "string"
}
},
"required": [
"id",
"kind"
],
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"type": "array"
},
"kind": {
"description": "Operation kind",
"enum": [
"element_set_inclusive_filter",
"element_set_range",
"interaction_set_range",
"element_set_filter_score",
"element_set_filter_name",
"element_set_filter_strand",
"element_set_filter_chromosome",
"interaction_set_filter_component",
"element_set_union",
"element_set_merge",
"element_set_element_of",
"element_set_not_element_of",
"element_set_component",
"element_set_difference",
"element_set_complement",
"element_set_symmetric_difference",
"element_set_partition",
"element_set_map_on_element_set",
"element_set_map_on_interaction_set",
"element_set_attributes",
"interaction_set_union",
"summary_report"
],
"type": "string"
}
},
"required": [
"kind",
"arguments"
],
"type": "object"
},
"type": "array"
},
"summary": {
"description": "Optional details about this Operation instance",
"type": "string"
}
},
"required": [
"id",
"name"
],
"type": "object"
},
"type": "array"
},
"save_intermediate": {
"description": "Save intermediate results of the pipeline",
"type": "boolean"
},
"sets": {
"description": "List of request graph Element and/or Interaction Set components",
"items": {
"properties": {
"id": {
"description": "A unique identifier for this Element or Interaction Set",
"type": "string"
},
"kind": {
"description": "Set kind",
"enum": [
"element",
"interaction"
],
"type": "string"
}
},
"required": [
"id",
"kind"
],
"type": "object"
},
"type": "array"
},
"version": {
"description": "Schema version associated with request",
"enum": [
"v1.0.0",
"v1.1.0",
"v1.2.0"
]
}
},
"required": [
"id",
"name",
"dtsubmission",
"version"
],
"title": "Targetscope target gene request graph schema",
"type": "object"
} | o20453 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An alternative name of a company, e.g. abbreviation, trading (including dba or doing business as), legal. As well as trading names etc, it can be used for storing alternative language representations of the legal name, in which case the language should be represented as two-letter ISO-639 code",
"type": "object",
"properties": {
"company_name": {
"type": "string",
"minLength": 1
},
"start_date": {
"type": "string",
"format": "date"
},
"end_date": {
"type": "string",
"format": "date"
},
"language": {
"type": "string",
"minLength": 2,
"maxLength": 2
},
"type": {
"type": "string",
"enum": [
"trading",
"abbreviation",
"legal",
"unknown",
"alias"
]
}
},
"required": [
"company_name",
"type"
]
} | o65443 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"corrections"
],
"properties": {
"corrections": {
"type": "array",
"items": {
"type": "object",
"properties": {
"primary_key": {
"type": "string"
},
"loc": {
"type": "integer"
},
"correction_comment": {
"type": "string"
},
"module": {
"type": "string"
},
"subject": {
"type": "string"
}
},
"required": [
"primary_key",
"correction_comment",
"module",
"subject"
]
}
}
}
} | o66067 |
{
"$id": "https://json.schemastore.org/sigrid-scope-file.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": true,
"definitions": {
"organization": {
"type": "string",
"pattern": "^[a-z0-9]{2,}$"
},
"system": {
"type": "string",
"pattern": "^[a-z0-9]+(-[a-z0-9]+)*$"
},
"model": {
"anyOf": [
{
"type": "string",
"pattern": "20[0-9]{2}"
},
{
"type": "integer",
"minimum": 2000,
"exclusiveMaximum": 2100
}
]
},
"language_name": {
"type": "string",
"minLength": 1
},
"yyyymmdd": {
"anyOf": [
{
"type": "string",
"pattern": "20\\d{2}-?\\d{2}-?\\d{2}"
},
{
"type": "integer",
"minimum": 20000000,
"exclusiveMaximum": 21000000
}
]
},
"interval": {
"type": "string",
"enum": ["week", "month"]
},
"branches": {
"type": "string",
"pattern": "^[0-9a-zA-Z]+(,[0-9a-zA-Z]+)*$"
},
"file_pattern_list": {
"type": "array",
"items": {
"type": "string"
}
},
"component": {
"anyOf": [
{
"type": "null"
},
{
"type": "object",
"properties": {
"include": {
"$ref": "#/definitions/file_pattern_list"
},
"exclude": {
"$ref": "#/definitions/file_pattern_list"
},
"override": {
"type": "boolean"
}
},
"additionalProperties": false
}
]
},
"component_list": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"include": {
"$ref": "#/definitions/file_pattern_list"
},
"exclude": {
"$ref": "#/definitions/file_pattern_list"
}
},
"additionalProperties": false
}
},
"language": {
"anyOf": [
{
"type": "object",
"properties": {
"name": {
"$ref": "#/definitions/language_name"
},
"production": {
"$ref": "#/definitions/component"
},
"test": {
"$ref": "#/definitions/component"
},
"generated": {
"$ref": "#/definitions/component"
}
},
"additionalProperties": false
},
{
"$ref": "#/definitions/language_name"
}
]
},
"language_list": {
"type": "array",
"items": {
"$ref": "#/definitions/language"
},
"minItems": 1
},
"analyzer_list": {
"type": "array",
"items": {
"type": "string"
}
},
"pattern_list": {
"type": "array",
"items": {
"type": "string"
}
},
"dependency": {
"type": "object",
"properties": {
"source": {
"type": "string"
},
"target": {
"type": "string"
},
"type": {
"type": "string"
},
"bidirectional": {
"type": "boolean"
}
},
"required": ["source", "target"],
"additionalProperties": false
},
"dependency_list": {
"type": "array",
"items": {
"$ref": "#/definitions/dependency"
}
},
"architecture_group": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"annotation": {
"type": "string"
},
"include": {
"$ref": "#/definitions/file_pattern_list"
},
"exclude": {
"$ref": "#/definitions/file_pattern_list"
}
},
"required": ["name", "include"],
"additionalProperties": false
},
"architecture_group_list": {
"type": "array",
"items": {
"$ref": "#/definitions/architecture_group"
}
}
},
"description": "Analysis scope configuration file used by Sigrid (sigrid-says.com)",
"properties": {
"default_excludes": {
"type": "boolean",
"description": "When true, excludes files and directories from the analysis scope based on common conventions."
},
"exclude": {
"$ref": "#/definitions/file_pattern_list",
"description": "List of file and directory patterns to manually exclude from the analysis."
},
"component_depth": {
"type": "integer",
"description": "Directory depth that will be used to define components."
},
"component_base_dirs": {
"$ref": "#/definitions/file_pattern_list"
},
"components": {
"$ref": "#/definitions/component_list"
},
"languages": {
"$ref": "#/definitions/language_list",
"description": "A list of technologies that should be included as part of the analysis."
},
"model": {
"$ref": "#/definitions/model",
"description": "Version of the SIG quality model that should be used for the analysis."
},
"alerts": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "When true, will send alert email notifications when noteworthy events happen."
},
"recipients": {
"type": "array",
"items": {
"type": "string",
"format": "email"
},
"description": "List of email addresses that should receive alerts."
}
},
"additionalProperties": false
},
"dependencychecker": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "When this *or* the 'blocklist' option is provided, OSH analysis is performed for every upload."
},
"blocklist": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of patterns for library names that should not be sent to external services."
},
"blacklist": {
"type": "array",
"items": {
"type": "string"
},
"description": "Deprecated, use 'blocklist' instead."
},
"transitive": {
"type": "boolean",
"description": "When true, transitive dependencies are also checked and included in the results."
},
"exclude": {
"$ref": "#/definitions/file_pattern_list",
"description": "List of file/directory patterns that should be excluded from the Open Source Health analysis."
}
},
"additionalProperties": false,
"required": []
},
"checkmarx": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Indicates that this system should be scanned for vulnerabilities using Checkmarx."
},
"id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "Unique ID to identify the Checkmarx project."
},
"username": {
"type": "string",
"description": "Your Checkmarx username."
}
},
"additionalProperties": false,
"required": ["enabled", "id"]
},
"architecture": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "When true, architecture analysis will be triggered for each incoming upload."
},
"model": {
"$ref": "#/definitions/model",
"description": "Version of the SIG Architecture Quality Model to use."
},
"exclude": {
"$ref": "#/definitions/file_pattern_list",
"description": "List of exclude patterns that applies only to Architecture Quality, not globally."
},
"custom_components": {
"type": "boolean",
"description": "Overrides automatic component detection with components defined manually in scope file."
},
"flatten_directories": {
"$ref": "#/definitions/file_pattern_list",
"description": "List of directory names that should be flattened and not considered as components during the analysis."
},
"add_dependencies": {
"$ref": "#/definitions/dependency_list",
"description": "List of manually added dependencies on top of the ones detected automatically by the analysis."
},
"remove_dependencies": {
"$ref": "#/definitions/dependency_list",
"description": "List of dependencies that manually overrides the analysis and removes them from the results."
},
"undesirable_dependencies": {
"$ref": "#/definitions/dependency_list",
"description": "List of dependencies considered undesirable, and should therefore be highlighted in the visualization."
},
"rename": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Map of system elements for which to manually override the name."
},
"merge_data_stores": {
"type": "boolean",
"description": "Default is false. When true, skips automated data store detection and assumes one monolithic data store."
},
"grouping": {
"$ref": "#/definitions/architecture_group_list",
"description": "Annotate all top-level components matching the pattern, in order to divide them into logical groups."
},
"history_enabled": {
"type": "boolean",
"description": "Disables change history analysis when set to false."
},
"history": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "string"
}
],
"description": "Deprecated, use 'history_enabled' instead."
},
"history_period_months": {
"type": "integer",
"description": "Period to use for repository history analysis, default is last 12 months."
},
"history_start": {
"$ref": "#/definitions/yyyymmdd",
"description": "Repository history start date in the format 'yyyy-mm-dd', default is last year."
},
"history_end": {
"$ref": "#/definitions/yyyymmdd",
"description": "Repository history end date in the format 'yyyy-mm-dd', default is current date."
},
"history_interval": {
"$ref": "#/definitions/interval",
"description": "Either 'week' (default) or ‘month’."
},
"history_filter_outliers": {
"type": "boolean",
"description": "Filters commits with an abnormally large amount of churn from the history analysis."
},
"branch": {
"$ref": "#/definitions/branches",
"description": "Repository branch to use, comma-separated for multiple branches. Defaults to current branch."
},
"duplication": {
"type": "boolean",
"description": "Set to false to disable duplication detection, improves performance for huge systems."
},
"co_evolution": {
"type": "boolean",
"description": "Set to false to disable co-evolution detection, improves performance for huge systems."
},
"disabled_metrics": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of metrics that should be removed from the analysis and set to N/A."
}
},
"additionalProperties": false,
"required": ["enabled"]
},
"thirdpartyfindings": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "When true, third party findings analysis will be triggered for each incoming upload."
},
"disabled_analyzers": {
"$ref": "#/definitions/analyzer_list",
"description": "List of third-party analyzers that should not be ran."
},
"enabled_analyzers": {
"$ref": "#/definitions/analyzer_list",
"description": "List of third-party analyzer names that should be ran even though they are disabled by default."
},
"include": {
"$ref": "#/definitions/file_pattern_list",
"description": "List of file/directory patterns that should be included in the third party findings analysis beyond the maintainability scope and production configuration files."
},
"exclude": {
"$ref": "#/definitions/file_pattern_list",
"description": "List of file/directory patterns that should be excluded from the third party findings analysis."
}
},
"additionalProperties": false,
"required": ["enabled"]
}
},
"required": ["languages"],
"title": "Sigrid scope configuration file",
"type": "object"
}
| sigrid-scope-file |
{
"properties": {
"point1": {
"properties": {
"latitude": {
"description": "The latitude of the first point",
"type": "number"
},
"longitude": {
"description": "The longitude of the first point",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
},
"point2": {
"properties": {
"latitude": {
"description": "The latitude of the second point",
"type": "number"
},
"longitude": {
"description": "The longitude of the second point",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
}
},
"required": [
"point1",
"point2"
],
"type": "object"
} | calculate_distance_75677c24 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base 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_length": {
"description": "The side length of the square (if applicable)",
"type": "number"
}
},
"required": [
"radius",
"side_length",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The type of shape (e.g., circle, square, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_a1f8dabd |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"definitions": {
"enabled": {
"type": "boolean"
},
"triggers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"type": {
"type": "string"
},
"config": {
"type": "object"
},
"meta": {
"type": "object"
},
"outputIds": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"additionalProperties": false,
"required": [
"type"
]
}
},
"nodes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string"
},
"config": {
"type": "object"
},
"meta": {
"type": "object"
},
"outputIds": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"additionalProperties": false,
"required": [
"id",
"type"
]
}
},
"globals": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"json": {
"type": "string",
"minLength": 1
}
},
"additionalProperties": false,
"required": [
"key",
"json"
]
}
}
},
"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
},
"enabled": {
"$ref": "#/definitions/enabled"
},
"triggers": {
"$ref": "#/definitions/triggers"
},
"nodes": {
"$ref": "#/definitions/nodes"
},
"globals": {
"$ref": "#/definitions/globals"
}
}
} | o6212 |
{
"id": "https://schema.management.azure.com/schemas/2015-08-01/Microsoft.Storage.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Microsoft.Storage",
"description": "Microsoft Storage Resource Types",
"resourceDefinitions": {
"storageAccounts": {
"type": "object",
"properties": {
"type": {
"enum": [
"Microsoft.Storage/storageAccounts"
]
},
"apiVersion": {
"enum": [
"2015-05-01-preview",
"2015-06-15"
]
},
"properties": {
"type": "object",
"properties": {
"accountType": {
"type": "string",
"minLength": 1,
"description": "Microsoft.Storage/storageAccounts: The type of this account."
}
},
"required": [
"accountType"
]
}
},
"required": [
"type",
"apiVersion",
"properties",
"location"
],
"description": "Microsoft.Storage/storageAccounts"
}
},
"properties": {
"resourceDefinitions.storageAccounts": {
"$ref": "#/resourceDefinitions/storageAccounts"
}
},
"required": [
"resourceDefinitions.storageAccounts"
]
} | o87942 |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"base": {
"description": "The base of the shape, applicable for triangle",
"type": "number"
},
"height": {
"description": "The height of the shape, applicable for triangle",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape, applicable for circle",
"type": "number"
},
"width": {
"description": "The width of the shape, applicable for rectangle",
"type": "number"
}
},
"required": [
"length"
],
"type": "object"
},
"shape": {
"description": "The shape for which the area needs to be calculated",
"enum": [
"rectangle",
"circle",
"triangle"
],
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_c103ebbf |
{
"definitions": {},
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"$id": "http://www.pucomex.serpro.gov.br/lpco/alterar_situacao.schema.json",
"properties": {
"situacao": {
"type": "string"
},
"justificativa": {
"type": [
"string",
"null"
]
},
"dataInicioVigencia": {
"type": [
"string",
"null"
]
},
"dataFinalVigencia": {
"type": [
"string",
"null"
]
},
"numeroOrgaoOrigem": {
"type": [
"string",
"null"
]
},
"requerInspecao": {
"type": [
"boolean",
"null"
]
},
"validoMultiplasOperacoes": {
"type": [
"boolean",
"null"
]
}
}
} | o73029 |
{
"$comment": "Based on https://github.wdf.sap.corp/xs2/approuter.js/blob/master/lib/configuration/schemas/xs-app-schema.json",
"$id": "http://example.com/xsapp.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"sourceSchema": {
"type": ["string", "object"],
"minLength": 1,
"format": "regex",
"additionalProperties": false,
"properties": {
"path": {
"type": "string",
"minLength": 1,
"format": "regex"
},
"matchCase": {
"type": "boolean"
}
},
"required": ["path"]
},
"scopesSchema": {
"type": ["string", "array", "object"],
"minProperties": 1,
"additionalProperties": false,
"properties": {
"GET": {
"$ref": "#/definitions/scopeTemplate"
},
"POST": {
"$ref": "#/definitions/scopeTemplate"
},
"HEAD": {
"$ref": "#/definitions/scopeTemplate"
},
"PUT": {
"$ref": "#/definitions/scopeTemplate"
},
"DELETE": {
"$ref": "#/definitions/scopeTemplate"
},
"TRACE": {
"$ref": "#/definitions/scopeTemplate"
},
"PATCH": {
"$ref": "#/definitions/scopeTemplate"
},
"OPTIONS": {
"$ref": "#/definitions/scopeTemplate"
},
"CONNECT": {
"$ref": "#/definitions/scopeTemplate"
},
"default": {
"$ref": "#/definitions/scopeTemplate"
}
},
"minLength": 1,
"minItems": 1,
"items": {
"type": "string",
"minLength": 1
}
},
"scopeTemplate": {
"$id": "scopeTemplate",
"type": ["string", "array"],
"minLength": 1,
"minItems": 1,
"items": {
"type": "string",
"minLength": 1
}
}
},
"description": "Application Router Configuration Schema",
"properties": {
"welcomeFile": {
"type": "string",
"minLength": 1
},
"authenticationMethod": {
"type": "string",
"enum": ["none", "route"]
},
"sessionTimeout": {
"type": "integer",
"minimum": 1
},
"pluginMetadataEndpoint": {
"type": "string",
"minLength": 1,
"format": "relative-uri"
},
"routes": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"format": "route-rules",
"properties": {
"source": {
"$ref": "#/definitions/sourceSchema"
},
"httpMethods": {
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"enum": [
"DELETE",
"GET",
"HEAD",
"OPTIONS",
"POST",
"PUT",
"TRACE",
"PATCH"
]
}
},
"target": {
"type": "string",
"minLength": 1,
"format": "relative-uri"
},
"destination": {
"type": "string",
"minLength": 1
},
"localDir": {
"type": "string",
"minLength": 1
},
"csrfProtection": {
"type": "boolean"
},
"service": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"authenticationType": {
"type": "string",
"enum": ["xsuaa", "basic", "none"]
},
"identityProvider": {
"type": "string",
"minLength": 1
},
"scope": {
"$ref": "#/definitions/scopesSchema"
},
"replace": {
"type": "object",
"required": ["pathSuffixes"],
"additionalProperties": false,
"properties": {
"pathSuffixes": {
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"format": "relative-uri"
}
},
"vars": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
}
},
"services": {
"type": "object"
}
}
},
"cacheControl": {
"type": "string",
"minLength": 1,
"format": "valid-header-value"
}
},
"required": ["source"]
}
},
"destinations": {
"type": "object",
"format": "destinations-rules",
"additionalProperties": {
"type": "object",
"additionalProperties": false,
"properties": {
"logoutPath": {
"type": "string",
"minLength": 1,
"format": "relative-uri"
},
"logoutMethod": {
"type": "string",
"enum": ["PUT", "POST", "GET"]
}
}
}
},
"services": {
"type": "object",
"format": "services-rules",
"additionalProperties": {
"type": "object",
"additionalProperties": false,
"properties": {
"endpoint": {
"type": "string",
"minLength": 1
},
"logoutPath": {
"type": "string",
"minLength": 1,
"format": "relative-uri"
},
"logoutMethod": {
"type": "string",
"enum": ["PUT", "POST", "GET"]
}
}
}
},
"logout": {
"type": "object",
"additionalProperties": false,
"format": "logout-rules",
"properties": {
"logoutEndpoint": {
"type": "string",
"minLength": 1,
"format": "relative-uri"
},
"logoutPage": {
"type": "string",
"minLength": 1,
"format": "uri"
}
}
},
"login": {
"type": "object",
"additionalProperties": false,
"properties": {
"callbackEndpoint": {
"type": "string",
"minLength": 1,
"format": "relative-uri"
}
},
"required": ["callbackEndpoint"]
},
"whitelistService": {
"type": "object",
"additionalProperties": false,
"properties": {
"endpoint": {
"type": "string",
"minLength": 1,
"format": "relative-uri"
}
},
"required": ["endpoint"]
},
"compression": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean"
},
"minSize": {
"type": "integer",
"minimum": 1
}
}
},
"websockets": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean"
}
},
"required": ["enabled"]
},
"errorPage": {
"type": "array",
"additionalProperties": false,
"items": {
"type": "object",
"required": ["status", "file"],
"properties": {
"status": {
"type": ["integer", "array"],
"minimum": 1,
"minItems": 1,
"uniqueItems": true,
"items": {
"type": "integer",
"minimum": 1
}
},
"file": {
"type": "string",
"minLength": 1,
"format": "local-file"
}
}
}
}
},
"title": "com.sap.xsapp.schema_8.2",
"type": "object"
}
| xs-app |
{
"properties": {
"income": {
"description": "The income for tax calculation",
"type": "number"
},
"tax_rates": {
"properties": {
"income_range_1": {
"description": "Tax rate for income range 1",
"type": "number"
},
"income_range_2": {
"description": "Tax rate for income range 2",
"type": "number"
},
"income_range_3": {
"description": "Tax rate for income range 3",
"type": "number"
}
},
"required": [
"income_range_1",
"income_range_2",
"income_range_3"
],
"type": "object"
}
},
"required": [
"income",
"tax_rates"
],
"type": "object"
} | calculate_tax_36d7746b |
{
"description": "Schema for a Snowplow payload",
"items": {
"additionalProperties": false,
"properties": {
"ad_ad": {
"type": "string"
},
"ad_ba": {
"type": "string"
},
"ad_ca": {
"type": "string"
},
"ad_uid": {
"type": "string"
},
"aid": {
"type": "string"
},
"cd": {
"type": "string"
},
"co": {
"type": "string"
},
"cookie": {
"type": "string"
},
"cs": {
"type": "string"
},
"ctype": {
"type": "string"
},
"cx": {
"type": "string"
},
"ds": {
"type": "string"
},
"dtm": {
"type": "string"
},
"duid": {
"type": "string"
},
"e": {
"type": "string"
},
"eid": {
"type": "string"
},
"f_ag": {
"type": "string"
},
"f_dir": {
"type": "string"
},
"f_fla": {
"type": "string"
},
"f_gears": {
"type": "string"
},
"f_java": {
"type": "string"
},
"f_pdf": {
"type": "string"
},
"f_qt": {
"type": "string"
},
"f_realp": {
"type": "string"
},
"f_wma": {
"type": "string"
},
"fp": {
"type": "string"
},
"ip": {
"type": "string"
},
"lang": {
"type": "string"
},
"mac": {
"type": "string"
},
"nuid": {
"type": "string"
},
"p": {
"type": "string"
},
"page": {
"type": "string"
},
"pp_max": {
"type": "string"
},
"pp_may": {
"type": "string"
},
"pp_mix": {
"type": "string"
},
"pp_miy": {
"type": "string"
},
"refr": {
"type": "string"
},
"res": {
"type": "string"
},
"sa": {
"type": "string"
},
"se_ac": {
"type": "string"
},
"se_ca": {
"type": "string"
},
"se_la": {
"type": "string"
},
"se_pr": {
"type": "string"
},
"se_va": {
"type": "string"
},
"sid": {
"type": "string"
},
"sn": {
"type": "string"
},
"sp": {
"type": "string"
},
"st": {
"type": "string"
},
"stm": {
"type": "string"
},
"ti_ca": {
"type": "string"
},
"ti_cu": {
"type": "string"
},
"ti_id": {
"type": "string"
},
"ti_na": {
"type": "string"
},
"ti_nm": {
"type": "string"
},
"ti_pr": {
"type": "string"
},
"ti_qu": {
"type": "string"
},
"ti_sk": {
"type": "string"
},
"tid": {
"type": "string"
},
"tna": {
"type": "string"
},
"tnuid": {
"type": "string"
},
"tr_af": {
"type": "string"
},
"tr_ci": {
"type": "string"
},
"tr_co": {
"type": "string"
},
"tr_cu": {
"type": "string"
},
"tr_id": {
"type": "string"
},
"tr_sh": {
"type": "string"
},
"tr_st": {
"type": "string"
},
"tr_tt": {
"type": "string"
},
"tr_tx": {
"type": "string"
},
"tv": {
"type": "string"
},
"tz": {
"type": "string"
},
"ua": {
"type": "string"
},
"ue_na": {
"type": "string"
},
"ue_pr": {
"type": "string"
},
"ue_px": {
"type": "string"
},
"uid": {
"type": "string"
},
"url": {
"type": "string"
},
"vid": {
"type": "string"
},
"vp": {
"type": "string"
}
},
"required": [
"tv",
"p",
"e"
],
"type": "object"
},
"minItems": 1,
"self": {
"format": "jsonschema",
"name": "payload_data",
"vendor": "com.snowplowanalytics.snowplow",
"version": "1-0-3"
},
"type": "array"
} | sp_305_Normalized |
{
"properties": {
"_id": {
"type": "integer"
},
"companies_house_number": {
"type": "string"
},
"company_details_confirmed": {
"type": "boolean"
},
"contact_information": {
"description": "Relationship link to multiple ContactInformation instances",
"items": {
"type": "object"
},
"type": "array"
},
"description": {
"type": "string"
},
"duns_number": {
"type": "string"
},
"name": {
"maxLength": 255,
"type": "string"
},
"organisation_size": {
"type": "string"
},
"other_company_registration_number": {
"type": "string"
},
"registered_name": {
"type": "string"
},
"registration_country": {
"type": "string"
},
"supplier_id": {
"type": "string"
},
"trading_status": {
"type": "string"
},
"vat_number": {
"type": "string"
}
},
"required": [
"id",
"name"
],
"title": "Supplier",
"type": "object"
} | o21100 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"$id": "https://raw.githubusercontent.com/matteocrippa/awesome-mobile-conferences/master/.github/schema.json",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"header_contributing": {
"type": "string"
},
"header": {
"type": "string"
},
"ios_app_link": {
"type": "string"
},
"android_app_link": {
"type": "string"
},
"years": {
"type": "array",
"_uniqueItems": true
},
"conferences": {
"type": "array",
"_uniqueItems": true,
"items": {
"title": "Conference Object",
"description": "An object that holds all the information for a specific conference.",
"properties": {
"title": {
"title": "Conference Title",
"description": "The official title of the conference.",
"type": "string"
},
"year": {
"title": "Conference Year",
"description": "The reference of the year of the conference.",
"type": "integer"
},
"startdate": {
"title": "Conference Start date",
"description": "A brief 1 sentence summary of the project.",
"type": "string"
},
"enddate": {
"title": "Conference End date",
"description": "A brief 1 sentence summary of the project.",
"type": "string"
},
"homepage": {
"title": "Conference Homepage",
"description": "The URL for the project's homepage.",
"type": [
"string",
"null"
],
"pattern": "^https?:\\/\\/.*?\\..*$",
"default": null
},
"where": {
"title": "Conference Address",
"description": "Contains a google maps address.",
"type": "string"
},
"city": {
"title": "Conference City",
"description": "Contains the city of the conference.",
"type": "string"
},
"country": {
"title": "Conference Country",
"description": "Contains the country of the conference.",
"type": "string"
},
"callforpaper": {
"title": "Conference Call for paper flag",
"description": "Contains a flag that show if a call for paper is open.",
"type": "boolean"
},
"twitter": {
"title": "Conference twitter account",
"description": "Contains the twitter account of the conference.",
"type": "string"
},
"topics": {
"title": "Conference Topics",
"description": "Contains the topic of the conference, you can pick within ios, android, ui, ux.",
"type": "array"
},
"category": {
"title": "Conference Category",
"description": "Contains the category of the conference.",
"type": "array",
"items": {
"type": "string",
"enum": [
"mobile",
"ui",
"ux",
"frontend",
"backend",
"marketing",
"devops"
]
}
}
},
"required": [
"title",
"year",
"homepage"
],
"additionalProperties": false
}
}
},
"required": [
"title",
"years",
"conferences"
],
"additionalProperties": false
} | o21779 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Schema for the xAPI Statements endpoint",
"getParameters": {
"type": [
"object",
"array"
],
"anyOf": [
{
"type": "array",
"maxItems": 0
},
{
"type": "object",
"additionalProperties": false,
"not": {
"anyOf": [
{
"required": [
"statementId",
"voidedStatementId"
]
}
]
},
"properties": {
"statementId": {
"$ref": "#/definitions/uuid"
},
"voidedStatementId": {
"$ref": "#/definitions/uuid"
},
"agent": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/agent"
},
{
"$ref": "#/definitions/group"
}
]
},
"verb": {
"type": "string",
"format": "iri"
},
"activity": {
"type": "string",
"format": "iri"
},
"registration": {
"type": "string",
"oneOf": [
{
"$ref": "#/definitions/uuid"
}
]
},
"related_activities": {
"type": "boolean"
},
"related_agents": {
"type": "boolean"
},
"since": {
"type": "string",
"format": "date-time"
},
"until": {
"type": "string",
"format": "date-time"
},
"until_id": {
"type": "string"
},
"since_id": {
"type": "string"
},
"limit": {
"type": "number",
"minimum": 0
},
"format": {
"enum": [
"ids",
"exact",
"canonical"
]
},
"attachments": {
"type": "boolean"
},
"ascending": {
"type": "boolean"
}
}
}
]
},
"postBody": {
"type": [
"object",
"array"
],
"oneOf": [
{
"$ref": "#/definitions/statement"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/statement"
}
}
]
},
"putParameters": {
"type": [
"object",
"array"
],
"required": [
"statementId"
],
"properties": {
"statementId": {
"$ref": "#/definitions/uuid"
}
}
},
"putBody": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/statement"
}
]
},
"definitions": {
"statement": {
"type": "object",
"required": [
"actor",
"verb",
"object"
],
"properties": {
"id": {
"$ref": "#/definitions/uuid"
},
"version": {
"type": "string",
"enum": [
"1.0.0"
]
},
"actor": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/agent"
},
{
"$ref": "#/definitions/group"
}
]
},
"verb": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"format": "iri"
},
"display": {
"$ref": "#/definitions/languagemap"
}
},
"additionalProperties": false
},
"object": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/activity"
},
{
"$ref": "#/definitions/objectagent"
},
{
"$ref": "#/definitions/group"
},
{
"$ref": "#/definitions/statementref"
},
{
"$ref": "#/definitions/substatement"
}
]
},
"objectType": {},
"result": {
"type": "object",
"properties": {
"score": {
"type": "object",
"properties": {
"scaled": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"raw": {
"type": "number"
},
"min": {
"type": "number"
},
"max": {
"type": "number"
}
}
},
"success": {
"type": "boolean"
},
"completion": {
"type": "boolean"
},
"response": {
"type": "string"
},
"duration": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/extensions"
}
},
"additionalProperties": false
},
"context": {
"type": "object",
"properties": {
"registration": {
"type": "string",
"oneOf": [
{
"$ref": "#/definitions/uuid"
}
]
},
"instructor": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/agent"
},
{
"$ref": "#/definitions/group"
}
]
},
"team": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/agent"
},
{
"$ref": "#/definitions/group"
}
]
},
"contextActivities": {
"type": "object",
"properties": {
"parent": {
"type": [
"object",
"array"
],
"oneOf": [
{
"$ref": "#/definitions/activity"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/activity"
}
}
]
},
"grouping": {
"type": [
"object",
"array"
],
"oneOf": [
{
"$ref": "#/definitions/activity"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/activity"
}
}
]
},
"category": {
"type": [
"object",
"array"
],
"oneOf": [
{
"$ref": "#/definitions/activity"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/activity"
}
}
]
},
"other": {
"type": [
"object",
"array"
],
"oneOf": [
{
"$ref": "#/definitions/activity"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/activity"
}
}
]
}
},
"additionalProperties": false
},
"revision": {
"type": "string"
},
"platform": {
"type": "string"
},
"language": {
"type": "string"
},
"statement": {
"$ref": "#/definitions/statementref"
},
"extensions": {
"$ref": "#/definitions/extensions"
}
},
"additionalProperties": false
},
"timestamp": {
"type": "string"
},
"stored": {
"type": "string"
},
"authority": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/agent"
},
{
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/anonymousgroup"
}
],
"properties": {
"member": {
"type": "array",
"minItems": 2,
"maxItems": 2
}
}
}
]
},
"voided": {
"type": "boolean"
},
"attachments": {
"type": "array",
"items": {
"$ref": "#/definitions/attachment"
}
}
},
"additionalProperties": false
},
"statementref": {
"type": "object",
"required": [
"objectType",
"id"
],
"properties": {
"objectType": {
"enum": [
"StatementRef"
]
},
"id": {
"$ref": "#/definitions/uuid"
}
},
"additionalProperties": false
},
"substatement": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/statement"
}
],
"required": [
"objectType"
],
"properties": {
"objectType": {
"enum": [
"SubStatement"
]
},
"object": {
"type": "object",
"properties": {
"objectType": {
"oneOf": [
{
"type": "null"
},
{
"type": "string",
"enum": [
"Activity",
"Agent",
"Group",
"StatementRef"
]
}
]
}
}
}
},
"patternProperties": {
"^(id|stored|authority|voided|version)$": {
"type": "null"
}
}
},
"activity": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"format": "iri"
},
"objectType": {
"enum": [
"Activity"
]
},
"definition": {
"type": "object",
"properties": {
"name": {
"$ref": "#/definitions/languagemap"
},
"description": {
"$ref": "#/definitions/languagemap"
},
"type": {
"type": "string",
"format": "iri"
},
"moreInfo": {
"type": "string",
"format": "uri"
},
"interactionType": {
"enum": [
"true-false",
"choice",
"fill-in",
"long-fill-in",
"matching",
"performance",
"sequencing",
"likert",
"numeric",
"other"
]
},
"correctResponsesPattern": {
"type": "array",
"items": {
"type": "string"
}
},
"extensions": {
"$ref": "#/definitions/extensions"
}
},
"patternProperties": {
"^(choices|scale|source|target|steps)$": {
"type": [
"object",
"array"
],
"oneOf": [
{
"$ref": "#/definitions/interaction"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/interaction"
}
}
]
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"extensions": {
"type": "object",
"patternProperties": {
"^[a-zA-Z][a-zA-Z+.-]*:": {}
},
"additionalProperties": false
},
"languagemap": {
"type": "object",
"patternProperties": {
"^(([a-zA-Z]{2,8}((-[a-zA-Z]{3}){0,3})(-[a-zA-Z]{4})?((-[a-zA-Z]{2})|(-\\d{3}))?(-[a-zA-Z\\d]{4,8})*(-[a-zA-Z\\d](-[a-zA-Z\\d]{1,8})+)*)|x(-[a-zA-Z\\d]{1,8})+|en-GB-oed|i-ami|i-bnn|i-default|i-enochian|i-hak|i-klingon|i-lux|i-mingo|i-navajo|i-pwn|i-tao|i-tsu|i-tay|sgn-BE-FR|sgn-BE-NL|sgn-CH-DE)$": {
"type": "string"
}
},
"additionalProperties": false
},
"mbox": {
"type": "object",
"required": [
"mbox"
],
"properties": {
"mbox": {
"type": "string",
"format": "uri",
"pattern": "^mailto:"
}
},
"patternProperties": {
"^(mbox_sha1sum|account|openid)$": {
"type": "null"
}
}
},
"mbox_sha1sum": {
"type": "object",
"required": [
"mbox_sha1sum"
],
"properties": {
"mbox_sha1sum": {
"type": "string",
"pattern": "^[a-fA-F0-9]{40}$"
}
},
"patternProperties": {
"^(mbox|account|openid)$": {
"type": "null"
}
}
},
"account": {
"type": "object",
"required": [
"account"
],
"properties": {
"account": {
"type": "object",
"required": [
"homePage",
"name"
],
"properties": {
"homePage": {
"type": "string",
"format": "uri"
},
"name": {
"type": "string"
}
},
"additionalProperties": false
}
},
"patternProperties": {
"^(mbox_sha1sum|mbox|openid)$": {
"type": "null"
}
}
},
"openid": {
"type": "object",
"required": [
"openid"
],
"properties": {
"openid": {
"type": "string",
"format": "uri"
}
},
"patternProperties": {
"^(mbox_sha1sum|account|mbox)$": {
"type": "null"
}
}
},
"inversefunctional": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/mbox"
},
{
"$ref": "#/definitions/mbox_sha1sum"
},
{
"$ref": "#/definitions/account"
},
{
"$ref": "#/definitions/openid"
}
]
},
"objectagent": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/agent"
}
],
"required": [
"objectType"
],
"properties": {
"objectType": {
"type": "string"
}
}
},
"agent": {
"type": "object",
"allOf": [
{
"properties": {
"name": {
"type": "string"
},
"objectType": {
"enum": [
"Agent"
]
},
"mbox": {},
"mbox_sha1sum": {},
"account": {},
"openid": {}
},
"additionalProperties": false
},
{
"oneOf": [
{
"$ref": "#/definitions/mbox"
},
{
"$ref": "#/definitions/mbox_sha1sum"
},
{
"$ref": "#/definitions/account"
},
{
"$ref": "#/definitions/openid"
}
],
"additionalProperties": true
}
]
},
"group": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/anonymousgroup"
},
{
"$ref": "#/definitions/identifiedgroup"
}
]
},
"anonymousgroup": {
"required": [
"objectType",
"member"
],
"properties": {
"name": {
"type": "string"
},
"objectType": {
"enum": [
"Group"
]
},
"member": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/agent"
}
}
},
"additionalProperties": false
},
"identifiedgroup": {
"required": [
"objectType"
],
"allOf": [
{
"properties": {
"name": {
"type": "string"
},
"objectType": {
"enum": [
"Group"
]
},
"member": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/agent"
}
},
"mbox": {},
"mbox_sha1sum": {},
"account": {},
"openid": {}
},
"additionalProperties": false
},
{
"oneOf": [
{
"$ref": "#/definitions/mbox"
},
{
"$ref": "#/definitions/mbox_sha1sum"
},
{
"$ref": "#/definitions/account"
},
{
"$ref": "#/definitions/openid"
}
],
"additionalProperties": true
}
]
},
"uuid": {
"type": "string",
"format": "uuid"
},
"attachment": {
"type": "object",
"required": [
"usageType",
"display",
"contentType",
"length",
"sha2"
],
"properties": {
"usageType": {
"type": "string",
"format": "iri"
},
"display": {
"$ref": "#/definitions/languagemap"
},
"description": {
"$ref": "#/definitions/languagemap"
},
"contentType": {
"type": "string"
},
"length": {
"type": "number",
"minimum": 0
},
"sha2": {
"type": "string"
},
"fileUrl": {
"type": "string",
"format": "uri"
}
}
},
"interaction": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string"
},
"description": {
"$ref": "#/definitions/languagemap"
}
},
"additionalProperties": false
}
},
"properties": {
"getParameters": {
"$ref": "#/getParameters"
},
"postBody": {
"$ref": "#/postBody"
},
"putParameters": {
"$ref": "#/putParameters"
},
"putBody": {
"$ref": "#/putBody"
},
"statement": {
"$ref": "#/definitions/statement"
},
"statementref": {
"$ref": "#/definitions/statementref"
},
"substatement": {
"$ref": "#/definitions/substatement"
},
"activity": {
"$ref": "#/definitions/activity"
},
"extensions": {
"$ref": "#/definitions/extensions"
},
"languagemap": {
"$ref": "#/definitions/languagemap"
},
"mbox": {
"$ref": "#/definitions/mbox"
},
"mbox_sha1sum": {
"$ref": "#/definitions/mbox_sha1sum"
},
"account": {
"$ref": "#/definitions/account"
},
"openid": {
"$ref": "#/definitions/openid"
},
"inversefunctional": {
"$ref": "#/definitions/inversefunctional"
},
"objectagent": {
"$ref": "#/definitions/objectagent"
},
"agent": {
"$ref": "#/definitions/agent"
},
"group": {
"$ref": "#/definitions/group"
},
"anonymousgroup": {
"$ref": "#/definitions/anonymousgroup"
},
"identifiedgroup": {
"$ref": "#/definitions/identifiedgroup"
},
"uuid": {
"$ref": "#/definitions/uuid"
},
"attachment": {
"$ref": "#/definitions/attachment"
},
"interaction": {
"$ref": "#/definitions/interaction"
}
},
"required": [
"getParameters",
"postBody",
"putParameters",
"putBody",
"statement",
"statementref",
"substatement",
"activity",
"extensions",
"languagemap",
"mbox",
"mbox_sha1sum",
"account",
"openid",
"inversefunctional",
"objectagent",
"agent",
"group",
"anonymousgroup",
"identifiedgroup",
"uuid",
"attachment",
"interaction"
]
} | o13457 |
{
"properties": {
"attendees": {
"description": "The attendees of the event",
"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_ee46b144 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference": {
"description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
"properties": {
"apiVersion": {
"description": "API version of the referent",
"type": "string"
},
"kind": {
"description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"",
"type": "string"
},
"name": {
"description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
}
},
"required": [
"kind",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ExternalMetricSource": {
"description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).",
"properties": {
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
},
"target": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget",
"description": "target specifies the target value for the given metric"
}
},
"required": [
"metric",
"target"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ExternalMetricStatus": {
"description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.",
"properties": {
"current": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus",
"description": "current contains the current value for the given metric"
},
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
}
},
"required": [
"metric",
"current"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingPolicy": {
"description": "HPAScalingPolicy is a single policy which must hold true for a specified past interval.",
"properties": {
"periodSeconds": {
"_format": "int32",
"description": "PeriodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).",
"type": "integer"
},
"type": {
"description": "Type is used to specify the scaling policy.",
"type": "string"
},
"value": {
"_format": "int32",
"description": "Value contains the amount of change which is permitted by the policy. It must be greater than zero",
"type": "integer"
}
},
"required": [
"type",
"value",
"periodSeconds"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingRules": {
"description": "HPAScalingRules configures the scaling behavior for one direction. These Rules are applied after calculating DesiredReplicas from metrics for the HPA. They can limit the scaling velocity by specifying scaling policies. They can prevent flapping by specifying the stabilization window, so that the number of replicas is not set instantly, instead, the safest value from the stabilization window is chosen.",
"properties": {
"policies": {
"description": "policies is a list of potential scaling polices which can be used during scaling. At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingPolicy"
},
"type": "array"
},
"selectPolicy": {
"description": "selectPolicy is used to specify which policy should be used. If not set, the default value MaxPolicySelect is used.",
"type": "string"
},
"stabilizationWindowSeconds": {
"_format": "int32",
"description": "StabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour). If not set, use the default values: - For scale up: 0 (i.e. no stabilization is done). - For scale down: 300 (i.e. the stabilization window is 300 seconds long).",
"type": "integer"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscaler": {
"description": "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.",
"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": [
"HorizontalPodAutoscaler"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "metadata is the standard object 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_autoscaling_v2beta2_HorizontalPodAutoscalerSpec",
"description": "spec is the specification for the behaviour of the autoscaler. 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_autoscaling_v2beta2_HorizontalPodAutoscalerStatus",
"description": "status is the current information about the autoscaler."
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "autoscaling",
"kind": "HorizontalPodAutoscaler",
"version": "v2beta2"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior": {
"description": "HorizontalPodAutoscalerBehavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively).",
"properties": {
"scaleDown": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingRules",
"description": "scaleDown is scaling policy for scaling Down. If not set, the default value is to allow to scale down to minReplicas pods, with a 300 second stabilization window (i.e., the highest recommendation for the last 300sec is used)."
},
"scaleUp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingRules",
"description": "scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of:\n * increase no more than 4 pods per 60 seconds\n * double the number of pods per 60 seconds\nNo stabilization is used."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerCondition": {
"description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.",
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "lastTransitionTime is the last time the condition transitioned from one status to another"
},
"message": {
"description": "message is a human-readable explanation containing details about the transition",
"type": "string"
},
"reason": {
"description": "reason is the reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "status is the status of the condition (True, False, Unknown)",
"type": "string"
},
"type": {
"description": "type describes the current condition",
"type": "string"
}
},
"required": [
"type",
"status"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerSpec": {
"description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.",
"properties": {
"behavior": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior",
"description": "behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively). If not set, the default HPAScalingRules for scale up and scale down are used."
},
"maxReplicas": {
"_format": "int32",
"description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.",
"type": "integer"
},
"metrics": {
"description": "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. If not set, the default metric will be set to 80% average CPU utilization.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricSpec"
},
"type": "array"
},
"minReplicas": {
"_format": "int32",
"description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.",
"type": "integer"
},
"scaleTargetRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference",
"description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count."
}
},
"required": [
"scaleTargetRef",
"maxReplicas"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerStatus": {
"description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.",
"properties": {
"conditions": {
"description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerCondition"
},
"type": "array"
},
"currentMetrics": {
"description": "currentMetrics is the last read state of the metrics used by this autoscaler.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricStatus"
},
"type": "array"
},
"currentReplicas": {
"_format": "int32",
"description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.",
"type": "integer"
},
"desiredReplicas": {
"_format": "int32",
"description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.",
"type": "integer"
},
"lastScaleTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed."
},
"observedGeneration": {
"_format": "int64",
"description": "observedGeneration is the most recent generation observed by this autoscaler.",
"type": "integer"
}
},
"required": [
"currentReplicas",
"desiredReplicas",
"conditions"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier": {
"description": "MetricIdentifier defines the name and optionally selector for a metric",
"properties": {
"name": {
"description": "name is the name of the given metric",
"type": "string"
},
"selector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics."
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricSpec": {
"description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).",
"properties": {
"external": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ExternalMetricSource",
"description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)."
},
"object": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ObjectMetricSource",
"description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
},
"pods": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_PodsMetricSource",
"description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value."
},
"resource": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ResourceMetricSource",
"description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
},
"type": {
"description": "type is the type of metric source. It should be one of \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object.",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricStatus": {
"description": "MetricStatus describes the last-read state of a single metric.",
"properties": {
"external": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ExternalMetricStatus",
"description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)."
},
"object": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ObjectMetricStatus",
"description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
},
"pods": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_PodsMetricStatus",
"description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value."
},
"resource": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ResourceMetricStatus",
"description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
},
"type": {
"description": "type is the type of metric source. It will be one of \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object.",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget": {
"description": "MetricTarget defines the target value, average value, or average utilization of a specific metric",
"properties": {
"averageUtilization": {
"_format": "int32",
"description": "averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. Currently only valid for Resource metric source type",
"type": "integer"
},
"averageValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
},
"type": {
"description": "type represents whether the metric type is Utilization, Value, or AverageValue",
"type": "string"
},
"value": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "value is the target value of the metric (as a quantity)."
}
},
"required": [
"type"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus": {
"description": "MetricValueStatus holds the current value for a metric",
"properties": {
"averageUtilization": {
"_format": "int32",
"description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.",
"type": "integer"
},
"averageValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)"
},
"value": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "value is the current value of the metric (as a quantity)."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ObjectMetricSource": {
"description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
"properties": {
"describedObject": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference"
},
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
},
"target": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget",
"description": "target specifies the target value for the given metric"
}
},
"required": [
"describedObject",
"target",
"metric"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ObjectMetricStatus": {
"description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
"properties": {
"current": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus",
"description": "current contains the current value for the given metric"
},
"describedObject": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference"
},
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
}
},
"required": [
"metric",
"current",
"describedObject"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_PodsMetricSource": {
"description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.",
"properties": {
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
},
"target": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget",
"description": "target specifies the target value for the given metric"
}
},
"required": [
"metric",
"target"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_PodsMetricStatus": {
"description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).",
"properties": {
"current": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus",
"description": "current contains the current value for the given metric"
},
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
}
},
"required": [
"metric",
"current"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ResourceMetricSource": {
"description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.",
"properties": {
"name": {
"description": "name is the name of the resource in question.",
"type": "string"
},
"target": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget",
"description": "target specifies the target value for the given metric"
}
},
"required": [
"name",
"target"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ResourceMetricStatus": {
"description": "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.",
"properties": {
"current": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus",
"description": "current contains the current value for the given metric"
},
"name": {
"description": "Name is the name of the resource in question.",
"type": "string"
}
},
"required": [
"name",
"current"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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"
}
},
"description": "HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.",
"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"
]
},
"items": {
"description": "items is the list of horizontal pod autoscaler objects.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscaler"
},
"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": [
"HorizontalPodAutoscalerList"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta",
"description": "metadata is the standard list metadata."
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "autoscaling",
"kind": "HorizontalPodAutoscalerList",
"version": "v2beta2"
}
]
} | kb_401_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"name": "Package",
"type": "object",
"additionalProperties": false,
"required": [
"name",
"description"
],
"properties": {
"name": {
"type": "string",
"description": "Package name, including 'vendor-name/' prefix."
},
"type": {
"description": "Package type, either 'library' for common packages, 'composer-plugin' for plugins, 'metapackage' for empty packages, or a custom type ([a-z0-9-]+) defined by whatever project this package applies to.",
"type": "string"
},
"target-dir": {
"description": "DEPRECATED: Forces the package to be installed into the given subdirectory path. This is used for autoloading PSR-0 packages that do not contain their full path. Use forward slashes for cross-platform compatibility.",
"type": "string"
},
"description": {
"type": "string",
"description": "Short package description."
},
"keywords": {
"type": "array",
"items": {
"type": "string",
"description": "A tag/keyword that this package relates to."
}
},
"homepage": {
"type": "string",
"description": "Homepage URL for the project.",
"format": "uri"
},
"version": {
"type": "string",
"description": "Package version, see https://getcomposer.org/doc/04-schema.md#version for more info on valid schemes."
},
"time": {
"type": "string",
"description": "Package release date, in 'YYYY-MM-DD', 'YYYY-MM-DD HH:MM:SS' or 'YYYY-MM-DDTHH:MM:SSZ' format."
},
"license": {
"type": [
"string",
"array"
],
"description": "License name. Or an array of license names."
},
"authors": {
"type": "array",
"description": "List of authors that contributed to the package. This is typically the main maintainers, not the full list.",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Full name of the author."
},
"email": {
"type": "string",
"description": "Email address of the author.",
"format": "email"
},
"homepage": {
"type": "string",
"description": "Homepage URL for the author.",
"format": "uri"
},
"role": {
"type": "string",
"description": "Author's role in the project."
}
}
}
},
"require": {
"type": "object",
"description": "This is a hash of package name (keys) and version constraints (values) that are required to run this package.",
"additionalProperties": {
"type": "string"
}
},
"replace": {
"type": "object",
"description": "This is a hash of package name (keys) and version constraints (values) that can be replaced by this package.",
"additionalProperties": {
"type": "string"
}
},
"conflict": {
"type": "object",
"description": "This is a hash of package name (keys) and version constraints (values) that conflict with this package.",
"additionalProperties": {
"type": "string"
}
},
"provide": {
"type": "object",
"description": "This is a hash of package name (keys) and version constraints (values) that this package provides in addition to this package's name.",
"additionalProperties": {
"type": "string"
}
},
"require-dev": {
"type": "object",
"description": "This is a hash of package name (keys) and version constraints (values) that this package requires for developing it (testing tools and such).",
"additionalProperties": {
"type": "string"
}
},
"suggest": {
"type": "object",
"description": "This is a hash of package name (keys) and descriptions (values) that this package suggests work well with it (this will be suggested to the user during installation).",
"additionalProperties": {
"type": "string"
}
},
"config": {
"type": "object",
"description": "Composer options.",
"properties": {
"process-timeout": {
"type": "integer",
"description": "The timeout in seconds for process executions, defaults to 300 (5mins)."
},
"use-include-path": {
"type": "boolean",
"description": "If true, the Composer autoloader will also look for classes in the PHP include path."
},
"preferred-install": {
"type": [
"string",
"object"
],
"description": "The install method Composer will prefer to use, defaults to auto and can be any of source, dist, auto, or a hash of {\"pattern\": \"preference\"}."
},
"notify-on-install": {
"type": "boolean",
"description": "Composer allows repositories to define a notification URL, so that they get notified whenever a package from that repository is installed. This option allows you to disable that behaviour, defaults to true."
},
"github-protocols": {
"type": "array",
"description": "A list of protocols to use for github.com clones, in priority order, defaults to [\"git\", \"https\", \"http\"].",
"items": {
"type": "string"
}
},
"github-oauth": {
"type": "object",
"description": "A hash of domain name => github API oauth tokens, typically {\"github.com\":\"<token>\"}.",
"additionalProperties": {
"type": "string"
}
},
"gitlab-oauth": {
"type": "object",
"description": "A hash of domain name => gitlab API oauth tokens, typically {\"gitlab.com\":\"<token>\"}.",
"additionalProperties": {
"type": "string"
}
},
"gitlab-token": {
"type": "object",
"description": "A hash of domain name => gitlab private tokens, typically {\"gitlab.com\":\"<token>\"}.",
"additionalProperties": true
},
"disable-tls": {
"type": "boolean",
"description": "Defaults to `false`. If set to true all HTTPS URLs will be tried with HTTP instead and no network level encryption is performed. Enabling this is a security risk and is NOT recommended. The better way is to enable the php_openssl extension in php.ini."
},
"secure-http": {
"type": "boolean",
"description": "Defaults to `true`. If set to true only HTTPS URLs are allowed to be downloaded via Composer. If you really absolutely need HTTP access to something then you can disable it, but using \"Let's Encrypt\" to get a free SSL certificate is generally a better alternative."
},
"cafile": {
"type": "string",
"description": "A way to set the path to the openssl CA file. In PHP 5.6+ you should rather set this via openssl.cafile in php.ini, although PHP 5.6+ should be able to detect your system CA file automatically."
},
"capath": {
"type": "string",
"description": "If cafile is not specified or if the certificate is not found there, the directory pointed to by capath is searched for a suitable certificate. capath must be a correctly hashed certificate directory."
},
"http-basic": {
"type": "object",
"description": "A hash of domain name => {\"username\": \"...\", \"password\": \"...\"}.",
"additionalProperties": {
"type": "object",
"required": [
"username",
"password"
],
"properties": {
"username": {
"type": "string",
"description": "The username used for HTTP Basic authentication"
},
"password": {
"type": "string",
"description": "The password used for HTTP Basic authentication"
}
}
}
},
"store-auths": {
"type": [
"string",
"boolean"
],
"description": "What to do after prompting for authentication, one of: true (store), false (do not store) or \"prompt\" (ask every time), defaults to prompt."
},
"platform": {
"type": "object",
"description": "This is a hash of package name (keys) and version (values) that will be used to mock the platform packages on this machine.",
"additionalProperties": {
"type": "string"
}
},
"vendor-dir": {
"type": "string",
"description": "The location where all packages are installed, defaults to \"vendor\"."
},
"bin-dir": {
"type": "string",
"description": "The location where all binaries are linked, defaults to \"vendor/bin\"."
},
"data-dir": {
"type": "string",
"description": "The location where old phar files are stored, defaults to \"$home\" except on XDG Base Directory compliant unixes."
},
"cache-dir": {
"type": "string",
"description": "The location where all caches are located, defaults to \"~/.composer/cache\" on *nix and \"%LOCALAPPDATA%\\Composer\" on windows."
},
"cache-files-dir": {
"type": "string",
"description": "The location where files (zip downloads) are cached, defaults to \"{$cache-dir}/files\"."
},
"cache-repo-dir": {
"type": "string",
"description": "The location where repo (git/hg repo clones) are cached, defaults to \"{$cache-dir}/repo\"."
},
"cache-vcs-dir": {
"type": "string",
"description": "The location where vcs infos (git clones, github api calls, etc. when reading vcs repos) are cached, defaults to \"{$cache-dir}/vcs\"."
},
"cache-ttl": {
"type": "integer",
"description": "The default cache time-to-live, defaults to 15552000 (6 months)."
},
"cache-files-ttl": {
"type": "integer",
"description": "The cache time-to-live for files, defaults to the value of cache-ttl."
},
"cache-files-maxsize": {
"type": [
"string",
"integer"
],
"description": "The cache max size for the files cache, defaults to \"300MiB\"."
},
"bin-compat": {
"enum": [
"auto",
"full"
],
"description": "The compatibility of the binaries, defaults to \"auto\" (automatically guessed) and can be \"full\" (compatible with both Windows and Unix-based systems)."
},
"discard-changes": {
"type": [
"string",
"boolean"
],
"description": "The default style of handling dirty updates, defaults to false and can be any of true, false or \"stash\"."
},
"autoloader-suffix": {
"type": "string",
"description": "Optional string to be used as a suffix for the generated Composer autoloader. When null a random one will be generated."
},
"optimize-autoloader": {
"type": "boolean",
"description": "Always optimize when dumping the autoloader."
},
"prepend-autoloader": {
"type": "boolean",
"description": "If false, the composer autoloader will not be prepended to existing autoloaders, defaults to true."
},
"classmap-authoritative": {
"type": "boolean",
"description": "If true, the composer autoloader will not scan the filesystem for classes that are not found in the class map, defaults to false."
},
"apcu-autoloader": {
"type": "boolean",
"description": "If true, the Composer autoloader will check for APCu and use it to cache found/not-found classes when the extension is enabled, defaults to false."
},
"github-domains": {
"type": "array",
"description": "A list of domains to use in github mode. This is used for GitHub Enterprise setups, defaults to [\"github.com\"].",
"items": {
"type": "string"
}
},
"github-expose-hostname": {
"type": "boolean",
"description": "Defaults to true. If set to false, the OAuth tokens created to access the github API will have a date instead of the machine hostname."
},
"gitlab-domains": {
"type": "array",
"description": "A list of domains to use in gitlab mode. This is used for custom GitLab setups, defaults to [\"gitlab.com\"].",
"items": {
"type": "string"
}
},
"archive-format": {
"type": "string",
"description": "The default archiving format when not provided on cli, defaults to \"tar\"."
},
"archive-dir": {
"type": "string",
"description": "The default archive path when not provided on cli, defaults to \".\"."
}
}
},
"extra": {
"type": [
"object",
"array"
],
"description": "Arbitrary extra data that can be used by plugins, for example, package of type composer-plugin may have a 'class' key defining an installer class name.",
"additionalProperties": true
},
"autoload": {
"type": "object",
"description": "Description of how the package can be autoloaded.",
"properties": {
"psr-0": {
"type": "object",
"description": "This is a hash of namespaces (keys) and the directories they can be found in (values, can be arrays of paths) by the autoloader.",
"additionalProperties": {
"type": [
"string",
"array"
],
"items": {
"type": "string"
}
}
},
"psr-4": {
"type": "object",
"description": "This is a hash of namespaces (keys) and the PSR-4 directories they can map to (values, can be arrays of paths) by the autoloader.",
"additionalProperties": {
"type": [
"string",
"array"
],
"items": {
"type": "string"
}
}
},
"classmap": {
"type": "array",
"description": "This is an array of directories that contain classes to be included in the class-map generation process."
},
"files": {
"type": "array",
"description": "This is an array of files that are always required on every request."
},
"exclude-from-classmap": {
"type": "array",
"description": "This is an array of patterns to exclude from autoload classmap generation. (e.g. \"exclude-from-classmap\": [\"/test/\", \"/tests/\", \"/Tests/\"]"
}
}
},
"autoload-dev": {
"type": "object",
"description": "Description of additional autoload rules for development purpose (eg. a test suite).",
"properties": {
"psr-0": {
"type": "object",
"description": "This is a hash of namespaces (keys) and the directories they can be found into (values, can be arrays of paths) by the autoloader.",
"additionalProperties": {
"type": [
"string",
"array"
],
"items": {
"type": "string"
}
}
},
"psr-4": {
"type": "object",
"description": "This is a hash of namespaces (keys) and the PSR-4 directories they can map to (values, can be arrays of paths) by the autoloader.",
"additionalProperties": {
"type": [
"string",
"array"
],
"items": {
"type": "string"
}
}
},
"classmap": {
"type": "array",
"description": "This is an array of directories that contain classes to be included in the class-map generation process."
},
"files": {
"type": "array",
"description": "This is an array of files that are always required on every request."
}
}
},
"archive": {
"type": [
"object"
],
"description": "Options for creating package archives for distribution.",
"properties": {
"exclude": {
"type": "array",
"description": "A list of patterns for paths to exclude or include if prefixed with an exclamation mark."
}
}
},
"repositories": {
"type": [
"object",
"array"
],
"description": "A set of additional repositories where packages can be found.",
"additionalProperties": {
"oneOf": [
{
"$ref": "#/definitions/repository"
},
{
"type": "boolean",
"enum": [
false
]
}
]
},
"items": {
"oneOf": [
{
"$ref": "#/definitions/repository"
},
{
"type": "object",
"additionalProperties": {
"type": "boolean",
"enum": [
false
]
},
"minProperties": 1,
"maxProperties": 1
}
]
}
},
"minimum-stability": {
"type": [
"string"
],
"description": "The minimum stability the packages must have to be install-able. Possible values are: dev, alpha, beta, RC, stable.",
"pattern": "^dev|alpha|beta|rc|RC|stable$"
},
"prefer-stable": {
"type": [
"boolean"
],
"description": "If set to true, stable packages will be preferred to dev packages when possible, even if the minimum-stability allows unstable packages."
},
"bin": {
"type": [
"array"
],
"description": "A set of files that should be treated as binaries and symlinked into bin-dir (from config).",
"items": {
"type": "string"
}
},
"include-path": {
"type": [
"array"
],
"description": "DEPRECATED: A list of directories which should get added to PHP's include path. This is only present to support legacy projects, and all new code should preferably use autoloading.",
"items": {
"type": "string"
}
},
"scripts": {
"type": [
"object"
],
"description": "Scripts listeners that will be executed before/after some events.",
"properties": {
"pre-install-cmd": {
"type": [
"array",
"string"
],
"description": "Occurs before the install command is executed, contains one or more Class::method callables or shell commands."
},
"post-install-cmd": {
"type": [
"array",
"string"
],
"description": "Occurs after the install command is executed, contains one or more Class::method callables or shell commands."
},
"pre-update-cmd": {
"type": [
"array",
"string"
],
"description": "Occurs before the update command is executed, contains one or more Class::method callables or shell commands."
},
"post-update-cmd": {
"type": [
"array",
"string"
],
"description": "Occurs after the update command is executed, contains one or more Class::method callables or shell commands."
},
"pre-status-cmd": {
"type": [
"array",
"string"
],
"description": "Occurs before the status command is executed, contains one or more Class::method callables or shell commands."
},
"post-status-cmd": {
"type": [
"array",
"string"
],
"description": "Occurs after the status command is executed, contains one or more Class::method callables or shell commands."
},
"pre-package-install": {
"type": [
"array",
"string"
],
"description": "Occurs before a package is installed, contains one or more Class::method callables or shell commands."
},
"post-package-install": {
"type": [
"array",
"string"
],
"description": "Occurs after a package is installed, contains one or more Class::method callables or shell commands."
},
"pre-package-update": {
"type": [
"array",
"string"
],
"description": "Occurs before a package is updated, contains one or more Class::method callables or shell commands."
},
"post-package-update": {
"type": [
"array",
"string"
],
"description": "Occurs after a package is updated, contains one or more Class::method callables or shell commands."
},
"pre-package-uninstall": {
"type": [
"array",
"string"
],
"description": "Occurs before a package has been uninstalled, contains one or more Class::method callables or shell commands."
},
"post-package-uninstall": {
"type": [
"array",
"string"
],
"description": "Occurs after a package has been uninstalled, contains one or more Class::method callables or shell commands."
},
"pre-autoload-dump": {
"type": [
"array",
"string"
],
"description": "Occurs before the autoloader is dumped, contains one or more Class::method callables or shell commands."
},
"post-autoload-dump": {
"type": [
"array",
"string"
],
"description": "Occurs after the autoloader is dumped, contains one or more Class::method callables or shell commands."
},
"post-root-package-install": {
"type": [
"array",
"string"
],
"description": "Occurs after the root-package is installed, contains one or more Class::method callables or shell commands."
},
"post-create-project-cmd": {
"type": [
"array",
"string"
],
"description": "Occurs after the create-project command is executed, contains one or more Class::method callables or shell commands."
}
}
},
"support": {
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "Email address for support.",
"format": "email"
},
"issues": {
"type": "string",
"description": "URL to the issue tracker.",
"format": "uri"
},
"forum": {
"type": "string",
"description": "URL to the forum.",
"format": "uri"
},
"wiki": {
"type": "string",
"description": "URL to the wiki.",
"format": "uri"
},
"irc": {
"type": "string",
"description": "IRC channel for support, as irc://server/channel.",
"format": "uri"
},
"source": {
"type": "string",
"description": "URL to browse or download the sources.",
"format": "uri"
},
"docs": {
"type": "string",
"description": "URL to the documentation.",
"format": "uri"
},
"rss": {
"type": "string",
"description": "URL to the RSS feed.",
"format": "uri"
}
}
},
"non-feature-branches": {
"type": [
"array"
],
"description": "A set of string or regex patterns for non-numeric branch names that will not be handled as feature branches.",
"items": {
"type": "string"
}
},
"abandoned": {
"type": [
"boolean",
"string"
],
"description": "Indicates whether this package has been abandoned, it can be boolean or a package name/URL pointing to a recommended alternative. Defaults to false."
},
"_comment": {
"type": [
"array",
"string"
],
"description": "A key to store comments in"
}
},
"definitions": {
"repository": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/composer-repository"
},
{
"$ref": "#/definitions/vcs-repository"
},
{
"$ref": "#/definitions/path-repository"
},
{
"$ref": "#/definitions/artifact-repository"
},
{
"$ref": "#/definitions/pear-repository"
},
{
"$ref": "#/definitions/package-repository"
}
]
},
"composer-repository": {
"type": "object",
"required": [
"type",
"url"
],
"properties": {
"type": {
"type": "string",
"enum": [
"composer"
]
},
"url": {
"type": "string",
"format": "uri"
},
"options": {
"type": "object",
"additionalProperties": true
},
"allow_ssl_downgrade": {
"type": "boolean"
},
"force-lazy-providers": {
"type": "boolean"
}
}
},
"vcs-repository": {
"type": "object",
"required": [
"type",
"url"
],
"properties": {
"type": {
"type": "string",
"enum": [
"vcs",
"github",
"git",
"gitlab",
"git-bitbucket",
"hg",
"hg-bitbucket",
"fossil",
"perforce",
"svn"
]
},
"url": {
"type": "string"
},
"no-api": {
"type": "boolean"
},
"secure-http": {
"type": "boolean"
},
"svn-cache-credentials": {
"type": "boolean"
},
"trunk-path": {
"type": "string"
},
"branches-path": {
"type": "string"
},
"tags-path": {
"type": "string"
},
"package-path": {
"type": "string"
},
"depot": {
"type": "string"
},
"branch": {
"type": "string"
},
"unique_perforce_client_name": {
"type": "string"
},
"p4user": {
"type": "string"
},
"p4password": {
"type": "string"
}
}
},
"path-repository": {
"type": "object",
"required": [
"type",
"url"
],
"properties": {
"type": {
"type": "string",
"enum": [
"path"
]
},
"url": {
"type": "string"
},
"options": {
"type": "object",
"properties": {
"symlink": {
"type": [
"boolean",
"null"
]
}
},
"additionalProperties": true
}
}
},
"artifact-repository": {
"type": "object",
"required": [
"type",
"url"
],
"properties": {
"type": {
"type": "string",
"enum": [
"artifact"
]
},
"url": {
"type": "string"
}
}
},
"pear-repository": {
"type": "object",
"required": [
"type",
"url"
],
"properties": {
"type": {
"type": "string",
"enum": [
"pear"
]
},
"url": {
"type": "string",
"format": "uri"
},
"vendor-alias": {
"type": "string"
}
}
},
"package-repository": {
"type": "object",
"required": [
"type",
"package"
],
"properties": {
"type": {
"type": "string",
"enum": [
"package"
]
},
"package": {
"oneOf": [
{
"$ref": "#/definitions/inline-package"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/inline-package"
}
}
]
}
}
},
"inline-package": {
"$ref": "#",
"required": [
"name",
"version"
]
}
}
}
| o78463 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": true,
"definitions": {},
"properties": {
"sample_date": {
"_format": "date",
"description": "Date on which this fact was known to be true",
"type": "string"
},
"source_url": {
"description": "Place where this fact can be verified",
"type": "string"
}
},
"required": [
"source_url",
"sample_date"
],
"type": "object"
} | o65422 |
{
"type": "object",
"properties": {
"inputs": {
"type": "array",
"items": {
"$ref": "#/definitions/SBGWorkflowInputParameter"
}
},
"outputs": {
"type": "array",
"items": {
"$ref": "#/definitions/WorkflowOutputParameter"
}
},
"class": {
"type": "string",
"enum": [
"Workflow"
]
},
"steps": {
"type": "array",
"items": {
"$ref": "#/definitions/WorkflowStep"
}
},
"cwlVersion": {
"$ref": "#/definitions/CWLVersions",
"description": "CWL document version"
},
"sbg:image_url": {
"type": [
"string",
"null"
]
},
"sbg:canvas_y": {
"type": "number"
},
"sbg:canvas_x": {
"type": "number"
},
"sbg:canvas_zoom": {
"type": "number"
},
"id": {
"type": "string"
},
"requirements": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/DockerRequirement"
},
{
"$ref": "#/definitions/SubworkflowFeatureRequirement"
},
{
"$ref": "#/definitions/CreateFileRequirement"
},
{
"$ref": "#/definitions/EnvVarRequirement"
},
{
"$ref": "#/definitions/ScatterFeatureRequirement"
},
{
"$ref": "#/definitions/SchemaDefRequirement"
},
{
"$ref": "#/definitions/ExpressionEngineRequirement"
}
]
}
},
"hints": {
"type": "array",
"items": {}
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"sbg:modifiedBy": {
"type": "string"
},
"sbg:revisionInfo": {
"type": "array",
"items": {
"$ref": "#/definitions/SBGRevision"
}
},
"sbg:revision": {
"type": "number"
},
"sbg:createdBy": {
"type": "string"
},
"sbg:id": {
"type": "string"
},
"sbg:contributors": {
"type": "array",
"items": {
"type": "string"
}
},
"sbg:sbgMaintained": {
"type": "boolean"
},
"sbg:project": {
"type": "string"
},
"sbg:validationErrors": {
"type": "array",
"items": {
"type": "string"
}
},
"sbg:modifiedOn": {
"type": "number"
},
"sbg:revisionNotes": {
"type": [
"string",
"null"
]
},
"sbg:toolkit": {
"type": "string"
},
"sbg:toolkitVersion": {
"type": "string"
},
"sbg:links": {
"type": "array",
"items": {
"$ref": "#/definitions/SBGLink"
}
},
"sbg:toolAuthor": {
"type": "string"
},
"sbg:license": {
"type": "string"
},
"sbg:categories": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"inputs",
"outputs",
"class",
"steps"
],
"definitions": {
"SBGWorkflowInputParameter": {
"type": "object",
"properties": {
"type": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/WorkflowInputSchema"
},
{
"type": "string"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/WorkflowInputSchema"
},
{
"type": "string"
}
]
}
}
]
},
"id": {
"type": "string"
},
"sbg:includeInPorts": {
"type": "boolean"
},
"sbg:x": {
"type": "number"
},
"sbg:y": {
"type": "number"
}
},
"required": [
"id"
]
},
"WorkflowInputSchema": {
"type": "object",
"properties": {
"type": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/WorkflowInputSchema"
},
{
"type": "string"
},
{
"$ref": "#/definitions/WorkflowInputMapSchema"
},
{
"$ref": "#/definitions/WorkflowInputArraySchema"
},
{
"$ref": "#/definitions/WorkflowInputRecordSchema"
},
{
"$ref": "#/definitions/WorkflowInputEnumSchema"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/WorkflowInputSchema"
},
{
"type": "string"
},
{
"$ref": "#/definitions/WorkflowInputMapSchema"
},
{
"$ref": "#/definitions/WorkflowInputArraySchema"
},
{
"$ref": "#/definitions/WorkflowInputEnumSchema"
},
{
"$ref": "#/definitions/WorkflowInputRecordSchema"
}
]
}
}
]
}
},
"required": [
"type"
]
},
"WorkflowInputMapSchema": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"map"
]
},
"values": {
"type": "string"
}
},
"required": [
"type",
"values"
]
},
"WorkflowInputArraySchema": {
"type": "object",
"properties": {
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/WorkflowInputSchema"
},
{
"$ref": "#/definitions/WorkflowInputMapSchema"
},
{
"$ref": "#/definitions/WorkflowInputArraySchema"
},
{
"$ref": "#/definitions/WorkflowInputRecordSchema"
},
{
"$ref": "#/definitions/WorkflowInputEnumSchema"
},
{
"type": "string"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/WorkflowInputSchema"
},
{
"$ref": "#/definitions/WorkflowInputMapSchema"
},
{
"$ref": "#/definitions/WorkflowInputArraySchema"
},
{
"$ref": "#/definitions/WorkflowInputEnumSchema"
},
{
"$ref": "#/definitions/WorkflowInputRecordSchema"
},
{
"type": "string"
}
]
}
}
]
},
"type": {
"type": "string",
"enum": [
"array"
]
}
},
"required": [
"items",
"type"
]
},
"WorkflowInputRecordSchema": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"record"
]
},
"fields": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/WorkflowInputSchema"
},
{
"$ref": "#/definitions/WorkflowInputArraySchema"
},
{
"$ref": "#/definitions/WorkflowInputRecordSchema"
},
{
"$ref": "#/definitions/WorkflowInputEnumSchema"
},
{
"$ref": "#/definitions/WorkflowInputMapSchema"
}
]
}
}
},
"required": [
"type",
"fields"
]
},
"WorkflowInputEnumSchema": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"enum"
]
},
"symbols": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"type",
"symbols"
]
},
"WorkflowOutputParameter": {
"type": "object",
"properties": {
"source": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"linkMerge": {
"$ref": "#/definitions/LinkMergeMethod"
},
"sbg:x": {
"type": "number"
},
"sbg:y": {
"type": "number"
},
"type": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/OutputSchema"
},
{
"type": "string"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/OutputSchema"
},
{
"type": "string"
}
]
}
}
]
},
"id": {
"type": "string"
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"streamable": {
"type": "boolean"
},
"default": {},
"sbg:fileTypes": {
"type": "string"
}
},
"required": [
"id"
]
},
"LinkMergeMethod": {
"type": "string",
"enum": [
"merge_nested",
"merge_flattened"
]
},
"OutputSchema": {
"type": "object",
"properties": {
"type": {
"anyOf": [
{
"type": "string",
"enum": [
"record"
]
},
{
"type": "string",
"enum": [
"array"
]
},
{
"type": "string",
"enum": [
"enum"
]
},
{
"type": "string",
"enum": [
"map"
]
},
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/OutputSchema"
},
{
"type": "string"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"record"
]
},
{
"type": "string",
"enum": [
"array"
]
},
{
"type": "string",
"enum": [
"enum"
]
},
{
"type": "string",
"enum": [
"map"
]
},
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/OutputSchema"
},
{
"type": "string"
}
]
}
}
]
},
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/OutputSchema"
},
{
"type": "string"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/OutputSchema"
},
{
"type": "string"
}
]
}
}
]
},
"values": {
"type": "string"
},
"symbols": {
"type": "array",
"items": {
"type": "string"
}
},
"fields": {
"type": "array",
"items": {
"$ref": "#/definitions/OutputSchema"
}
}
},
"required": [
"type"
]
},
"WorkflowStep": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"inputs": {
"type": "array",
"items": {
"$ref": "#/definitions/WorkflowStepInput"
}
},
"outputs": {
"type": "array",
"items": {
"$ref": "#/definitions/WorkflowStepOutput"
}
},
"requirements": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/DockerRequirement"
},
{
"$ref": "#/definitions/SubworkflowFeatureRequirement"
},
{
"$ref": "#/definitions/CreateFileRequirement"
},
{
"$ref": "#/definitions/EnvVarRequirement"
},
{
"$ref": "#/definitions/ScatterFeatureRequirement"
},
{
"$ref": "#/definitions/SchemaDefRequirement"
},
{
"$ref": "#/definitions/ExpressionEngineRequirement"
}
]
}
},
"hints": {
"type": "array",
"items": {}
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"run": {
"anyOf": [
{
"$ref": "#/definitions/CommandLineTool"
},
{
"$ref": "#/definitions/ExpressionTool"
},
{
"$ref": "#/definitions/Workflow"
},
{
"type": "string"
}
]
},
"scatter": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"scatterMethod": {
"$ref": "#/definitions/ScatterMethod"
}
},
"required": [
"inputs",
"outputs",
"run"
]
},
"WorkflowStepInput": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"source": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"linkMerge": {
"$ref": "#/definitions/LinkMergeMethod"
},
"default": {}
},
"required": [
"id"
]
},
"WorkflowStepOutput": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id"
]
},
"DockerRequirement": {
"type": "object",
"properties": {
"class": {
"type": "string",
"enum": [
"DockerRequirement"
]
},
"dockerPull": {
"type": "string"
},
"dockerLoad": {
"type": "string"
},
"dockerFile": {
"type": "string"
},
"dockerImageId": {
"type": "string"
},
"dockerOutputDirectory": {
"type": "string"
}
},
"required": [
"class"
]
},
"SubworkflowFeatureRequirement": {
"type": "object",
"properties": {}
},
"CreateFileRequirement": {
"type": "object",
"properties": {
"class": {
"type": "string",
"enum": [
"CreateFileRequirement"
]
},
"fileDef": {
"type": "array",
"items": {
"$ref": "#/definitions/FileDef"
}
}
},
"required": [
"class",
"fileDef"
]
},
"FileDef": {
"type": "object",
"properties": {
"filename": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
}
]
},
"fileContent": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
}
]
}
},
"required": [
"filename",
"fileContent"
]
},
"Expression": {
"type": "object",
"properties": {
"engine": {
"type": "string"
},
"script": {
"type": "string"
},
"class": {
"type": "string",
"enum": [
"Expression"
]
}
},
"required": [
"engine",
"script",
"class"
]
},
"EnvVarRequirement": {
"type": "object",
"properties": {}
},
"ScatterFeatureRequirement": {
"type": "object",
"properties": {}
},
"SchemaDefRequirement": {
"type": "object",
"properties": {}
},
"ExpressionEngineRequirement": {
"type": "object",
"properties": {
"class": {
"type": "string",
"enum": [
"ExpressionEngineRequirement"
]
},
"id": {
"type": "string"
},
"requirements": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/DockerRequirement"
},
{
"$ref": "#/definitions/SubworkflowFeatureRequirement"
},
{
"$ref": "#/definitions/CreateFileRequirement"
},
{
"$ref": "#/definitions/EnvVarRequirement"
},
{
"$ref": "#/definitions/ScatterFeatureRequirement"
},
{
"$ref": "#/definitions/SchemaDefRequirement"
},
{
"$ref": "#/definitions/ExpressionEngineRequirement"
}
]
}
},
"engineCommand": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"engineConfig": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"class",
"id"
]
},
"CommandLineTool": {
"type": "object",
"properties": {
"inputs": {
"type": "array",
"items": {
"$ref": "#/definitions/CommandInputParameter"
}
},
"outputs": {
"type": "array",
"items": {
"$ref": "#/definitions/CommandOutputParameter"
}
},
"hints": {
"type": "array",
"items": {}
},
"class": {
"type": "string",
"enum": [
"CommandLineTool"
]
},
"baseCommand": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
}
]
}
}
]
},
"arguments": {
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/CommandLineBinding"
}
]
}
},
"stdin": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
}
]
},
"stdout": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
}
]
},
"successCodes": {
"type": "array",
"items": {
"type": "number"
}
},
"temporaryFailCodes": {
"type": "array",
"items": {
"type": "number"
}
},
"permanentFailCodes": {
"type": "array",
"items": {
"type": "number"
}
},
"id": {
"type": "string"
},
"requirements": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/DockerRequirement"
},
{
"$ref": "#/definitions/SubworkflowFeatureRequirement"
},
{
"$ref": "#/definitions/CreateFileRequirement"
},
{
"$ref": "#/definitions/EnvVarRequirement"
},
{
"$ref": "#/definitions/ScatterFeatureRequirement"
},
{
"$ref": "#/definitions/SchemaDefRequirement"
},
{
"$ref": "#/definitions/ExpressionEngineRequirement"
}
]
}
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"sbg:modifiedBy": {
"type": "string"
},
"sbg:revisionInfo": {
"type": "array",
"items": {
"$ref": "#/definitions/SBGRevision"
}
},
"sbg:revision": {
"type": "number"
},
"sbg:createdBy": {
"type": "string"
},
"sbg:id": {
"type": "string"
},
"sbg:contributors": {
"type": "array",
"items": {
"type": "string"
}
},
"sbg:sbgMaintained": {
"type": "boolean"
},
"sbg:project": {
"type": "string"
},
"sbg:validationErrors": {
"type": "array",
"items": {
"type": "string"
}
},
"sbg:modifiedOn": {
"type": "number"
},
"sbg:revisionNotes": {
"type": "string"
},
"sbg:toolkit": {
"type": "string"
},
"sbg:toolkitVersion": {
"type": "string"
},
"sbg:links": {
"type": "array",
"items": {
"$ref": "#/definitions/SBGLink"
}
},
"sbg:toolAuthor": {
"type": "string"
},
"sbg:license": {
"type": "string"
},
"sbg:categories": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"inputs",
"outputs",
"class",
"baseCommand"
]
},
"CommandInputParameter": {
"type": "object",
"properties": {
"type": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/CommandInputSchema"
},
{
"$ref": "#/definitions/CommandInputArraySchema"
},
{
"$ref": "#/definitions/CommandInputMapSchema"
},
{
"$ref": "#/definitions/CommandInputEnumSchema"
},
{
"$ref": "#/definitions/CommandInputRecordSchema"
},
{
"type": "string"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/CommandInputSchema"
},
{
"$ref": "#/definitions/CommandInputArraySchema"
},
{
"$ref": "#/definitions/CommandInputMapSchema"
},
{
"$ref": "#/definitions/CommandInputEnumSchema"
},
{
"$ref": "#/definitions/CommandInputRecordSchema"
},
{
"type": "string"
}
]
}
}
]
},
"inputBinding": {
"$ref": "#/definitions/CommandLineBinding"
},
"sbg:category": {
"type": "string"
},
"id": {
"type": "string"
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"streamable": {
"type": "boolean"
},
"default": {},
"sbg:fileTypes": {
"type": "string"
}
},
"required": [
"id"
]
},
"CommandInputSchema": {
"type": "object",
"properties": {
"inputBinding": {
"$ref": "#/definitions/CommandLineBinding"
},
"type": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/CommandInputSchema"
},
{
"type": "string"
},
{
"$ref": "#/definitions/CommandInputMapSchema"
},
{
"$ref": "#/definitions/CommandInputArraySchema"
},
{
"$ref": "#/definitions/CommandInputRecordSchema"
},
{
"$ref": "#/definitions/CommandInputEnumSchema"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/CommandInputSchema"
},
{
"type": "string"
},
{
"$ref": "#/definitions/CommandInputMapSchema"
},
{
"$ref": "#/definitions/CommandInputArraySchema"
},
{
"$ref": "#/definitions/CommandInputEnumSchema"
},
{
"$ref": "#/definitions/CommandInputRecordSchema"
}
]
}
}
]
}
},
"required": [
"type"
]
},
"CommandLineBinding": {
"type": "object",
"properties": {
"position": {
"type": "number"
},
"prefix": {
"type": "string"
},
"separate": {
"type": "boolean"
},
"itemSeparator": {
"type": [
"string",
"null"
]
},
"valueFrom": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
}
]
},
"loadContents": {
"type": "boolean"
},
"secondaryFiles": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
}
]
}
}
]
}
}
},
"CommandInputMapSchema": {
"type": "object",
"properties": {
"inputBinding": {
"$ref": "#/definitions/CommandLineBinding"
},
"type": {
"type": "string",
"enum": [
"map"
]
},
"values": {
"type": "string"
}
},
"required": [
"type",
"values"
]
},
"CommandInputArraySchema": {
"type": "object",
"properties": {
"inputBinding": {
"$ref": "#/definitions/CommandLineBinding"
},
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/CommandInputSchema"
},
{
"$ref": "#/definitions/CommandInputMapSchema"
},
{
"$ref": "#/definitions/CommandInputArraySchema"
},
{
"$ref": "#/definitions/CommandInputRecordSchema"
},
{
"$ref": "#/definitions/CommandInputEnumSchema"
},
{
"type": "string"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/CommandInputSchema"
},
{
"$ref": "#/definitions/CommandInputMapSchema"
},
{
"$ref": "#/definitions/CommandInputArraySchema"
},
{
"$ref": "#/definitions/CommandInputEnumSchema"
},
{
"$ref": "#/definitions/CommandInputRecordSchema"
},
{
"type": "string"
}
]
}
}
]
},
"type": {
"type": "string",
"enum": [
"array"
]
}
},
"required": [
"items",
"type"
]
},
"CommandInputRecordSchema": {
"type": "object",
"properties": {
"inputBinding": {
"$ref": "#/definitions/CommandLineBinding"
},
"type": {
"type": "string",
"enum": [
"record"
]
},
"fields": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/CommandInputSchema"
},
{
"$ref": "#/definitions/CommandInputArraySchema"
},
{
"$ref": "#/definitions/CommandInputRecordSchema"
},
{
"$ref": "#/definitions/CommandInputEnumSchema"
},
{
"$ref": "#/definitions/CommandInputMapSchema"
}
]
}
}
},
"required": [
"type",
"fields"
]
},
"CommandInputEnumSchema": {
"type": "object",
"properties": {
"inputBinding": {
"$ref": "#/definitions/CommandLineBinding"
},
"type": {
"type": "string",
"enum": [
"enum"
]
},
"symbols": {
"type": "array",
"items": {
"type": "string"
}
},
"name": {
"type": "string"
}
},
"required": [
"type",
"symbols",
"name"
]
},
"CommandOutputParameter": {
"type": "object",
"properties": {
"type": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/CommandOutputSchema"
},
{
"type": "string"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/CommandOutputSchema"
},
{
"type": "string"
}
]
}
}
]
},
"outputBinding": {
"$ref": "#/definitions/CommandOutputBinding"
},
"id": {
"type": "string"
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"streamable": {
"type": "boolean"
},
"default": {},
"sbg:fileTypes": {
"type": "string"
}
},
"required": [
"id"
]
},
"CommandOutputSchema": {
"type": "object",
"properties": {
"outputBinding": {
"$ref": "#/definitions/CommandOutputBinding"
},
"type": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/CommandOutputSchema"
},
{
"type": "string"
},
{
"$ref": "#/definitions/CommandOutputMapSchema"
},
{
"$ref": "#/definitions/CommandOutputArraySchema"
},
{
"$ref": "#/definitions/CommandOutputRecordSchema"
},
{
"$ref": "#/definitions/CommandOutputEnumSchema"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/CommandOutputSchema"
},
{
"type": "string"
},
{
"$ref": "#/definitions/CommandOutputMapSchema"
},
{
"$ref": "#/definitions/CommandOutputArraySchema"
},
{
"$ref": "#/definitions/CommandOutputEnumSchema"
},
{
"$ref": "#/definitions/CommandOutputRecordSchema"
}
]
}
}
]
}
},
"required": [
"type"
]
},
"CommandOutputBinding": {
"type": "object",
"properties": {
"glob": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"outputEval": {
"$ref": "#/definitions/Expression"
},
"sbg:inheritMetadataFrom": {
"type": "string"
},
"sbg:metadata": {
"type": "object",
"additionalProperties": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
}
]
}
},
"loadContents": {
"type": "boolean"
},
"secondaryFiles": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
}
]
}
}
]
}
}
},
"CommandOutputMapSchema": {
"type": "object",
"properties": {
"outputBinding": {
"$ref": "#/definitions/CommandOutputBinding"
},
"type": {
"type": "string",
"enum": [
"map"
]
},
"values": {
"type": "string"
}
},
"required": [
"type",
"values"
]
},
"CommandOutputArraySchema": {
"type": "object",
"properties": {
"outputBinding": {
"$ref": "#/definitions/CommandOutputBinding"
},
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/CommandOutputSchema"
},
{
"$ref": "#/definitions/CommandOutputMapSchema"
},
{
"$ref": "#/definitions/CommandOutputArraySchema"
},
{
"$ref": "#/definitions/CommandOutputRecordSchema"
},
{
"$ref": "#/definitions/CommandOutputEnumSchema"
},
{
"type": "string"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/CommandOutputSchema"
},
{
"$ref": "#/definitions/CommandOutputMapSchema"
},
{
"$ref": "#/definitions/CommandOutputArraySchema"
},
{
"$ref": "#/definitions/CommandOutputEnumSchema"
},
{
"$ref": "#/definitions/CommandOutputRecordSchema"
},
{
"type": "string"
}
]
}
}
]
},
"type": {
"type": "string",
"enum": [
"array"
]
}
},
"required": [
"items",
"type"
]
},
"CommandOutputRecordSchema": {
"type": "object",
"properties": {
"outputBinding": {
"$ref": "#/definitions/CommandOutputBinding"
},
"type": {
"type": "string",
"enum": [
"record"
]
},
"fields": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/CommandOutputSchema"
},
{
"$ref": "#/definitions/CommandOutputArraySchema"
},
{
"$ref": "#/definitions/CommandOutputRecordSchema"
},
{
"$ref": "#/definitions/CommandOutputEnumSchema"
},
{
"$ref": "#/definitions/CommandOutputMapSchema"
}
]
}
}
},
"required": [
"type",
"fields"
]
},
"CommandOutputEnumSchema": {
"type": "object",
"properties": {
"outputBinding": {
"$ref": "#/definitions/CommandOutputBinding"
},
"type": {
"type": "string",
"enum": [
"enum"
]
},
"symbols": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"type",
"symbols"
]
},
"SBGRevision": {
"type": "object",
"properties": {
"sbg:revision": {
"type": "number"
},
"sbg:modifiedBy": {
"type": "string"
},
"sbg:revisionNotes": {
"type": [
"string",
"null"
]
},
"sbg:modifiedOn": {
"type": "number"
}
},
"required": [
"sbg:revision",
"sbg:modifiedBy",
"sbg:revisionNotes",
"sbg:modifiedOn"
]
},
"SBGLink": {
"type": "object",
"properties": {
"label": {
"type": "string"
},
"id": {
"type": "string"
}
},
"required": [
"label",
"id"
]
},
"ExpressionTool": {
"type": "object",
"properties": {
"class": {
"type": "string",
"enum": [
"ExpressionTool"
]
},
"expression": {
"$ref": "#/definitions/Expression"
},
"id": {
"type": "string"
},
"inputs": {
"type": "array",
"items": {
"$ref": "#/definitions/InputParameter"
}
},
"outputs": {
"type": "array",
"items": {
"$ref": "#/definitions/OutputParameter"
}
},
"requirements": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/DockerRequirement"
},
{
"$ref": "#/definitions/SubworkflowFeatureRequirement"
},
{
"$ref": "#/definitions/CreateFileRequirement"
},
{
"$ref": "#/definitions/EnvVarRequirement"
},
{
"$ref": "#/definitions/ScatterFeatureRequirement"
},
{
"$ref": "#/definitions/SchemaDefRequirement"
},
{
"$ref": "#/definitions/ExpressionEngineRequirement"
}
]
}
},
"hints": {
"type": "array",
"items": {}
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"sbg:modifiedBy": {
"type": "string"
},
"sbg:revisionInfo": {
"type": "array",
"items": {
"$ref": "#/definitions/SBGRevision"
}
},
"sbg:revision": {
"type": "number"
},
"sbg:createdBy": {
"type": "string"
},
"sbg:id": {
"type": "string"
},
"sbg:contributors": {
"type": "array",
"items": {
"type": "string"
}
},
"sbg:sbgMaintained": {
"type": "boolean"
},
"sbg:project": {
"type": "string"
},
"sbg:validationErrors": {
"type": "array",
"items": {
"type": "string"
}
},
"sbg:modifiedOn": {
"type": "number"
},
"sbg:revisionNotes": {
"type": [
"string",
"null"
]
},
"sbg:toolkit": {
"type": "string"
},
"sbg:toolkitVersion": {
"type": "string"
},
"sbg:links": {
"type": "array",
"items": {
"$ref": "#/definitions/SBGLink"
}
},
"sbg:toolAuthor": {
"type": "string"
},
"sbg:license": {
"type": "string"
},
"sbg:categories": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"class",
"expression",
"inputs",
"outputs"
]
},
"InputParameter": {
"type": "object",
"properties": {
"type": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/InputSchema"
},
{
"type": "string"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/InputSchema"
},
{
"type": "string"
}
]
}
}
]
},
"id": {
"type": "string"
},
"inputBinding": {
"$ref": "#/definitions/Binding"
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"streamable": {
"type": "boolean"
},
"default": {},
"sbg:fileTypes": {
"type": "string"
}
},
"required": [
"id"
]
},
"InputSchema": {
"type": "object",
"properties": {
"type": {
"anyOf": [
{
"type": "string",
"enum": [
"record"
]
},
{
"type": "string",
"enum": [
"array"
]
},
{
"type": "string",
"enum": [
"enum"
]
},
{
"type": "string",
"enum": [
"map"
]
},
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/InputSchema"
},
{
"type": "string"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"record"
]
},
{
"type": "string",
"enum": [
"array"
]
},
{
"type": "string",
"enum": [
"enum"
]
},
{
"type": "string",
"enum": [
"map"
]
},
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/InputSchema"
},
{
"type": "string"
}
]
}
}
]
},
"inputBinding": {
"$ref": "#/definitions/Binding"
},
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/InputSchema"
},
{
"type": "string"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/InputSchema"
},
{
"type": "string"
}
]
}
}
]
},
"values": {
"type": "string"
},
"symbols": {
"type": "array",
"items": {
"type": "string"
}
},
"fields": {
"type": "array",
"items": {
"$ref": "#/definitions/InputSchema"
}
}
},
"required": [
"type"
]
},
"Binding": {
"type": "object",
"properties": {
"loadContents": {
"type": "boolean"
},
"secondaryFiles": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/Expression"
}
]
}
}
]
}
}
},
"OutputParameter": {
"type": "object",
"properties": {
"type": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/OutputSchema"
},
{
"type": "string"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"enum": [
"null"
]
},
{
"type": "string",
"enum": [
"boolean"
]
},
{
"type": "string",
"enum": [
"int"
]
},
{
"type": "string",
"enum": [
"long"
]
},
{
"type": "string",
"enum": [
"float"
]
},
{
"type": "string",
"enum": [
"double"
]
},
{
"type": "string",
"enum": [
"bytes"
]
},
{
"type": "string",
"enum": [
"string"
]
},
{
"type": "string",
"enum": [
"File"
]
},
{
"$ref": "#/definitions/OutputSchema"
},
{
"type": "string"
}
]
}
}
]
},
"id": {
"type": "string"
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"streamable": {
"type": "boolean"
},
"default": {},
"sbg:fileTypes": {
"type": "string"
}
},
"required": [
"id"
]
},
"Workflow": {
"type": "object",
"properties": {
"inputs": {
"type": "array",
"items": {
"$ref": "#/definitions/SBGWorkflowInputParameter"
}
},
"outputs": {
"type": "array",
"items": {
"$ref": "#/definitions/WorkflowOutputParameter"
}
},
"class": {
"type": "string",
"enum": [
"Workflow"
]
},
"steps": {
"type": "array",
"items": {
"$ref": "#/definitions/WorkflowStep"
}
},
"sbg:image_url": {
"type": [
"string",
"null"
]
},
"sbg:canvas_y": {
"type": "number"
},
"sbg:canvas_x": {
"type": "number"
},
"sbg:canvas_zoom": {
"type": "number"
},
"id": {
"type": "string"
},
"requirements": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/DockerRequirement"
},
{
"$ref": "#/definitions/SubworkflowFeatureRequirement"
},
{
"$ref": "#/definitions/CreateFileRequirement"
},
{
"$ref": "#/definitions/EnvVarRequirement"
},
{
"$ref": "#/definitions/ScatterFeatureRequirement"
},
{
"$ref": "#/definitions/SchemaDefRequirement"
},
{
"$ref": "#/definitions/ExpressionEngineRequirement"
}
]
}
},
"hints": {
"type": "array",
"items": {}
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"sbg:modifiedBy": {
"type": "string"
},
"sbg:revisionInfo": {
"type": "array",
"items": {
"$ref": "#/definitions/SBGRevision"
}
},
"sbg:revision": {
"type": "number"
},
"sbg:createdBy": {
"type": "string"
},
"sbg:id": {
"type": "string"
},
"sbg:contributors": {
"type": "array",
"items": {
"type": "string"
}
},
"sbg:sbgMaintained": {
"type": "boolean"
},
"sbg:project": {
"type": "string"
},
"sbg:validationErrors": {
"type": "array",
"items": {
"type": "string"
}
},
"sbg:modifiedOn": {
"type": "number"
},
"sbg:revisionNotes": {
"type": [
"string",
"null"
]
},
"sbg:toolkit": {
"type": "string"
},
"sbg:toolkitVersion": {
"type": "string"
},
"sbg:links": {
"type": "array",
"items": {
"$ref": "#/definitions/SBGLink"
}
},
"sbg:toolAuthor": {
"type": "string"
},
"sbg:license": {
"type": "string"
},
"sbg:categories": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"inputs",
"outputs",
"class",
"steps"
]
},
"ScatterMethod": {
"type": "string",
"enum": [
"dotproduct",
"nested_crossproduct",
"flat_crossproduct"
]
},
"CWLVersions": {
"type": "string",
"enum": [
"sbg:draft-2"
]
}
},
"$schema": "http://json-schema.org/draft-04/schema#"
} | o69209 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"vector3": {
"type": "object",
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
}
},
"additionalProperties": false,
"required": [
"x",
"y",
"z"
]
},
"quaternion": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"quaternion"
]
},
"w": {
"type": "number"
},
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
}
},
"additionalProperties": false,
"required": [
"type",
"w",
"x",
"y",
"z"
]
},
"euler": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"euler"
]
},
"order": {
"type": "string",
"enum": [
"xyz",
"xzy",
"yxz",
"yzx",
"zxy",
"zyx"
]
},
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
}
},
"additionalProperties": false,
"required": [
"type",
"order",
"x",
"y",
"z"
]
},
"rotation": {
"anyOf": [
{
"$ref": "#/definitions/euler"
},
{
"$ref": "#/definitions/quaternion"
}
]
},
"transformable": {
"type": "object",
"properties": {
"translation": {
"$ref": "#/definitions/vector3"
},
"rotation": {
"$ref": "#/definitions/rotation"
}
}
},
"data": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"data"
]
},
"spriteId": {
"type": "integer"
},
"centerX": {
"type": "integer"
},
"centerY": {
"type": "integer"
}
},
"required": [
"type",
"spriteId",
"centerX",
"centerY"
]
},
"use": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"use"
]
},
"reference": {
"type": "string",
"pattern": "^[a-z][a-z0-9_]*$"
}
},
"required": [
"type",
"reference"
]
},
"group": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"group"
]
},
"children": {
"type": "array",
"items": {
"$ref": "#/definitions/part"
}
}
},
"required": [
"type",
"children"
]
},
"part": {
"allOf": [
{
"$ref": "#/definitions/transformable"
},
{
"anyOf": [
{
"$ref": "#/definitions/data"
},
{
"$ref": "#/definitions/use"
},
{
"$ref": "#/definitions/group"
}
]
}
]
}
},
"type": "object",
"properties": {
"format": {
"type": "string",
"enum": [
"assembled-1.0.0"
]
},
"definitions": {
"type": "object",
"patternProperties": {
"^[a-z][a-z0-9_]*$": {
"$ref": "#/definitions/part"
}
},
"additionalProperties": false
},
"children": {
"type": "array",
"items": {
"$ref": "#/definitions/part"
}
}
},
"additionalProperties": false,
"required": [
"format",
"children"
]
}
| o9969 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"failed_license_scan": {
"additionalProperties": false,
"description": "Failed automated software copyright license scan",
"properties": {
"_release": {
"description": "Unique release id in form of \"ecosystem:package:version\"",
"type": "string"
},
"details": {
"additionalProperties": true,
"type": "object"
},
"schema": {
"additionalProperties": false,
"properties": {
"name": {
"description": "Name of the schema",
"pattern": "^[a-zA-Z0-9_]+$",
"type": "string"
},
"url": {
"_format": "uri",
"description": "Full URL of the schema",
"type": "string"
},
"version": {
"description": "Version of the schema",
"pattern": "^[0-9]+-[0-9]+-[0-9]+$",
"type": "string"
}
},
"required": [
"name",
"version"
],
"type": "object"
},
"status": {
"enum": [
"error"
],
"type": "string"
},
"summary": {
"additionalProperties": true,
"type": "object"
}
},
"required": [
"status",
"summary",
"details"
],
"type": "object"
},
"license_scan_details": {
"additionalProperties": true,
"properties": {
"files_count": {
"type": "integer"
},
"licenses": {
"type": "object"
},
"scancode_notice": {
"type": "string"
},
"scancode_version": {
"type": "string"
}
},
"required": [
"files_count",
"licenses",
"scancode_notice",
"scancode_version"
],
"type": "object"
},
"license_scan_summary": {
"additionalProperties": false,
"properties": {
"sure_licenses": {
"description": "Licenses detected with high match confidence",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"sure_licenses"
],
"type": "object"
},
"successful_license_scan": {
"additionalProperties": false,
"description": "Successful automated software copyright license scan",
"properties": {
"_release": {
"description": "Unique release id in form of \"ecosystem:package:version\"",
"type": "string"
},
"details": {
"$ref": "#/definitions/license_scan_details"
},
"schema": {
"additionalProperties": false,
"properties": {
"name": {
"description": "Name of the schema",
"pattern": "^[a-zA-Z0-9_]+$",
"type": "string"
},
"url": {
"_format": "uri",
"description": "Full URL of the schema",
"type": "string"
},
"version": {
"description": "Version of the schema",
"pattern": "^[0-9]+-[0-9]+-[0-9]+$",
"type": "string"
}
},
"required": [
"name",
"version"
],
"type": "object"
},
"status": {
"enum": [
"success"
],
"type": "string"
},
"summary": {
"$ref": "#/definitions/license_scan_summary"
}
},
"required": [
"status",
"summary",
"details"
],
"type": "object"
}
},
"oneOf": [
{
"$ref": "#/definitions/failed_license_scan"
},
{
"$ref": "#/definitions/successful_license_scan"
},
{
"additionalProperties": false,
"description": "Successful automated software copyright license scan",
"properties": {},
"type": "object"
}
],
"title": "source_licenses-v3-0-0"
} | o61004 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "RightScale plugin manifest",
"type": "object",
"properties": {
"plugins": {
"type": "object",
"properties": {
"rightscale": {
"type": "object",
"properties": {
"enable": {
"type": "boolean"
}
}
}
}
}
}
} | o91031 |
{
"additionalProperties": false,
"description": "Snowplow Amazon DynamoDB storage configuration",
"properties": {
"accessKeyId": {
"type": "string"
},
"awsRegion": {
"type": "string"
},
"dynamodbTable": {
"type": "string"
},
"name": {
"type": "string"
},
"purpose": {
"enum": [
"DUPLICATE_TRACKING"
],
"type": "string"
},
"secretAccessKey": {
"type": "string"
}
},
"required": [
"name",
"accessKeyId",
"secretAccessKey",
"awsRegion",
"dynamodbTable",
"purpose"
],
"self": {
"format": "jsonschema",
"name": "amazon_dynamodb_config",
"vendor": "com.snowplowanalytics.snowplow.storage",
"version": "1-0-0"
},
"type": "object"
} | sp_358_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ClientIPConfig": {
"description": "ClientIPConfig represents the configurations of Client IP based session affinity.",
"properties": {
"timeoutSeconds": {
"_format": "int32",
"description": "timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == \"ClientIP\". Default value is 10800(for 3 hours).",
"type": "integer"
}
},
"type": "object"
},
"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_ServicePort": {
"description": "ServicePort contains information on service's port.",
"properties": {
"appProtocol": {
"description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol. Field can be enabled with ServiceAppProtocol feature gate.",
"type": "string"
},
"name": {
"description": "The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. When considering the endpoints for a Service, this must match the 'name' field in the EndpointPort. Optional if only one ServicePort is defined on this service.",
"type": "string"
},
"nodePort": {
"_format": "int32",
"description": "The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport",
"type": "integer"
},
"port": {
"_format": "int32",
"description": "The port that will be exposed by this service.",
"type": "integer"
},
"protocol": {
"description": "The IP protocol for this port. Supports \"TCP\", \"UDP\", and \"SCTP\". Default is TCP.",
"type": "string"
},
"targetPort": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service"
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceSpec": {
"description": "ServiceSpec describes the attributes that a user creates on a service.",
"properties": {
"clusterIP": {
"description": "clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are \"None\", empty string (\"\"), or a valid IP address. \"None\" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies",
"type": "string"
},
"externalIPs": {
"description": "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system.",
"items": {
"type": "string"
},
"type": "array"
},
"externalName": {
"description": "externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires Type to be ExternalName.",
"type": "string"
},
"externalTrafficPolicy": {
"description": "externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. \"Local\" preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. \"Cluster\" obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading.",
"type": "string"
},
"healthCheckNodePort": {
"_format": "int32",
"description": "healthCheckNodePort specifies the healthcheck nodePort for the service. If not specified, HealthCheckNodePort is created by the service api backend with the allocated nodePort. Will use user-specified nodePort value if specified by the client. Only effects when Type is set to LoadBalancer and ExternalTrafficPolicy is set to Local.",
"type": "integer"
},
"ipFamily": {
"description": "ipFamily specifies whether this Service has a preference for a particular IP family (e.g. IPv4 vs. IPv6). If a specific IP family is requested, the clusterIP field will be allocated from that family, if it is available in the cluster. If no IP family is requested, the cluster's primary IP family will be used. Other IP fields (loadBalancerIP, loadBalancerSourceRanges, externalIPs) and controllers which allocate external load-balancers should use the same IP family. Endpoints for this Service will be of this family. This field is immutable after creation. Assigning a ServiceIPFamily not available in the cluster (e.g. IPv6 in IPv4 only cluster) is an error condition and will fail during clusterIP assignment.",
"type": "string"
},
"loadBalancerIP": {
"description": "Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.",
"type": "string"
},
"loadBalancerSourceRanges": {
"description": "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/",
"items": {
"type": "string"
},
"type": "array"
},
"ports": {
"description": "The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServicePort"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"port",
"protocol"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "port",
"x-kubernetes-patch-strategy": "merge"
},
"publishNotReadyAddresses": {
"description": "publishNotReadyAddresses, when set to true, indicates that DNS implementations must publish the notReadyAddresses of subsets for the Endpoints associated with the Service. The default value is false. The primary use case for setting this field is to use a StatefulSet's Headless Service to propagate SRV records for its Pods without respect to their readiness for purpose of peer discovery.",
"type": "boolean"
},
"selector": {
"additionalProperties": {
"type": "string"
},
"description": "Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/",
"type": "object"
},
"sessionAffinity": {
"description": "Supports \"ClientIP\" and \"None\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies",
"type": "string"
},
"sessionAffinityConfig": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SessionAffinityConfig",
"description": "sessionAffinityConfig contains the configurations of session affinity."
},
"topologyKeys": {
"description": "topologyKeys is a preference-order list of topology keys which implementations of services should use to preferentially sort endpoints when accessing this Service, it can not be used at the same time as externalTrafficPolicy=Local. Topology keys must be valid label keys and at most 16 keys may be specified. Endpoints are chosen based on the first topology key with available backends. If this field is specified and all entries have no backends that match the topology of the client, the service has no backends for that client and connections should fail. The special value \"*\" may be used to mean \"any topology\". This catch-all value, if used, only makes sense as the last value in the list. If this is not specified or empty, no topology constraints will be applied.",
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"description": "type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \"ExternalName\" maps to the specified externalName. \"ClusterIP\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceStatus": {
"description": "ServiceStatus represents the current status of a service.",
"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, if one is present."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SessionAffinityConfig": {
"description": "SessionAffinityConfig represents the configurations of session affinity.",
"properties": {
"clientIP": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ClientIPConfig",
"description": "clientIP contains the configurations of Client IP based session affinity."
}
},
"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"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"description": "Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.",
"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": [
"Service"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceSpec",
"description": "Spec defines the behavior of a service. 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_core_v1_ServiceStatus",
"description": "Most recently observed status of the service. Populated by the system. Read-only. 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": "",
"kind": "Service",
"version": "v1"
}
]
} | kb_969_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": {
"description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
"type": "integer"
},
"readOnly": {
"description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "boolean"
},
"volumeID": {
"description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity": {
"description": "Affinity is a group of affinity scheduling rules.",
"properties": {
"nodeAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity",
"description": "Describes node affinity scheduling rules for the pod."
},
"podAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity",
"description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))."
},
"podAntiAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity",
"description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": {
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
"properties": {
"cachingMode": {
"description": "Host Caching mode: None, Read Only, Read Write.",
"type": "string"
},
"diskName": {
"description": "The Name of the data disk in the blob storage",
"type": "string"
},
"diskURI": {
"description": "The URI the data disk in the blob storage",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"kind": {
"description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
}
},
"required": [
"diskName",
"diskURI"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource": {
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
"properties": {
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretName": {
"description": "the name of secret that contains Azure Storage Account Name and Key",
"type": "string"
},
"shareName": {
"description": "Share Name",
"type": "string"
}
},
"required": [
"secretName",
"shareName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": {
"description": "Represents a source location of a volume to mount, managed by an external CSI driver",
"properties": {
"driver": {
"description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.",
"type": "string"
},
"nodePublishSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed."
},
"readOnly": {
"description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).",
"type": "boolean"
},
"volumeAttributes": {
"additionalProperties": {
"type": "string"
},
"description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.",
"type": "object"
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": {
"description": "Adds and removes POSIX capabilities from running containers.",
"properties": {
"add": {
"description": "Added capabilities",
"items": {
"type": "string"
},
"type": "array"
},
"drop": {
"description": "Removed capabilities",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": {
"description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"monitors": {
"description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "boolean"
},
"secretFile": {
"description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
},
"user": {
"description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource": {
"description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
},
"volumeID": {
"description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource": {
"description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector": {
"description": "Selects a key from a ConfigMap.",
"properties": {
"key": {
"description": "The key to select.",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its key must be defined",
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection": {
"description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": {
"description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container": {
"description": "A single application container that you want to run within a pod.",
"properties": {
"args": {
"description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"description": "List of environment variables to set in the container. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"envFrom": {
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"image": {
"description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.",
"type": "string"
},
"imagePullPolicy": {
"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
"type": "string"
},
"lifecycle": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle",
"description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated."
},
"livenessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"name": {
"description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.",
"type": "string"
},
"ports": {
"description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"containerPort",
"protocol"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "containerPort",
"x-kubernetes-patch-strategy": "merge"
},
"readinessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"resources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements",
"description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/"
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext",
"description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
},
"startupProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"stdin": {
"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
"type": "boolean"
},
"stdinOnce": {
"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
"type": "boolean"
},
"terminationMessagePath": {
"description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
"type": "string"
},
"terminationMessagePolicy": {
"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
"type": "string"
},
"tty": {
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
"type": "boolean"
},
"volumeDevices": {
"description": "volumeDevices is the list of block devices to be used by the container.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice"
},
"type": "array",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge"
},
"volumeMounts": {
"description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort": {
"description": "ContainerPort represents a network port in a single container.",
"properties": {
"containerPort": {
"_format": "int32",
"description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.",
"type": "integer"
},
"hostIP": {
"description": "What host IP to bind the external port to.",
"type": "string"
},
"hostPort": {
"_format": "int32",
"description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.",
"type": "integer"
},
"name": {
"description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.",
"type": "string"
},
"protocol": {
"description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
"type": "string"
}
},
"required": [
"containerPort"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": {
"description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.",
"properties": {
"items": {
"description": "Items is a list of DownwardAPIVolume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": {
"description": "DownwardAPIVolumeFile represents information to create the file containing the pod field",
"properties": {
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported."
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'",
"type": "string"
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported."
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": {
"description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "Items is a list of downward API volume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": {
"description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
"properties": {
"medium": {
"description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir",
"type": "string"
},
"sizeLimit": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource": {
"description": "EnvFromSource represents the source of a set of ConfigMaps",
"properties": {
"configMapRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource",
"description": "The ConfigMap to select from"
},
"prefix": {
"description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource",
"description": "The Secret to select from"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar": {
"description": "EnvVar represents an environment variable present in a Container.",
"properties": {
"name": {
"description": "Name of the environment variable. Must be a C_IDENTIFIER.",
"type": "string"
},
"value": {
"description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".",
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource",
"description": "Source for the environment variable's value. Cannot be used if value is not empty."
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource": {
"description": "EnvVarSource represents a source for the value of an EnvVar.",
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector",
"description": "Selects a key of a ConfigMap."
},
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs."
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported."
},
"secretKeyRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector",
"description": "Selects a key of a secret in the pod's namespace"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer": {
"description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.",
"properties": {
"args": {
"description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"description": "List of environment variables to set in the container. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"envFrom": {
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"image": {
"description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images",
"type": "string"
},
"imagePullPolicy": {
"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
"type": "string"
},
"lifecycle": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle",
"description": "Lifecycle is not allowed for ephemeral containers."
},
"livenessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"name": {
"description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.",
"type": "string"
},
"ports": {
"description": "Ports are not allowed for ephemeral containers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort"
},
"type": "array"
},
"readinessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"resources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements",
"description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod."
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext",
"description": "SecurityContext is not allowed for ephemeral containers."
},
"startupProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"stdin": {
"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
"type": "boolean"
},
"stdinOnce": {
"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
"type": "boolean"
},
"targetContainerName": {
"description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.",
"type": "string"
},
"terminationMessagePath": {
"description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
"type": "string"
},
"terminationMessagePolicy": {
"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
"type": "string"
},
"tty": {
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
"type": "boolean"
},
"volumeDevices": {
"description": "volumeDevices is the list of block devices to be used by the container.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice"
},
"type": "array",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge"
},
"volumeMounts": {
"description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": {
"description": "ExecAction describes a \"run in container\" action.",
"properties": {
"command": {
"description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": {
"description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "Optional: FC target lun number",
"type": "integer"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"targetWWNs": {
"description": "Optional: FC target worldwide names (WWNs)",
"items": {
"type": "string"
},
"type": "array"
},
"wwids": {
"description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource": {
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
"properties": {
"driver": {
"description": "Driver is the name of the driver to use for this volume.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.",
"type": "string"
},
"options": {
"additionalProperties": {
"type": "string"
},
"description": "Optional: Extra command options if any.",
"type": "object"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts."
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": {
"description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.",
"properties": {
"datasetName": {
"description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
"type": "string"
},
"datasetUUID": {
"description": "UUID of the dataset. This is unique identifier of a Flocker dataset",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": {
"description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "integer"
},
"pdName": {
"description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "boolean"
}
},
"required": [
"pdName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource": {
"description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
"properties": {
"directory": {
"description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.",
"type": "string"
},
"repository": {
"description": "Repository URL",
"type": "string"
},
"revision": {
"description": "Commit hash for the specified revision.",
"type": "string"
}
},
"required": [
"repository"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": {
"description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"endpoints": {
"description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"path": {
"description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "boolean"
}
},
"required": [
"endpoints",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction": {
"description": "HTTPGetAction describes an action based on HTTP Get requests.",
"properties": {
"host": {
"description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
"type": "string"
},
"httpHeaders": {
"description": "Custom headers to set in the request. HTTP allows repeated headers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader"
},
"type": "array"
},
"path": {
"description": "Path to access on the HTTP server.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
},
"scheme": {
"description": "Scheme to use for connecting to the host. Defaults to HTTP.",
"type": "string"
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": {
"description": "HTTPHeader describes a custom header to be used in HTTP probes",
"properties": {
"name": {
"description": "The header field name",
"type": "string"
},
"value": {
"description": "The header field value",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": {
"description": "Handler defines a specific action that should be taken",
"properties": {
"exec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"httpGet": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"tcpSocket": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias": {
"description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
"properties": {
"hostnames": {
"description": "Hostnames for the above IP address.",
"items": {
"type": "string"
},
"type": "array"
},
"ip": {
"description": "IP address of the host file entry.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": {
"description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
},
"type": {
"description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource": {
"description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
"properties": {
"chapAuthDiscovery": {
"description": "whether support iSCSI Discovery CHAP authentication",
"type": "boolean"
},
"chapAuthSession": {
"description": "whether support iSCSI Session CHAP authentication",
"type": "boolean"
},
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi",
"type": "string"
},
"initiatorName": {
"description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
"type": "string"
},
"iqn": {
"description": "Target iSCSI Qualified Name.",
"type": "string"
},
"iscsiInterface": {
"description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "iSCSI Target Lun number.",
"type": "integer"
},
"portals": {
"description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"items": {
"type": "string"
},
"type": "array"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "CHAP Secret for iSCSI target and initiator authentication"
},
"targetPortal": {
"description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"type": "string"
}
},
"required": [
"targetPortal",
"iqn",
"lun"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath": {
"description": "Maps a string key to a path within a volume.",
"properties": {
"key": {
"description": "The key to project.",
"type": "string"
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.",
"type": "string"
}
},
"required": [
"key",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle": {
"description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.",
"properties": {
"postStart": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler",
"description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
},
"preStop": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler",
"description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": {
"description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": {
"description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "boolean"
},
"server": {
"description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
}
},
"required": [
"server",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity": {
"description": "Node affinity is a group of node affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector",
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": {
"description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.",
"properties": {
"nodeSelectorTerms": {
"description": "Required. A list of node selector terms. The terms are ORed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm"
},
"type": "array"
}
},
"required": [
"nodeSelectorTerms"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": {
"description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "The label key that the selector applies to.",
"type": "string"
},
"operator": {
"description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
"type": "string"
},
"values": {
"description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": {
"description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.",
"properties": {
"matchExpressions": {
"description": "A list of node selector requirements by node's labels.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
},
"matchFields": {
"description": "A list of node selector requirements by node's fields.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": {
"description": "ObjectFieldSelector selects an APIVersioned field of an object.",
"properties": {
"apiVersion": {
"description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
"type": "string"
},
"fieldPath": {
"description": "Path of the field to select in the specified API version.",
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": {
"description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).",
"properties": {
"claimName": {
"description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
"type": "string"
},
"readOnly": {
"description": "Will force the ReadOnly setting in VolumeMounts. Default false.",
"type": "boolean"
}
},
"required": [
"claimName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": {
"description": "Represents a Photon Controller persistent disk resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"pdID": {
"description": "ID that identifies Photon Controller persistent disk",
"type": "string"
}
},
"required": [
"pdID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity": {
"description": "Pod affinity is a group of inter pod affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": {
"description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running",
"properties": {
"labelSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "A label query over a set of resources, in this case pods."
},
"namespaces": {
"description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"",
"items": {
"type": "string"
},
"type": "array"
},
"topologyKey": {
"description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.",
"type": "string"
}
},
"required": [
"topologyKey"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": {
"description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig": {
"description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.",
"properties": {
"nameservers": {
"description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.",
"items": {
"type": "string"
},
"type": "array"
},
"options": {
"description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption"
},
"type": "array"
},
"searches": {
"description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption": {
"description": "PodDNSConfigOption defines DNS resolver options of a pod.",
"properties": {
"name": {
"description": "Required.",
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate": {
"description": "PodReadinessGate contains the reference to a pod condition",
"properties": {
"conditionType": {
"description": "ConditionType refers to a condition in the pod's condition list with matching type.",
"type": "string"
}
},
"required": [
"conditionType"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext": {
"description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.",
"properties": {
"fsGroup": {
"_format": "int64",
"description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.",
"type": "integer"
},
"fsGroupChangePolicy": {
"description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".",
"type": "string"
},
"runAsGroup": {
"_format": "int64",
"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"type": "integer"
},
"runAsNonRoot": {
"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "boolean"
},
"runAsUser": {
"_format": "int64",
"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"type": "integer"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container."
},
"supplementalGroups": {
"description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.",
"items": {
"_format": "int64",
"type": "integer"
},
"type": "array"
},
"sysctls": {
"description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl"
},
"type": "array"
},
"windowsOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions",
"description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec": {
"description": "PodSpec is a description of a pod.",
"properties": {
"activeDeadlineSeconds": {
"_format": "int64",
"description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.",
"type": "integer"
},
"affinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity",
"description": "If specified, the pod's scheduling constraints"
},
"automountServiceAccountToken": {
"description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.",
"type": "boolean"
},
"containers": {
"description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"dnsConfig": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig",
"description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy."
},
"dnsPolicy": {
"description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.",
"type": "string"
},
"enableServiceLinks": {
"description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.",
"type": "boolean"
},
"ephemeralContainers": {
"description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"hostAliases": {
"description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias"
},
"type": "array",
"x-kubernetes-patch-merge-key": "ip",
"x-kubernetes-patch-strategy": "merge"
},
"hostIPC": {
"description": "Use the host's ipc namespace. Optional: Default to false.",
"type": "boolean"
},
"hostNetwork": {
"description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.",
"type": "boolean"
},
"hostPID": {
"description": "Use the host's pid namespace. Optional: Default to false.",
"type": "boolean"
},
"hostname": {
"description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.",
"type": "string"
},
"imagePullSecrets": {
"description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"initContainers": {
"description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"nodeName": {
"description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.",
"type": "string"
},
"nodeSelector": {
"additionalProperties": {
"type": "string"
},
"description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/",
"type": "object"
},
"overhead": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.",
"type": "object"
},
"preemptionPolicy": {
"description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.",
"type": "string"
},
"priority": {
"_format": "int32",
"description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.",
"type": "integer"
},
"priorityClassName": {
"description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.",
"type": "string"
},
"readinessGates": {
"description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate"
},
"type": "array"
},
"restartPolicy": {
"description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy",
"type": "string"
},
"runtimeClassName": {
"description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.",
"type": "string"
},
"schedulerName": {
"description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.",
"type": "string"
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext",
"description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field."
},
"serviceAccount": {
"description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
"type": "string"
},
"serviceAccountName": {
"description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
"type": "string"
},
"shareProcessNamespace": {
"description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.",
"type": "boolean"
},
"subdomain": {
"description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.",
"type": "string"
},
"terminationGracePeriodSeconds": {
"_format": "int64",
"description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.",
"type": "integer"
},
"tolerations": {
"description": "If specified, the pod's tolerations.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration"
},
"type": "array"
},
"topologySpreadConstraints": {
"description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is only honored by clusters that enable the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"topologyKey",
"whenUnsatisfiable"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "topologyKey",
"x-kubernetes-patch-strategy": "merge"
},
"volumes": {
"description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge,retainKeys"
}
},
"required": [
"containers"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec": {
"description": "PodTemplateSpec describes the data a pod should have when created from a template",
"properties": {
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec",
"description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": {
"description": "PortworxVolumeSource represents a Portworx volume resource.",
"properties": {
"fsType": {
"description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"volumeID": {
"description": "VolumeID uniquely identifies a Portworx volume",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm": {
"description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).",
"properties": {
"preference": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm",
"description": "A node selector term, associated with the corresponding weight."
},
"weight": {
"_format": "int32",
"description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
"type": "integer"
}
},
"required": [
"weight",
"preference"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe": {
"description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.",
"properties": {
"exec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"failureThreshold": {
"_format": "int32",
"description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
"type": "integer"
},
"httpGet": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"initialDelaySeconds": {
"_format": "int32",
"description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
"type": "integer"
},
"periodSeconds": {
"_format": "int32",
"description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
"type": "integer"
},
"successThreshold": {
"_format": "int32",
"description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.",
"type": "integer"
},
"tcpSocket": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
},
"timeoutSeconds": {
"_format": "int32",
"description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
"type": "integer"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource": {
"description": "Represents a projected volume source",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"sources": {
"description": "list of volume projections",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection"
},
"type": "array"
}
},
"required": [
"sources"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": {
"description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.",
"properties": {
"group": {
"description": "Group to map volume access to Default is no group",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.",
"type": "boolean"
},
"registry": {
"description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes",
"type": "string"
},
"tenant": {
"description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin",
"type": "string"
},
"user": {
"description": "User to map volume access to Defaults to serivceaccount user",
"type": "string"
},
"volume": {
"description": "Volume is a string that references an already created Quobyte volume by name.",
"type": "string"
}
},
"required": [
"registry",
"volume"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource": {
"description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd",
"type": "string"
},
"image": {
"description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"keyring": {
"description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"monitors": {
"description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"pool": {
"description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
},
"user": {
"description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors",
"image"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ReplicationControllerCondition": {
"description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.",
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "The last time the condition transitioned from one status to another."
},
"message": {
"description": "A human readable message indicating details about the transition.",
"type": "string"
},
"reason": {
"description": "The reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "Status of the condition, one of True, False, Unknown.",
"type": "string"
},
"type": {
"description": "Type of replication controller condition.",
"type": "string"
}
},
"required": [
"type",
"status"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ReplicationControllerSpec": {
"description": "ReplicationControllerSpec is the specification of a replication controller.",
"properties": {
"minReadySeconds": {
"_format": "int32",
"description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)",
"type": "integer"
},
"replicas": {
"_format": "int32",
"description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
"type": "integer"
},
"selector": {
"additionalProperties": {
"type": "string"
},
"description": "Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors",
"type": "object"
},
"template": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec",
"description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ReplicationControllerStatus": {
"description": "ReplicationControllerStatus represents the current status of a replication controller.",
"properties": {
"availableReplicas": {
"_format": "int32",
"description": "The number of available replicas (ready for at least minReadySeconds) for this replication controller.",
"type": "integer"
},
"conditions": {
"description": "Represents the latest available observations of a replication controller's current state.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ReplicationControllerCondition"
},
"type": "array",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge"
},
"fullyLabeledReplicas": {
"_format": "int32",
"description": "The number of pods that have labels matching the labels of the pod template of the replication controller.",
"type": "integer"
},
"observedGeneration": {
"_format": "int64",
"description": "ObservedGeneration reflects the generation of the most recently observed replication controller.",
"type": "integer"
},
"readyReplicas": {
"_format": "int32",
"description": "The number of ready replicas for this replication controller.",
"type": "integer"
},
"replicas": {
"_format": "int32",
"description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
"type": "integer"
}
},
"required": [
"replicas"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": {
"description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
"properties": {
"containerName": {
"description": "Container name: required for volumes, optional for env vars",
"type": "string"
},
"divisor": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Specifies the output format of the exposed resources, defaults to \"1\""
},
"resource": {
"description": "Required: resource to select",
"type": "string"
}
},
"required": [
"resource"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements": {
"description": "ResourceRequirements describes the compute resource requirements.",
"properties": {
"limits": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": "object"
},
"requests": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": {
"description": "SELinuxOptions are the labels to be applied to the container",
"properties": {
"level": {
"description": "Level is SELinux level label that applies to the container.",
"type": "string"
},
"role": {
"description": "Role is a SELinux role label that applies to the container.",
"type": "string"
},
"type": {
"description": "Type is a SELinux type label that applies to the container.",
"type": "string"
},
"user": {
"description": "User is a SELinux user label that applies to the container.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": {
"description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".",
"type": "string"
},
"gateway": {
"description": "The host address of the ScaleIO API Gateway.",
"type": "string"
},
"protectionDomain": {
"description": "The name of the ScaleIO Protection Domain for the configured storage.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
},
"sslEnabled": {
"description": "Flag to enable/disable SSL communication with Gateway, default false",
"type": "boolean"
},
"storageMode": {
"description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
"type": "string"
},
"storagePool": {
"description": "The ScaleIO Storage Pool associated with the protection domain.",
"type": "string"
},
"system": {
"description": "The name of the storage system as configured in ScaleIO.",
"type": "string"
},
"volumeName": {
"description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
"type": "string"
}
},
"required": [
"gateway",
"system",
"secretRef"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource": {
"description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector": {
"description": "SecretKeySelector selects a key of a Secret.",
"properties": {
"key": {
"description": "The key of the secret to select from. Must be a valid secret key.",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection": {
"description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": {
"description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"optional": {
"description": "Specify whether the Secret or its keys must be defined",
"type": "boolean"
},
"secretName": {
"description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext": {
"description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.",
"properties": {
"allowPrivilegeEscalation": {
"description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN",
"type": "boolean"
},
"capabilities": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities",
"description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime."
},
"privileged": {
"description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.",
"type": "boolean"
},
"procMount": {
"description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.",
"type": "string"
},
"readOnlyRootFilesystem": {
"description": "Whether this container has a read-only root filesystem. Default is false.",
"type": "boolean"
},
"runAsGroup": {
"_format": "int64",
"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "integer"
},
"runAsNonRoot": {
"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "boolean"
},
"runAsUser": {
"_format": "int64",
"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "integer"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
},
"windowsOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions",
"description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": {
"description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).",
"properties": {
"audience": {
"description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.",
"type": "string"
},
"expirationSeconds": {
"_format": "int64",
"description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.",
"type": "integer"
},
"path": {
"description": "Path is the path relative to the mount point of the file to project the token into.",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": {
"description": "Represents a StorageOS persistent volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted."
},
"volumeName": {
"description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.",
"type": "string"
},
"volumeNamespace": {
"description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl": {
"description": "Sysctl defines a kernel parameter to be set",
"properties": {
"name": {
"description": "Name of a property to set",
"type": "string"
},
"value": {
"description": "Value of a property to set",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction": {
"description": "TCPSocketAction describes an action based on opening a socket",
"properties": {
"host": {
"description": "Optional: Host name to connect to, defaults to the pod IP.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": {
"description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
"properties": {
"effect": {
"description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
"type": "string"
},
"key": {
"description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.",
"type": "string"
},
"operator": {
"description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.",
"type": "string"
},
"tolerationSeconds": {
"_format": "int64",
"description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.",
"type": "integer"
},
"value": {
"description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint": {
"description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
"properties": {
"labelSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain."
},
"maxSkew": {
"_format": "int32",
"description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.",
"type": "integer"
},
"topologyKey": {
"description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.",
"type": "string"
},
"whenUnsatisfiable": {
"description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.",
"type": "string"
}
},
"required": [
"maxSkew",
"topologyKey",
"whenUnsatisfiable"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume": {
"description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
"properties": {
"awsElasticBlockStore": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource",
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
},
"azureDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource",
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
},
"azureFile": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource",
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
},
"cephfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource",
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
},
"cinder": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource",
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
},
"configMap": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource",
"description": "ConfigMap represents a configMap that should populate this volume"
},
"csi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource",
"description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)."
},
"downwardAPI": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource",
"description": "DownwardAPI represents downward API about the pod that should populate this volume"
},
"emptyDir": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource",
"description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
},
"fc": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource",
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
},
"flexVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource",
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
},
"flocker": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource",
"description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
},
"gcePersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource",
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
},
"gitRepo": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource",
"description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
},
"glusterfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource",
"description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
},
"hostPath": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource",
"description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
},
"iscsi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource",
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
},
"name": {
"description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"nfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource",
"description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
},
"persistentVolumeClaim": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource",
"description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
},
"photonPersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource",
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
},
"portworxVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource",
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
},
"projected": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource",
"description": "Items for all in one resources secrets, configmaps, and downward API"
},
"quobyte": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource",
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
},
"rbd": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource",
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
},
"scaleIO": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource",
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
},
"secret": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource",
"description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
},
"storageos": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource",
"description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
},
"vsphereVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource",
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": {
"description": "volumeDevice describes a mapping of a raw block device within a container.",
"properties": {
"devicePath": {
"description": "devicePath is the path inside of the container that the device will be mapped to.",
"type": "string"
},
"name": {
"description": "name must match the name of a persistentVolumeClaim in the pod",
"type": "string"
}
},
"required": [
"name",
"devicePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": {
"description": "VolumeMount describes a mounting of a Volume within a container.",
"properties": {
"mountPath": {
"description": "Path within the container at which the volume should be mounted. Must not contain ':'.",
"type": "string"
},
"mountPropagation": {
"description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.",
"type": "string"
},
"name": {
"description": "This must match the Name of a Volume.",
"type": "string"
},
"readOnly": {
"description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
"type": "boolean"
},
"subPath": {
"description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
"type": "string"
},
"subPathExpr": {
"description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.",
"type": "string"
}
},
"required": [
"name",
"mountPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": {
"description": "Projection that may be projected along with other supported volume types",
"properties": {
"configMap": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection",
"description": "information about the configMap data to project"
},
"downwardAPI": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection",
"description": "information about the downwardAPI data to project"
},
"secret": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection",
"description": "information about the secret data to project"
},
"serviceAccountToken": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection",
"description": "information about the serviceAccountToken data to project"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": {
"description": "Represents a vSphere volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"storagePolicyID": {
"description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
"type": "string"
},
"storagePolicyName": {
"description": "Storage Policy Based Management (SPBM) profile name.",
"type": "string"
},
"volumePath": {
"description": "Path that identifies vSphere volume vmdk",
"type": "string"
}
},
"required": [
"volumePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": {
"description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
"properties": {
"podAffinityTerm": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm",
"description": "Required. A pod affinity term, associated with the corresponding weight."
},
"weight": {
"_format": "int32",
"description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
"type": "integer"
}
},
"required": [
"weight",
"podAffinityTerm"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": {
"description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
"properties": {
"gmsaCredentialSpec": {
"description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.",
"type": "string"
},
"gmsaCredentialSpecName": {
"description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
"type": "string"
},
"runAsUserName": {
"description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"description": "ReplicationController represents the configuration of a replication controller.",
"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": [
"v1"
],
"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": [
"ReplicationController"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ReplicationControllerSpec",
"description": "Spec defines the specification of the desired behavior of the replication controller. 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_core_v1_ReplicationControllerStatus",
"description": "Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. 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": "",
"kind": "ReplicationController",
"version": "v1"
}
]
} | kb_814_Normalized |
{
"properties": {
"changeDetection": {
"alias": "c",
"default": "Default",
"description": "Specifies the change detection strategy.",
"enum": [
"Default",
"OnPush"
],
"type": "string"
},
"export": {
"default": false,
"description": "Specifies if declaring module exports the component.",
"type": "boolean"
},
"flat": {
"default": false,
"description": "Flag to indicate if a dir is created.",
"type": "boolean"
},
"inlineStyle": {
"alias": "s",
"default": false,
"description": "Specifies if the style will be in the ts file.",
"type": "boolean"
},
"inlineTemplate": {
"alias": "t",
"default": false,
"description": "Specifies if the template will be in the ts file.",
"type": "boolean"
},
"module": {
"alias": "m",
"description": "Allows specification of the declaring module.",
"type": "string"
},
"name": {
"$default": {
"$source": "argv",
"index": 0
},
"description": "The name of the component.",
"type": "string",
"x-prompt": "What should be the name of the container component?"
},
"path": {
"description": "The path to create the component.",
"format": "path",
"type": "string",
"visible": false
},
"prefix": {
"alias": "p",
"description": "The prefix to apply to generated selectors.",
"format": "html-selector",
"type": "string"
},
"project": {
"aliases": [
"p"
],
"description": "The name of the project.",
"type": "string"
},
"selector": {
"description": "The selector to use for the component.",
"format": "html-selector",
"type": "string"
},
"skipImport": {
"default": false,
"description": "Flag to skip the module import.",
"type": "boolean"
},
"skipTest": {
"default": false,
"description": "When true, does not create test files.",
"type": "boolean"
},
"state": {
"description": "Specifies the path to the state exports.",
"type": "string"
},
"stateInterface": {
"default": "State",
"description": "Specifies the interface for the state.",
"type": "string"
},
"style": {
"default": "css",
"description": "The file extension or preprocessor to use for style files.",
"type": "string"
},
"testDepth": {
"default": "integration",
"description": "Specifies whether to create a unit test or an integration test.",
"enum": [
"unit",
"integration"
],
"type": "string"
},
"viewEncapsulation": {
"alias": "v",
"description": "Specifies the view encapsulation strategy.",
"enum": [
"Emulated",
"Native",
"None"
],
"type": "string"
}
},
"required": [],
"title": "NgRx Container Options Schema",
"type": "object"
} | o27258 |
{
"additionalProperties": false,
"description": "Schema for a size violation bad row",
"properties": {
"failure": {
"additionalProperties": false,
"description": "Information regarding the size violation",
"properties": {
"actualSizeBytes": {
"description": "Maximum payload size allowed by the current platform",
"maximum": 1073741824,
"minimum": 0,
"type": "integer"
},
"expectation": {
"description": "Expectation which was not met",
"maxLength": 256,
"type": "string"
},
"maximumAllowedSizeBytes": {
"description": "Maximum payload size allowed by the current platform",
"maximum": 1073741824,
"minimum": 0,
"type": "integer"
},
"timestamp": {
"_format": "date-time",
"description": "Timestamp at which the failure occurred",
"type": "string"
}
},
"required": [
"timestamp",
"maximumAllowedSizeBytes",
"actualSizeBytes"
],
"type": "object"
},
"payload": {
"description": "The truncated payload that resulted in a size violation",
"type": "string"
},
"processor": {
"additionalProperties": false,
"description": "Information about the piece of software responsible for the creation of this size violation",
"properties": {
"artifact": {
"description": "Artifact responsible for the creation of this size violation",
"maxLength": 512,
"type": "string"
},
"version": {
"description": "Version of the artifact responsible for the creation of this size violation",
"maxLength": 32,
"pattern": "^(\\d+\\.\\d+\\.\\d+.*)$",
"type": "string"
}
},
"required": [
"artifact",
"version"
],
"type": "object"
}
},
"required": [
"failure",
"payload",
"processor"
],
"self": {
"format": "jsonschema",
"name": "size_violation",
"vendor": "com.snowplowanalytics.snowplow.badrows",
"version": "1-0-0"
},
"type": "object"
} | sp_344_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.5.8/traits/trait_owner.json",
"title": "Owner information ",
"description": "Trait that applies information about the owner (typically a news organization) to a document. ",
"type": "object",
"properties": {
"owner": {
"description": "Information about the owner of this content.",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for this owner. In the Arc ecosystem, this is often used to store the organization id.",
"type": "string"
},
"name": {
"description": "The name of this owner. ",
"type": "string"
},
"sponsored": {
"description": "Necessary for including/excluding advertorial and native content in search results, story card features.",
"type": "boolean"
}
}
}
}
} | o86603 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"type": "object",
"properties": {
"keyName": {
"title": "Storage Key Name",
"type": "string",
"minLength": 1
},
"valuePath": {
"title": "Value Path",
"description": "JSON path for where to place value",
"type": "string",
"minLength": 1
},
"defaultValue": {
"title": "Default Value",
"description": "Value to place in 'Value Path' if key does not exist",
"type": "string",
"minLength": 1
}
},
"required": [
"keyName",
"valuePath"
]
} | o6185 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"name",
"description",
"url",
"apis",
"maintainer"
],
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"url": {
"type": "string"
},
"image": {
"type": "string"
},
"apis": {
"type": "array",
"items": {
"$ref": "#/definitions/apisDefinition"
}
},
"maintainer": {
"type": "array",
"items": {
"$ref": "#/definitions/maintainerDefinition"
}
}
},
"definitions": {
"maintainerDefinition": {
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
}
},
"additionalProperties": {
"type": "string"
}
},
"apisDefinition": {
"oneOf": [
{
"required": [
"$ref"
],
"properties": {
"$ref": {
"type": "string"
}
}
},
{
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"image": {
"type": "string"
},
"humanURL": {
"type": "string"
},
"tags": {
"type": "string"
},
"urls": {
"type": "array",
"items": {
"$ref": "#/definitions/urlsDefinition"
}
},
"contact": {
"type": "array",
"items": {
"$ref": "#/definitions/contactDefinition"
}
},
"meta": {
"type": "array",
"items": {
"$ref": "#/definitions/metaDefinition"
}
}
}
}
]
},
"metaDefinition": {
"required": [
"key",
"value"
],
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"contactDefinition": {
"required": [
"type",
"url"
],
"properties": {
"type": {
"type": "string",
"enum": [
"twitter"
]
},
"url": {
"type": "string",
"pattern": "^(http)|(https)://(.*)$"
}
}
},
"urlsDefinition": {
"required": [
"type",
"url"
],
"properties": {
"type": {
"type": "string",
"pattern": "^(portal)|(console)|(signup)|(libraries)|(swagger)|(X-[a-z0-9\\-]*)$"
},
"url": {
"type": "string",
"pattern": "^(http)|(https)://(.*)$"
}
}
}
}
} | o23177 |
{
"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 type (e.g. circle, rectangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_30108955 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"env": {
"type": "object",
"required": ["name", "value"],
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "환경변수 이름",
"pattern": "[a-zA-Z_][a-zA-Z_0-9]*"
},
"value": {
"type": "string",
"description": "환경변수 값"
},
"branch": {
"type": "string",
"description": "환경변수를 적용할 브랜치"
}
}
},
"build-condition": {
"type": "object",
"description": "빌드 실행 조건",
"additionalProperties": true,
"properties": {
"push": {
"type": "object",
"description": "Push 이벤트에 의한 조건",
"properties": {
"branches": {
"type": "array",
"items": {
"type": "string"
},
"default": ["*"],
"description": "Push 빌드의 branch 조건",
"minItems": 1
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"default": ["*"],
"description": "Push 빌드의 tag 조건",
"minItems": 1
},
"commit": {
"type": "object",
"properties": {
"message-contain": {
"type": "string",
"description": "commit message에 주어진 문자열을 포함한 경우만 빌드"
}
}
}
},
"additionalProperties": false
},
"pull-request": {
"type": "object",
"description": "PullRequest 이벤트에 의한 조건",
"properties": {
"branches": {
"type": "array",
"items": {
"type": "string"
},
"default": ["*"],
"description": "PR빌드의 target 브랜치 조건",
"minItems": 1
},
"types": {
"type": "array",
"items": {
"type": "string",
"enum": [
"assigned",
"unassigned",
"labeled",
"unlabeled",
"opened",
"edited",
"closed",
"reopened",
"synchronize",
"converted_to_draft",
"ready_for_review",
"locked",
"unlocked",
"review_requested",
"review_request_removed",
"auto_merge_enabled",
"auto_merge_disabled"
]
},
"default": ["opened", "synchronize", "reopened"],
"description": "PR 이벤트 타입",
"minItems": 1
},
"commit": {
"type": "object",
"description": "Commit 조건",
"properties": {
"message-contain": {
"type": "string",
"description": "커밋 메시지가 지정된 문자열을 포함하면 빌드를 실행"
}
}
}
},
"additionalProperties": false
}
}
},
"job": {
"type": "object",
"required": ["name", "execute"],
"additionalProperties": true,
"properties": {
"name": {
"type": "string",
"description": "작업 이름",
"pattern": "[a-zA-Z0-9_-]{1,40}"
},
"execute": {
"type": "array",
"description": "실행할 명령 목록(순차실행)",
"items": {
"type": "string",
"default": "echo \"hello world\""
},
"minItems": 1
},
"set-proxy": {
"type": "array",
"description": "사내 Proxy 설정",
"default": ["shell"],
"items": {
"type": "string",
"enum": ["shell", "gradle", "npm", "docker", "yarn", "maven"]
}
},
"no-proxy-hosts": {
"type": "array",
"description": "proxy 예외할 host 목록 (ip, ip/mask, domain)",
"default": [],
"items": {
"type": "string"
}
},
"run-on": {
"$ref": "#/definitions/run-on"
},
"artifacts": {
"type": "array",
"description": "artifact로 지정할 파일 혹은 디렉토리 경로",
"default": [],
"items": {
"type": "string"
}
},
"caches": {
"type": "array",
"description": "다음 빌드의 속도 향상을 위한 캐시 설정",
"default": [],
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"key": {
"type": "string",
"description": "캐시 식별키 (repo scope)",
"pattern": "^[a-zA-Z0-9_-]{1,40}$"
},
"path": {
"type": "string",
"description": "캐시할 파일 혹은 디렉토리 경로"
}
}
}
},
"max-execution-time": {
"type": "string",
"description": "최대 실행시간 (e.g. '1h', '100m')",
"default": "1h",
"pattern": "^([0-9]+)(h|m)$"
},
"post-process": {
"type": "object",
"description": "빌드 후처리기 설정",
"additionalProperties": true,
"properties": {
"app-center-release": {
"$ref": "#/definitions/app-center-release"
},
"git-ops": {
"$ref": "#/definitions/git-ops"
}
}
}
}
},
"run-on": {
"type": "object",
"description": "실행환경 설정",
"additionalProperties": false,
"properties": {
"image": {
"type": "string",
"description": "docker image",
"default": "+@basebox",
"pattern": "^(\\+@[a-z0-9-]+|\\+\\/[a-z0-9-]+|[a-z0-9/.-]+)(:[a-z0-9\\-]+)?$"
},
"resources": {
"description": "실행에 사용할 리소스 크기 설정",
"anyOf": [
{
"type": "string",
"default": "small",
"enum": [
"small",
"medium",
"large",
"xlarge",
"xxlarge",
"xxxlarge"
]
},
{
"type": "object",
"required": ["cpu", "memory"],
"properties": {
"cpu": {
"anyOf": [
{
"type": "string",
"default": "1.0",
"pattern": "^[0-9]+(\\.[0-9]+)?$"
},
{
"type": "number",
"default": 1
}
],
"description": "cpu (e.g. '1.0')",
"default": "1.0"
},
"memory": {
"type": "string",
"description": "memory (e.g. '500Mi', '2Gi').",
"default": "1Gi",
"pattern": "^([0-9]+)(Mi|Gi)$"
}
}
}
]
},
"use": {
"type": "array",
"description": "실행환경에서 사용할 기능 설정",
"default": [],
"items": {
"type": "string",
"enum": ["docker", "mobil-keystore"]
}
},
"platform": {
"type": "string",
"description": "실행환경 플랫폼",
"default": "k8s",
"enum": ["k8s", "macos"]
}
}
},
"app-center-release": {
"type": "object",
"description": "artifact로 지정된 .apk/.ipa 파일을 appcenter로 릴리즈",
"required": ["app-id", "release-group-tag"],
"additionalProperties": true,
"properties": {
"app-id": {
"type": "string",
"description": "App ID",
"pattern": "[a-zA-Z0-9_-]+"
},
"release-group-tag": {
"type": "string",
"description": "릴리즈 그룹에 대한 Tag 지정",
"pattern": "[a-zA-Z0-9_-]+"
},
"testers": {
"type": "array",
"description": "테스터 지정(@<user>, @@<group>, corp@@<corpcode>)",
"items": {
"type": "string",
"description": "@<user>, @@<group>, corp@@<corpcode>",
"pattern": "^(@[.a-zA-Z0-9_-]+|@@[.a-zA-Z0-9_-]+|corp@@[.a-zA-Z0-9_-]+)$"
}
}
}
},
"git-ops": {
"type": "object",
"description": "GitOps 방식의 K8S Deploy를 위한 manifest repo 업데이트",
"required": ["manifest", "update"],
"additionalProperties": false,
"properties": {
"manifest": {
"type": "object",
"description": "K8S manifest repo 정보",
"required": ["repo", "branch"],
"additionalProperties": false,
"properties": {
"repo": {
"type": "string",
"description": "repo('owner/repo')",
"pattern": "[.a-zA-Z0-9_-]+/[.a-zA-Z0-9_-]+"
},
"branch": {
"type": "string",
"description": "branch",
"pattern": "[a-zA-Z0-9/_.@-]+"
}
}
},
"update": {
"type": "array",
"description": "manifest repo를 업데이트하기 위한 명령",
"items": {
"type": "string"
},
"minItems": 1
},
"with-artifacts": {
"type": "array",
"description": "빌드 작업에서 manifest reop로 전달할 artifacts",
"items": {
"type": "string"
}
}
}
}
},
"id": "https://json.schemastore.org/kode-ci-build-1.0.0.json",
"properties": {
"on": {
"$ref": "#/definitions/build-condition",
"description": "실행 조건"
},
"jobs": {
"type": "array",
"description": "실행할 작업들: 독립적으로 병렬 실행됨",
"items": {
"$ref": "#/definitions/job"
}
},
"environment": {
"type": "array",
"description": "환경변수",
"items": {
"$ref": "#/definitions/env"
}
}
},
"required": ["jobs"],
"title": "KoDE/CI Build Spec",
"type": "object"
}
| kode-ci-build-1 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"time": {
"type": "string"
},
"type": {
"type": "string"
},
"user": {
"type": "string"
},
"motd": {
"type": "string"
},
"old_rank": {
"type": "string"
},
"new_rank": {
"type": "string"
}
},
"required": [
"id",
"time",
"type",
"user"
]
},
"properties": {},
"additionalProperties": false
} | o45174 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"discount_percentage": {
"description": "The percentage of discount",
"type": "number"
},
"purchase_items": {
"items": {
"properties": {
"item_name": {
"description": "The name of the item",
"type": "string"
},
"price": {
"description": "The price per item",
"type": "number"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
}
},
"required": [
"item_name",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"purchase_items"
],
"type": "object"
} | generate_invoice_965016b7 |
{
"id": "http://schemas.gdbots.io/json-schema/gdbots/analytics/tracker/keen/1-0-0.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"_schema": {
"type": "string",
"pattern": "^pbj:([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+):([0-9]+-[0-9]+-[0-9]+)$",
"default": "pbj:gdbots:analytics:tracker:keen:1-0-0"
},
"is_enabled": {
"type": "boolean"
},
"project_id": {
"type": "string",
"pattern": "^\\w+$"
},
"read_key": {
"type": "string",
"pattern": "^\\w+$"
},
"write_key": {
"type": "string",
"pattern": "^\\w+$"
}
},
"required": [
"_schema"
],
"additionalProperties": false
} | o42521 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "ZepyrusOutputSchema",
"description": "Output JSON schema for Zepyrus.",
"type": "object",
"properties": {
"version": {
"type": "integer",
"description": "Version number."
},
"locations": {
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"description": "Location information.",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"provide_resources": {
"description": "Mapping (resource -> value)",
"type": "object",
"additionalProperties": {
"description": "The arity of the required port.",
"type": "integer"
}
},
"repository": {
"type": "string"
},
"packages_installed": {
"type": "array",
"_uniqueItems": true,
"description": "Packages installed on the location.",
"items": {
"type": "string"
}
},
"cost": {
"type": "integer"
}
},
"required": [
"name",
"repository"
]
}
},
"components": {
"type": "array",
"_uniqueItems": true,
"description": "Deployed components.",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the component (used as an id)."
},
"type": {
"type": "string",
"description": "Type of the component."
},
"state": {
"type": "string"
},
"location": {
"type": "string"
}
},
"required": [
"name",
"type",
"state",
"location"
]
}
},
"bindings": {
"type": "array",
"_uniqueItems": true,
"description": "Bindings between components.",
"items": {
"type": "object",
"properties": {
"port": {
"type": "string"
},
"requirer": {
"type": "string"
},
"provider": {
"type": "string"
}
},
"required": [
"port",
"requirer",
"provider"
]
}
}
},
"required": [
"version"
]
} | o19114 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The topology",
"type": "object",
"properties": {
"project_id": {
"description": "Project UUID",
"type": "string",
"minLength": 36,
"maxLength": 36,
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
},
"type": {
"description": "Type of file. It's always topology",
"enum": [
"topology"
]
},
"auto_start": {
"description": "Start the topology when opened",
"type": "boolean"
},
"auto_close": {
"description": "Close the topology when no client is connected",
"type": "boolean"
},
"auto_open": {
"description": "Open the topology with GNS3",
"type": "boolean"
},
"revision": {
"description": "Version of the .gns3 specification.",
"type": "integer"
},
"version": {
"description": "Version of the GNS3 software which have update the file for the last time",
"type": "string"
},
"name": {
"type": "string",
"description": "Name of the project"
},
"scene_height": {
"type": "integer",
"description": "Height of the drawing area"
},
"scene_width": {
"type": "integer",
"description": "Width of the drawing area"
},
"zoom": {
"type": "integer",
"description": "Zoom of the drawing area"
},
"show_layers": {
"type": "boolean",
"description": "Show layers on the drawing area"
},
"snap_to_grid": {
"type": "boolean",
"description": "Snap to grid on the drawing area"
},
"show_grid": {
"type": "boolean",
"description": "Show the grid on the drawing area"
},
"grid_size": {
"type": "integer",
"description": "Grid size for the drawing area for nodes"
},
"drawing_grid_size": {
"type": "integer",
"description": "Grid size for the drawing area for drawings"
},
"show_interface_labels": {
"type": "boolean",
"description": "Show interface labels on the drawing area"
},
"supplier": {
"type": [
"object",
"null"
],
"description": "Supplier of the project",
"properties": {
"logo": {
"type": "string",
"description": "Path to the project supplier logo"
},
"url": {
"type": "string",
"description": "URL to the project supplier site"
}
}
},
"variables": {
"type": [
"array",
"null"
],
"description": "Variables required to run the project",
"items": {
"properties": {
"name": {
"type": "string",
"description": "Variable name"
},
"value": {
"type": "string",
"description": "Variable value"
}
},
"required": [
"name"
]
}
},
"topology": {
"description": "The topology content",
"type": "object",
"properties": {
"computes": {
"description": "Computes servers",
"type": "array",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Request validation to a GNS3 compute object instance",
"type": "object",
"properties": {
"compute_id": {
"description": "Server identifier",
"type": "string"
},
"name": {
"description": "Server name",
"type": "string"
},
"protocol": {
"description": "Server protocol",
"enum": [
"http",
"https"
]
},
"host": {
"description": "Server host",
"type": "string"
},
"port": {
"description": "Server port",
"type": "integer"
},
"user": {
"description": "User for authentication",
"type": [
"string",
"null"
]
},
"connected": {
"description": "Whether the controller is connected to the compute or not",
"type": "boolean"
},
"cpu_usage_percent": {
"description": "CPU usage of the compute. Read only",
"type": [
"number",
"null"
],
"maximum": 100,
"minimum": 0
},
"memory_usage_percent": {
"description": "RAM usage of the compute. Read only",
"type": [
"number",
"null"
],
"maximum": 100,
"minimum": 0
},
"last_error": {
"description": "Last error on the compute",
"type": [
"string",
"null"
]
},
"capabilities": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Get what a server support",
"type": "object",
"required": [
"version",
"node_types"
],
"properties": {
"version": {
"description": "Version number",
"type": [
"string",
"null"
]
},
"node_types": {
"type": "array",
"items": {
"description": "Type of node",
"enum": [
"cloud",
"nat",
"ethernet_hub",
"ethernet_switch",
"frame_relay_switch",
"atm_switch",
"docker",
"dynamips",
"vpcs",
"traceng",
"virtualbox",
"vmware",
"iou",
"qemu"
]
},
"description": "Node type supported by the compute"
},
"platform": {
"type": "string",
"description": "Platform where the compute is running"
}
},
"additionalProperties": false
}
},
"additionalProperties": false,
"required": [
"compute_id",
"protocol",
"host",
"port",
"name"
]
}
},
"drawings": {
"description": "Drawings elements",
"type": "array",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An drawing object",
"type": "object",
"properties": {
"drawing_id": {
"description": "Drawing UUID",
"type": "string",
"minLength": 36,
"maxLength": 36,
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
},
"project_id": {
"description": "Project UUID",
"type": "string",
"minLength": 36,
"maxLength": 36,
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
},
"x": {
"description": "X property",
"type": "integer"
},
"y": {
"description": "Y property",
"type": "integer"
},
"z": {
"description": "Z property",
"type": "integer"
},
"locked": {
"description": "Whether the element locked or not",
"type": "boolean"
},
"rotation": {
"description": "Rotation of the element",
"type": "integer",
"minimum": -359,
"maximum": 360
},
"svg": {
"description": "SVG content of the drawing",
"type": "string"
}
},
"additionalProperties": false
}
},
"links": {
"description": "Link elements",
"type": "array",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A link object",
"type": "object",
"properties": {
"link_id": {
"description": "Link UUID",
"type": "string",
"minLength": 36,
"maxLength": 36,
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
},
"project_id": {
"description": "Project UUID",
"type": "string",
"minLength": 36,
"maxLength": 36,
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
},
"nodes": {
"description": "List of the VMS",
"type": "array",
"items": {
"type": "object",
"properties": {
"node_id": {
"description": "Node UUID",
"type": "string",
"minLength": 36,
"maxLength": 36,
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
},
"adapter_number": {
"description": "Adapter number",
"type": "integer"
},
"port_number": {
"description": "Port number",
"type": "integer"
},
"label": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"style": {
"description": "SVG style attribute. Apply default style if null",
"type": [
"string",
"null"
]
},
"x": {
"description": "Relative X position of the label. Center it if null",
"type": [
"integer",
"null"
]
},
"y": {
"description": "Relative Y position of the label",
"type": "integer"
},
"rotation": {
"description": "Rotation of the label",
"type": "integer",
"minimum": -359,
"maximum": 360
}
},
"required": [
"text"
],
"additionalProperties": false
}
},
"required": [
"node_id",
"adapter_number",
"port_number"
],
"additionalProperties": false
}
},
"suspend": {
"type": "boolean",
"description": "Suspend the link"
},
"filters": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Packet filter. This allow to simulate latency and errors",
"type": "object"
},
"capturing": {
"description": "Read only property. True if a capture running on the link",
"type": "boolean"
},
"capture_file_name": {
"description": "Read only property. The name of the capture file if a capture is running",
"type": [
"string",
"null"
]
},
"capture_file_path": {
"description": "Read only property. The full path of the capture file if a capture is running",
"type": [
"string",
"null"
]
},
"capture_compute_id": {
"description": "Read only property. The compute identifier where a capture is running",
"type": [
"string",
"null"
]
},
"link_type": {
"description": "Type of link",
"enum": [
"ethernet",
"serial"
]
}
},
"additionalProperties": false
}
},
"nodes": {
"description": "Nodes elements",
"type": "array",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A node object",
"type": "object",
"properties": {
"compute_id": {
"description": "Compute identifier",
"type": "string"
},
"project_id": {
"description": "Project UUID",
"type": "string",
"minLength": 36,
"maxLength": 36,
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
},
"node_id": {
"description": "Node UUID",
"type": "string",
"minLength": 36,
"maxLength": 36,
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
},
"template_id": {
"description": "Template UUID from which the node has been created. Read only",
"type": [
"null",
"string"
],
"minLength": 36,
"maxLength": 36,
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
},
"node_type": {
"description": "Type of node",
"enum": [
"cloud",
"nat",
"ethernet_hub",
"ethernet_switch",
"frame_relay_switch",
"atm_switch",
"docker",
"dynamips",
"vpcs",
"traceng",
"virtualbox",
"vmware",
"iou",
"qemu"
]
},
"node_directory": {
"description": "Working directory of the node. Read only",
"type": [
"null",
"string"
]
},
"command_line": {
"description": "Command line use to start the node",
"type": [
"null",
"string"
]
},
"name": {
"description": "Node name",
"type": "string",
"minLength": 1
},
"console": {
"description": "Console TCP port",
"minimum": 1,
"maximum": 65535,
"type": [
"integer",
"null"
]
},
"console_host": {
"description": "Console host. Warning if the host is 0.0.0.0 or :: (listen on all interfaces) you need to use the same address you use to connect to the controller.",
"type": "string",
"minLength": 1
},
"console_type": {
"description": "Console type",
"enum": [
"vnc",
"telnet",
"http",
"https",
"spice",
"spice+agent",
"none",
null
]
},
"console_auto_start": {
"description": "Automatically start the console when the node has started",
"type": "boolean"
},
"properties": {
"description": "Properties specific to an emulator",
"type": "object"
},
"status": {
"description": "Status of the node",
"enum": [
"stopped",
"started",
"suspended"
]
},
"label": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"style": {
"description": "SVG style attribute. Apply default style if null",
"type": [
"string",
"null"
]
},
"x": {
"description": "Relative X position of the label. Center it if null",
"type": [
"integer",
"null"
]
},
"y": {
"description": "Relative Y position of the label",
"type": "integer"
},
"rotation": {
"description": "Rotation of the label",
"type": "integer",
"minimum": -359,
"maximum": 360
}
},
"required": [
"text"
],
"additionalProperties": false
},
"symbol": {
"description": "Symbol of the node",
"type": [
"string",
"null"
],
"minLength": 1
},
"width": {
"description": "Width of the node (Read only)",
"type": "integer"
},
"height": {
"description": "Height of the node (Read only)",
"type": "integer"
},
"x": {
"description": "X position of the node",
"type": "integer"
},
"y": {
"description": "Y position of the node",
"type": "integer"
},
"z": {
"description": "Z position of the node",
"type": "integer"
},
"locked": {
"description": "Whether the element locked or not",
"type": "boolean"
},
"port_name_format": {
"description": "Formating for port name {0} will be replace by port number",
"type": "string"
},
"port_segment_size": {
"description": "Size of the port segment",
"type": "integer",
"minimum": 0
},
"first_port_name": {
"description": "Name of the first port",
"type": [
"string",
"null"
]
},
"custom_adapters": {
"type": "array",
"default": [],
"items": {
"type": "object",
"description": "Custom properties",
"properties": {
"adapter_number": {
"type": "integer",
"description": "Adapter number"
},
"port_name": {
"type": "string",
"description": "Custom port name",
"minLength": 1
},
"adapter_type": {
"type": "string",
"description": "Custom adapter type",
"minLength": 1
},
"mac_address": {
"description": "Custom MAC address",
"type": "string",
"minLength": 1,
"pattern": "^([0-9a-fA-F]{2}[:]){5}([0-9a-fA-F]{2})$"
}
},
"additionalProperties": false,
"required": [
"adapter_number"
]
}
},
"ports": {
"description": "List of node ports READ only",
"type": "array",
"items": {
"type": "object",
"description": "A node port",
"properties": {
"name": {
"type": "string",
"description": "Port name"
},
"short_name": {
"type": "string",
"description": "Short version of port name"
},
"adapter_number": {
"type": "integer",
"description": "Adapter slot"
},
"adapter_type": {
"description": "Adapter type",
"type": [
"string",
"null"
],
"minLength": 1
},
"port_number": {
"type": "integer",
"description": "Port slot"
},
"link_type": {
"description": "Type of link",
"enum": [
"ethernet",
"serial"
]
},
"data_link_types": {
"type": "object",
"description": "Available PCAP types for capture",
"properties": {}
},
"mac_address": {
"description": "MAC address (if available)",
"type": [
"string",
"null"
],
"minLength": 1,
"pattern": "^([0-9a-fA-F]{2}[:]){5}([0-9a-fA-F]{2})$"
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false,
"required": [
"name",
"node_type",
"compute_id"
]
}
}
},
"required": [
"nodes",
"links",
"drawings",
"computes"
],
"additionalProperties": false
}
},
"required": [
"project_id",
"type",
"revision",
"version",
"name",
"topology"
],
"additionalProperties": false
} | o6090 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"properties": {
"bar": {
"type": "integer",
"maximum": 10
},
"baz": {
"type": "number",
"maximum": 10.5
},
"qux": {
"type": "string",
"maximum": 10
}
}
} | o25191 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Settings for project analysis by the Application Inspector",
"id": "https://json.schemastore.org/aiproj-1.1.json",
"properties": {
"$schema": {
"type": "string"
},
"Version": {
"type": "string",
"enum": ["1.0", "1.1"]
},
"BlackBoxSettings": {
"type": ["object", "null"],
"title": "Black box and autocheck options",
"additionalProperties": false,
"properties": {
"AdditionalHttpHeaders": {
"title": "Additional HTTP headers",
"description": "Dictionary of additional HTTP headers",
"type": ["array", "null"],
"items": {
"type": "object",
"properties": {
"Key": {
"title": "Header",
"type": "string"
},
"Value": {
"type": "string",
"title": "value"
}
}
}
},
"WhiteListedAddresses": {
"type": ["array", "null"],
"title": "Whitelisted addresses",
"description": "Addresses, that was added in white list",
"items": {
"type": "object",
"properties": {
"Address": {
"title": "Address",
"description": "Address value",
"type": "string"
},
"Format": {
"type": "string",
"title": "Address format",
"description": "Type of address",
"enum": ["Wildcard", "ExactMatch", "RegExp"]
}
}
}
},
"BlackListedAddresses": {
"type": ["array", "null"],
"title": "Blacklisted addresses",
"description": "Addresses, that was added in black list",
"items": {
"type": "object",
"properties": {
"Address": {
"title": "Address",
"description": "Address value",
"type": "string"
},
"Format": {
"type": "string",
"title": "Address format",
"description": "Type of address",
"enum": ["Wildcard", "ExactMatch", "RegExp"]
}
}
}
},
"Authentication": {
"oneOf": [
{
"type": "object",
"required": ["Cookie", "Type"],
"properties": {
"Type": {
"enum": ["RawCookie"]
},
"Cookie": {
"type": "object"
}
}
},
{
"type": "object",
"required": ["Form", "Type"],
"properties": {
"Type": {
"enum": ["Form"]
},
"Form": {
"type": "object"
}
}
},
{
"type": "object",
"required": ["Http", "Type"],
"properties": {
"Type": {
"enum": ["Http"]
},
"Http": {
"type": "object"
}
}
},
{
"type": "object",
"required": ["Type"],
"properties": {
"Type": {
"enum": ["None"]
}
}
},
{
"type": "null"
}
],
"type": ["object", "null"],
"title": "Authentication options",
"additionalProperties": false,
"properties": {
"Cookie": {
"type": ["object", "null"],
"title": "Cookie options",
"description": "Cookie authentication options",
"required": ["Cookie", "ValidationAddress", "ValidationTemplate"],
"additionalProperties": false,
"properties": {
"Cookie": {
"title": "Cookie",
"type": "string"
},
"ValidationAddress": {
"title": "Validation address",
"description": "Verification address",
"type": "string"
},
"ValidationTemplate": {
"title": "Validation template",
"description": "String to search for",
"type": "string"
}
}
},
"Form": {
"type": ["object", "null"],
"title": "Form",
"description": "Form-based authentication options",
"additionalProperties": false,
"properties": {
"FormDetection": {
"type": "string",
"title": "Detection",
"description": "Type of form authentication detection",
"enum": ["Auto", "Manual"]
},
"FormAddress": {
"title": "Sign-in form URL"
},
"FormXPath": {
"title": "Sign-in form XPath"
},
"Login": {
"title": "User"
},
"LoginKey": {
"title": "User identifier"
},
"Password": {
"title": "Password"
},
"PasswordKey": {
"title": "Password identifier"
},
"ValidationTemplate": {
"title": "Validation template",
"description": "String to search for"
}
},
"anyOf": [
{
"properties": {
"FormDetection": {
"enum": ["Auto"]
},
"FormAddress": {
"type": ["string"]
},
"FormXPath": {
"type": ["null", "string"]
},
"Login": {
"type": "string"
},
"LoginKey": {
"type": ["null", "string"]
},
"Password": {
"type": "string"
},
"PasswordKey": {
"type": ["null", "string"]
},
"ValidationTemplate": {
"type": ["string"]
}
},
"required": [
"FormDetection",
"Login",
"Password",
"FormAddress",
"ValidationTemplate"
]
},
{
"properties": {
"FormDetection": {
"enum": ["Manual"]
},
"FormAddress": {
"type": ["string"]
},
"FormXPath": {
"type": ["string"]
},
"Login": {
"type": "string"
},
"LoginKey": {
"type": ["string"]
},
"Password": {
"type": "string"
},
"PasswordKey": {
"type": ["string"]
},
"ValidationTemplate": {
"type": ["string"]
}
},
"required": [
"FormDetection",
"Login",
"Password",
"FormAddress",
"ValidationTemplate",
"LoginKey",
"PasswordKey",
"FormXPath"
]
}
]
},
"Http": {
"type": ["object", "null"],
"title": "Http",
"description": "HTTP Basic authentication options",
"additionalProperties": false,
"required": ["Login", "Password", "ValidationAddress"],
"properties": {
"Login": {
"title": "User",
"type": "string"
},
"Password": {
"title": "Password",
"type": "string"
},
"ValidationAddress": {
"title": "Validation address",
"type": "string"
}
}
},
"Type": {
"title": "Type of authentication",
"type": "string",
"enum": ["Form", "Http", "RawCookie", "None"]
}
}
},
"Level": {
"title": "Search mode",
"type": "string",
"enum": ["None", "Fast", "Full", "Normal"]
},
"ProxySettings": {
"type": ["object", "null"],
"title": "Proxy settings",
"description": "Proxy server settings",
"additionalProperties": false,
"properties": {
"Enabled": {
"title": "Enabled",
"type": "boolean"
},
"Host": {
"title": "Address",
"type": ["null", "string"]
},
"Login": {
"title": "User",
"type": ["null", "string"]
},
"Password": {
"title": "Password",
"type": ["null", "string"]
},
"Port": {
"title": "Port",
"type": "integer"
},
"Type": {
"title": "Type of proxy",
"type": "string",
"enum": ["Http", "Socks4", "Socks5"]
}
}
},
"RunAutocheckAfterScan": {
"title": "Run autocheck",
"description": "Autocheck vulnerabilities after scanning",
"type": "boolean"
},
"ScanScope": {
"title": "Scan scope",
"type": "string",
"enum": ["Domain", "Folder", "Path"]
},
"Site": {
"title": "Website address",
"type": "string"
},
"SslCheck": {
"title": "Check ssl connection",
"type": "boolean"
}
}
},
"CustomParameters": {
"title": "Custom parameters",
"description": "Custom kernel startup parameters",
"type": ["null", "string"]
},
"DotNetSettings": {
"type": ["object", "null"],
"title": ".NET scan options",
"additionalProperties": false,
"properties": {
"ProjectType": {
"title": "Type of application",
"type": "string",
"enum": ["None", "Solution", "WebSite"]
},
"SolutionFile": {
"title": "Solution file",
"description": "Path to a solution or project",
"type": ["null", "string"]
}
}
},
"JavaSettings": {
"type": ["object", "null"],
"title": "Java scan options",
"additionalProperties": false,
"properties": {
"Parameters": {
"title": "JVM start options",
"type": ["null", "string"]
},
"UnpackUserPackages": {
"title": "Unpack custom JAR files",
"type": "boolean"
},
"UserPackagePrefixes": {
"title": "Prefixes of custom packages",
"type": ["null", "string"]
},
"Version": {
"title": "JDK version",
"type": "string",
"enum": ["v1_8", "v1_11"]
}
}
},
"MailingProjectSettings": {
"type": ["object", "null"],
"title": "Mail settings",
"description": "Report mailing options",
"additionalProperties": false,
"properties": {
"Enabled": {
"title": "Send a report by email after scanning",
"type": "boolean"
},
"MailProfileName": {
"title": "Email profile name",
"type": ["null", "string"]
},
"EmailRecipients": {
"title": "List of recipients",
"type": "array",
"items": {
"type": "string",
"format": "email"
}
}
},
"oneOf": [
{
"type": "object",
"properties": {
"Enabled": {
"enum": [true]
},
"MailProfileName": {
"type": "string",
"minLength": 1
},
"EmailRecipients": {
"type": "array",
"minItems": 1,
"maxItems": 10
}
},
"required": ["Enabled", "MailProfileName", "EmailRecipients"]
},
{
"properties": {
"Enabled": {
"enum": [false]
},
"MailProfileName": {
"type": ["null", "string"]
},
"EmailRecipients": {
"type": "array",
"minItems": 0,
"maxItems": 10
}
},
"required": ["Enabled"]
}
]
},
"ProgrammingLanguage": {
"title": "Active scanning language",
"type": "string",
"enum": [
"Java",
"CSharp",
"VB",
"Php",
"JavaScript",
"Python",
"ObjectiveC",
"Swift",
"CAndCPlusPlus",
"Go",
"Kotlin",
"Sql"
]
},
"ProjectName": {
"title": "Project name",
"type": "string"
},
"ScanModules": {
"title": "Enabled modules",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string",
"enum": [
"Configuration",
"Components",
"BlackBox",
"DataFlowAnalysis",
"PatternMatching",
"VulnerableSourceCode"
]
}
},
"SkipGitIgnoreFiles": {
"title": "Skip .gitignore files",
"description": "Exclude from scanning the files from the .gitignore file",
"type": "boolean"
},
"UsePublicAnalysisMethod": {
"title": "Use public analysis method",
"description": "Search from available public and protected methods",
"type": "boolean"
},
"UseSastRules": {
"title": "Use SAST rules",
"description": "Enable SAST Analysis rules",
"type": "boolean"
},
"UseCustomPmRules": {
"title": "Use custom PM rules",
"description": "Enable custom PM rules",
"type": "boolean"
},
"UseSecurityPolicies": {
"title": "Use security policies",
"description": "Check for compliance with the security policy",
"type": "boolean"
},
"DownloadDependencies": {
"title": "Download dependencies",
"type": ["null", "boolean"]
}
},
"required": ["ProjectName", "ProgrammingLanguage", "ScanModules"],
"title": "aiproj",
"type": "object"
}
| aiproj-1 |
{
"description": "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.",
"properties": {
"field": {
"description": "The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\n\nExamples:\n \"name\" - the field \"name\" on the current resource\n \"items[0].name\" - the field \"name\" on the first array entry in \"items\"",
"type": [
"string",
"null"
]
},
"message": {
"description": "A human-readable description of the cause of the error. This field may be presented as-is to a reader.",
"type": [
"string",
"null"
]
},
"reason": {
"description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
"type": [
"string",
"null"
]
}
},
"type": "object"
} | kb_1023_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Theme",
"description": "Theme objects",
"type": "object",
"properties": {
"name": {
"description": "Name of the theme",
"type": "string"
},
"author": {
"description": "Author of the theme",
"type": "string"
},
"description": {
"description": "Description of the theme",
"type": "string"
},
"body": {
"type": "array"
},
"main": {
"type": "array"
},
"diffHeader": {
"type": "array"
},
"diffBody": {
"type": "array"
}
}
} | o46527 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Blockstack Token File",
"description": "A file containing Blockstack profile & key delegation JWTs",
"type": "object",
"properties": {
"version": {
"description": "The unique identifier for a product",
"type": "number",
"minimum": 0
},
"profile": {
"description": "User profile",
"type": "object",
"properties": {
"header": {},
"payload": {
"type": "object",
"properties": {}
},
"signature": {}
},
"required": [
"header",
"payload",
"signature"
]
},
"keys": {
"type": "object",
"minimum": 1
}
},
"required": [
"version",
"profile",
"keys"
]
} | o26646 |
{
"properties": {
"point1": {
"properties": {
"latitude": {
"description": "The latitude of the first point",
"type": "number"
},
"longitude": {
"description": "The longitude of the first point",
"type": "number"
}
},
"type": "object"
},
"point2": {
"properties": {
"latitude": {
"description": "The latitude of the second point",
"type": "number"
},
"longitude": {
"description": "The longitude of the second point",
"type": "number"
}
},
"type": "object"
}
},
"required": [
"point1",
"point2"
],
"type": "object"
} | calculate_distance_3cc26a6f |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BOLTS part schema",
"description": "Configuration for the BOLTS importer to import part information",
"bolts": {
"type": "object",
"description": "A dictionary of BOLTS data",
"patternProperties": {
"^([a-zA-Z][0-9a-zA-Z]*)$": {
"oneOf": [
{
"$ref": "#/standard"
},
{
"$ref": "#/name"
}
]
}
}
},
"standard": {
"type": "object",
"description": "The information necessary for BOLTS to look up information about a standard",
"properties": {
"standard": {
"type": "string",
"pattern": "^[a-zA-Z0-9_]*$",
"description": "The BOLTS id of the standard"
},
"free": {
"type": "object",
"description": "Values for the free parameters"
},
"quantity": {
"type": "number",
"description": "Number of instances of this object",
"default": 1
},
"optional": {
"type": "boolean",
"description": "If this object is strictly required",
"default": false
}
},
"required": [
"standard"
],
"additionalProperties": false
},
"name": {
"type": "object",
"description": "The information necessary for BOLTS to look up information about a name",
"properties": {
"name": {
"type": "string",
"pattern": "^[a-zA-Z0-9_]*$",
"description": "The BOLTS id of the name"
},
"free": {
"type": "object",
"description": "Values for the free parameters"
},
"quantity": {
"type": "number",
"description": "Number of instances of this object",
"default": 1
},
"optional": {
"type": "boolean",
"description": "If this object is strictly required",
"default": false
}
},
"required": [
"name"
],
"additionalProperties": false
},
"properties": {
"bolts": {
"$ref": "#/bolts"
},
"standard": {
"$ref": "#/standard"
},
"name": {
"$ref": "#/name"
}
},
"required": [
"bolts",
"standard",
"name"
]
} | o53033 |
{
"additionalProperties": false,
"properties": {
"autoUpdateRefreshFrequency": {
"minimum": 1,
"type": "number"
},
"autoUpdateRequestedInterval": {
"minimum": 1,
"type": "number"
}
},
"required": [
"autoUpdateRefreshFrequency",
"autoUpdateRequestedInterval"
],
"type": "object"
} | o27844 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "memote Results Schema",
"description": "Validate the nested memote result object.",
"type": "object",
"required": [
"meta",
"report"
],
"properties": {
"meta": {
"type": "object",
"required": [
"platform",
"release",
"python",
"timestamp",
"commit_author",
"commit_hash",
"packages"
],
"properties": {
"platform": {
"type": "string"
},
"release": {
"type": "string"
},
"python": {
"type": "string"
},
"timestamp": {
"type": "number"
},
"commit_author": {
"type": "string"
},
"commit_hash": {
"type": "string"
},
"packages": {
"type": "object"
}
},
"additionalProperties": false
},
"report": {
"type": "object",
"patternProperties": {
"^test_[a-z_]+$": {
"$ref": "#/definitions/testModule"
}
}
}
},
"additionalProperties": false,
"definitions": {
"testModule": {
"type": "object",
"patternProperties": {
"^test_[a-z_]+$": {
"$ref": "#/definitions/testCase"
}
}
},
"testCase": {
"type": "object",
"required": [
"title",
"summary",
"message",
"data",
"type",
"score",
"result",
"duration"
],
"properties": {
"title": {
"type": "string"
},
"summary": {
"type": "string"
},
"message": {
"type": "string"
},
"data": {
"type": "string"
},
"type": {
"type": "string"
},
"score": {
"type": "number"
},
"result": {
"type": "string"
},
"duration": {
"type": "number"
}
},
"additionalProperties": false
}
}
}
| o65486 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"additionalProperties": false,
"definitions": {
"trait_additional_properties_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": {},
"description": "A grab-bag object for non-validatable data.",
"title": "Has additional properties",
"type": "object"
},
"trait_publication_pitch_event_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Trait that represents an update event for a pitch to a publication. In the Arc ecosystem, this data is generated by WebSked.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/trait_additional_properties_json"
},
"edition_id": {
"description": "The ID of the publication edition that this pitch targets.",
"type": "string"
},
"edition_time": {
"_format": "date-time",
"description": "The time of the publication edition that this pitch targets.",
"type": "string"
},
"note": {
"description": "Optional note associated with this update.",
"type": "string"
},
"status": {
"description": "The current status of the pitch.",
"pattern": "^([a-z]|[ ])*$",
"type": "string"
},
"time": {
"_format": "date-time",
"description": "The time of this update.",
"type": "string"
},
"user_id": {
"description": "The ID of the user who made this update.",
"type": "string"
}
},
"title": "Publication pitch event",
"type": "object"
}
},
"description": "Trait that represents a pitch to a publication. In the Arc ecosystem, this data is generated by WebSked.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/trait_additional_properties_json"
},
"creation_event": {
"$ref": "#/definitions/trait_publication_pitch_event_json"
},
"latest_event": {
"$ref": "#/definitions/trait_publication_pitch_event_json"
},
"publication_id": {
"description": "The ID of the publication that this pitch targets.",
"type": "string"
}
},
"title": "Publication pitch",
"type": "object"
} | wp_79_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "File schema",
"description": "Description of a file, that is attached to a step",
"file": {
"type": "object",
"description": "description of a file",
"properties": {
"path": {
"type": "string",
"description": "Path of the file"
}
},
"required": [
"path"
],
"additionalProperties": false
},
"properties": {
"file": {
"$ref": "#/file"
}
},
"required": [
"file"
]
} | o53034 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.10.3/traits/trait_content_restrictions.json",
"title": "Content Restrictions",
"description": "Trait that applies contains the content restrictions of an ANS object.",
"type": "object",
"properties": {
"content_code": {
"type": "string",
"description": "The content restriction code/level/flag associated with the ANS object"
},
"embargo": {
"description": "Embargo configuration to enforce publishing restrictions. Embargoed content must not go live.",
"type": "object",
"additionalProperties": false,
"properties": {
"active": {
"type": "boolean",
"description": "The boolean flag to indicate if the embargo is active or not. If this field is false, ignore the embargo."
},
"end_time": {
"type": "string",
"format": "date-time",
"description": "An optional end time for the embargo to indicate when it ends. When it's not defined, it means the embargo keeps applying. The end time should be ignored if active flag is false."
},
"description": {
"description": "An optional description for the embargo.",
"type": "string"
}
},
"required": [
"active"
]
}
}
} | o85667 |
{
"$schema": "http://json-schema.org/draft-07/schema",
"title": "App Shell Target",
"description": "App Shell target options for Build Facade.",
"type": "object",
"properties": {
"browserTarget": {
"type": "string",
"description": "Target to build.",
"pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$"
},
"serverTarget": {
"type": "string",
"description": "Server target to use for rendering the app shell.",
"pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$"
},
"appModuleBundle": {
"type": "string",
"description": "Script that exports the Server AppModule to render. This should be the main JavaScript outputted by the server target. By default we will resolve the outputPath of the serverTarget and find a bundle named 'main' in it (whether or not there's a hash tag)."
},
"route": {
"type": "string",
"description": "The route to render.",
"default": "/"
},
"inputIndexPath": {
"type": "string",
"description": "The input path for the index.html file. By default uses the output index.html of the browser target."
},
"outputIndexPath": {
"type": "string",
"description": "The output path of the index.html file. By default will overwrite the input file."
}
},
"additionalProperties": false,
"required": [
"browserTarget",
"serverTarget"
]
} | o58442 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"oneOf": [
{
"items": {
"allOf": [
{
"$ref": "#/definitions/file_common"
},
{
"$ref": "#/definitions/file_not_extracted"
}
]
}
},
{
"items": {
"allOf": [
{
"$ref": "#/definitions/file_common"
},
{
"$ref": "#/definitions/file_extracted"
}
]
}
}
],
"definitions": {
"file_common": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
}
}
},
"file_not_extracted": {
"required": [
"type"
],
"properties": {
"type": {
"enum": [
"file",
"dir",
"link"
]
}
},
"not": {
"$ref": "#/definitions/file_extracted"
}
},
"file_extracted": {
"required": [
"user",
"group"
],
"properties": {
"user": {
"type": "string",
"minLength": 1
},
"group": {
"type": "string",
"minLength": 1
}
},
"oneOf": [
{
"$ref": "#/definitions/file_extracted_file"
},
{
"$ref": "#/definitions/file_extracted_dir"
},
{
"$ref": "#/definitions/file_extracted_link"
}
]
},
"file_extracted_file": {
"required": [
"type",
"size",
"mode"
],
"properties": {
"type": {
"enum": [
"file"
]
},
"size": {
"type": "integer",
"minimum": 0
},
"mode": {
"type": "string",
"pattern": "^[0-4]?[0-7]{3}$"
}
}
},
"file_extracted_dir": {
"required": [
"type",
"size",
"mode",
"files"
],
"properties": {
"type": {
"enum": [
"dir"
]
},
"size": {
"type": "integer",
"minimum": 0
},
"mode": {
"type": "string",
"pattern": "^[0-4]?[0-7]{3}$"
},
"files": {
"type": "integer",
"minimum": 1
}
}
},
"file_extracted_link": {
"required": [
"type"
],
"properties": {
"type": {
"enum": [
"link"
]
}
}
}
}
} | o65942 |
{
"$defs": {
"datatype": {
"enum": [
"str",
"list",
"dict",
"bool",
"int",
"float",
"path",
"raw",
"jsonarg",
"json",
"bytes",
"bits"
],
"type": "string"
},
"deprecated_alias": {
"properties": {
"collection_name": {
"type": "string"
},
"date": {
"type": "string"
},
"name": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": ["name"],
"type": "object"
},
"entry_point": {
"additionalProperties": false,
"properties": {
"author": {
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"description": {
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"options": {
"additionalProperties": {
"$ref": "#/$defs/option"
},
"type": "object"
},
"seealso": {
"items": {
"oneOf": [
{
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"module": {
"type": "string"
}
},
"required": ["module"],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"plugin": {
"type": "string"
},
"plugin_type": {
"type": "string"
}
},
"required": ["plugin", "plugin_type"],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"ref": {
"type": "string"
}
},
"required": ["description", "ref"],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"link": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": ["description", "link", "name"],
"type": "object"
}
]
},
"type": "array"
},
"short_description": {
"type": "string"
},
"version_added": {
"type": "string"
}
},
"required": ["options"],
"title": "Entry Point",
"type": "object"
},
"option": {
"additionalProperties": false,
"aliases": {
"items": {
"type": "string"
},
"type": "array"
},
"apply_defaults": {
"type": "string"
},
"deprecated_aliases": {
"items": {
"$ref": "#/$defs/deprecated_alias"
},
"type": "array"
},
"markdownDescription": "xxx",
"options": {
"$ref": "#/$defs/option"
},
"properties": {
"choices": {
"type": "array"
},
"default": {
"default": "None"
},
"description": {
"description": "Detailed explanation of what this option does. It should be written in full sentences.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"elements": {
"$ref": "#/$defs/datatype"
},
"fallback": {
"default": "None",
"type": "string"
},
"no_log": {
"default": false,
"type": "boolean"
},
"option-name": {
"description": "The name of the option/argument.",
"type": "string"
},
"options": {
"additionalProperties": {
"$ref": "#/$defs/option"
},
"type": "object"
},
"required": {
"default": false,
"type": "boolean"
},
"type": {
"$ref": "#/$defs/datatype",
"markdownDescription": "See [argument-spec](https://docs.ansible.com/ansible/latest/dev_guide/developing_program_flow_modules.html#argument-spec"
},
"version_added": {
"type": "string"
}
},
"removed_at_date": {
"type": "string"
},
"removed_from_collection": {
"type": "string"
},
"removed_in_version": {
"type": "string"
},
"title": "Option"
}
},
"$id": "https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/role-arg-spec.json",
"$schema": "http://json-schema.org/draft-07/schema",
"additionalProperties": false,
"examples": ["meta/argument_specs.yml"],
"markdownDescription": "Add entry point, usually `main`.\nSee [role-argument-validation](https://docs.ansible.com/ansible/latest/user_guide/playbooks_reuse_roles.html#role-argument-validation)",
"properties": {
"argument_specs": {
"additionalProperties": {
"$ref": "#/$defs/entry_point"
},
"markdownDescription": "Add entry point, usually `main`.\nSee [role-argument-validation](https://docs.ansible.com/ansible/latest/user_guide/playbooks_reuse_roles.html#role-argument-validation)"
}
},
"title": "Ansible Role Argument Specs Schema"
}
| role-arg-spec |
{
"properties": {
"dimensions": {
"properties": {
"height": {
"description": "The height of a cylinder",
"type": "number"
},
"radius": {
"description": "The radius of a sphere",
"type": "number"
},
"radius_base": {
"description": "The radius of the base for cylinder",
"type": "number"
},
"side_length": {
"description": "The length of a side for cube",
"type": "number"
}
},
"required": [
"radius",
"side_length",
"radius_base",
"height"
],
"type": "object"
},
"object_type": {
"description": "The type of 3D object (e.g. sphere, cube, cylinder)",
"type": "string"
}
},
"required": [
"object_type",
"dimensions"
],
"type": "object"
} | calculate_volume_78b79f91 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"base_path",
"details",
"document_type",
"publishing_app",
"rendering_app",
"routes",
"schema_name",
"title"
],
"additionalProperties": false,
"properties": {
"access_limited": {
"$ref": "#/definitions/access_limited"
},
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"auth_bypass_ids": {
"description": "A list of ids that will allow access to this item for non-authenticated users",
"$ref": "#/definitions/guid_list"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"bulk_publishing": {
"type": "boolean"
},
"change_note": {
"type": [
"null",
"string"
]
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"type": "string",
"enum": [
"person"
]
},
"first_published_at": {
"$ref": "#/definitions/first_published_at"
},
"last_edited_at": {
"description": "Last time when the content received a major or minor update.",
"type": "string",
"format": "date-time"
},
"links": {
"type": "object",
"additionalProperties": false,
"properties": {
"policy_areas": {
"description": "A largely deprecated tag currently only used to power email alerts.",
"$ref": "#/definitions/guid_list"
}
}
},
"locale": {
"$ref": "#/definitions/locale"
},
"need_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"type": "string",
"enum": [
"alpha",
"beta",
"live"
]
},
"previous_version": {
"type": "string"
},
"public_updated_at": {
"$ref": "#/definitions/public_updated_at"
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"redirects": {
"type": "array",
"additionalItems": false,
"items": {}
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"routes": {
"$ref": "#/definitions/routes"
},
"schema_name": {
"type": "string",
"enum": [
"person"
]
},
"title": {
"$ref": "#/definitions/title"
},
"update_type": {
"$ref": "#/definitions/update_type"
}
},
"definitions": {
"description": {
"type": "string"
},
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"type": "string",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$"
},
"access_limited": {
"type": "object",
"additionalProperties": false,
"properties": {
"auth_bypass_ids": {
"description": "Deprecated: auth_bypass_ids should be sent as a separate field",
"$ref": "#/definitions/guid_list"
},
"organisations": {
"description": "A list of organisation content ids permitted access to this item",
"$ref": "#/definitions/guid_list"
},
"users": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"analytics_identifier": {
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations.",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"body_html_and_govspeak": {
"description": "The main content provided as HTML with the govspeak markdown it's rendered from",
"anyOf": [
{
"$ref": "#/definitions/multiple_content_types"
}
]
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"type": "object",
"additionalProperties": false,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"body": {
"$ref": "#/definitions/body_html_and_govspeak"
},
"full_name": {
"description": "Name of the person, including titles and any letters, eg: 'Sir Lord Snoopy DOG'",
"type": "string"
},
"image": {
"$ref": "#/definitions/image"
},
"minister": {
"type": "boolean"
},
"privy_counsellor": {
"type": "boolean"
}
}
},
"first_published_at": {
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string",
"format": "date-time"
},
"guid": {
"type": "string",
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$"
},
"guid_list": {
"type": "array",
"items": {
"$ref": "#/definitions/guid"
},
"_uniqueItems": true
},
"image": {
"type": "object",
"required": [
"url"
],
"additionalProperties": false,
"properties": {
"alt_text": {
"type": "string"
},
"caption": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"credit": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"high_resolution_url": {
"description": "URL to a high resolution version of the image, for use by third parties such as Twitter, Facebook or Slack. Used by the machine readable metadata component. Don't use this on user-facing web pages, as it might be very large.",
"type": "string",
"format": "uri"
},
"url": {
"description": "URL to the image. The image should be in a suitable resolution for display on the page.",
"type": "string",
"format": "uri"
}
}
},
"locale": {
"type": "string",
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
]
},
"multiple_content_types": {
"type": "array",
"items": {
"type": "object",
"required": [
"content_type",
"content"
],
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"content_type": {
"type": "string"
}
}
}
},
"public_updated_at": {
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string",
"format": "date-time"
},
"publishing_app_name": {
"description": "The application that published this item.",
"type": "string",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
]
},
"rendering_app": {
"description": "The application that renders this item.",
"type": "string",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
]
},
"route": {
"type": "object",
"required": [
"path",
"type"
],
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"type": {
"enum": [
"prefix",
"exact"
]
}
}
},
"routes": {
"type": "array",
"items": {
"$ref": "#/definitions/route"
},
"minItems": 1
},
"title": {
"type": "string"
},
"update_type": {
"enum": [
"major",
"minor",
"republish"
]
}
}
} | o21318 |
{
"_comment": "This Spec is for Phase 1!! Most updated version is at https://github.com/reTHINK-project/specs/tree/master/schemas",
"properties": {},
"type": "object"
} | o69753 |
{
"$id": "https://json.schemastore.org/dein.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"definitions": {
"Plugin": {
"title": "Pattern for a definition of vim plugin",
"type": "object",
"required": ["repo"],
"additionalProperties": false,
"properties": {
"repo": {
"title": "repository. ",
"description": "The repository URI or local repository directory path.",
"oneOf": [
{
"$ref": "#/definitions/Url"
},
{
"$ref": "#/definitions/Path"
},
{
"$ref": "#/definitions/repo-string-pattern"
}
],
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L118"
}
}
},
"augroup": {
"description": "An augroup name that the plugin uses for |VimEnter| or |GUIEnter| autocmd events.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L694"
}
}
},
"build": {
"description": "Specify the build script. This command is executed by |system()| in the plugin runtimepath. Note: In previous versions of dein, build could also be of type dictionary, but that is now deprecated. Please use |dein-options-hook_post_update| instead.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L699"
}
}
},
"depends": {
"description": "Specify a list of plugins a plugin depends on. List items are '{plugin-name}'. Those specified in the list are NOT installed automatically. Note: The loading order is not guaranteed in non lazy plugins.",
"$ref": "#/definitions/ArrayOrString",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L719"
}
}
},
"frozen": {
"description": "If set to v:true, dein doesn't update it automatically. It is useful for outdated plugins that can no longer be updated.",
"$ref": "#/definitions/Boolean",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L726"
}
}
},
"ftplugin": {
"description": "'_' key is executed after all ftplugin. '{filetype}' key is executed {filetype} ftplugin.",
"type": "object",
"additionalProperties": false,
"properties": {
"_": {
"title": "all filetypes",
"description": "'_' key is executed after all ftplugin.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L733"
}
}
}
},
"patternProperties": {
"^[0-9a-zA-Z].+$": {
"title": "filetype",
"description": "'{filetype}' key is executed {filetype} ftplugin.\nYou can define multiple filetypes by '{filetype1}_{filetype2}' key.\n'b:undo_ftplugin' is defined automatically.",
"type": "string"
}
},
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L731"
}
}
},
"if": {
"description": "If set to v:false, dein doesn't register the plugin, i.e. the plugin will be disabled. If it is String, dein will eval it. If you don't set it, dein will register (enable) the plugin",
"anyOf": [
{
"type": "boolean"
},
{
"type": "integer"
},
{
"type": "string"
}
],
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L738"
}
}
},
"lazy": {
"description": "If set to v:true, dein doesn't add the path to 'runtimepath' automatically. If you don't set it, dein will set it automatically when the conditions are met. Note: You should not specify the plugins which have no 'plugin/' directory as lazy load plugins. It is meaningless and just increases the overhead. You can get the no meaning lazy plugins by |dein#check_lazy_plugins()|.",
"anyOf": [
{
"type": "boolean"
},
{
"type": "integer"
}
],
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L746"
}
}
},
"merged": {
"description": "If set to v:false, dein doesn't merge the plugin directory. It is useful for the plugin files conflicts.",
"$ref": "#/definitions/Boolean",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L757"
}
}
},
"merge_ftdetect": {
"description": "If set to v:true, dein merge the plugin \"ftdetect\" directory. It is useful to enable file detection when lazy loaded plugin. Note: It does not work if ftdetect script depends on lazy plugin functions.",
"$ref": "#/definitions/Boolean",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L764"
}
}
},
"name": {
"description": "Specify the name of the plugin. This is used for dein management and other functions. If it is omitted, the tail of the repository name will be used. Note: Must be unique across the all plugin. If the plugin name conflicts with another plugin, dein will overwrite the previous settings with the new one. If the repo tail is bound to conflict, you can set the 'name' option manually to prevent overwriting an existing plugin setting.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L771"
}
}
},
"normalized_name": {
"description": "Specify the normalized name of the plugin. If omitted, dein will normalize the tail of the repository name. Note: Must be unique across all plugins.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L782"
}
}
},
"on_cmd": {
"description": "If it is matched to the executed command, dein will call |dein#source()|.",
"$ref": "#/definitions/ArrayOrString",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L796"
}
}
},
"on_event": {
"description": "dein will call |dein#source()| on the events.",
"$ref": "#/definitions/ArrayOrString",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L801"
}
}
},
"on_func": {
"description": "If it is matched to the called function, dein will call |dein#source()|.",
"$ref": "#/definitions/ArrayOrString",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L805"
}
}
},
"on_ft": {
"description": "If it is matched to 'filetype', dein will call |dein#source()|.",
"$ref": "#/definitions/ArrayOrString",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L811"
}
}
},
"on_if": {
"description": "If it is evaluated and it is non-zero, dein will call|dein#source()|.The default evaluate timings are 'BufRead', 'BufNewFile','VimEnter' and 'FileType'.If |dein-options-on_event| exists, it is evaluated when|dein-options-on_event|.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L816"
}
}
},
"on_lua": {
"description": "If it is matched to the required lua module root, dein will call |dein#source()|. Note: It is for neovim only. Note: It does not work for neovim standard modules.",
"$ref": "#/definitions/ArrayOrString",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L829"
}
}
},
"on_map": {
"description": "If it is the Dictionary, the key is {mode} and the items are{mapping} or [{mapping1}, {mapping2}, ...].If it is the List, the items are {mapping} or [{mode},{mapping1}, [{mapping2}, ...]].If {mode} is omitted, 'nx' is used.",
"oneOf": [
{
"$ref": "#/definitions/on_map-dict"
},
{
"$ref": "#/definitions/on_map-array"
},
{
"$ref": "#/definitions/on_map-string"
}
],
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L836"
}
}
},
"on_path": {
"description": "If set to '.*', dein will call |dein#source()| on editing allfiles. Otherwise, dein will call |dein#source()| if thebuffer name is matched to the string pattern.Note: It is useful for explorer behavior plugins.",
"$ref": "#/definitions/ArrayOrString",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L874"
}
}
},
"on_source": {
"description": "If set to '.*', dein will call |dein#source()| on editing allfiles. Otherwise, dein will call |dein#source()| if thebuffer name is matched to the string pattern.Note: It is useful for explorer behavior plugins. ",
"$ref": "#/definitions/ArrayOrString",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L881"
}
}
},
"overwrite": {
"description": "If set to v:true, dein overwrite existing plugin config when |dein#add()|.",
"$ref": "#/definitions/Boolean",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L886"
}
}
},
"path": {
"description": "Specify the plugin downloaded path.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L891"
}
}
},
"rev": {
"description": "Specify a revision number or branch/tag name. If it is '*' in 'git' type, dein will use latest released tag.You can specify the wildcards like '0.*'.Note: If the type is 'raw', rev must be hash number.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L895"
}
}
},
"rtp": {
"description": "Specify the runtime path. You can use it when the repository has the Vim plugin in a subdirectory.For example: https://github.com/rstacruz/sparkup If it is empty string, dein will not add the path to'runtimepath'",
"type": "string",
"default": "vim",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L906"
}
}
},
"script_type": {
"description": "Specify the script type. It is useful for non-official categorized plugins. For example: 'indent', 'plugin', 'ftplugin', ... Note: You must not specify it for categorized plugins.",
"type": "string",
"enum": ["indent", "plugin", "colors", "ftplugin"],
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L919"
}
}
},
"timeout": {
"description": "The time of timeout seconds when updating/installing plugins. If omit it, |g:dein#install_process_timeout| will be used.",
"type": "integer",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L935"
}
}
},
"trusted": {
"description": "If set to v:true, dein will load the plugin in 'sudo' mode. If you don't set it, dein won't load it.",
"$ref": "#/definitions/Boolean",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L940"
}
}
},
"type": {
"description": "Specify the repository type. If it is omitted, a guess is made based on {repository}.",
"type": "string",
"enum": ["none", "raw", "git"],
"x-taplo": {
"docs": {
"enumValues": [
"None repository",
"Raw plugin file ('script_type' attribute is needed)",
"git"
]
},
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L945",
"enumValues": [
"https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L951",
"https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L952",
"https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L954"
]
}
}
},
"type__depth": {
"description": "The history depth for 'git clone'.\n If omitted, |g:dein#types#git#clone_depth| is used. If it is than 0, dein clones the repository by shallow clone. Shallow clone feature saves your repository clone time. But it has problems in some repository.\n Note: This attribute is available in git type only.\n\n https://github.com/Shougo/neobundle.vim/issues/81 https://github.com/Homebrew/homebrew/issues/12024",
"type": "integer",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L956"
}
}
},
"hook_add": {
"description": "It is executed after the line is parsed. Note: You cannot call plugin function in 'hook_add'. Because the plugin is not sourced when 'hook_add'.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L981"
}
}
},
"hook_done_update": {
"description": "It is executed after the all plugins are updated.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L1002"
}
}
},
"hook_post_source": {
"description": "It is executed after plugins are sourced. Note: In Vim initializing, you must call the 'hook_post_source' hooks manually in |VimEnter| if needed. ",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L1006"
}
}
},
"hook_post_update": {
"description": "It is executed after the plugins are updated.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L1015"
}
}
},
"hook_source": {
"description": "It is executed before plugins are sourced. Note: The 'sourced' means after |dein#end()| or when |VimEnter| or autoloaded. 'type': 'string',",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L1021"
}
}
},
"lua_add": {
"description": "Lua lauguage string hook instead of Vim script.\nIt is converted to \"hook_add\" key.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/4a888738849c67294ab6264d8776324c7d6b2441/doc/dein.txt#L1084"
}
}
},
"lua_source": {
"description": "Lua lauguage string hook instead of Vim script.\nIt is converted to \"hook_source\" key.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/4a888738849c67294ab6264d8776324c7d6b2441/doc/dein.txt#L1084"
}
}
}
},
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L115"
},
"initKeys": ["repo"]
}
},
"MultiplePlugins": {
"title": "Pattern for multiple definition of vim plugin",
"type": "object",
"required": ["plugins"],
"additionalProperties": false,
"properties": {
"plugins": {
"title": "plugins",
"type": "array",
"description": "The repository URI or local repository directory path.",
"items": {
"$ref": "#/definitions/repo-string-pattern"
},
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L1073"
}
}
}
}
},
"Url": {
"title": "path",
"type": "string",
"pattern": "^https?:\\/\\/(www\\.)?[-a-zA-Z0-9@:%._\\+~#=]{1,256}\\.[a-zA-Z0-9()]{1,6}\\b([-a-zA-Z0-9()@:%_\\+.~#?&//=]*)$"
},
"repo-string-pattern": {
"title": "repo name pattern",
"description": "If {repo} starts with github user name (ex:'Shougo/dein.vim'), dein will install github plugins.",
"type": "string",
"pattern": "^[a-zA-Z-_0-9]+/[a-zA-Z-_0-9\\.]+$"
},
"Path": {
"title": "path",
"type": "string",
"pattern": "^[~|/][a-zA-Z-_0-9/\\.~]+$"
},
"vim-mode-key-pattern-string": {
"type": "string",
"pattern": "^[nvxsomilct]+$"
},
"vim-mode-key-mapping-string": {
"type": "string"
},
"on_map-string": {
"type": "string",
"oneOf": [
{
"$ref": "#/definitions/vim-mode-key-pattern-string"
},
{
"$ref": "#/definitions/vim-mode-key-mapping-string"
}
]
},
"on_map-array1": {
"type": "array",
"items": {
"$ref": "#/definitions/on_map-string"
}
},
"on_map-array2": {
"type": "array",
"items": {
"$ref": "#/definitions/vim-mode-key-mapping-string"
}
},
"on_map-array": {
"oneOf": [
{
"$ref": "#/definitions/on_map-array1"
},
{
"$ref": "#/definitions/on_map-array2"
}
]
},
"on_map-dict": {
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^[nvxsomilct]+$": {
"description": "Pattern for vim key binding. You can use plugin prefix mappings. You can use '<Plug>' keyword as {mapping}. If{mapping} is '<Plug>', '<Plug>(normalized_name' isused. linter support is now under developping",
"oneOf": [
{
"$ref": "#/definitions/vim-mode-key-mapping-string"
},
{
"$ref": "#/definitions/on_map-array2"
}
]
}
}
},
"ArrayOrString": {
"oneOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "string"
}
]
},
"Boolean": {
"oneOf": [
{
"type": "boolean"
},
{
"enum": [0, 1],
"type": "number"
}
]
}
},
"description": "A schema for config of dein.vim (https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L963)",
"properties": {
"plugins": {
"title": "Definition properties table for installing a vim plugin",
"description": "Definition properties table for installing a vim plugin.\nIt is converted to |dein#add()|.",
"type": "array",
"items": {
"$ref": "#/definitions/Plugin"
},
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L1068"
}
}
},
"ftplugin": {
"title": "ftplugin definition",
"description": "'_' key is executed after all ftplugin.\n'{filetype}' key is executed {filetype} ftplugin.\n You can define multiple filetypes by '{filetype1}_{filetype2}' key.",
"type": "object",
"additionalProperties": false,
"properties": {
"_": {
"title": "all filetypes",
"description": "'_' key is executed after all ftplugin.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L1056"
}
}
}
},
"patternProperties": {
"^[0-9a-zA-Z].+$": {
"title": "filetype",
"description": "'{filetype}' key is executed {filetype} ftplugin.\nYou can define multiple filetypes by '{filetype1}_{filetype2}' key.\n'b:undo_ftplugin' is defined automatically.",
"type": "string"
}
},
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L1054"
}
}
},
"hook_add": {
"title": "hook_add definition",
"description": "It is the global |dein-options-hook_add|.\nIt is executed in |dein#end()|.",
"type": "string",
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L1063"
}
}
},
"multiple_plugins": {
"title": "It is converted to |dein-toml-hook_add|",
"description": "It is converted to |dein-toml-hook_add|\n\"plugins\" key is needed.",
"type": "array",
"items": {
"$ref": "#/definitions/MultiplePlugins"
},
"x-taplo": {
"links": {
"key": "https://github.com/Shougo/dein.vim/blob/f93be8c/doc/dein.txt#L1073"
}
}
}
},
"required": ["plugins"],
"title": "dein.vim",
"type": "object",
"x-taplo-info": {
"authors": [
"kkiyama117 (https://github.com/kkiyama117)",
"raa0121 (https://github.com/raa0121)",
"Hibiki (https://github.com/4513ECHO)",
"mikan (https://github.com/mikanIchinose)"
],
"version": "0.1.0",
"patterns": ["^(.*(/|\\\\)\\.*dein.*\\.toml|\\.*dein.*\\.toml)$"]
}
}
| dein |
{
"properties": {
"billing_address": {
"description": "The billing address",
"type": "string"
},
"client_name": {
"description": "The name of the client",
"type": "string"
},
"items": {
"description": "The list of items",
"items": {
"properties": {
"description": {
"description": "The description of the item",
"type": "string"
},
"price": {
"description": "The price of the item",
"type": "number"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
}
},
"required": [
"description",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"client_name",
"billing_address",
"items"
],
"type": "object"
} | generate_invoice_b8a03473 |
{
"description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
"properties": {
"apiVersion": {
"description": "API version of the referent",
"type": [
"string",
"null"
]
},
"kind": {
"description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"",
"type": [
"string",
"null"
]
},
"name": {
"description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": [
"string",
"null"
]
}
},
"required": [
"kind",
"name"
],
"type": "object"
} | kb_156_Normalized |
{
"additionalProperties": true,
"description": "Marketo description",
"properties": {
"campaign": {
"properties": {
"description": {
"maxLength": 255,
"type": [
"string",
"null"
]
},
"id": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"name": {
"maxLength": 255,
"type": "string"
}
},
"required": [
"id",
"name"
],
"type": [
"object",
"null"
]
},
"company": {
"properties": {
"account_owner_email_address": {
"_format": "email",
"type": "string"
},
"account_owner_first_name": {
"maxLength": 255,
"type": "string"
},
"account_owner_last_name": {
"maxLength": 255,
"type": "string"
},
"annual_revenue": {
"maximum": 2147483647,
"minimum": 0,
"type": "number"
},
"billing_address": {
"maxLength": 255,
"type": "string"
},
"billing_city": {
"maxLength": 255,
"type": "string"
},
"billing_country": {
"maxLength": 255,
"type": "string"
},
"billing_postal_code": {
"maxLength": 255,
"type": "string"
},
"billing_state": {
"maxLength": 255,
"type": "string"
},
"industry": {
"maxLength": 255,
"type": "string"
},
"main_phone": {
"maxLength": 255,
"type": "string"
},
"name": {
"maxLength": 255,
"type": "string"
},
"notes": {
"maxLength": 255,
"type": "string"
},
"num_employees": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"parent_company_name": {
"maxLength": 255,
"type": "string"
},
"sic_code": {
"maxLength": 40,
"type": "string"
},
"site": {
"maxLength": 255,
"type": "string"
},
"website": {
"maxLength": 255,
"type": "string"
}
},
"type": [
"object",
"null"
]
},
"datetime": {
"_format": "date-time",
"type": [
"string",
"null"
]
},
"description": {
"maxLength": 255,
"type": [
"string",
"null"
]
},
"forward_to_friend_link": {
"maxLength": 255,
"type": [
"string",
"null"
]
},
"lead": {
"properties": {
"acquisition_date": {
"_format": "date-time",
"type": "string"
},
"acquisition_program": {
"maxLength": 255,
"type": "string"
},
"acquisition_program_name": {
"maxLength": 255,
"type": "string"
},
"address": {
"maxLength": 255,
"type": "string"
},
"anonymous_ip": {
"maxLength": 45,
"type": "string"
},
"black_listed": {
"type": "boolean"
},
"city": {
"maxLength": 255,
"type": "string"
},
"country": {
"maxLength": 255,
"type": "string"
},
"created_at": {
"_format": "date-time",
"type": "string"
},
"date_of_birth": {
"_format": "date",
"type": "string"
},
"department": {
"maxLength": 255,
"type": "string"
},
"do_not_call": {
"type": "boolean"
},
"do_not_call_reason": {
"maxLength": 512,
"type": "string"
},
"email_address": {
"_format": "email",
"type": "string"
},
"email_invalid": {
"type": "boolean"
},
"email_invalid_cause": {
"maxLength": 255,
"type": "string"
},
"email_suspended": {
"type": "boolean"
},
"email_suspended_at": {
"_format": "date-time",
"type": "string"
},
"email_suspended_cause": {
"maxLength": 2000,
"type": "string"
},
"facebook_display_name": {
"maxLength": 255,
"type": "string"
},
"facebook_id": {
"maxLength": 512,
"type": "string"
},
"facebook_photo_url": {
"maxLength": 255,
"type": "string"
},
"facebook_profile_url": {
"maxLength": 255,
"type": "string"
},
"facebook_reach": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"facebook_referred_enrollments": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"facebook_referred_visits": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"fax_number": {
"maxLength": 255,
"type": "string"
},
"first_name": {
"maxLength": 255,
"type": "string"
},
"full_name": {
"maxLength": 255,
"type": "string"
},
"gender": {
"maxLength": 6,
"type": "string"
},
"inferred_city": {
"maxLength": 255,
"type": "string"
},
"inferred_company": {
"maxLength": 255,
"type": "string"
},
"inferred_country": {
"maxLength": 255,
"type": "string"
},
"inferred_metropolitan_area": {
"maxLength": 255,
"type": "string"
},
"inferred_phone_area_code": {
"maxLength": 255,
"type": "string"
},
"inferred_postal_code": {
"maxLength": 255,
"type": "string"
},
"inferred_state_region": {
"maxLength": 255,
"type": "string"
},
"is_customer": {
"type": "boolean"
},
"is_partner": {
"type": "boolean"
},
"job_title": {
"maxLength": 255,
"type": "string"
},
"last_interesting_moment_date": {
"_format": "date",
"type": "string"
},
"last_interesting_moment_description": {
"maxLength": 255,
"type": "string"
},
"last_interesting_moment_source": {
"maxLength": 255,
"type": "string"
},
"last_interesting_moment_type": {
"maxLength": 255,
"type": "string"
},
"last_name": {
"maxLength": 255,
"type": "string"
},
"last_referred_enrollment": {
"_format": "date-time",
"type": "string"
},
"last_referred_visit": {
"_format": "date-time",
"type": "string"
},
"lead_marketing_suspended": {
"type": "boolean"
},
"lead_owner_email_address": {
"_format": "email",
"type": "string"
},
"lead_owner_first_name": {
"maxLength": 255,
"type": "string"
},
"lead_owner_job_title": {
"maxLength": 255,
"type": "string"
},
"lead_owner_last_name": {
"maxLength": 255,
"type": "string"
},
"lead_owner_phone_number": {
"maxLength": 255,
"type": "string"
},
"lead_rating": {
"maxLength": 255,
"type": "string"
},
"lead_score": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"lead_source": {
"maxLength": 255,
"type": "string"
},
"lead_status": {
"maxLength": 255,
"type": "string"
},
"linkedin_display_name": {
"maxLength": 255,
"type": "string"
},
"linkedin_id": {
"maxLength": 512,
"type": "string"
},
"linkedin_photo_url": {
"maxLength": 512,
"type": "string"
},
"linkedin_profile_url": {
"maxLength": 512,
"type": "string"
},
"linkedin_reach": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"linkedin_referred_enrollments": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"linkedin_referred_visits": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"middle_name": {
"maxLength": 255,
"type": "string"
},
"mobile_phone_number": {
"maxLength": 255,
"type": "string"
},
"number_of_optys": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"original_referrer": {
"maxLength": 255,
"type": "string"
},
"original_search_engine": {
"maxLength": 255,
"type": "string"
},
"original_search_phrase": {
"maxLength": 255,
"type": "string"
},
"original_source_info": {
"maxLength": 255,
"type": "string"
},
"original_source_type": {
"maxLength": 255,
"type": "string"
},
"person_notes": {
"maxLength": 512,
"type": "string"
},
"person_timezone": {
"maxLength": 255,
"type": "string"
},
"phone_number": {
"maxLength": 255,
"type": "string"
},
"postal_code": {
"maxLength": 255,
"type": "string"
},
"priority": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"registration_source_info": {
"maxLength": 2000,
"type": "string"
},
"registration_source_type": {
"maxLength": 255,
"type": "string"
},
"relative_score": {
"maximum": 5,
"minimum": 0,
"type": "integer"
},
"relative_urgency": {
"maximum": 5,
"minimum": 0,
"type": "integer"
},
"role": {
"maxLength": 50,
"type": "string"
},
"salutation": {
"maxLength": 255,
"type": "string"
},
"state": {
"maxLength": 255,
"type": "string"
},
"syndication_id": {
"maxLength": 512,
"type": "string"
},
"total_opty_amount": {
"maximum": 2147483647,
"minimum": 0,
"type": "number"
},
"total_opty_expected_revenue": {
"maximum": 2147483647,
"minimum": 0,
"type": "number"
},
"total_referred_enrollments": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"total_referred_visits": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"twitter_display_name": {
"maxLength": 255,
"type": "string"
},
"twitter_id": {
"maxLength": 512,
"type": "string"
},
"twitter_photo_url": {
"maxLength": 512,
"type": "string"
},
"twitter_profile_url": {
"maxLength": 512,
"type": "string"
},
"twitter_reach": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"twitter_referred_enrollments": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"twitter_referred_visits": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"unsubscribed": {
"type": "boolean"
},
"unsubscribed_reason": {
"maxLength": 512,
"type": "string"
},
"updated_at": {
"_format": "date-time",
"type": "string"
},
"urgency": {
"maximum": 32767,
"minimum": 0,
"type": "integer"
}
},
"type": [
"object",
"null"
]
},
"munchkinId": {
"maxLength": 255,
"type": [
"string",
"null"
]
},
"name": {
"maxLength": 128,
"type": "string"
},
"program": {
"properties": {
"description": {
"maxLength": 2000,
"type": "string"
},
"id": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"name": {
"maxLength": 255,
"type": "string"
}
},
"type": [
"object",
"null"
]
},
"social": {
"properties": {
"email": {
"_format": "email",
"type": "string"
},
"promo_code": {
"maxLength": 255,
"type": "string"
},
"share_url": {
"maxLength": 2000,
"type": "string"
}
},
"type": [
"object",
"null"
]
},
"sp_send_alert_info": {
"maxLength": 2000,
"type": [
"string",
"null"
]
},
"step": {
"maximum": 32767,
"minimum": 0,
"type": [
"integer",
"null"
]
},
"unsubscribe_link": {
"maxLength": 2000,
"type": [
"string",
"null"
]
},
"view_as_webpage_link": {
"maxLength": 2000,
"type": [
"string",
"null"
]
}
},
"required": [
"name"
],
"self": {
"format": "jsonschema",
"name": "event",
"vendor": "com.marketo",
"version": "1-0-0"
},
"type": "object"
} | sp_137_Normalized |
{
"title": "fabric info",
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"fabric_fq_name",
"role_assignments"
],
"properties": {
"fabric_fq_name": {
"type": "array",
"items": {
"type": "string"
}
},
"role_assignments": {
"type": "array",
"minItems": 0,
"description": "Fabric device role assignments",
"items": {
"type": "object",
"properties": {
"device_fq_name": {
"type": "array",
"items": {
"type": "string"
}
},
"physical_role": {
"type": "string",
"enum": [
"leaf",
"spine",
"pnf"
]
},
"routing_switching_roles": {
"type": "array",
"items": {
"type": "string",
"enum": [
"CRB"
]
}
}
}
}
}
}
} | o8474 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_RuleWithOperations": {
"description": "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.",
"properties": {
"apiGroups": {
"description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"apiVersions": {
"description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"operations": {
"description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, or * for all operations. If '*' is present, the length of the slice must be one. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"resources": {
"description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"scope": {
"description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_ServiceReference": {
"description": "ServiceReference holds a reference to Service.legacy.k8s.io",
"properties": {
"name": {
"description": "`name` is the name of the service. Required",
"type": "string"
},
"namespace": {
"description": "`namespace` is the namespace of the service. Required",
"type": "string"
},
"path": {
"description": "`path` is an optional URL path which will be sent in any request to this service.",
"type": "string"
},
"port": {
"_format": "int32",
"description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).",
"type": "integer"
}
},
"required": [
"namespace",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_WebhookClientConfig": {
"description": "WebhookClientConfig contains the information to make a TLS connection with the webhook",
"properties": {
"caBundle": {
"_format": "byte",
"description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.",
"type": "string"
},
"service": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_ServiceReference",
"description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`."
},
"url": {
"description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
}
},
"description": "ValidatingWebhook describes an admission webhook and the resources and operations it applies to.",
"properties": {
"admissionReviewVersions": {
"description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"clientConfig": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_WebhookClientConfig",
"description": "ClientConfig defines how to communicate with the hook. Required"
},
"failurePolicy": {
"description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore.",
"type": [
"string",
"null"
]
},
"matchPolicy": {
"description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Exact\"",
"type": [
"string",
"null"
]
},
"name": {
"description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.",
"type": [
"string",
"null"
]
},
"namespaceSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything."
},
"objectSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything."
},
"rules": {
"description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_RuleWithOperations"
},
"type": [
"array",
"null"
]
},
"sideEffects": {
"description": "SideEffects states whether this webhook has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. Defaults to Unknown.",
"type": [
"string",
"null"
]
},
"timeoutSeconds": {
"description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 30 seconds.",
"format": "int32",
"type": [
"integer",
"null"
]
}
},
"required": [
"name",
"clientConfig"
],
"type": "object"
} | kb_1095_Normalized |
{
"definitions": {
"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": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.",
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "lastTransitionTime is the last time the condition transitioned from one status to another"
},
"message": {
"description": "message is a human-readable explanation containing details about the transition",
"type": [
"string",
"null"
]
},
"reason": {
"description": "reason is the reason for the condition's last transition.",
"type": [
"string",
"null"
]
},
"status": {
"description": "status is the status of the condition (True, False, Unknown)",
"type": [
"string",
"null"
]
},
"type": {
"description": "type describes the current condition",
"type": [
"string",
"null"
]
}
},
"required": [
"type",
"status"
],
"type": "object"
} | kb_397_Normalized |
{
"title": "popupElement attachments",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"description": "Configures attachments in popup elements.",
"properties": {
"displayType": {
"type": "string",
"description": "A string value indicating how to display the attachment. If `list` is specified, attachments show as links.",
"enum": [
"list",
"preview"
]
},
"type": {
"type": "string",
"enum": [
"attachments"
]
}
},
"required": [
"type"
],
"additionalProperties": false,
"esriDocumentation": {
"examples": [
{
"title": "popupElement attachments",
"code": {
"popupElements": [
{
"type": "attachments",
"displayType": "list"
}
]
}
}
]
}
} | o90275 |
{
"additionalProperties": true,
"properties": {
"body": {
"additionalProperties": true,
"properties": {
"session_id": {
"_format": "uuid",
"type": "string"
}
},
"type": "object"
},
"device": {
"additionalProperties": true,
"properties": {
"amazon_channel": {
"_format": "uuid",
"type": "string"
},
"android_channel": {
"_format": "uuid",
"type": "string"
},
"ios_channel": {
"_format": "uuid",
"type": "string"
},
"named_user_id": {
"type": "string"
}
},
"type": "object"
},
"id": {
"_format": "uuid",
"type": "string"
},
"occurred": {
"_format": "date-time",
"type": "string"
},
"offset": {
"type": "string"
},
"processed": {
"_format": "date-time",
"type": "string"
},
"type": {
"type": "string"
}
},
"self": {
"format": "jsonschema",
"name": "CLOSE",
"vendor": "com.urbanairship.connect",
"version": "1-0-0"
},
"type": "object"
} | sp_384_Normalized |
{
"description": "DEPRECATED.",
"properties": {
"revision": {
"description": "The revision to rollback to. If set to 0, rollback to the last revision.",
"format": "int64",
"type": [
"integer",
"null"
]
}
},
"type": "object"
} | kb_870_Normalized |
{
"properties": {
"end_time": {
"description": "The end time of the event in the format YYYY-MM-DD HH:MM",
"type": "string"
},
"location": {
"description": "The location of the event",
"type": "string"
},
"start_time": {
"description": "The start time of the event in the format YYYY-MM-DD HH:MM",
"type": "string"
},
"title": {
"description": "The title of the event",
"type": "string"
}
},
"required": [
"title",
"location",
"start_time",
"end_time"
],
"type": "object"
} | create_event_c72726f8 |
{
"title": "Invocation manifest for MRIQC: No-reference image quality metrics for quality assessment of MRI ",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"config": {
"type": "object",
"properties": {
"measurement": {
"default": "auto-detect",
"type": "string",
"enum": [
"auto-detect",
"functional",
"T1",
"T2"
]
},
"save_derivatives": {
"default": false,
"type": "boolean"
},
"save_outputs": {
"default": false,
"type": "boolean"
},
"verbose_reports": {
"default": false,
"type": "boolean"
},
"include_rating_widget": {
"default": false,
"type": "boolean"
}
},
"required": [
"measurement",
"save_derivatives",
"save_outputs",
"verbose_reports",
"include_rating_widget"
]
},
"inputs": {
"type": "object",
"properties": {
"nifti": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
}
},
"required": [
"nifti"
]
}
},
"required": [
"config",
"inputs"
]
} | o41337 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "JSON schema for Azure Webjob settings.job files",
"type": "object",
"properties": {
"stopping_wait_time": {
"description": "The graceful shutdown period for an Azure Webjob. The time specified in seconds.",
"type": "integer"
},
"is_singleton": {
"description": "Specify if the Webjob should be treated as a singleton. If true, the Webjob will not scale on multiple Azure Website instances like the web application itself.",
"type": "boolean"
}
},
"minProperties": 1
} | o73941 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "LineChartSettings",
"description": "The data contained in a LineChart settings object",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"xLabel": {
"type": "string"
},
"yLabel": {
"type": "string"
},
"legendPosition": {
"enum": [
"top",
"right",
"bottom",
"left",
"in",
"none"
]
},
"maxItems": {
"type": "integer",
"minimum": 1
},
"style": {
"type": "object",
"properties": {
"maxValue": {
"type": [
"number",
"null"
]
},
"minValue": {
"type": [
"number",
"null"
]
},
"pointDotSize": {
"type": "integer",
"minimum": 0
},
"bezierCurve": {
"type": "boolean"
},
"showGrid": {
"type": "boolean"
},
"animationDuration": {
"type": "integer",
"minimum": 0
}
}
}
}
} | o54547 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the shape",
"type": "number"
},
"height": {
"description": "The height of the shape",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. rectangle, triangle, circle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_e8824678 |
{
"additionalProperties": false,
"properties": {
"analyticsAvailable": {
"type": "boolean"
},
"apiAccess": {
"type": "boolean"
},
"apiType": {
"maxLength": 200,
"minLength": 0,
"pattern": "^$|(^(?:\\S+\\s+){0,19}\\S+$)",
"type": "string"
},
"auditInformationProvided": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"enum": [
"None",
"Data made available",
"Data made available by negotiation"
]
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"changeImpactAssessment": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"cloudDeploymentModel": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"enum": [
"Public cloud",
"Community cloud",
"Private cloud",
"Hybrid cloud"
]
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"configurationTracking": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"dataAtRestProtections": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"items": {
"enum": [
"CPA Foundation-grade assured components",
"FIPS-assured encryption",
"Other encryption",
"Secure containers, racks or cages",
"Physical access control",
"No protection"
]
},
"maxItems": 6,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"dataBackupRecovery": {
"type": "boolean"
},
"dataExtractionRemoval": {
"type": "boolean"
},
"dataManagementLocations": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"UK",
"EU",
"USA - Safe Harbor",
"Other countries with data protection treaties",
"Rest of world"
]
},
"maxItems": 5,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"dataProtectionBetweenServices": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"items": {
"enum": [
"Encrypted PSN service",
"PSN service",
"CPA Foundation VPN Gateway",
"VPN using TLS, version 1.2 or later",
"VPN using legacy SSL or TLS",
"No encryption"
]
},
"maxItems": 6,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"dataProtectionBetweenUserAndService": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"items": {
"enum": [
"Encrypted PSN service",
"PSN service",
"CPA Foundation VPN Gateway",
"VPN using TLS, version 1.2 or later",
"VPN using legacy SSL or TLS",
"No encryption"
]
},
"maxItems": 6,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"dataProtectionWithinService": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"items": {
"enum": [
"VPN using TLS, version 1.2 or later",
"VPN using legacy SSL or TLS",
"VLAN",
"Bonded fibre optic connections",
"Other network protection",
"No encryption"
]
},
"maxItems": 6,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"dataRedundantEquipmentAccountsRevoked": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"dataSecureDeletion": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"enum": [
"CPA Foundation-grade erasure product",
"CESG or CPNI-approved erasure process",
"Other secure erasure process",
"Other erasure process"
]
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"dataSecureEquipmentDisposal": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion",
"CESG-assured components"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"dataStorageMediaDisposal": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"enum": [
"CESG-assured destruction service (CAS(T))",
"CPA Foundation-assured product",
"CPNI-approved destruction service",
"BS EN 151713:2009-compliant destruction",
"CESG or CPNI-approved erasure process",
"Other secure erasure process",
"Other destruction/erasure process"
]
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"datacentreLocations": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"UK",
"EU",
"USA - Safe Harbor",
"Other countries with data protection treaties",
"Rest of world"
]
},
"maxItems": 5,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"datacentreProtectionDisclosure": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"datacentreTier": {
"enum": [
"TIA-942 Tier 1",
"TIA-942 Tier 2",
"TIA-942 Tier 3",
"TIA-942 Tier 4",
"Uptime Institute Tier 1",
"Uptime Institute Tier 2",
"Uptime Institute Tier 3",
"Uptime Institute Tier 4",
"None of the above"
]
},
"datacentresEUCode": {
"type": "boolean"
},
"datacentresSpecifyLocation": {
"type": "boolean"
},
"deprovisioningTime": {
"maxLength": 200,
"minLength": 1,
"pattern": "^(?:\\S+\\s+){0,19}\\S+$",
"type": "string"
},
"deviceAccessMethod": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"Corporate/enterprise devices",
"Partner devices",
"Unknown devices"
]
},
"maxItems": 3,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"educationPricing": {
"type": "boolean"
},
"elasticCloud": {
"type": "boolean"
},
"eventMonitoring": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"freeOption": {
"type": "boolean"
},
"governanceFramework": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"guaranteedResources": {
"type": "boolean"
},
"hardwareSoftwareVerification": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"identityAuthenticationControls": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"items": {
"enum": [
"Username and two-factor authentication",
"Username and TLS client certificate",
"Authentication federation",
"Limited access over dedicated link, enterprise or community network",
"Username and password",
"Username and strong password/passphrase enforcement",
"Other mechanism"
]
},
"maxItems": 7,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"incidentDefinitionPublished": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"incidentEscalation": {
"type": "boolean"
},
"incidentManagementProcess": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"incidentManagementReporting": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"interconnectionMethods": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"Encrypted PSN service",
"PSN service",
"Private WAN",
"Internet"
]
},
"maxItems": 4,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"legalJurisdiction": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"enum": [
"UK",
"EU",
"USA - Safe Harbor",
"Other countries with data protection treaties",
"Rest of world"
]
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"managementInterfaceProtection": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"minimumContractPeriod": {
"enum": [
"Hour",
"Day",
"Month",
"Year",
"Other"
]
},
"networksConnected": {
"items": {
"enum": [
"Internet",
"Public Services Network (PSN)",
"Government Secure intranet (GSi)",
"Police National Network (PNN)",
"New NHS Network (N3)",
"Joint Academic Network (JANET)",
"Other"
]
},
"maxItems": 7,
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"offlineWorking": {
"type": "boolean"
},
"onboardingGuidance": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"openSource": {
"type": "boolean"
},
"openStandardsSupported": {
"type": "boolean"
},
"otherConsumers": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"enum": [
"No other consumer",
"Only government consumers",
"A specific consumer group, eg Police, Defence or Health",
"Anyone - public"
]
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"persistentStorage": {
"type": "boolean"
},
"personnelSecurityChecks": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"Security clearance national vetting (SC)",
"Baseline personnel security standard (BPSS)",
"Background checks in accordance with BS7858:2012",
"Employment checks"
]
},
"maxItems": 4,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"priceInterval": {
"enum": [
"",
"Second",
"Minute",
"Hour",
"Day",
"Week",
"Month",
"Quarter",
"6 months",
"Year"
]
},
"priceMax": {
"pattern": "^$|^\\d{1,15}(?:\\.\\d{1,5})?$",
"type": "string"
},
"priceMin": {
"pattern": "^\\d{1,15}(?:\\.\\d{1,5})?$",
"type": "string"
},
"priceUnit": {
"enum": [
"Unit",
"Person",
"Licence",
"User",
"Device",
"Instance",
"Server",
"Virtual machine",
"Transaction",
"Megabyte",
"Gigabyte",
"Terabyte"
]
},
"pricingDocumentURL": {
"_format": "uri",
"type": "string"
},
"provisioningTime": {
"maxLength": 200,
"minLength": 1,
"pattern": "^(?:\\S+\\s+){0,19}\\S+$",
"type": "string"
},
"restrictAdministratorPermissions": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"secureConfigurationManagement": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"secureDesign": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"secureDevelopment": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"selfServiceProvisioning": {
"type": "boolean"
},
"serviceAvailabilityPercentage": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"exclusiveMaximum": 100,
"minimum": 0,
"type": "number"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"serviceBenefits": {
"items": {
"maxLength": 100,
"pattern": "^(?:\\S+\\s+){0,9}\\S+$",
"type": "string"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"serviceConfigurationGuidance": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"serviceDefinitionDocumentURL": {
"_format": "uri",
"type": "string"
},
"serviceFeatures": {
"items": {
"maxLength": 100,
"pattern": "^(?:\\S+\\s+){0,9}\\S+$",
"type": "string"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"serviceManagementModel": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"Dedicated devices on a segregated network",
"Dedicated devices for community service management",
"Dedicated devices for multiple community service management",
"Service management via bastion hosts",
"Direct service management"
]
},
"maxItems": 5,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"serviceName": {
"maxLength": 100,
"minLength": 1,
"type": "string"
},
"serviceOffboarding": {
"type": "boolean"
},
"serviceOnboarding": {
"type": "boolean"
},
"serviceSummary": {
"maxLength": 500,
"minLength": 1,
"pattern": "^(?:\\S+\\s+){0,49}\\S+$",
"type": "string"
},
"serviceTypes": {
"items": {
"enum": [
"Compute",
"Storage"
]
},
"maxItems": 2,
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"servicesManagementSeparation": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent testing of implementation",
"Assurance of service design",
"CESG-assured components"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"servicesSeparation": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent testing of implementation",
"Assurance of service design",
"CESG-assured components"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"sfiaRateDocumentURL": {
"_format": "uri",
"type": "string"
},
"supportAvailability": {
"maxLength": 200,
"minLength": 1,
"pattern": "^(?:\\S+\\s+){0,19}\\S+$",
"type": "string"
},
"supportForThirdParties": {
"type": "boolean"
},
"supportResponseTime": {
"maxLength": 200,
"minLength": 1,
"pattern": "^(?:\\S+\\s+){0,19}\\S+$",
"type": "string"
},
"supportTypes": {
"items": {
"enum": [
"Service desk",
"Email",
"Phone",
"Live chat",
"Onsite"
]
},
"maxItems": 5,
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"supportedBrowsers": {
"items": {
"enum": [
"Internet Explorer 6",
"Internet Explorer 7",
"Internet Explorer 8",
"Internet Explorer 9",
"Internet Explorer 10+",
"Firefox",
"Chrome",
"Safari",
"Opera"
]
},
"maxItems": 9,
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"supportedDevices": {
"items": {
"enum": [
"PC",
"Mac",
"Smartphone",
"Tablet"
]
},
"maxItems": 4,
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"terminationCost": {
"type": "boolean"
},
"termsAndConditionsDocumentURL": {
"_format": "uri",
"type": "string"
},
"thirdPartyComplianceMonitoring": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"thirdPartyDataSharingInformation": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"thirdPartyRiskAssessment": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"thirdPartySecurityRequirements": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"trainingProvided": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"trialOption": {
"type": "boolean"
},
"userAccessControlManagement": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"userAuthenticateManagement": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"userAuthenticateSupport": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"vatIncluded": {
"type": "boolean"
},
"vendorCertifications": {
"items": {
"maxLength": 100,
"pattern": "^(?:\\S+\\s+){0,9}\\S+$",
"type": "string"
},
"maxItems": 10,
"minItems": 0,
"type": "array"
},
"vulnerabilityAssessment": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"vulnerabilityMitigationPrioritisation": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"vulnerabilityMonitoring": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"vulnerabilityTimescales": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"vulnerabilityTracking": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
}
},
"required": [
"analyticsAvailable",
"apiAccess",
"auditInformationProvided",
"changeImpactAssessment",
"cloudDeploymentModel",
"configurationTracking",
"dataAtRestProtections",
"dataBackupRecovery",
"dataExtractionRemoval",
"dataManagementLocations",
"dataProtectionBetweenServices",
"dataProtectionBetweenUserAndService",
"dataProtectionWithinService",
"dataRedundantEquipmentAccountsRevoked",
"dataSecureDeletion",
"dataSecureEquipmentDisposal",
"dataStorageMediaDisposal",
"datacentreLocations",
"datacentreProtectionDisclosure",
"datacentreTier",
"datacentresEUCode",
"datacentresSpecifyLocation",
"deprovisioningTime",
"deviceAccessMethod",
"educationPricing",
"elasticCloud",
"eventMonitoring",
"freeOption",
"governanceFramework",
"guaranteedResources",
"hardwareSoftwareVerification",
"identityAuthenticationControls",
"incidentDefinitionPublished",
"incidentEscalation",
"incidentManagementProcess",
"incidentManagementReporting",
"interconnectionMethods",
"legalJurisdiction",
"managementInterfaceProtection",
"minimumContractPeriod",
"networksConnected",
"offlineWorking",
"onboardingGuidance",
"openSource",
"openStandardsSupported",
"otherConsumers",
"persistentStorage",
"personnelSecurityChecks",
"priceMin",
"priceUnit",
"pricingDocumentURL",
"provisioningTime",
"restrictAdministratorPermissions",
"secureConfigurationManagement",
"secureDesign",
"secureDevelopment",
"selfServiceProvisioning",
"serviceAvailabilityPercentage",
"serviceBenefits",
"serviceConfigurationGuidance",
"serviceDefinitionDocumentURL",
"serviceFeatures",
"serviceManagementModel",
"serviceName",
"serviceOffboarding",
"serviceOnboarding",
"serviceSummary",
"serviceTypes",
"servicesManagementSeparation",
"servicesSeparation",
"supportAvailability",
"supportForThirdParties",
"supportResponseTime",
"supportTypes",
"supportedBrowsers",
"supportedDevices",
"terminationCost",
"termsAndConditionsDocumentURL",
"thirdPartyComplianceMonitoring",
"thirdPartyDataSharingInformation",
"thirdPartyRiskAssessment",
"thirdPartySecurityRequirements",
"trainingProvided",
"trialOption",
"userAccessControlManagement",
"userAuthenticateManagement",
"userAuthenticateSupport",
"vatIncluded",
"vulnerabilityAssessment",
"vulnerabilityMitigationPrioritisation",
"vulnerabilityMonitoring",
"vulnerabilityTimescales",
"vulnerabilityTracking"
],
"title": "G-Cloud 7 IaaS Service Schema",
"type": "object"
} | o21135 |
{
"additionalProperties": true,
"description": "Schema for the webhook emitted by a Redash installation",
"properties": {
"action": {
"maxLength": 255,
"type": "string"
},
"additional_properties": {
"type": [
"object",
"null"
]
},
"created_at": {
"type": "string"
},
"object_id": {
"maxLength": 255,
"type": [
"string",
"integer",
"null"
]
},
"object_type": {
"maxLength": 255,
"type": "string"
},
"org_id": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "integer"
},
"user_id": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": [
"integer",
"null"
]
}
},
"required": [
"action",
"object_id",
"created_at",
"org_id"
],
"self": {
"format": "jsonschema",
"name": "event",
"vendor": "io.redash.webhooks",
"version": "1-0-0"
},
"type": "object"
} | sp_407_Normalized |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"minProperties": 1
} | o8469 |
{
"id": "http://schemas.triniti.io/json-schema/gdbots/forms/field/yes-no-field/1-0-0.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"_schema": {
"type": "string",
"pattern": "^pbj:([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+):([0-9]+-[0-9]+-[0-9]+)$",
"default": "pbj:gdbots:forms:field:yes-no-field:1-0-0"
},
"name": {
"type": "string",
"pattern": "^[a-zA-Z_]{1}[\\w-]*$",
"description": "A unique identifier (within the form) for the field. This value is not shown to the user and should NOT change once set.",
"pbj": {
"type": "string",
"rule": "single"
}
},
"maps_to": {
"type": "string",
"default": "cf",
"pattern": "^[a-zA-Z_]{1}\\w*$",
"description": "The name of the schema field the answer will map to. By default this will go to the \"cf\" field which is a \"dynamic-field\" list containing all answers filled out on the form (ref \"gdbots:forms:mixin:send-submission\").",
"pbj": {
"type": "string",
"rule": "single"
}
},
"label": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"description": "The main text for the question/field.",
"pbj": {
"type": "string",
"rule": "single"
}
},
"placeholder": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"pbj": {
"type": "string",
"rule": "single"
}
},
"description": {
"type": "string",
"minLength": 0,
"maxLength": 65535,
"description": "A short description to better explain this field.",
"pbj": {
"type": "text",
"rule": "single"
}
},
"is_required": {
"type": "boolean",
"pbj": {
"type": "boolean",
"rule": "single"
}
},
"link_text": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"description": "The text that will replace the token \"{link}\" within the label or description.",
"pbj": {
"type": "string",
"rule": "single"
}
},
"link_url": {
"type": "string",
"pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$",
"description": "The URL to use for the replaced token \"{link}\" within the label or description.",
"pbj": {
"type": "string",
"rule": "single",
"format": "url"
}
},
"pii_impact": {
"type": "string",
"enum": [
"unknown",
"high",
"moderate",
"low"
],
"pbj": {
"type": "string-enum",
"rule": "single"
}
},
"yes_label": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"pbj": {
"type": "string",
"rule": "single"
}
},
"no_label": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"pbj": {
"type": "string",
"rule": "single"
}
}
},
"required": [
"_schema",
"name"
],
"additionalProperties": false
} | o82370 |
{
"description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition",
"properties": {
"categories": {
"description": "categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"kind": {
"description": "kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls.",
"type": [
"string",
"null"
]
},
"listKind": {
"description": "listKind is the serialized kind of the list for this resource. Defaults to \"`kind`List\".",
"type": [
"string",
"null"
]
},
"plural": {
"description": "plural is the plural name of the resource to serve. The custom resources are served under `/apis/<group>/<version>/.../<plural>`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`). Must be all lowercase.",
"type": [
"string",
"null"
]
},
"shortNames": {
"description": "shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get <shortname>`. It must be all lowercase.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"singular": {
"description": "singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.",
"type": [
"string",
"null"
]
}
},
"required": [
"plural",
"kind"
],
"type": "object"
} | kb_199_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceQuotaSpec": {
"description": "ResourceQuotaSpec defines the desired hard limits to enforce for Quota.",
"properties": {
"hard": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
"type": "object"
},
"scopeSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScopeSelector",
"description": "scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched."
},
"scopes": {
"description": "A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceQuotaStatus": {
"description": "ResourceQuotaStatus defines the enforced hard limits and observed use.",
"properties": {
"hard": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
"type": "object"
},
"used": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Used is the current observed total usage of the resource in the namespace.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScopeSelector": {
"description": "A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.",
"properties": {
"matchExpressions": {
"description": "A list of scope selector requirements by scope of the resources.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScopedResourceSelectorRequirement"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScopedResourceSelectorRequirement": {
"description": "A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.",
"properties": {
"operator": {
"description": "Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.",
"type": "string"
},
"scopeName": {
"description": "The name of the scope that the selector applies to.",
"type": "string"
},
"values": {
"description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"scopeName",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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": "ResourceQuota sets aggregate quota restrictions enforced per namespace",
"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": [
"v1"
],
"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": [
"ResourceQuota"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceQuotaSpec",
"description": "Spec defines the desired quota. 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_core_v1_ResourceQuotaStatus",
"description": "Status defines the actual enforced quota and its current usage. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "",
"kind": "ResourceQuota",
"version": "v1"
}
]
} | kb_837_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": {
"description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
"type": "integer"
},
"readOnly": {
"description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "boolean"
},
"volumeID": {
"description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": {
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
"properties": {
"cachingMode": {
"description": "Host Caching mode: None, Read Only, Read Write.",
"type": "string"
},
"diskName": {
"description": "The Name of the data disk in the blob storage",
"type": "string"
},
"diskURI": {
"description": "The URI the data disk in the blob storage",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"kind": {
"description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
}
},
"required": [
"diskName",
"diskURI"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFilePersistentVolumeSource": {
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
"properties": {
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretName": {
"description": "the name of secret that contains Azure Storage Account Name and Key",
"type": "string"
},
"secretNamespace": {
"description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod",
"type": "string"
},
"shareName": {
"description": "Share Name",
"type": "string"
}
},
"required": [
"secretName",
"shareName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIPersistentVolumeSource": {
"description": "Represents storage that is managed by an external CSI volume driver (Beta feature)",
"properties": {
"controllerExpandSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "ControllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This is an alpha field and requires enabling ExpandCSIVolumes feature gate. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed."
},
"controllerPublishSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed."
},
"driver": {
"description": "Driver is the name of the driver to use for this volume. Required.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".",
"type": "string"
},
"nodePublishSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed."
},
"nodeStageSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed."
},
"readOnly": {
"description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).",
"type": "boolean"
},
"volumeAttributes": {
"additionalProperties": {
"type": "string"
},
"description": "Attributes of the volume to publish.",
"type": "object"
},
"volumeHandle": {
"description": "VolumeHandle is the unique volume name returned by the CSI volume plugin\u2019s CreateVolume to refer to the volume on all subsequent calls. Required.",
"type": "string"
}
},
"required": [
"driver",
"volumeHandle"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource": {
"description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"monitors": {
"description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "boolean"
},
"secretFile": {
"description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
},
"user": {
"description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderPersistentVolumeSource": {
"description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
},
"volumeID": {
"description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": {
"description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "Optional: FC target lun number",
"type": "integer"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"targetWWNs": {
"description": "Optional: FC target worldwide names (WWNs)",
"items": {
"type": "string"
},
"type": "array"
},
"wwids": {
"description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexPersistentVolumeSource": {
"description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.",
"properties": {
"driver": {
"description": "Driver is the name of the driver to use for this volume.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.",
"type": "string"
},
"options": {
"additionalProperties": {
"type": "string"
},
"description": "Optional: Extra command options if any.",
"type": "object"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts."
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": {
"description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.",
"properties": {
"datasetName": {
"description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
"type": "string"
},
"datasetUUID": {
"description": "UUID of the dataset. This is unique identifier of a Flocker dataset",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": {
"description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "integer"
},
"pdName": {
"description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "boolean"
}
},
"required": [
"pdName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsPersistentVolumeSource": {
"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"
},
"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"
},
"path": {
"description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "boolean"
}
},
"required": [
"endpoints",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": {
"description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
},
"type": {
"description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIPersistentVolumeSource": {
"description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
"properties": {
"chapAuthDiscovery": {
"description": "whether support iSCSI Discovery CHAP authentication",
"type": "boolean"
},
"chapAuthSession": {
"description": "whether support iSCSI Session CHAP authentication",
"type": "boolean"
},
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi",
"type": "string"
},
"initiatorName": {
"description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
"type": "string"
},
"iqn": {
"description": "Target iSCSI Qualified Name.",
"type": "string"
},
"iscsiInterface": {
"description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "iSCSI Target Lun number.",
"type": "integer"
},
"portals": {
"description": "iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"items": {
"type": "string"
},
"type": "array"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "CHAP Secret for iSCSI target and initiator authentication"
},
"targetPortal": {
"description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"type": "string"
}
},
"required": [
"targetPortal",
"iqn",
"lun"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource": {
"description": "Local represents directly-attached storage with node affinity (Beta feature)",
"properties": {
"fsType": {
"description": "Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a fileystem if unspecified.",
"type": "string"
},
"path": {
"description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": {
"description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "boolean"
},
"server": {
"description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
}
},
"required": [
"server",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": {
"description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.",
"properties": {
"nodeSelectorTerms": {
"description": "Required. A list of node selector terms. The terms are ORed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm"
},
"type": "array"
}
},
"required": [
"nodeSelectorTerms"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": {
"description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "The label key that the selector applies to.",
"type": "string"
},
"operator": {
"description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
"type": "string"
},
"values": {
"description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": {
"description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.",
"properties": {
"matchExpressions": {
"description": "A list of node selector requirements by node's labels.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
},
"matchFields": {
"description": "A list of node selector requirements by node's fields.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference": {
"description": "ObjectReference contains enough information to let you inspect or modify the referred object.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"fieldPath": {
"description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.",
"type": "string"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"namespace": {
"description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
"type": "string"
},
"resourceVersion": {
"description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeSpec": {
"description": "PersistentVolumeSpec is the specification of a persistent volume.",
"properties": {
"accessModes": {
"description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes",
"items": {
"type": "string"
},
"type": "array"
},
"awsElasticBlockStore": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource",
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
},
"azureDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource",
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
},
"azureFile": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFilePersistentVolumeSource",
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
},
"capacity": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity",
"type": "object"
},
"cephfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource",
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
},
"cinder": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderPersistentVolumeSource",
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
},
"claimRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference",
"description": "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding"
},
"csi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIPersistentVolumeSource",
"description": "CSI represents storage that is handled by an external CSI driver (Beta feature)."
},
"fc": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource",
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
},
"flexVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexPersistentVolumeSource",
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
},
"flocker": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource",
"description": "Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running"
},
"gcePersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource",
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
},
"glusterfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsPersistentVolumeSource",
"description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
},
"hostPath": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource",
"description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
},
"iscsi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIPersistentVolumeSource",
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin."
},
"local": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource",
"description": "Local represents directly-attached storage with node affinity"
},
"mountOptions": {
"description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options",
"items": {
"type": "string"
},
"type": "array"
},
"nfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource",
"description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
},
"nodeAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeNodeAffinity",
"description": "NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume."
},
"persistentVolumeReclaimPolicy": {
"description": "What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming",
"type": "string"
},
"photonPersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource",
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
},
"portworxVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource",
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
},
"quobyte": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource",
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
},
"rbd": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDPersistentVolumeSource",
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
},
"scaleIO": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOPersistentVolumeSource",
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
},
"storageClassName": {
"description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
"type": "string"
},
"storageos": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource",
"description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md"
},
"volumeMode": {
"description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.",
"type": "string"
},
"vsphereVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource",
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": {
"description": "Represents a Photon Controller persistent disk resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"pdID": {
"description": "ID that identifies Photon Controller persistent disk",
"type": "string"
}
},
"required": [
"pdID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": {
"description": "PortworxVolumeSource represents a Portworx volume resource.",
"properties": {
"fsType": {
"description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"volumeID": {
"description": "VolumeID uniquely identifies a Portworx volume",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": {
"description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.",
"properties": {
"group": {
"description": "Group to map volume access to Default is no group",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.",
"type": "boolean"
},
"registry": {
"description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes",
"type": "string"
},
"tenant": {
"description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin",
"type": "string"
},
"user": {
"description": "User to map volume access to Defaults to serivceaccount user",
"type": "string"
},
"volume": {
"description": "Volume is a string that references an already created Quobyte volume by name.",
"type": "string"
}
},
"required": [
"registry",
"volume"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDPersistentVolumeSource": {
"description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd",
"type": "string"
},
"image": {
"description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"keyring": {
"description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"monitors": {
"description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"pool": {
"description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
},
"user": {
"description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors",
"image"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOPersistentVolumeSource": {
"description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"",
"type": "string"
},
"gateway": {
"description": "The host address of the ScaleIO API Gateway.",
"type": "string"
},
"protectionDomain": {
"description": "The name of the ScaleIO Protection Domain for the configured storage.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
},
"sslEnabled": {
"description": "Flag to enable/disable SSL communication with Gateway, default false",
"type": "boolean"
},
"storageMode": {
"description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
"type": "string"
},
"storagePool": {
"description": "The ScaleIO Storage Pool associated with the protection domain.",
"type": "string"
},
"system": {
"description": "The name of the storage system as configured in ScaleIO.",
"type": "string"
},
"volumeName": {
"description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
"type": "string"
}
},
"required": [
"gateway",
"system",
"secretRef"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference": {
"description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace",
"properties": {
"name": {
"description": "Name is unique within a namespace to reference a secret resource.",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within which the secret name must be unique.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource": {
"description": "Represents a StorageOS persistent volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference",
"description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted."
},
"volumeName": {
"description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.",
"type": "string"
},
"volumeNamespace": {
"description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeNodeAffinity": {
"description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.",
"properties": {
"required": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector",
"description": "Required specifies hard node constraints that must be met."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": {
"description": "Represents a vSphere volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"storagePolicyID": {
"description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
"type": "string"
},
"storagePolicyName": {
"description": "Storage Policy Based Management (SPBM) profile name.",
"type": "string"
},
"volumePath": {
"description": "Path that identifies vSphere volume vmdk",
"type": "string"
}
},
"required": [
"volumePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1_VolumeAttachmentSource": {
"description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.",
"properties": {
"inlineVolumeSpec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeSpec",
"description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature."
},
"persistentVolumeName": {
"description": "Name of the persistent volume to attach.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.",
"properties": {
"attacher": {
"description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().",
"type": [
"string",
"null"
]
},
"nodeName": {
"description": "The node that the volume should be attached to.",
"type": [
"string",
"null"
]
},
"source": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1_VolumeAttachmentSource",
"description": "Source represents the volume that should be attached."
}
},
"required": [
"attacher",
"source",
"nodeName"
],
"type": "object"
} | kb_1117_Normalized |
{
"description": "Shampoo push message specification",
"properties": {
"push_data": {
"description": "Response data from the called method",
"type": "object"
},
"push_event": {
"description": "Name of the push event",
"type": "string"
},
"type": {
"pattern": "push",
"type": "string"
}
},
"required": [
"type",
"push_event",
"push_data"
],
"type": "object"
} | o88674 |
{
"properties": {
"metrics": {
"properties": {
"enabled": {
"form": true,
"title": "Configure metrics exporter",
"type": "boolean"
}
},
"type": "object"
},
"persistence": {
"properties": {
"size": {
"form": true,
"render": "slider",
"sliderMax": 100,
"sliderMin": 1,
"sliderUnit": "Gi",
"title": "Persistent Volume Size",
"type": "string"
}
},
"type": "object"
},
"postgresqlPassword": {
"form": true,
"title": "Password",
"type": "string"
},
"postgresqlUsername": {
"form": true,
"title": "Admin user",
"type": "string"
},
"replication": {
"form": true,
"properties": {
"enabled": {
"form": true,
"title": "Enable Replication",
"type": "boolean"
},
"slaveReplicas": {
"form": true,
"hidden": {
"condition": false,
"value": "replication.enabled"
},
"title": "Slave Replicas",
"type": "integer"
}
},
"title": "Replication Details",
"type": "object"
},
"resources": {
"description": "Configure resource requests",
"form": true,
"properties": {
"requests": {
"properties": {
"cpu": {
"form": true,
"render": "slider",
"sliderMax": 2000,
"sliderMin": 10,
"sliderUnit": "m",
"title": "CPU Request",
"type": "string"
},
"memory": {
"form": true,
"render": "slider",
"sliderMax": 2048,
"sliderMin": 10,
"sliderUnit": "Mi",
"title": "Memory Request",
"type": "string"
}
},
"type": "object"
}
},
"title": "Required Resources",
"type": "object"
},
"volumePermissions": {
"properties": {
"enabled": {
"description": "Change the owner of the persist volume mountpoint to RunAsUser:fsGroup",
"form": true,
"title": "Enable Init Containers",
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
} | o84051 |
{
"dependencies": {
"shape": [
"rectangle",
"circle",
"triangle"
]
},
"properties": {
"dimensions": {
"dependencies": {
"shape": [
"rectangle"
]
},
"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"
],
"type": "object"
},
"shape": {
"description": "The shape for which to calculate the area",
"enum": [
"rectangle",
"circle",
"triangle"
],
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_7eea9e32 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.