json_schema
stringlengths 43
1.28M
| unique_id
stringlengths 2
41
|
---|---|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"schemas": {
"type": "object",
"properties": {
"baseUri": {
"type": "string"
},
"baseType": {
"type": "string"
},
"types": {
"type": "array",
"items": {
"type": "string"
}
},
"relations": {
"type": "array",
"items": {
"type": "string"
}
},
"equivalence": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"baseUri",
"baseType",
"types",
"relations",
"equivalence"
]
},
"api": {
"type": "object",
"properties": {
"defaultPathRelation": {
"type": "string"
},
"hairRelations": {
"type": "array",
"items": {
"type": "string"
}
},
"exampleUrls": {
"type": "array",
"items": {
"type": "string"
}
},
"bindHost": {
"type": "string"
},
"bindPort": {
"type": "integer"
},
"baseUrl": {
"type": "string"
},
"dataDir": {
"type": "string"
},
"admin": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"password": {
"type": "string"
}
}
}
},
"additionalProperties": false,
"required": [
"bindHost",
"bindPort",
"baseUrl",
"dataDir",
"admin",
"defaultPathRelation",
"hairRelations"
]
},
"stats": {
"type": "object",
"additionalProperties": false,
"required": [
"enabled",
"cronExpression"
],
"properties": {
"enabled": {
"type": "boolean"
},
"cronExpression": {
"type": "string"
}
}
},
"redis": {
"type": "object",
"additionalProperties": false,
"required": [
"host",
"port",
"queue",
"maxQueueSize"
],
"properties": {
"host": {
"type": "string"
},
"port": {
"type": "integer"
},
"queue": {
"type": "string"
},
"maxQueueSize": {
"type": "integer"
}
}
},
"elasticsearch": {
"type": "object",
"additionalProperties": false,
"required": [
"host",
"port"
],
"properties": {
"host": {
"type": "string"
},
"port": {
"type": "integer"
}
}
},
"neo4j": {
"type": "object",
"properties": {
"host": {
"type": "string"
},
"port": {
"type": "integer"
},
"user": {
"type": [
"string",
"null"
]
},
"password": {
"type": [
"string",
"null"
]
}
},
"additionalProperties": false,
"required": [
"host",
"port",
"user",
"password"
]
},
"core": {
"type": "object",
"properties": {
"batchSize": {
"type": "integer"
},
"batchTimeout": {
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"batchSize",
"batchTimeout"
]
},
"viewer": {
"type": "object",
"additionalProperties": false,
"required": [
"language",
"mode",
"logo",
"color",
"suffixFilters"
],
"properties": {
"language": {
"type": "string"
},
"mode": {
"type": "string",
"enum": [
"simple",
"advanced"
]
},
"logo": {
"type": [
"string",
"null"
]
},
"color": {
"type": "string"
},
"suffixFilters": {
"type": "array"
}
}
},
"data": {
"type": "object",
"properties": {
"geonames": {
"type": "object",
"properties": {
"countries": {
"type": "array",
"items": {
"type": "string"
}
},
"extraUris": {
"type": "string"
}
}
},
"tgn": {
"type": "object",
"properties": {
"parents": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"bag": {
"type": "object",
"properties": {
"db": {
"type": "object",
"properties": {
"host": {
"type": "string"
},
"port": {
"type": "integer"
},
"user": {
"type": "string"
},
"password": {
"type": "string"
},
"database": {
"type": "string"
}
}
}
}
}
}
},
"import": {
"type": "object",
"properties": {
"dirs": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
},
"s3": {
"type": "object",
"properties": {
"region": {
"type": [
"string",
"null"
]
},
"accessKeyId": {
"type": [
"string",
"null"
]
},
"secretAccessKey": {
"type": [
"string",
"null"
]
},
"buckets": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"diffTool": {
"type": "string"
}
},
"additionalProperties": false
},
"logo": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"schemas",
"stats",
"api",
"redis",
"elasticsearch",
"neo4j",
"viewer",
"data",
"import",
"logo"
]
}
| o46173 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSet": {
"description": "DaemonSet represents the configuration of a daemon set.",
"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": [
"DaemonSet"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSetSpec",
"description": "The desired behavior of this daemon set. 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_apps_v1_DaemonSetStatus",
"description": "The current status of this daemon set. 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": "apps",
"kind": "DaemonSet",
"version": "v1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSetCondition": {
"description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.",
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Last time the condition transitioned from one status to another."
},
"message": {
"description": "A human readable message indicating details about the transition.",
"type": "string"
},
"reason": {
"description": "The reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "Status of the condition, one of True, False, Unknown.",
"type": "string"
},
"type": {
"description": "Type of DaemonSet condition.",
"type": "string"
}
},
"required": [
"type",
"status"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSetSpec": {
"description": "DaemonSetSpec is the specification of a daemon set.",
"properties": {
"minReadySeconds": {
"_format": "int32",
"description": "The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).",
"type": "integer"
},
"revisionHistoryLimit": {
"_format": "int32",
"description": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
"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 are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors"
},
"template": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec",
"description": "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template"
},
"updateStrategy": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSetUpdateStrategy",
"description": "An update strategy to replace existing DaemonSet pods with new pods."
}
},
"required": [
"selector",
"template"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSetStatus": {
"description": "DaemonSetStatus represents the current status of a daemon set.",
"properties": {
"collisionCount": {
"_format": "int32",
"description": "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.",
"type": "integer"
},
"conditions": {
"description": "Represents the latest available observations of a DaemonSet's current state.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSetCondition"
},
"type": "array",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge"
},
"currentNumberScheduled": {
"_format": "int32",
"description": "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/",
"type": "integer"
},
"desiredNumberScheduled": {
"_format": "int32",
"description": "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/",
"type": "integer"
},
"numberAvailable": {
"_format": "int32",
"description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)",
"type": "integer"
},
"numberMisscheduled": {
"_format": "int32",
"description": "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/",
"type": "integer"
},
"numberReady": {
"_format": "int32",
"description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.",
"type": "integer"
},
"numberUnavailable": {
"_format": "int32",
"description": "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)",
"type": "integer"
},
"observedGeneration": {
"_format": "int64",
"description": "The most recent generation observed by the daemon set controller.",
"type": "integer"
},
"updatedNumberScheduled": {
"_format": "int32",
"description": "The total number of nodes that are running updated daemon pod",
"type": "integer"
}
},
"required": [
"currentNumberScheduled",
"numberMisscheduled",
"desiredNumberScheduled",
"numberReady"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSetUpdateStrategy": {
"description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.",
"properties": {
"rollingUpdate": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateDaemonSet",
"description": "Rolling update config params. Present only if type = \"RollingUpdate\"."
},
"type": {
"description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateDaemonSet": {
"description": "Spec to control the desired behavior of daemon set rolling update.",
"properties": {
"maxUnavailable": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": {
"description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
"type": "integer"
},
"readOnly": {
"description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "boolean"
},
"volumeID": {
"description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity": {
"description": "Affinity is a group of affinity scheduling rules.",
"properties": {
"nodeAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity",
"description": "Describes node affinity scheduling rules for the pod."
},
"podAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity",
"description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))."
},
"podAntiAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity",
"description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": {
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
"properties": {
"cachingMode": {
"description": "Host Caching mode: None, Read Only, Read Write.",
"type": "string"
},
"diskName": {
"description": "The Name of the data disk in the blob storage",
"type": "string"
},
"diskURI": {
"description": "The URI the data disk in the blob storage",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"kind": {
"description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
}
},
"required": [
"diskName",
"diskURI"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource": {
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
"properties": {
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretName": {
"description": "the name of secret that contains Azure Storage Account Name and Key",
"type": "string"
},
"shareName": {
"description": "Share Name",
"type": "string"
}
},
"required": [
"secretName",
"shareName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": {
"description": "Represents a source location of a volume to mount, managed by an external CSI driver",
"properties": {
"driver": {
"description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.",
"type": "string"
},
"nodePublishSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed."
},
"readOnly": {
"description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).",
"type": "boolean"
},
"volumeAttributes": {
"additionalProperties": {
"type": "string"
},
"description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.",
"type": "object"
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": {
"description": "Adds and removes POSIX capabilities from running containers.",
"properties": {
"add": {
"description": "Added capabilities",
"items": {
"type": "string"
},
"type": "array"
},
"drop": {
"description": "Removed capabilities",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": {
"description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"monitors": {
"description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "boolean"
},
"secretFile": {
"description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
},
"user": {
"description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource": {
"description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
},
"volumeID": {
"description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource": {
"description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector": {
"description": "Selects a key from a ConfigMap.",
"properties": {
"key": {
"description": "The key to select.",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its key must be defined",
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection": {
"description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": {
"description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container": {
"description": "A single application container that you want to run within a pod.",
"properties": {
"args": {
"description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"description": "List of environment variables to set in the container. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"envFrom": {
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"image": {
"description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.",
"type": "string"
},
"imagePullPolicy": {
"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
"type": "string"
},
"lifecycle": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle",
"description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated."
},
"livenessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"name": {
"description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.",
"type": "string"
},
"ports": {
"description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"containerPort",
"protocol"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "containerPort",
"x-kubernetes-patch-strategy": "merge"
},
"readinessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"resources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements",
"description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/"
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext",
"description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
},
"startupProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"stdin": {
"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
"type": "boolean"
},
"stdinOnce": {
"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
"type": "boolean"
},
"terminationMessagePath": {
"description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
"type": "string"
},
"terminationMessagePolicy": {
"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
"type": "string"
},
"tty": {
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
"type": "boolean"
},
"volumeDevices": {
"description": "volumeDevices is the list of block devices to be used by the container.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice"
},
"type": "array",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge"
},
"volumeMounts": {
"description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort": {
"description": "ContainerPort represents a network port in a single container.",
"properties": {
"containerPort": {
"_format": "int32",
"description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.",
"type": "integer"
},
"hostIP": {
"description": "What host IP to bind the external port to.",
"type": "string"
},
"hostPort": {
"_format": "int32",
"description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.",
"type": "integer"
},
"name": {
"description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.",
"type": "string"
},
"protocol": {
"description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
"type": "string"
}
},
"required": [
"containerPort"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": {
"description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.",
"properties": {
"items": {
"description": "Items is a list of DownwardAPIVolume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": {
"description": "DownwardAPIVolumeFile represents information to create the file containing the pod field",
"properties": {
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported."
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'",
"type": "string"
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported."
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": {
"description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "Items is a list of downward API volume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": {
"description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
"properties": {
"medium": {
"description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir",
"type": "string"
},
"sizeLimit": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource": {
"description": "EnvFromSource represents the source of a set of ConfigMaps",
"properties": {
"configMapRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource",
"description": "The ConfigMap to select from"
},
"prefix": {
"description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource",
"description": "The Secret to select from"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar": {
"description": "EnvVar represents an environment variable present in a Container.",
"properties": {
"name": {
"description": "Name of the environment variable. Must be a C_IDENTIFIER.",
"type": "string"
},
"value": {
"description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".",
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource",
"description": "Source for the environment variable's value. Cannot be used if value is not empty."
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource": {
"description": "EnvVarSource represents a source for the value of an EnvVar.",
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector",
"description": "Selects a key of a ConfigMap."
},
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs."
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported."
},
"secretKeyRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector",
"description": "Selects a key of a secret in the pod's namespace"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer": {
"description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.",
"properties": {
"args": {
"description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"description": "List of environment variables to set in the container. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"envFrom": {
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"image": {
"description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images",
"type": "string"
},
"imagePullPolicy": {
"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
"type": "string"
},
"lifecycle": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle",
"description": "Lifecycle is not allowed for ephemeral containers."
},
"livenessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"name": {
"description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.",
"type": "string"
},
"ports": {
"description": "Ports are not allowed for ephemeral containers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort"
},
"type": "array"
},
"readinessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"resources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements",
"description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod."
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext",
"description": "SecurityContext is not allowed for ephemeral containers."
},
"startupProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"stdin": {
"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
"type": "boolean"
},
"stdinOnce": {
"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
"type": "boolean"
},
"targetContainerName": {
"description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.",
"type": "string"
},
"terminationMessagePath": {
"description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
"type": "string"
},
"terminationMessagePolicy": {
"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
"type": "string"
},
"tty": {
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
"type": "boolean"
},
"volumeDevices": {
"description": "volumeDevices is the list of block devices to be used by the container.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice"
},
"type": "array",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge"
},
"volumeMounts": {
"description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": {
"description": "ExecAction describes a \"run in container\" action.",
"properties": {
"command": {
"description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": {
"description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "Optional: FC target lun number",
"type": "integer"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"targetWWNs": {
"description": "Optional: FC target worldwide names (WWNs)",
"items": {
"type": "string"
},
"type": "array"
},
"wwids": {
"description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource": {
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
"properties": {
"driver": {
"description": "Driver is the name of the driver to use for this volume.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.",
"type": "string"
},
"options": {
"additionalProperties": {
"type": "string"
},
"description": "Optional: Extra command options if any.",
"type": "object"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts."
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": {
"description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.",
"properties": {
"datasetName": {
"description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
"type": "string"
},
"datasetUUID": {
"description": "UUID of the dataset. This is unique identifier of a Flocker dataset",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": {
"description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "integer"
},
"pdName": {
"description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "boolean"
}
},
"required": [
"pdName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource": {
"description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
"properties": {
"directory": {
"description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.",
"type": "string"
},
"repository": {
"description": "Repository URL",
"type": "string"
},
"revision": {
"description": "Commit hash for the specified revision.",
"type": "string"
}
},
"required": [
"repository"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": {
"description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"endpoints": {
"description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"path": {
"description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "boolean"
}
},
"required": [
"endpoints",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction": {
"description": "HTTPGetAction describes an action based on HTTP Get requests.",
"properties": {
"host": {
"description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
"type": "string"
},
"httpHeaders": {
"description": "Custom headers to set in the request. HTTP allows repeated headers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader"
},
"type": "array"
},
"path": {
"description": "Path to access on the HTTP server.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
},
"scheme": {
"description": "Scheme to use for connecting to the host. Defaults to HTTP.",
"type": "string"
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": {
"description": "HTTPHeader describes a custom header to be used in HTTP probes",
"properties": {
"name": {
"description": "The header field name",
"type": "string"
},
"value": {
"description": "The header field value",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": {
"description": "Handler defines a specific action that should be taken",
"properties": {
"exec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"httpGet": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"tcpSocket": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias": {
"description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
"properties": {
"hostnames": {
"description": "Hostnames for the above IP address.",
"items": {
"type": "string"
},
"type": "array"
},
"ip": {
"description": "IP address of the host file entry.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": {
"description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
},
"type": {
"description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource": {
"description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
"properties": {
"chapAuthDiscovery": {
"description": "whether support iSCSI Discovery CHAP authentication",
"type": "boolean"
},
"chapAuthSession": {
"description": "whether support iSCSI Session CHAP authentication",
"type": "boolean"
},
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi",
"type": "string"
},
"initiatorName": {
"description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
"type": "string"
},
"iqn": {
"description": "Target iSCSI Qualified Name.",
"type": "string"
},
"iscsiInterface": {
"description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "iSCSI Target Lun number.",
"type": "integer"
},
"portals": {
"description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"items": {
"type": "string"
},
"type": "array"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "CHAP Secret for iSCSI target and initiator authentication"
},
"targetPortal": {
"description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"type": "string"
}
},
"required": [
"targetPortal",
"iqn",
"lun"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath": {
"description": "Maps a string key to a path within a volume.",
"properties": {
"key": {
"description": "The key to project.",
"type": "string"
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.",
"type": "string"
}
},
"required": [
"key",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle": {
"description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.",
"properties": {
"postStart": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler",
"description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
},
"preStop": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler",
"description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": {
"description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": {
"description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "boolean"
},
"server": {
"description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
}
},
"required": [
"server",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity": {
"description": "Node affinity is a group of node affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector",
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": {
"description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.",
"properties": {
"nodeSelectorTerms": {
"description": "Required. A list of node selector terms. The terms are ORed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm"
},
"type": "array"
}
},
"required": [
"nodeSelectorTerms"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": {
"description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "The label key that the selector applies to.",
"type": "string"
},
"operator": {
"description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
"type": "string"
},
"values": {
"description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": {
"description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.",
"properties": {
"matchExpressions": {
"description": "A list of node selector requirements by node's labels.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
},
"matchFields": {
"description": "A list of node selector requirements by node's fields.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": {
"description": "ObjectFieldSelector selects an APIVersioned field of an object.",
"properties": {
"apiVersion": {
"description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
"type": "string"
},
"fieldPath": {
"description": "Path of the field to select in the specified API version.",
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": {
"description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).",
"properties": {
"claimName": {
"description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
"type": "string"
},
"readOnly": {
"description": "Will force the ReadOnly setting in VolumeMounts. Default false.",
"type": "boolean"
}
},
"required": [
"claimName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": {
"description": "Represents a Photon Controller persistent disk resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"pdID": {
"description": "ID that identifies Photon Controller persistent disk",
"type": "string"
}
},
"required": [
"pdID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity": {
"description": "Pod affinity is a group of inter pod affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": {
"description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running",
"properties": {
"labelSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "A label query over a set of resources, in this case pods."
},
"namespaces": {
"description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"",
"items": {
"type": "string"
},
"type": "array"
},
"topologyKey": {
"description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.",
"type": "string"
}
},
"required": [
"topologyKey"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": {
"description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig": {
"description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.",
"properties": {
"nameservers": {
"description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.",
"items": {
"type": "string"
},
"type": "array"
},
"options": {
"description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption"
},
"type": "array"
},
"searches": {
"description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption": {
"description": "PodDNSConfigOption defines DNS resolver options of a pod.",
"properties": {
"name": {
"description": "Required.",
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate": {
"description": "PodReadinessGate contains the reference to a pod condition",
"properties": {
"conditionType": {
"description": "ConditionType refers to a condition in the pod's condition list with matching type.",
"type": "string"
}
},
"required": [
"conditionType"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext": {
"description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.",
"properties": {
"fsGroup": {
"_format": "int64",
"description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.",
"type": "integer"
},
"fsGroupChangePolicy": {
"description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".",
"type": "string"
},
"runAsGroup": {
"_format": "int64",
"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"type": "integer"
},
"runAsNonRoot": {
"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "boolean"
},
"runAsUser": {
"_format": "int64",
"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"type": "integer"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container."
},
"supplementalGroups": {
"description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.",
"items": {
"_format": "int64",
"type": "integer"
},
"type": "array"
},
"sysctls": {
"description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl"
},
"type": "array"
},
"windowsOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions",
"description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec": {
"description": "PodSpec is a description of a pod.",
"properties": {
"activeDeadlineSeconds": {
"_format": "int64",
"description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.",
"type": "integer"
},
"affinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity",
"description": "If specified, the pod's scheduling constraints"
},
"automountServiceAccountToken": {
"description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.",
"type": "boolean"
},
"containers": {
"description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"dnsConfig": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig",
"description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy."
},
"dnsPolicy": {
"description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.",
"type": "string"
},
"enableServiceLinks": {
"description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.",
"type": "boolean"
},
"ephemeralContainers": {
"description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"hostAliases": {
"description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias"
},
"type": "array",
"x-kubernetes-patch-merge-key": "ip",
"x-kubernetes-patch-strategy": "merge"
},
"hostIPC": {
"description": "Use the host's ipc namespace. Optional: Default to false.",
"type": "boolean"
},
"hostNetwork": {
"description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.",
"type": "boolean"
},
"hostPID": {
"description": "Use the host's pid namespace. Optional: Default to false.",
"type": "boolean"
},
"hostname": {
"description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.",
"type": "string"
},
"imagePullSecrets": {
"description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"initContainers": {
"description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"nodeName": {
"description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.",
"type": "string"
},
"nodeSelector": {
"additionalProperties": {
"type": "string"
},
"description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/",
"type": "object"
},
"overhead": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.",
"type": "object"
},
"preemptionPolicy": {
"description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.",
"type": "string"
},
"priority": {
"_format": "int32",
"description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.",
"type": "integer"
},
"priorityClassName": {
"description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.",
"type": "string"
},
"readinessGates": {
"description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate"
},
"type": "array"
},
"restartPolicy": {
"description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy",
"type": "string"
},
"runtimeClassName": {
"description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.",
"type": "string"
},
"schedulerName": {
"description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.",
"type": "string"
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext",
"description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field."
},
"serviceAccount": {
"description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
"type": "string"
},
"serviceAccountName": {
"description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
"type": "string"
},
"shareProcessNamespace": {
"description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.",
"type": "boolean"
},
"subdomain": {
"description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.",
"type": "string"
},
"terminationGracePeriodSeconds": {
"_format": "int64",
"description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.",
"type": "integer"
},
"tolerations": {
"description": "If specified, the pod's tolerations.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration"
},
"type": "array"
},
"topologySpreadConstraints": {
"description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is only honored by clusters that enable the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"topologyKey",
"whenUnsatisfiable"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "topologyKey",
"x-kubernetes-patch-strategy": "merge"
},
"volumes": {
"description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge,retainKeys"
}
},
"required": [
"containers"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec": {
"description": "PodTemplateSpec describes the data a pod should have when created from a template",
"properties": {
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec",
"description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": {
"description": "PortworxVolumeSource represents a Portworx volume resource.",
"properties": {
"fsType": {
"description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"volumeID": {
"description": "VolumeID uniquely identifies a Portworx volume",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm": {
"description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).",
"properties": {
"preference": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm",
"description": "A node selector term, associated with the corresponding weight."
},
"weight": {
"_format": "int32",
"description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
"type": "integer"
}
},
"required": [
"weight",
"preference"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe": {
"description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.",
"properties": {
"exec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"failureThreshold": {
"_format": "int32",
"description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
"type": "integer"
},
"httpGet": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"initialDelaySeconds": {
"_format": "int32",
"description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
"type": "integer"
},
"periodSeconds": {
"_format": "int32",
"description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
"type": "integer"
},
"successThreshold": {
"_format": "int32",
"description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.",
"type": "integer"
},
"tcpSocket": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
},
"timeoutSeconds": {
"_format": "int32",
"description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
"type": "integer"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource": {
"description": "Represents a projected volume source",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"sources": {
"description": "list of volume projections",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection"
},
"type": "array"
}
},
"required": [
"sources"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": {
"description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.",
"properties": {
"group": {
"description": "Group to map volume access to Default is no group",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.",
"type": "boolean"
},
"registry": {
"description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes",
"type": "string"
},
"tenant": {
"description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin",
"type": "string"
},
"user": {
"description": "User to map volume access to Defaults to serivceaccount user",
"type": "string"
},
"volume": {
"description": "Volume is a string that references an already created Quobyte volume by name.",
"type": "string"
}
},
"required": [
"registry",
"volume"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource": {
"description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd",
"type": "string"
},
"image": {
"description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"keyring": {
"description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"monitors": {
"description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"pool": {
"description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
},
"user": {
"description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors",
"image"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": {
"description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
"properties": {
"containerName": {
"description": "Container name: required for volumes, optional for env vars",
"type": "string"
},
"divisor": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Specifies the output format of the exposed resources, defaults to \"1\""
},
"resource": {
"description": "Required: resource to select",
"type": "string"
}
},
"required": [
"resource"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements": {
"description": "ResourceRequirements describes the compute resource requirements.",
"properties": {
"limits": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": "object"
},
"requests": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": {
"description": "SELinuxOptions are the labels to be applied to the container",
"properties": {
"level": {
"description": "Level is SELinux level label that applies to the container.",
"type": "string"
},
"role": {
"description": "Role is a SELinux role label that applies to the container.",
"type": "string"
},
"type": {
"description": "Type is a SELinux type label that applies to the container.",
"type": "string"
},
"user": {
"description": "User is a SELinux user label that applies to the container.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": {
"description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".",
"type": "string"
},
"gateway": {
"description": "The host address of the ScaleIO API Gateway.",
"type": "string"
},
"protectionDomain": {
"description": "The name of the ScaleIO Protection Domain for the configured storage.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
},
"sslEnabled": {
"description": "Flag to enable/disable SSL communication with Gateway, default false",
"type": "boolean"
},
"storageMode": {
"description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
"type": "string"
},
"storagePool": {
"description": "The ScaleIO Storage Pool associated with the protection domain.",
"type": "string"
},
"system": {
"description": "The name of the storage system as configured in ScaleIO.",
"type": "string"
},
"volumeName": {
"description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
"type": "string"
}
},
"required": [
"gateway",
"system",
"secretRef"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource": {
"description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector": {
"description": "SecretKeySelector selects a key of a Secret.",
"properties": {
"key": {
"description": "The key of the secret to select from. Must be a valid secret key.",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection": {
"description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": {
"description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"optional": {
"description": "Specify whether the Secret or its keys must be defined",
"type": "boolean"
},
"secretName": {
"description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext": {
"description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.",
"properties": {
"allowPrivilegeEscalation": {
"description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN",
"type": "boolean"
},
"capabilities": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities",
"description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime."
},
"privileged": {
"description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.",
"type": "boolean"
},
"procMount": {
"description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.",
"type": "string"
},
"readOnlyRootFilesystem": {
"description": "Whether this container has a read-only root filesystem. Default is false.",
"type": "boolean"
},
"runAsGroup": {
"_format": "int64",
"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "integer"
},
"runAsNonRoot": {
"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "boolean"
},
"runAsUser": {
"_format": "int64",
"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "integer"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
},
"windowsOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions",
"description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": {
"description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).",
"properties": {
"audience": {
"description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.",
"type": "string"
},
"expirationSeconds": {
"_format": "int64",
"description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.",
"type": "integer"
},
"path": {
"description": "Path is the path relative to the mount point of the file to project the token into.",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": {
"description": "Represents a StorageOS persistent volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted."
},
"volumeName": {
"description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.",
"type": "string"
},
"volumeNamespace": {
"description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl": {
"description": "Sysctl defines a kernel parameter to be set",
"properties": {
"name": {
"description": "Name of a property to set",
"type": "string"
},
"value": {
"description": "Value of a property to set",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction": {
"description": "TCPSocketAction describes an action based on opening a socket",
"properties": {
"host": {
"description": "Optional: Host name to connect to, defaults to the pod IP.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": {
"description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
"properties": {
"effect": {
"description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
"type": "string"
},
"key": {
"description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.",
"type": "string"
},
"operator": {
"description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.",
"type": "string"
},
"tolerationSeconds": {
"_format": "int64",
"description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.",
"type": "integer"
},
"value": {
"description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint": {
"description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
"properties": {
"labelSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain."
},
"maxSkew": {
"_format": "int32",
"description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.",
"type": "integer"
},
"topologyKey": {
"description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.",
"type": "string"
},
"whenUnsatisfiable": {
"description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.",
"type": "string"
}
},
"required": [
"maxSkew",
"topologyKey",
"whenUnsatisfiable"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume": {
"description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
"properties": {
"awsElasticBlockStore": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource",
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
},
"azureDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource",
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
},
"azureFile": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource",
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
},
"cephfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource",
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
},
"cinder": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource",
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
},
"configMap": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource",
"description": "ConfigMap represents a configMap that should populate this volume"
},
"csi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource",
"description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)."
},
"downwardAPI": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource",
"description": "DownwardAPI represents downward API about the pod that should populate this volume"
},
"emptyDir": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource",
"description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
},
"fc": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource",
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
},
"flexVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource",
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
},
"flocker": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource",
"description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
},
"gcePersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource",
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
},
"gitRepo": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource",
"description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
},
"glusterfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource",
"description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
},
"hostPath": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource",
"description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
},
"iscsi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource",
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
},
"name": {
"description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"nfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource",
"description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
},
"persistentVolumeClaim": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource",
"description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
},
"photonPersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource",
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
},
"portworxVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource",
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
},
"projected": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource",
"description": "Items for all in one resources secrets, configmaps, and downward API"
},
"quobyte": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource",
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
},
"rbd": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource",
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
},
"scaleIO": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource",
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
},
"secret": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource",
"description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
},
"storageos": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource",
"description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
},
"vsphereVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource",
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": {
"description": "volumeDevice describes a mapping of a raw block device within a container.",
"properties": {
"devicePath": {
"description": "devicePath is the path inside of the container that the device will be mapped to.",
"type": "string"
},
"name": {
"description": "name must match the name of a persistentVolumeClaim in the pod",
"type": "string"
}
},
"required": [
"name",
"devicePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": {
"description": "VolumeMount describes a mounting of a Volume within a container.",
"properties": {
"mountPath": {
"description": "Path within the container at which the volume should be mounted. Must not contain ':'.",
"type": "string"
},
"mountPropagation": {
"description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.",
"type": "string"
},
"name": {
"description": "This must match the Name of a Volume.",
"type": "string"
},
"readOnly": {
"description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
"type": "boolean"
},
"subPath": {
"description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
"type": "string"
},
"subPathExpr": {
"description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.",
"type": "string"
}
},
"required": [
"name",
"mountPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": {
"description": "Projection that may be projected along with other supported volume types",
"properties": {
"configMap": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection",
"description": "information about the configMap data to project"
},
"downwardAPI": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection",
"description": "information about the downwardAPI data to project"
},
"secret": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection",
"description": "information about the secret data to project"
},
"serviceAccountToken": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection",
"description": "information about the serviceAccountToken data to project"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": {
"description": "Represents a vSphere volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"storagePolicyID": {
"description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
"type": "string"
},
"storagePolicyName": {
"description": "Storage Policy Based Management (SPBM) profile name.",
"type": "string"
},
"volumePath": {
"description": "Path that identifies vSphere volume vmdk",
"type": "string"
}
},
"required": [
"volumePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": {
"description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
"properties": {
"podAffinityTerm": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm",
"description": "Required. A pod affinity term, associated with the corresponding weight."
},
"weight": {
"_format": "int32",
"description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
"type": "integer"
}
},
"required": [
"weight",
"podAffinityTerm"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": {
"description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
"properties": {
"gmsaCredentialSpec": {
"description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.",
"type": "string"
},
"gmsaCredentialSpecName": {
"description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
"type": "string"
},
"runAsUserName": {
"description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": {
"description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
"properties": {
"continue": {
"description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
"type": "string"
},
"remainingItemCount": {
"_format": "int64",
"description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
"type": "integer"
},
"resourceVersion": {
"description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"description": "DaemonSetList is a collection of daemon sets.",
"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": [
"apps/v1"
],
"type": [
"string",
"null"
]
},
"items": {
"description": "A list of daemon sets.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSet"
},
"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": [
"DaemonSetList"
],
"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": "apps",
"kind": "DaemonSetList",
"version": "v1"
}
]
} | kb_233_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"alternateText": {
"type": "string"
},
"default": {
"type": "string"
},
"xl": {
"type": "string"
},
"l": {
"type": "string"
},
"m": {
"type": "string"
},
"s": {
"type": "string"
},
"options": {
"$ref": "#/definitions/options"
}
},
"definitions": {
"options": {
"type": "object",
"properties": {
"default": {
"type": "string"
},
"xl": {
"type": "string"
},
"l": {
"type": "string"
},
"m": {
"type": "string"
},
"s": {
"type": "string"
}
},
"additionalProperties": false
}
},
"required": [
"alternateText",
"default"
],
"additionalProperties": false
} | o27018 |
{
"$defs": {
"ruleProperties": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"excludes": {
"type": "array",
"items": {
"type": "string"
}
},
"ignoreAnnotated": {
"type": "array",
"items": {
"type": "string"
}
},
"ignoreFunction": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://json.schemastore.org/detekt-1.22.0.json",
"properties": {
"build": {
"type": "object",
"properties": {
"maxIssues": {
"type": "integer"
},
"excludeCorrectable": {
"type": "boolean"
},
"weights": {
"type": "object",
"additionalProperties": {
"type": "integer"
}
}
}
},
"config": {
"type": "object",
"properties": {
"validation": {
"type": "boolean"
},
"warningsAsErrors": {
"type": "boolean"
},
"checkExhaustiveness": {
"type": "boolean"
},
"excludes": {
"type": "string"
}
}
},
"processors": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"exclude": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"console-reports": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"exclude": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"output-reports": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"exclude": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"comments": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"AbsentOrWrongFileLicense": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"licenseTemplateFile": {
"type": "string"
},
"licenseTemplateIsRegex": {
"type": "boolean"
}
}
},
"CommentOverPrivateFunction": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"CommentOverPrivateProperty": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"DeprecatedBlockTag": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EndOfSentenceFormat": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"endOfSentenceFormat": {
"type": "string"
}
}
},
"KDocReferencesNonPublicProperty": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"OutdatedDocumentation": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"matchTypeParameters": {
"type": "boolean"
},
"matchDeclarationsOrder": {
"type": "boolean"
},
"allowParamOnConstructorProperties": {
"type": "boolean"
}
}
},
"UndocumentedPublicClass": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"searchInNestedClass": {
"type": "boolean"
},
"searchInInnerClass": {
"type": "boolean"
},
"searchInInnerObject": {
"type": "boolean"
},
"searchInInnerInterface": {
"type": "boolean"
},
"searchInProtectedClass": {
"type": "boolean"
}
}
},
"UndocumentedPublicFunction": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"searchProtectedFunction": {
"type": "boolean"
}
}
},
"UndocumentedPublicProperty": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"searchProtectedProperty": {
"type": "boolean"
}
}
}
}
},
"complexity": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"CognitiveComplexMethod": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"threshold": {
"type": "integer"
}
}
},
"ComplexCondition": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"threshold": {
"type": "integer"
}
}
},
"ComplexInterface": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"threshold": {
"type": "integer"
},
"includeStaticDeclarations": {
"type": "boolean"
},
"includePrivateDeclarations": {
"type": "boolean"
},
"ignoreOverloaded": {
"type": "boolean"
}
}
},
"CyclomaticComplexMethod": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"threshold": {
"type": "integer"
},
"ignoreSingleWhenExpression": {
"type": "boolean"
},
"ignoreSimpleWhenEntries": {
"type": "boolean"
},
"ignoreNestingFunctions": {
"type": "boolean"
},
"nestingFunctions": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"LabeledExpression": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"ignoredLabels": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"LargeClass": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"threshold": {
"type": "integer"
}
}
},
"LongMethod": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"threshold": {
"type": "integer"
}
}
},
"LongParameterList": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"functionThreshold": {
"type": "integer"
},
"constructorThreshold": {
"type": "integer"
},
"ignoreDefaultParameters": {
"type": "boolean"
},
"ignoreDataClasses": {
"type": "boolean"
},
"ignoreAnnotatedParameter": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"MethodOverloading": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"threshold": {
"type": "integer"
}
}
},
"NamedArguments": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"threshold": {
"type": "integer"
},
"ignoreArgumentsMatchingNames": {
"type": "boolean"
}
}
},
"NestedBlockDepth": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"threshold": {
"type": "integer"
}
}
},
"NestedScopeFunctions": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"threshold": {
"type": "integer"
},
"functions": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"ReplaceSafeCallChainWithRun": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"StringLiteralDuplication": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"threshold": {
"type": "integer"
},
"ignoreAnnotation": {
"type": "boolean"
},
"excludeStringsWithLessThan5Characters": {
"type": "boolean"
},
"ignoreStringsRegex": {
"type": "string"
}
}
},
"TooManyFunctions": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"thresholdInFiles": {
"type": "integer"
},
"thresholdInClasses": {
"type": "integer"
},
"thresholdInInterfaces": {
"type": "integer"
},
"thresholdInObjects": {
"type": "integer"
},
"thresholdInEnums": {
"type": "integer"
},
"ignoreDeprecated": {
"type": "boolean"
},
"ignorePrivate": {
"type": "boolean"
},
"ignoreOverridden": {
"type": "boolean"
}
}
}
}
},
"coroutines": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"GlobalCoroutineUsage": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"InjectDispatcher": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"dispatcherNames": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"RedundantSuspendModifier": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"SleepInsteadOfDelay": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"SuspendFunWithCoroutineScopeReceiver": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"SuspendFunWithFlowReturnType": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
}
}
},
"empty-blocks": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"EmptyCatchBlock": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"allowedExceptionNameRegex": {
"type": "string"
}
}
},
"EmptyClassBlock": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EmptyDefaultConstructor": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EmptyDoWhileBlock": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EmptyElseBlock": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EmptyFinallyBlock": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EmptyForBlock": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EmptyFunctionBlock": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"ignoreOverridden": {
"type": "boolean"
}
}
},
"EmptyIfBlock": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EmptyInitBlock": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EmptyKtFile": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EmptySecondaryConstructor": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EmptyTryBlock": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EmptyWhenBlock": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EmptyWhileBlock": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
}
}
},
"exceptions": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"ExceptionRaisedInUnexpectedLocation": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"methodNames": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"InstanceOfCheckForException": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"NotImplementedDeclaration": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ObjectExtendsThrowable": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"PrintStackTrace": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"RethrowCaughtException": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ReturnFromFinally": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"ignoreLabeled": {
"type": "boolean"
}
}
},
"SwallowedException": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"ignoredExceptionTypes": {
"type": "array",
"items": {
"type": "string"
}
},
"allowedExceptionNameRegex": {
"type": "string"
}
}
},
"ThrowingExceptionFromFinally": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ThrowingExceptionInMain": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ThrowingExceptionsWithoutMessageOrCause": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"exceptions": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"ThrowingNewInstanceOfSameException": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"TooGenericExceptionCaught": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"exceptionNames": {
"type": "array",
"items": {
"type": "string"
}
},
"allowedExceptionNameRegex": {
"type": "string"
}
}
},
"TooGenericExceptionThrown": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"exceptionNames": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
"naming": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"BooleanPropertyNaming": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"allowedPattern": {
"type": "string"
},
"ignoreOverridden": {
"type": "boolean"
}
}
},
"ClassNaming": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"classPattern": {
"type": "string"
}
}
},
"ConstructorParameterNaming": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"parameterPattern": {
"type": "string"
},
"privateParameterPattern": {
"type": "string"
},
"excludeClassPattern": {
"type": "string"
},
"ignoreOverridden": {
"type": "boolean"
}
}
},
"EnumNaming": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"enumEntryPattern": {
"type": "string"
}
}
},
"ForbiddenClassName": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"forbiddenName": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"FunctionMaxLength": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"maximumFunctionNameLength": {
"type": "integer"
}
}
},
"FunctionMinLength": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"minimumFunctionNameLength": {
"type": "integer"
}
}
},
"FunctionNaming": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"functionPattern": {
"type": "string"
},
"excludeClassPattern": {
"type": "string"
},
"ignoreOverridden": {
"type": "boolean"
}
}
},
"FunctionParameterNaming": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"parameterPattern": {
"type": "string"
},
"excludeClassPattern": {
"type": "string"
},
"ignoreOverridden": {
"type": "boolean"
}
}
},
"InvalidPackageDeclaration": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"rootPackage": {
"type": "string"
},
"requireRootInDeclaration": {
"type": "boolean"
}
}
},
"LambdaParameterNaming": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"parameterPattern": {
"type": "string"
}
}
},
"MatchingDeclarationName": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"mustBeFirst": {
"type": "boolean"
}
}
},
"MemberNameEqualsClassName": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"ignoreOverridden": {
"type": "boolean"
}
}
},
"NoNameShadowing": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"NonBooleanPropertyPrefixedWithIs": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ObjectPropertyNaming": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"constantPattern": {
"type": "string"
},
"propertyPattern": {
"type": "string"
},
"privatePropertyPattern": {
"type": "string"
}
}
},
"PackageNaming": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"packagePattern": {
"type": "string"
}
}
},
"TopLevelPropertyNaming": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"constantPattern": {
"type": "string"
},
"propertyPattern": {
"type": "string"
},
"privatePropertyPattern": {
"type": "string"
}
}
},
"VariableMaxLength": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"maximumVariableNameLength": {
"type": "integer"
}
}
},
"VariableMinLength": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"minimumVariableNameLength": {
"type": "integer"
}
}
},
"VariableNaming": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"variablePattern": {
"type": "string"
},
"privateVariablePattern": {
"type": "string"
},
"excludeClassPattern": {
"type": "string"
},
"ignoreOverridden": {
"type": "boolean"
}
}
}
}
},
"performance": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"ArrayPrimitive": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"CouldBeSequence": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"threshold": {
"type": "integer"
}
}
},
"ForEachOnRange": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"SpreadOperator": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnnecessaryPartOfBinaryExpression": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnnecessaryTemporaryInstantiation": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
}
}
},
"potential-bugs": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"AvoidReferentialEquality": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"forbiddenTypePatterns": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"CastToNullableType": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"Deprecation": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"DontDowncastCollectionTypes": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"DoubleMutabilityForCollection": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"mutableTypes": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"ElseCaseInsteadOfExhaustiveWhen": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EqualsAlwaysReturnsTrueOrFalse": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EqualsWithHashCodeExist": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ExitOutsideMain": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ExplicitGarbageCollectionCall": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"HasPlatformType": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"IgnoredReturnValue": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"restrictToConfig": {
"type": "boolean"
},
"returnValueAnnotations": {
"type": "array",
"items": {
"type": "string"
}
},
"ignoreReturnValueAnnotations": {
"type": "array",
"items": {
"type": "string"
}
},
"returnValueTypes": {
"type": "array",
"items": {
"type": "string"
}
},
"ignoreFunctionCall": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"ImplicitDefaultLocale": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ImplicitUnitReturnType": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"allowExplicitReturnType": {
"type": "boolean"
}
}
},
"InvalidRange": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"IteratorHasNextCallsNextMethod": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"IteratorNotThrowingNoSuchElementException": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"LateinitUsage": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"ignoreOnClassesPattern": {
"type": "string"
}
}
},
"MapGetWithNotNullAssertionOperator": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"MissingPackageDeclaration": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"NullCheckOnMutableProperty": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"NullableToStringCall": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnconditionalJumpStatementInLoop": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnnecessaryNotNullCheck": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnnecessaryNotNullOperator": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnnecessarySafeCall": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnreachableCatchBlock": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnreachableCode": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnsafeCallOnNullableType": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnsafeCast": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnusedUnaryOperator": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UselessPostfixExpression": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"WrongEqualsTypeParameter": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
}
}
},
"style": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"AlsoCouldBeApply": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"CanBeNonNullable": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"CascadingCallWrapping": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"includeElvis": {
"type": "boolean"
}
}
},
"ClassOrdering": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"CollapsibleIfStatements": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"DataClassContainsFunctions": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"conversionFunctionPrefix": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"DataClassShouldBeImmutable": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"DestructuringDeclarationWithTooManyEntries": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"maxDestructuringEntries": {
"type": "integer"
}
}
},
"EqualsNullCall": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"EqualsOnSignatureLine": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ExplicitCollectionElementAccessMethod": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ExplicitItLambdaParameter": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ExpressionBodySyntax": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"includeLineWrapping": {
"type": "boolean"
}
}
},
"ForbiddenComment": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"values": {
"type": "array",
"items": {
"type": "string"
}
},
"allowedPatterns": {
"type": "string"
},
"customMessage": {
"type": "string"
}
}
},
"ForbiddenImport": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"imports": {
"type": "array",
"items": {
"type": "object",
"properties": {
"value": {
"type": "string"
},
"reason": {
"type": "string"
}
},
"required": ["value"]
}
},
"forbiddenPatterns": {
"type": "string"
}
}
},
"ForbiddenMethodCall": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"methods": {
"type": "array",
"items": {
"type": "object",
"properties": {
"value": {
"type": "string"
},
"reason": {
"type": "string"
}
},
"required": ["value"]
}
}
}
},
"ForbiddenSuppress": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"rules": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"ForbiddenVoid": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"ignoreOverridden": {
"type": "boolean"
},
"ignoreUsageInGenerics": {
"type": "boolean"
}
}
},
"FunctionOnlyReturningConstant": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"ignoreOverridableFunction": {
"type": "boolean"
},
"ignoreActualFunction": {
"type": "boolean"
},
"excludedFunctions": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"LoopWithTooManyJumpStatements": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"maxJumpCount": {
"type": "integer"
}
}
},
"MagicNumber": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"ignoreNumbers": {
"type": "array",
"items": {
"type": "string"
}
},
"ignoreHashCodeFunction": {
"type": "boolean"
},
"ignorePropertyDeclaration": {
"type": "boolean"
},
"ignoreLocalVariableDeclaration": {
"type": "boolean"
},
"ignoreConstantDeclaration": {
"type": "boolean"
},
"ignoreCompanionObjectPropertyDeclaration": {
"type": "boolean"
},
"ignoreAnnotation": {
"type": "boolean"
},
"ignoreNamedArgument": {
"type": "boolean"
},
"ignoreEnums": {
"type": "boolean"
},
"ignoreRanges": {
"type": "boolean"
},
"ignoreExtensionFunctions": {
"type": "boolean"
}
}
},
"MandatoryBracesIfStatements": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"MandatoryBracesLoops": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"MaxChainedCallsOnSameLine": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"maxChainedCalls": {
"type": "integer"
}
}
},
"MaxLineLength": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"maxLineLength": {
"type": "integer"
},
"excludePackageStatements": {
"type": "boolean"
},
"excludeImportStatements": {
"type": "boolean"
},
"excludeCommentStatements": {
"type": "boolean"
},
"excludeRawStrings": {
"type": "boolean"
}
}
},
"MayBeConst": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ModifierOrder": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"MultilineLambdaItParameter": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"MultilineRawStringIndentation": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"indentSize": {
"type": "integer"
}
}
},
"NestedClassesVisibility": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"NewLineAtEndOfFile": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"NoTabs": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"NullableBooleanCheck": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ObjectLiteralToLambda": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"OptionalAbstractKeyword": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"OptionalUnit": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"OptionalWhenBraces": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"PreferToOverPairSyntax": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ProtectedMemberInFinalClass": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"RedundantExplicitType": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"RedundantHigherOrderMapUsage": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"RedundantVisibilityModifierRule": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ReturnCount": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"max": {
"type": "integer"
},
"excludedFunctions": {
"type": "array",
"items": {
"type": "string"
}
},
"excludeLabeled": {
"type": "boolean"
},
"excludeReturnFromLambda": {
"type": "boolean"
},
"excludeGuardClauses": {
"type": "boolean"
}
}
},
"SafeCast": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"SerialVersionUIDInSerializableClass": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"SpacingBetweenPackageAndImports": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ThrowsCount": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"max": {
"type": "integer"
},
"excludeGuardClauses": {
"type": "boolean"
}
}
},
"TrailingWhitespace": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"TrimMultilineRawString": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnderscoresInNumericLiterals": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"acceptableLength": {
"type": "integer"
},
"allowNonStandardGrouping": {
"type": "boolean"
}
}
},
"UnnecessaryAbstractClass": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnnecessaryAnnotationUseSiteTarget": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnnecessaryApply": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnnecessaryBackticks": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnnecessaryFilter": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnnecessaryInheritance": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnnecessaryInnerClass": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnnecessaryLet": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnnecessaryParentheses": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"allowForUnclearPrecedence": {
"type": "boolean"
}
}
},
"UntilInsteadOfRangeTo": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnusedImports": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnusedPrivateClass": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UnusedPrivateMember": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"allowedNames": {
"type": "string"
}
}
},
"UseAnyOrNoneInsteadOfFind": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UseArrayLiteralsInAnnotations": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UseCheckNotNull": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UseCheckOrError": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UseDataClass": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"allowVars": {
"type": "boolean"
}
}
},
"UseEmptyCounterpart": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UseIfEmptyOrIfBlank": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UseIfInsteadOfWhen": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UseIsNullOrEmpty": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UseOrEmpty": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UseRequire": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UseRequireNotNull": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UseSumOfInsteadOfFlatMapSize": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UselessCallOnNotNull": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"UtilityClassWithPublicConstructor": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"VarCouldBeVal": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"ignoreLateinitVar": {
"type": "boolean"
}
}
},
"WildcardImport": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"excludeImports": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
"formatting": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"android": {
"type": "boolean"
},
"autoCorrect": {
"type": "boolean"
},
"AnnotationOnSeparateLine": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"AnnotationSpacing": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"ArgumentListWrapping": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
},
"indentSize": {
"type": "integer"
},
"maxLineLength": {
"type": "integer"
}
}
},
"BlockCommentInitialStarAlignment": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"ChainWrapping": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"CommentSpacing": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"CommentWrapping": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
},
"indentSize": {
"type": "integer"
}
}
},
"DiscouragedCommentLocation": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"EnumEntryNameCase": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"Filename": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"FinalNewline": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
},
"insertFinalNewLine": {
"type": "boolean"
}
}
},
"FunKeywordSpacing": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"FunctionReturnTypeSpacing": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"FunctionSignature": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
},
"forceMultilineWhenParameterCountGreaterOrEqualThan": {
"type": "integer"
},
"functionBodyExpressionWrapping": {
"type": "string"
},
"maxLineLength": {
"type": "integer"
},
"indentSize": {
"type": "integer"
}
}
},
"FunctionStartOfBodySpacing": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"FunctionTypeReferenceSpacing": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"ImportOrdering": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
},
"layout": {
"type": "string"
}
}
},
"Indentation": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
},
"indentSize": {
"type": "integer"
}
}
},
"KdocWrapping": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
},
"indentSize": {
"type": "integer"
}
}
},
"MaximumLineLength": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"maxLineLength": {
"type": "integer"
},
"ignoreBackTickedIdentifier": {
"type": "boolean"
}
}
},
"ModifierListSpacing": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"ModifierOrdering": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"MultiLineIfElse": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"NoBlankLineBeforeRbrace": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"NoBlankLinesInChainedMethodCalls": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"NoConsecutiveBlankLines": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"NoEmptyClassBody": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"NoEmptyFirstLineInMethodBlock": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"NoLineBreakAfterElse": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"NoLineBreakBeforeAssignment": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"NoMultipleSpaces": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"NoSemicolons": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"NoTrailingSpaces": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"NoUnitReturn": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"NoUnusedImports": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"NoWildcardImports": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"packagesToUseImportOnDemandProperty": {
"type": "string"
}
}
},
"NullableTypeSpacing": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"PackageName": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"ParameterListSpacing": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"ParameterListWrapping": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
},
"maxLineLength": {
"type": "integer"
}
}
},
"SpacingAroundAngleBrackets": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"SpacingAroundColon": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"SpacingAroundComma": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"SpacingAroundCurly": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"SpacingAroundDot": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"SpacingAroundDoubleColon": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"SpacingAroundKeyword": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"SpacingAroundOperators": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"SpacingAroundParens": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"SpacingAroundRangeOperator": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"SpacingAroundUnaryOperator": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"SpacingBetweenDeclarationsWithAnnotations": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"SpacingBetweenDeclarationsWithComments": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"SpacingBetweenFunctionNameAndOpeningParenthesis": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"StringTemplate": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"TrailingCommaOnCallSite": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
},
"useTrailingCommaOnCallSite": {
"type": "boolean"
}
}
},
"TrailingCommaOnDeclarationSite": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
},
"useTrailingCommaOnDeclarationSite": {
"type": "boolean"
}
}
},
"TypeArgumentListSpacing": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"TypeParameterListSpacing": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"UnnecessaryParenthesesBeforeTrailingLambda": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
}
}
},
"Wrapping": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"autoCorrect": {
"type": "boolean"
},
"indentSize": {
"type": "integer"
}
}
}
}
},
"libraries": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"ForbiddenPublicDataClass": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
],
"properties": {
"ignorePackages": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"LibraryCodeMustSpecifyReturnType": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"LibraryEntitiesShouldNotBePublic": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
}
}
},
"ruleauthors": {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"UseEntityAtName": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
},
"ViolatesTypeResolutionRequirements": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ruleProperties"
}
]
}
}
}
},
"type": "object"
}
| detekt-1 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"items": {
"properties": {
"product_name": {
"description": "The name of the product",
"type": "string"
},
"quantity": {
"description": "The quantity of the product",
"type": "integer"
},
"unit_price": {
"description": "The unit price of the product",
"type": "number"
}
},
"required": [
"product_name",
"quantity",
"unit_price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"items"
],
"type": "object"
} | create_invoice_8409a342 |
{
"properties": {
"dimensions": {
"description": "The dimensions required to calculate the area",
"oneOf": [
{
"properties": {
"shape": {
"const": "rectangle"
}
},
"required": [
"length",
"width"
]
},
{
"properties": {
"shape": {
"const": "circle"
}
},
"required": [
"radius"
]
},
{
"properties": {
"shape": {
"const": "triangle"
}
},
"required": [
"base",
"height"
]
}
],
"properties": {
"base": {
"description": "The base of the shape",
"type": "number"
},
"height": {
"description": "The height of the shape",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The shape for which the area needs to be calculated",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_a5ac6157 |
{
"$id": "https://json.schemastore.org/drupal-services.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"parameters": {
"title": "Service parameters",
"type": "object"
},
"services": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"class": {
"title": "Service class",
"type": "string"
},
"parent": {
"title": "Parent service to extend",
"type": "string"
},
"factory": {
"title": "A factory to create the object",
"oneOf": [
{
"type": "string"
},
{
"type": "array"
}
]
},
"decorates": {
"title": "Service name to decorate",
"type": "string"
},
"deprecated": {
"title": "A flag indicating that the service is deprecated",
"type": "string"
},
"lazy": {
"title": "Lazy service instantiation",
"type": "boolean"
},
"shared": {
"title": "Shared service",
"type": "boolean"
},
"abstract": {
"title": "Abstract service",
"type": "boolean"
},
"public": {
"title": "A flag indication that the service cannot be accessed directly from the container object",
"type": "boolean"
},
"alias": {
"title": "A shortcut to access some services",
"type": "string"
},
"arguments": {
"title": "Service arguments",
"type": "array",
"uniqueItems": true
},
"configurator": {
"title": "A callable to configure a service after its instantiation",
"type": "array",
"items": {
"type": "string"
}
},
"tags": {
"title": "List of tags tell Drupal that your service can be processed in some special way",
"examples": [
"event_subscriber",
"service_collector",
"theme_negotiator",
"twig.extension",
"access_check"
],
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"call": {
"type": "string"
},
"alias": {
"type": "string"
},
"required": {
"type": "boolean"
},
"tag": {
"type": "string"
},
"priority": {
"type": "integer"
},
"default_backend": {
"type": "string"
},
"responder": {
"type": "boolean"
},
"format": {
"type": "string"
},
"applies_to": {
"type": "string"
},
"provider_id": {
"type": "string"
},
"needs_incoming_request": {
"type": "boolean"
},
"scheme": {
"type": "string"
}
}
}
},
"calls": {
"title": "Methods to set optional dependencies",
"type": "array",
"uniqueItems": true
}
}
}
}
},
"title": "JSON schema for Drupal services file",
"type": "object"
}
| drupal-services |
{
"description": "NamespaceSpec describes the attributes on a Namespace.",
"properties": {
"finalizers": {
"description": "Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
}
},
"type": "object"
} | kb_580_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_GroupSubject": {
"description": "GroupSubject holds detailed information for group-kind subject.",
"properties": {
"name": {
"description": "name is the user group that matches, or \"*\" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_NonResourcePolicyRule": {
"description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.",
"properties": {
"nonResourceURLs": {
"description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n - \"/healthz\" is legal\n - \"/hea*\" is illegal\n - \"/hea\" is legal but matches nothing\n - \"/hea/*\" also matches nothing\n - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
},
"verbs": {
"description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
}
},
"required": [
"verbs",
"nonResourceURLs"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_ResourcePolicyRule": {
"description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request.",
"properties": {
"apiGroups": {
"description": "`apiGroups` is a list of matching API groups and may not be empty. \"*\" matches all API groups and, if present, must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
},
"clusterScope": {
"description": "`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list.",
"type": "boolean"
},
"namespaces": {
"description": "`namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains \"*\". Note that \"*\" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
},
"resources": {
"description": "`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ \"services\", \"nodes/status\" ]. This list may not be empty. \"*\" matches all resources and, if present, must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
},
"verbs": {
"description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs and, if present, must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
}
},
"required": [
"verbs",
"apiGroups",
"resources"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_ServiceAccountSubject": {
"description": "ServiceAccountSubject holds detailed information for service-account-kind subject.",
"properties": {
"name": {
"description": "`name` is the name of matching ServiceAccount objects, or \"*\" to match regardless of name. Required.",
"type": "string"
},
"namespace": {
"description": "`namespace` is the namespace of matching ServiceAccount objects. Required.",
"type": "string"
}
},
"required": [
"namespace",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_Subject": {
"description": "Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.",
"properties": {
"group": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_GroupSubject"
},
"kind": {
"description": "Required",
"type": "string"
},
"serviceAccount": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_ServiceAccountSubject"
},
"user": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_UserSubject"
}
},
"required": [
"kind"
],
"type": "object",
"x-kubernetes-unions": [
{
"discriminator": "kind",
"fields-to-discriminateBy": {
"group": "Group",
"serviceAccount": "ServiceAccount",
"user": "User"
}
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_UserSubject": {
"description": "UserSubject holds detailed information for user-kind subject.",
"properties": {
"name": {
"description": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.",
"properties": {
"nonResourceRules": {
"description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_NonResourcePolicyRule"
},
"type": [
"array",
"null"
],
"x-kubernetes-list-type": "atomic"
},
"resourceRules": {
"description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_ResourcePolicyRule"
},
"type": [
"array",
"null"
],
"x-kubernetes-list-type": "atomic"
},
"subjects": {
"description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_Subject"
},
"type": [
"array",
"null"
],
"x-kubernetes-list-type": "atomic"
}
},
"required": [
"subjects"
],
"type": "object"
} | kb_750_Normalized |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"description": "The items in the sale",
"items": {
"properties": {
"name": {
"description": "The name of the item",
"type": "string"
},
"price": {
"description": "The price of the item",
"type": "number"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
}
},
"required": [
"name",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"items"
],
"type": "object"
} | generate_invoice_9061a3aa |
{
"id": "http://schemas.triniti.io/json-schema/triniti/canvas/mixin/image-block/1-0-0.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"etag": {
"type": "string",
"pattern": "^[\\w\\.:-]+$",
"pbj": {
"type": "string",
"rule": "single"
}
},
"css_class": {
"type": "string",
"pattern": "^[\\w\\s-]+$",
"description": "In rendering environments that support HTML the css_class can be appended to the dom elements' class attribute.",
"pbj": {
"type": "string",
"rule": "single"
}
},
"updated_date": {
"type": "string",
"format": "date-time",
"description": "Represents an update that occurred on the node this block is attached to. DOES NOT indicate an update to the block itself. eg an article with a twitter block with updated_date means that the article was updated to include that twitter block.",
"pbj": {
"type": "date-time",
"rule": "single"
}
},
"aside": {
"type": "boolean",
"description": "When true it means this block represents a portion of a document whose content is only indirectly related to the document's main content. Asides are frequently presented as sidebars or call-out boxes.",
"pbj": {
"type": "boolean",
"rule": "single"
}
},
"node_ref": {
"type": "string",
"pattern": "^[\\w\\/\\.:-]+$",
"pbj": {
"type": "identifier",
"rule": "single"
}
},
"title": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"description": "An optional override for the title of the node.",
"pbj": {
"type": "string",
"rule": "single"
}
},
"caption": {
"type": "string",
"minLength": 0,
"maxLength": 5000,
"pbj": {
"type": "text",
"rule": "single"
}
},
"is_nsfw": {
"type": "boolean",
"pbj": {
"type": "boolean",
"rule": "single"
}
},
"url": {
"type": "string",
"pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$",
"pbj": {
"type": "text",
"rule": "single",
"format": "url"
}
},
"aspect_ratio": {
"type": "string",
"enum": [
"unknown",
"auto",
"1by1",
"2by3",
"3by2",
"3by4",
"4by3",
"4by5",
"5by4",
"9by16",
"16by9",
"original",
"custom"
],
"pbj": {
"type": "string-enum",
"rule": "single"
}
},
"fallback_src_url": {
"type": "string",
"pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$",
"description": "For imported image blocks it may be necessary to store the old URL.",
"pbj": {
"type": "text",
"rule": "single",
"format": "url"
}
}
},
"required": [
"node_ref"
],
"additionalProperties": true
} | o82667 |
{
"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_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_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_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_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_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_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_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_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_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_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_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_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_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_settings_v1alpha1_PodPreset": {
"description": "PodPreset is a policy resource that defines additional runtime requirements for a Pod.",
"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": [
"PodPreset"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_settings_v1alpha1_PodPresetSpec"
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "settings.k8s.io",
"kind": "PodPreset",
"version": "v1alpha1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_settings_v1alpha1_PodPresetSpec": {
"description": "PodPresetSpec is a description of a pod preset.",
"properties": {
"env": {
"description": "Env defines the collection of EnvVar to inject into containers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array"
},
"envFrom": {
"description": "EnvFrom defines the collection of EnvFromSource to inject into containers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"selector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "Selector is a label query over a set of resources, in this case pods. Required."
},
"volumeMounts": {
"description": "VolumeMounts defines the collection of VolumeMount to inject into containers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array"
},
"volumes": {
"description": "Volumes defines the collection of Volume to inject into the pod.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume"
},
"type": "array"
}
},
"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": "PodPresetList is a list of PodPreset 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 a list of schema objects.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_settings_v1alpha1_PodPreset"
},
"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": [
"PodPresetList"
],
"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": "settings.k8s.io",
"kind": "PodPresetList",
"version": "v1alpha1"
}
]
} | kb_712_Normalized |
{
"properties": {
"category": {
"description": "The category of products to search in",
"type": "string"
},
"keywords": {
"description": "The keywords to search for",
"type": "string"
},
"price_range": {
"properties": {
"max_price": {
"description": "The maximum price of the products",
"type": "number"
},
"min_price": {
"description": "The minimum price of the products",
"type": "number"
}
},
"required": [
"min_price",
"max_price"
],
"type": "object"
}
},
"required": [
"keywords",
"category",
"price_range"
],
"type": "object"
} | search_products_f3bf4157 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "dolittle.io/schemas/DotNET.SDK/Artifacts.Configuration/artifacts.json",
"title": "Artifacts Configuration",
"description": "The artifacts configuration",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/artifactsByTypeDefinition"
},
"definitions": {
"artifactsByTypeDefinition": {
"description": "The artifacts by type definition",
"type": "object",
"properties": {
"commands": {
"description": "The command artifacts of a Feature",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/artifactDefinition"
}
},
"events": {
"description": "The event artifacts of a Feature",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/artifactDefinition"
}
},
"eventSources": {
"description": "The event source artifacts of a Feature",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/artifactDefinition"
}
},
"readModels": {
"description": "The read model artifacts of a Feature",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/artifactDefinition"
}
},
"queries": {
"description": "The query artifacts of a Feature",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/artifactDefinition"
}
}
},
"required": ["commands", "events", "eventSources", "readModels", "queries"]
},
"artifactDefinition": {
"description": "The definition of an artifact",
"type": "object",
"properties": {
"generation": {
"description": "The artifact generation",
"type": "number"
},
"type": {
"description": "The CLR Type represented by the artifact ",
"type": "string"
}
},
"required": ["generation", "type"]
}
}
} | artifacts |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://zenodo.org/schemas/records/file-v1.0.0.json",
"properties": {
"_buckets": {
"type": "object",
"properties": {
"deposit": {
"description": "UUID of the deposit bucket.",
"type": "string"
},
"record": {
"description": "UUID of the record bucket.",
"type": "string"
},
"extra_formats": {
"description": "UUID of the extra formats bucket.",
"type": "string"
}
}
},
"_files": {
"description": "List of files attached to the record.",
"items": {
"description": "Describes the information of a single file in the record.",
"properties": {
"bucket": {
"description": "UUID of the bucket to which this file is assigned.",
"type": "string"
},
"checksum": {
"description": "Checksum the file. Starts with '<algorithm>:' prefix, e.g.: 'md5:1234abcd...'",
"type": "string"
},
"file_id": {
"description": "UUID of the FileInstance object.",
"type": "string"
},
"key": {
"description": "Key (filename) of the file.",
"type": "string"
},
"previewer": {
"description": "Identifier for previewer needed to preview this file.",
"type": "string"
},
"size": {
"description": "Size of the file in bytes.",
"type": "integer"
},
"type": {
"description": "File type extension.",
"type": "string"
},
"version_id": {
"description": "UUID of the ObjectVersion object.",
"type": "string"
}
},
"required": [
"bucket",
"checksum",
"file_id",
"key",
"size",
"type",
"version_id"
],
"title": "File schema.",
"type": "object"
},
"type": "array"
}
},
"title": "Zenodo Files Schema v1.0.0",
"type": "object"
} | o91023 |
{
"additionalProperties": false,
"properties": {
"version": {
"pattern": "^[0-9]\\.[0-9]\\.[0-9](-[0-9A-Za-z]+)?$",
"type": "string"
}
},
"required": [
"version"
],
"type": "object"
} | o82284 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://thrift.apache.org/schema.json#",
"description": "Schema for Apache Thrift protocol descriptors",
"definitions": {
"type-id": {
"title": "Any type id (name)",
"enum": [
"void",
"string",
"bool",
"byte",
"i8",
"i16",
"i32",
"i64",
"double",
"list",
"set",
"map",
"union",
"struct",
"binary"
]
},
"base-type": {
"title": "Base type schema",
"type": "object",
"properties": {
"typeId": {
"enum": [
"void",
"string",
"bool",
"byte",
"i8",
"i16",
"i32",
"i64",
"double",
"binary"
]
}
},
"required": [
"typeId"
]
},
"list-type": {
"title": "List and set schema",
"type": "object",
"properties": {
"typeId": {
"enum": [
"list",
"set"
]
},
"elemTypeId": {
"$ref": "#/definitions/type-id"
},
"elemType": {
"$ref": "#/definitions/type-desc"
}
},
"required": [
"typeId",
"elemTypeId"
]
},
"map-type": {
"title": "Map schema",
"type": "object",
"properties": {
"typeId": {
"enum": [
"map"
]
},
"keyTypeId": {
"$ref": "#/definitions/type-id"
},
"keyType": {
"$ref": "#/definitions/type-desc"
},
"valueTypeId": {
"$ref": "#/definitions/type-id"
},
"valueType": {
"$ref": "#/definitions/type-desc"
}
},
"required": [
"typeId",
"keyTypeId",
"valueTypeId"
]
},
"struct-type": {
"title": "Struct, union and exception schema",
"type": "object",
"properties": {
"typeId": {
"enum": [
"union",
"struct",
"exception"
]
}
},
"required": [
"typeId",
"class"
]
},
"type-desc": {
"title": "Type descriptor schema",
"allOf": [
{
"type": "object",
"properties": {
"typeId": {
"type": "string"
},
"class": {
"type": "string"
}
}
},
{
"oneOf": [
{
"$ref": "#/definitions/base-type"
},
{
"$ref": "#/definitions/list-type"
},
{
"$ref": "#/definitions/map-type"
},
{
"$ref": "#/definitions/struct-type"
}
]
}
]
},
"name-and-doc": {
"title": "Name and documentation sub-schema",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"doc": {
"type": "string"
}
},
"required": [
"name"
]
},
"enum": {
"title": "Thrift 'enum' definition schema",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/name-and-doc"
},
{
"required": [
"members"
],
"properties": {
"members": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"required": [
"name",
"value"
]
}
}
}
}
]
},
"typedef": {
"title": "Thrift typedef definition schema",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/name-and-doc"
},
{
"properties": {
"typeId": {
"$ref": "#/definitions/type-id"
},
"type": {
"$ref": "#/definitions/type-desc"
}
},
"required": [
"typeId"
]
}
]
},
"constant": {
"title": "Thrift constant definition schema",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/name-and-doc"
},
{
"$ref": "#/definitions/type-desc"
},
{
"properties": {
"value": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "array"
},
{
"type": "object"
}
]
}
},
"required": [
"value"
]
}
]
},
"field": {
"title": "Thrift struct field definition schema",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/name-and-doc"
},
{
"properties": {
"key": {
"type": "integer",
"minimum": 1,
"maximum": 65535
},
"required": {
"enum": [
"required",
"optional",
"req_out"
]
},
"typeId": {
"$ref": "#/definitions/type-id"
},
"type": {
"$ref": "#/definitions/type-desc"
},
"default": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "array"
},
{
"type": "object"
}
]
}
},
"required": [
"key",
"required"
]
}
]
},
"struct": {
"title": "Thrift struct definition schema",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/name-and-doc"
},
{
"properties": {
"isException": {
"type": "boolean"
},
"isUnion": {
"type": "boolean"
},
"fields": {
"type": "array",
"items": {
"$ref": "#/definitions/field"
}
}
},
"required": [
"isException",
"isUnion",
"fields"
]
}
]
},
"union": {
"title": "Thrift union definition schema",
"$ref": "#/definitions/struct"
},
"exception": {
"title": "Thrift exception definition schema",
"type": "object",
"properties": {
"key": {
"type": "integer",
"minimum": 1,
"maximum": 65535
},
"name": {
"type": "string"
},
"typeId": {
"enum": [
"exception"
]
},
"type": {
"$ref": "#/definitions/struct-type"
}
},
"required": [
"key",
"name",
"typeId"
]
},
"function": {
"title": "Thrift service function definition schema",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/name-and-doc"
},
{
"properties": {
"oneway": {
"type": "boolean"
},
"returnType": {
"$ref": "#/definitions/type-desc"
},
"arguments": {
"type": "array",
"items": {
"$ref": "#/definitions/field"
}
},
"exceptions": {
"type": "array",
"items": {
"$ref": "#/definitions/exception"
}
}
},
"required": [
"oneway",
"arguments",
"exceptions"
]
}
]
},
"service": {
"title": "Thrift service definition schema",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/name-and-doc"
},
{
"properties": {
"functions": {
"type": "array",
"items": {
"$ref": "#/definitions/function"
}
}
},
"required": [
"functions"
]
}
]
},
"annotations": {
"title": "Map of annotation names to values",
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"type": "object",
"required": [
"name",
"enums",
"typedefs",
"structs",
"constants",
"services"
],
"properties": {
"name": {
"type": "string"
},
"includes": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"namespaces": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"enums": {
"type": "array",
"items": {
"$ref": "#/definitions/enum"
}
},
"typedefs": {
"type": "array",
"items": {
"$ref": "#/definitions/typedef"
}
},
"structs": {
"type": "array",
"items": {
"$ref": "#/definitions/struct"
}
},
"constants": {
"type": "array",
"items": {
"$ref": "#/definitions/constant"
}
},
"services": {
"type": "array",
"items": {
"$ref": "#/definitions/service"
}
}
},
"additionalProperties": false
} | o90832 |
{
"$id": "https://json.schemastore.org/tldr.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"platform": {
"oneOf": [
{
"enum": ["linux"]
},
{
"type": "string"
}
]
},
"pagesRepository": {
"type": "string"
},
"repository": {
"type": "string"
},
"skipUpdateWhenPageNotFound": {
"type": "boolean"
},
"theme": {
"type": "string"
},
"themes": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"commandName": {
"type": "string"
},
"mainDescription": {
"type": "string"
},
"exampleDescription": {
"type": "string"
},
"exampleCode": {
"type": "string"
},
"exampleToken": {
"type": "string"
}
}
}
}
},
"type": "object"
}
| tldr |
{
"$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": [
"EiffelArtifactDeployedEvent"
]
},
"version": {
"type": "string",
"enum": [
"1.0.0"
],
"default": "1.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": "object",
"properties": {
"groupId": {
"type": "string"
},
"artifactId": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"groupId",
"artifactId",
"version"
],
"additionalProperties": false
},
"uri": {
"type": "string"
}
},
"additionalProperties": false
},
"security": {
"type": "object",
"properties": {
"sdm": {
"type": "object",
"properties": {
"authorIdentity": {
"type": "string"
},
"encryptedDigest": {
"type": "string"
}
},
"required": [
"authorIdentity",
"encryptedDigest"
],
"additionalProperties": false
}
},
"additionalProperties": false
}
},
"required": [
"id",
"type",
"version",
"time",
"source"
],
"additionalProperties": false
},
"data": {
"type": "object",
"properties": {
"uri": {
"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"
],
"additonalProperties": false
} | o89891 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"minItems": 0,
"_uniqueItems": true,
"items": {
"type": "object",
"properties": {
"hmrcTransactionID": {
"$ref": "#/definitions/IDType"
},
"accountID": {
"$ref": "#/definitions/IDType"
},
"paymentReference": {
"$ref": "#/definitions/IDType"
},
"transactionType": {
"$ref": "#/definitions/transactionTypeType"
},
"transactionTimestamp": {
"$ref": "#/definitions/ISO8601-Timestamp"
},
"LISAManagerReferenceNumber": {
"$ref": "#/definitions/LISAManagerReferenceNumberType"
},
"amount": {
"type": "number"
},
"paymentForTransaction": {
"$ref": "#/definitions/IDType"
},
"applicablePeriod": {
"type": "object",
"properties": {
"startDate": {
"$ref": "#/definitions/ISO8601-Date"
},
"endDate": {
"$ref": "#/definitions/ISO8601-Date"
}
}
},
"_links": {
"type": "object"
}
},
"required": [
"hmrcTransactionID",
"accountID",
"LISAManagerReferenceNumber",
"paymentReference",
"amount",
"paymentForTransaction",
"transactionType",
"applicablePeriod"
],
"additionalProperties": false
},
"definitions": {
"ISO8601-Date": {
"type": "string",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
},
"ISO8601-Timestamp": {
"type": "string",
"pattern": "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}(:\\d{2})?(([+-]\\d{2}(:\\d{2})?)|Z)"
},
"financialPeriodType": {
"type": "object",
"properties": {
"startDate": {
"$ref": "#/definitions/ISO8601-Date"
},
"endDate": {
"$ref": "#/definitions/ISO8601-Date"
}
}
},
"IDType": {
"type": "string",
"pattern": "^\\d{10}$"
},
"LISAManagerReferenceNumberType": {
"type": "string",
"pattern": "^Z\\d{6}$"
},
"transactionTypeType": {
"type": "string",
"enum": [
"bonus",
"charge"
]
}
}
} | o70370 |
{
"properties": {
"args": {
"items": {
"type": [
"string",
"number"
]
},
"type": "array"
},
"description": {
"type": "string"
},
"dialogue": {
"items": {
"properties": {
"name": {
"type": "string"
},
"strictness": {
"type": "boolean"
},
"type": {
"enum": [
"output",
"input"
],
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"type",
"name",
"value"
],
"type": "object"
},
"type": "array"
},
"exit_code": {
"oneOf": [
{
"maximum": 255,
"minimum": 0,
"type": "number"
},
{
"type": "null"
}
]
},
"feedback": {
"properties": {
"text": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"type": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"type": "object"
},
"flow": {
"type": "boolean"
},
"id": {
"type": "string"
},
"log": {
"properties": {
"quotes": {
"items": {
"properties": {
"name": {
"type": "string"
},
"type": {
"properties": {
"en": {
"enum": [
"output",
"input",
"printing"
],
"type": "string"
},
"he": {
"enum": [
"\u05e4\u05dc\u05d8",
"\u05e7\u05dc\u05d8",
"\u05d4\u05d3\u05e4\u05e1\u05d4"
],
"type": "string"
}
},
"required": [
"en",
"he"
],
"type": "object"
},
"value": {
"type": [
"string",
"number"
]
}
},
"required": [
"type",
"value"
],
"type": "object"
},
"type": "array"
},
"text": {
"type": "string"
}
},
"required": [
"quotes",
"text"
],
"type": "object"
},
"name": {
"type": "string"
},
"result": {
"properties": {
"bool": {
"type": "boolean"
},
"text": {
"enum": [
"\u05d4\u05e6\u05dc\u05d7\u05d4",
"\u05d0\u05d9-\u05d4\u05e6\u05dc\u05d7\u05d4"
],
"type": "string"
}
},
"required": [
"bool",
"text"
],
"type": "object"
},
"signal_code": {
"oneOf": [
{
"maximum": 30,
"minimum": 1,
"type": "number"
},
{
"type": "null"
}
]
},
"strictness": {
"type": "boolean"
},
"timeout": {
"minimum": 0,
"type": "number"
},
"verbosity": {
"maximum": 5,
"minimum": 0,
"type": "number"
}
},
"required": [
"id",
"name",
"description",
"timeout",
"verbosity",
"flow",
"strictness",
"args",
"dialogue",
"log",
"result",
"feedback",
"exit_code",
"signal_code"
],
"type": "object"
} | o75601 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base length of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"side_length": {
"description": "The side length of the square",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of geometric shape (e.g. circle, square, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_e6269e12 |
{
"title": "Invocation manifest for FreeSurfer (v6.0.1): Recon-All",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"config": {
"type": "object",
"properties": {
"subject_id": {
"type": "string"
},
"parallel": {
"type": "boolean",
"default": true
},
"n_cpus": {
"type": "integer",
"minimum": 1
},
"reconall_options": {
"default": "-all -qcache",
"type": "string"
},
"hippocampal_subfields": {
"default": true,
"type": "boolean"
},
"brainstem_structures": {
"default": true,
"type": "boolean"
},
"register_surfaces": {
"default": true,
"type": "boolean"
},
"convert_surfaces": {
"default": true,
"type": "boolean"
},
"convert_volumes": {
"default": true,
"type": "boolean"
},
"convert_stats": {
"default": true,
"type": "boolean"
},
"freesurfer_license": {
"type": "string"
}
},
"required": [
"parallel",
"reconall_options",
"hippocampal_subfields",
"brainstem_structures",
"register_surfaces",
"convert_surfaces",
"convert_volumes",
"convert_stats"
]
},
"inputs": {
"type": "object",
"properties": {
"api-key": {
"type": "object"
},
"freesurfer_license_file": {
"type": "object",
"properties": {}
},
"anatomical": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti",
"dicom",
"archive"
]
}
}
},
"t1w_anatomical_2": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
},
"t1w_anatomical_3": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
},
"t1w_anatomical_4": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
},
"t1w_anatomical_5": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
},
"t2w_anatomical": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
}
},
"required": [
"api-key",
"anatomical"
]
}
},
"required": [
"config",
"inputs"
]
} | o41475 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DaemonEndpoint": {
"description": "DaemonEndpoint contains information about a single Daemon endpoint.",
"properties": {
"Port": {
"_format": "int32",
"description": "Port number of the given endpoint.",
"type": "integer"
}
},
"required": [
"Port"
],
"type": "object"
}
},
"description": "NodeDaemonEndpoints lists ports opened by daemons running on the Node.",
"properties": {
"kubeletEndpoint": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DaemonEndpoint",
"description": "Endpoint on which Kubelet is listening."
}
},
"type": "object"
} | kb_619_Normalized |
{
"$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": [
"mainstream_browse_page"
]
},
"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": [
"mainstream_browse_page"
]
},
"title": {
"$ref": "#/definitions/title"
},
"update_type": {
"$ref": "#/definitions/update_type"
}
},
"definitions": {
"description": {
"type": "string"
},
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"type": "string",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$"
},
"access_limited": {
"type": "object",
"additionalProperties": false,
"properties": {
"auth_bypass_ids": {
"description": "Deprecated: auth_bypass_ids should be sent as a separate field",
"$ref": "#/definitions/guid_list"
},
"organisations": {
"description": "A list of organisation content ids permitted access to this item",
"$ref": "#/definitions/guid_list"
},
"users": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"analytics_identifier": {
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations.",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"type": "object",
"additionalProperties": false,
"properties": {
"groups": {
"$ref": "#/definitions/topic_groups"
},
"internal_name": {
"$ref": "#/definitions/taxonomy_internal_name"
},
"ordered_second_level_browse_pages": {
"description": "All 2nd level browse pages under active_top_level_browse_page, with ordering preserved",
"$ref": "#/definitions/guid_list"
},
"second_level_ordering": {
"enum": [
"alphabetical",
"curated"
]
}
}
},
"first_published_at": {
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string",
"format": "date-time"
},
"guid": {
"type": "string",
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$"
},
"guid_list": {
"type": "array",
"items": {
"$ref": "#/definitions/guid"
},
"_uniqueItems": true
},
"locale": {
"type": "string",
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
]
},
"public_updated_at": {
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string",
"format": "date-time"
},
"publishing_app_name": {
"description": "The application that published this item.",
"type": "string",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
]
},
"rendering_app": {
"description": "The application that renders this item.",
"type": "string",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
]
},
"route": {
"type": "object",
"required": [
"path",
"type"
],
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"type": {
"enum": [
"prefix",
"exact"
]
}
}
},
"routes": {
"type": "array",
"items": {
"$ref": "#/definitions/route"
},
"minItems": 1
},
"taxonomy_internal_name": {
"description": "An internal name for taxonomy admin interfaces. Includes parent.",
"type": "string"
},
"title": {
"type": "string"
},
"topic_groups": {
"description": "Lists of items with titles & paths in named groups, used for showing curated links on browse pages and topics",
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"contents"
],
"additionalProperties": false,
"properties": {
"content_ids": {
"description": "DEPRECATED",
"$ref": "#/definitions/guid_list"
},
"contents": {
"type": "array",
"items": {
"$ref": "#/definitions/absolute_path"
}
},
"description": {
"description": "DEPRECATED",
"type": "string"
},
"name": {
"type": "string"
}
}
}
},
"update_type": {
"enum": [
"major",
"minor",
"republish"
]
}
}
} | o21286 |
{
"properties": {
"dimensions": {
"oneOf": [
{
"required": [
"length",
"width"
]
},
{
"required": [
"radius"
]
},
{
"required": [
"base",
"height"
]
}
],
"properties": {
"base": {
"description": "The base length 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_type": {
"description": "The type of shape (e.g. rectangle, circle, triangle)",
"type": "string"
}
},
"required": [
"shape_type",
"dimensions"
],
"type": "object"
} | calculate_area_245ee1e7 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://github.com/ohadschn/ET4W/src/events-schema.json",
"definitions": {
"etwNativeType": {
"enum": [
"Boolean",
"Char",
"SByte",
"Byte",
"Int16",
"UInt16",
"Int32",
"UInt32",
"Int64",
"UInt64",
"Single",
"Double",
"DateTime",
"String",
"GUID",
"IntPtr",
"ByteArray"
]
},
"etwEventLevel": {
"enum": [
"Verbose",
"Informational",
"Warning",
"Error",
"Critical",
"LogAlways"
]
},
"etwOpcode": {
"enum": [
"Info",
"Start",
"Stop",
"DataCollectionStart",
"DataCollectionStop",
"Extension",
"Reply",
"Resume",
"Suspend",
"Send",
"Receive"
]
},
"etwChannel": {
"enum": [
"Admin",
"Analytic",
"Debug",
"None",
"Operational"
]
},
"identifier": {
"type": "string",
"pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$"
},
"fullyQualifiedIdentifier": {
"type": "string",
"pattern": "^[a-zA-Z_](\\.?[a-zA-Z0-9_]+)*$"
},
"identifier-array": {
"type": "array",
"_uniqueItems": true,
"items": {
"$ref": "#/definitions/identifier"
}
},
"customType": {
"type": "object",
"properties": {
"fullyQualifiedName": {
"$ref": "#/definitions/fullyQualifiedIdentifier"
},
"targetType": {
"$ref": "#/definitions/etwNativeType"
}
},
"required": [
"fullyQualifiedName",
"targetType"
]
},
"customType-array": {
"type": "array",
"_uniqueItems": true,
"items": {
"$ref": "#/definitions/customType"
}
},
"parameter": {
"type": "object",
"properties": {
"name": {
"$ref": "#/definitions/identifier"
}
},
"required": [
"name"
],
"oneOf": [
{
"properties": {
"type": {
"$ref": "#/definitions/etwNativeType"
}
},
"required": [
"type"
]
},
{
"properties": {
"customType": {
"$ref": "#/definitions/fullyQualifiedIdentifier"
}
},
"required": [
"customType"
]
}
]
},
"parameter-array": {
"type": "array",
"_uniqueItems": true,
"items": {
"$ref": "#/definitions/parameter"
}
},
"commonParameter": {
"allOf": [
{
"$ref": "#/definitions/parameter"
},
{
"properties": {
"generated": {
"type": "boolean"
}
}
}
]
},
"commonParameter-array": {
"type": "array",
"_uniqueItems": true,
"items": {
"$ref": "#/definitions/commonParameter"
}
},
"event": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"$ref": "#/definitions/identifier"
},
"version": {
"type": "integer"
},
"channel": {
"$ref": "#/definitions/etwChannel"
},
"level": {
"$ref": "#/definitions/etwEventLevel"
},
"message": {
"type": "string"
},
"keywords": {
"$ref": "#/definitions/identifier-array"
},
"task": {
"$ref": "#/definitions/identifier"
},
"opcode": {
"$ref": "#/definitions/etwOpcode"
},
"parameters": {
"$ref": "#/definitions/parameter-array"
}
},
"required": [
"id",
"name"
]
},
"event-array": {
"type": "array",
"_uniqueItems": true,
"items": {
"$ref": "#/definitions/event"
},
"minItems": 1
}
},
"type": "object",
"properties": {
"class": {
"$ref": "#/definitions/identifier"
},
"sourceName": {
"type": "string"
},
"tasks": {
"$ref": "#/definitions/identifier-array"
},
"keywords": {
"allOf": [
{
"$ref": "#/definitions/identifier-array"
},
{
"maxItems": 44
}
]
},
"customTypes": {
"$ref": "#/definitions/customType-array"
},
"commonParameters": {
"$ref": "#/definitions/commonParameter-array"
},
"events": {
"$ref": "#/definitions/event-array"
}
},
"required": [
"class",
"sourceName",
"events"
]
} | o64963 |
{
"properties": {
"dimensions": {
"dependencies": {
"shape": [
"rectangle",
"circle",
"triangle"
]
},
"properties": {
"base": {
"description": "The base of the shape",
"type": "number"
},
"height": {
"description": "The height of the shape",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width",
"radius",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The type of shape",
"enum": [
"rectangle",
"circle",
"triangle"
],
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_38196395 |
{
"definitions": {
"column": {
"properties": {
"elasticsearch_options": {
"type": "object"
},
"postgresql_options": {
"type": "object"
},
"type": {
"enum": [
"uuid",
"string",
"text",
"point",
"linestring",
"polygon",
"date",
"datetime",
"float",
"integer",
"boolean",
"json",
"uuid[]",
"string[]",
"text[]",
"point[]",
"linestring[]",
"polygon[]",
"date[]",
"datetime[]",
"float[]",
"integer[]",
"boolean[]",
"json[]"
]
},
"validation": {
"type": "object"
}
},
"required": [
"type"
],
"type": "object"
}
},
"description": "A blueprint as defined by dstore",
"properties": {
"columns": {
"additionalProperties": {
"$ref": "#/definitions/column"
}
},
"elasticsearch": {
"properties": {
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"leveldb": {
"properties": {
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"postgresql": {
"properties": {
"table": {
"type": "string"
}
},
"required": [
"table"
],
"type": "object"
}
},
"required": [
"elasticsearch",
"postgresql",
"leveldb",
"columns"
],
"type": "object"
} | o82252 |
{
"id": "http://schemas.triniti.io/json-schema/gdbots/forms/field/yes-no-field/1-0-1.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-1"
},
"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"
}
},
"is_consent": {
"type": "boolean",
"description": "If this field relates to acquiring a user's consent, e.g. subscribing to a newsletter, then this field can be used to ensure that consent is tracked.",
"pbj": {
"type": "boolean",
"rule": "single"
}
}
},
"required": [
"_schema",
"name"
],
"additionalProperties": false
} | o82372 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"oneOf": [
{
"title": "Device State",
"description": "Schema for a single Device state",
"type": "object",
"properties": {
"time": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "object",
"properties": {
"$date": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"$date"
]
}
]
},
"meta": {},
"data": {
"type": "object",
"patternProperties": {
"^[0-9a-zA-Z_-]{1,255}$": {
"type": [
"number",
"string",
"boolean"
]
}
},
"additionalProperties": false
},
"flowVersion": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"required": [
"data"
],
"additionalProperties": false
},
{
"title": "Device States",
"description": "Schema for an array of Device states",
"type": "array",
"items": {
"title": "Device State",
"description": "Schema for a single Device state",
"type": "object",
"properties": {
"time": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "object",
"properties": {
"$date": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"$date"
]
}
]
},
"meta": {},
"data": {
"type": "object",
"patternProperties": {
"^[0-9a-zA-Z_-]{1,255}$": {
"type": [
"number",
"string",
"boolean"
]
}
},
"additionalProperties": false
},
"flowVersion": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"required": [
"data"
],
"additionalProperties": false
}
}
]
} | o9840 |
{
"additionalProperties": true,
"description": "Schema for a Mailgun message bounced event",
"properties": {
"attachmentCount": {
"description": "Number of attachments in attachment-x (where x is a number) fields.",
"maximum": 65535,
"type": "integer"
},
"campaignId": {
"description": "The id of campaign triggering the event.",
"type": "string"
},
"campaignName": {
"description": "The name of campaign triggering the event.",
"type": "string"
},
"code": {
"description": "SMTP bounce error code in form (X.X.X).",
"maxLength": 8,
"type": "string"
},
"domain": {
"_format": "hostname",
"description": "Domain that sent the original message.",
"maxLength": 256,
"type": "string"
},
"error": {
"description": "SMTP bounce error string.",
"type": "string"
},
"mailingList": {
"description": "The address of mailing list the original message was sent to.",
"type": "string"
},
"messageHeaders": {
"description": "String list of all MIME headers of the original message dumped to a JSON string (order of headers preserved).",
"type": "string"
},
"messageId": {
"description": "The Id of the message that bounced.",
"maxLength": 1024,
"type": "string"
},
"notification": {
"description": "Detailed reason for bouncing (optional).",
"type": "string"
},
"recipient": {
"_format": "email",
"description": "Recipient who could not be reached.",
"maxLength": 256,
"type": "string"
},
"signature": {
"description": "String with hexadecimal digits generate by HMAC algorithm (see securing webhooks).",
"maxLength": 128,
"type": "string"
},
"tag": {
"description": "Message tag, if it was tagged. See Tagging.",
"type": "string"
},
"timestamp": {
"_format": "date-time",
"description": "Timestamp in ISO8601 format.",
"type": "string"
},
"token": {
"description": "Randomly generated string with length 50 (see securing webhooks).",
"maxLength": 50,
"minLength": 50,
"type": "string"
},
"xMailgunSid": {
"description": "Mailgun identifying header.",
"type": "string"
}
},
"self": {
"format": "jsonschema",
"name": "message_bounced",
"vendor": "com.mailgun",
"version": "1-0-0"
},
"type": "object"
} | sp_114_Normalized |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the triangle or rectangle (if applicable)",
"type": "number"
},
"height": {
"description": "The height of the triangle or rectangle (if applicable)",
"type": "number"
},
"radius": {
"description": "The radius of the circle (if applicable)",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of geometric shape (e.g. circle, triangle, rectangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_fe414505 |
{
"additionalProperties": false,
"description": "Schema to configure the Segment webhook adapter",
"properties": {
"name": {
"type": "string"
},
"parameters": {
"additionalProperties": false,
"properties": {
"mappings": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"mappings"
],
"type": "object"
},
"vendor": {
"type": "string"
}
},
"required": [
"name",
"vendor",
"parameters"
],
"self": {
"format": "jsonschema",
"name": "segment_webhook_config",
"vendor": "com.snowplowanalytics.snowplow.input-adapters",
"version": "1-0-0"
},
"type": "object"
} | sp_356_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "GetConfigurationRequest",
"type": "object",
"properties": {
"key": {
"type": "array",
"items": {
"type": "string",
"maxLength": 50
}
}
},
"additionalProperties": false
} | o43981 |
{
"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"
}
},
"required": [
"length",
"width",
"radius",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The geometric shape (e.g. rectangle, triangle, circle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_c6cbc05e |
{
"properties": {
"DisableUsingiCloudPassword": {
"default": false,
"description": "Disable Using iCloud Password (Undocumented)",
"type": "boolean"
},
"PayloadDescription": {
"default": "User Preferences",
"description": "Description of the payload",
"type": "string"
},
"PayloadDisplayName": {
"default": "User Preferences",
"description": "Name of the payload",
"type": "string"
},
"PayloadIdentifier": {
"default": "com.apple.preferences.users",
"description": "A unique identifier for the payload, dot-delimited. Usually root PayloadIdentifier+subidentifier",
"type": "string"
},
"PayloadOrganization": {
"description": "This value describes the issuing organization of the profile, as displayed to the user",
"type": "string"
},
"PayloadType": {
"default": "com.apple.preferences.users",
"description": "The type of the payload, a reverse dns string",
"type": "string"
},
"PayloadUUID": {
"default": "",
"description": "Unique identifier for the payload (format 01234567-89AB-CDEF-0123-456789ABCDEF)",
"pattern": "^[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}$",
"type": "string"
},
"PayloadVersion": {
"default": 1,
"description": "The version of the whole configuration profile.",
"type": "number"
}
},
"title": "com.apple.preferences.users",
"type": "object"
} | o61622 |
{
"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. square, triangle, circle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_b6616625 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"endpointDefaultCors": {
"type": "boolean"
},
"description": {
"type": "string",
"maxLength": 32767
},
"sourceVersionIdOrName": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"additionalProperties": false
} | o9892 |
{
"description": "BoundObjectReference is a reference to an object that a token is bound to.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": [
"string",
"null"
]
},
"kind": {
"description": "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.",
"type": [
"string",
"null"
]
},
"name": {
"description": "Name of the referent.",
"type": [
"string",
"null"
]
},
"uid": {
"description": "UID of the referent.",
"type": [
"string",
"null"
]
}
},
"type": "object"
} | kb_59_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://bio.tools",
"type": "object",
"properties": {
"tools": {
"description": "Description of one or more bioinformatics tools - application software with well-defined data processing functions (inputs, outputs and operations). This includes simple tools with one or a few closely related functions, and complex, multimodal tools with many functions. Tools may be available available for immediate use as online services, or in a form which which you can download, install, configure and run yourself.",
"type": "array",
"items": {
"tool": {
"description": "Attributes of a bioinformatics tool.",
"type": "object",
"properties": {
"summary": {
"description": "Basic information about the software.",
"type": "object",
"properties": {
"name": {
"description": "Canonical software name assigned by the software developer or service provider.",
"type": "string",
"minLength": 1,
"maxLength": 100,
"pattern": "[\\p{Zs}A-Za-z0-9+\\.,\\-_:;()]*"
},
"toolID": {
"description": "Unique ID of the tool that is assigned upon registration of the software in bio.tools, normally identical to tool name.",
"type": "string",
"minLength": 1,
"maxLength": 12,
"pattern": "[A-Za-z0-9_\\-_~.]+"
},
"version": {
"description": "Version (typically a version number) of the software assigned by the software developer or service provider.",
"type": "string",
"minLength": 1,
"maxLength": 100,
"pattern": "[\\p{Zs}A-Za-z0-9+\\.,\\-_:;()]*"
},
"versionID": {
"description": "Unique ID of a tool version that is assigned upon registration of the software in bio.tools.",
"type": "string",
"minLength": 1,
"maxLength": 12,
"pattern": "[A-Za-z0-9_\\-_~.]+"
},
"doi": {
"description": "Canonical Digital Object Identifier of the software assigned by the software developer or service provider.",
"type": "string",
"pattern": "(doi:)?10.[0-9]{4,9}[A-Za-z0-9:;\\)\\(_/.-]+"
},
"shortDescription": {
"description": "Short and concise textual description of the software function.",
"type": "string",
"minLength": 10,
"maxLength": 200
},
"description": {
"description": "Textual description of the software.",
"type": "string",
"maxLength": 1000
},
"homepage": {
"type": "string",
"format": "uri",
"pattern": "https?://.+"
}
}
},
"function": {
"description": "Details of a function the software provides, expressed in terms from the EDAM ontology.",
"type": "array",
"items": {
"type": "object",
"properties": {
"operation": {
"type": "array",
"items": {
"type": "object",
"properties": {
"uri": {
"description": "URL of an EDAM Operation concept.",
"type": "string",
"format": "uri",
"pattern": "http://edamontology.org/operation_[0-9]{4}"
},
"term": {
"description": "An EDAM Operation term (preferred label or synonym).",
"type": "string"
}
},
"oneOf": [
{
"required": [
"uri"
]
},
{
"required": [
"term"
]
}
]
}
},
"input": {
"description": "Details of primary input data.",
"type": "array",
"items": {
"type": "object",
"properties": {
"data": {
"description": "Type of primary input data, if any (EDAM data).",
"type": "object",
"properties": {
"uri": {
"description": "URL of an EDAM Data concept.",
"type": "string",
"format": "uri",
"pattern": "http://edamontology.org/operation_[0-9]{4}"
},
"term": {
"description": "An EDAM Data term (preferred label or synonym).",
"type": "string"
}
},
"oneOf": [
{
"required": [
"uri"
]
},
{
"required": [
"term"
]
}
]
},
"format": {
"description": "Allowed format(s) of the input data (EDAM Format).",
"type": "array",
"items": {
"type": "object",
"properties": {
"uri": {
"description": "URL of an EDAM Forrmat concept.",
"type": "string",
"format": "uri",
"pattern": "http://edamontology.org/format_[0-9]{4}"
},
"term": {
"type": "string"
}
},
"oneOf": [
{
"required": [
"uri"
]
},
{
"required": [
"term"
]
}
]
}
}
}
}
},
"output": {
"description": "Details of primary output data.",
"type": "array",
"items": {
"type": "object",
"properties": {
"data": {
"description": "Type of primary output data, if any (EDAM Data).",
"type": "object",
"properties": {
"uri": {
"description": "URL of an EDAM Data concept.",
"type": "string",
"format": "uri",
"pattern": "http://edamontology.org/operation_[0-9]{4}"
},
"term": {
"description": "An EDAM Data term (preferred label or synonym).",
"type": "string"
}
},
"oneOf": [
{
"required": [
"uri"
]
},
{
"required": [
"term"
]
}
]
},
"format": {
"description": "Allowed format(s) of the output data (EDAM Format).",
"type": "array",
"items": {
"type": "object",
"properties": {
"uri": {
"description": "URL of an EDAM Forrmat concept.",
"type": "string",
"format": "uri",
"pattern": "http://edamontology.org/format_[0-9]{4}"
},
"term": {
"type": "string"
}
},
"oneOf": [
{
"required": [
"uri"
]
},
{
"required": [
"term"
]
}
]
}
}
}
}
},
"comment": {
"description": "Concise comment about this function, if not apparent from the software description and EDAM annotations.",
"type": "string",
"maxLength": 500
}
}
}
},
"labels": {
"description": "Miscellaneous scientific, technical and administrative details of the software, expressed in terms from controlled vocabularies.",
"type": "object",
"properties": {
"toolType": {
"type": "array",
"items": {
"type": "string",
"enum": [
"Command-line tool",
"Database portal",
"Desktop application",
"Library",
"Ontology",
"Plug-in",
"Script",
"SPARQL endpoint",
"Suite",
"Web application",
"Web API",
"Web service",
"Workbench",
"Workflow"
]
}
},
"topic": {
"description": "General scientific domain the software serves or other general category (EDAM Topic).",
"type": "array",
"items": {
"type": "object",
"properties": {
"uri": {
"description": "URL of an EDAM Topic concept.",
"type": "string",
"format": "uri",
"pattern": "http://edamontology.org/topic_[0-9]{4}"
},
"term": {
"description": "An EDAM Topic term (preferred label or synonym).",
"type": "string"
}
},
"oneOf": [
{
"required": [
"uri"
]
},
{
"required": [
"term"
]
}
]
}
},
"goTermID": {
"description": "Gene function including molecular function, cellular component and biological process. The ID of Gene Ontology (GO) concept(s) are specified.",
"type": "array",
"items": {
"type": "string",
"pattern": "[0-9]{7}|GO:[0-9]{7}"
}
},
"soTermID": {
"description": "Features which can be located on a biological sequence. The ID of Sequence Ontology (SO) concept(s) are specified.",
"type": "array",
"items": {
"type": "string",
"pattern": "[0-9]{7}|SO:[0-9]{7}"
}
},
"taxId": {
"description": "NCBI taxonomy ID of taxonomic group the software (particularly database portals) caters for.",
"type": "array",
"items": {
"type": "string",
"pattern": "[1-9][0-9]{0,8}"
}
},
"operatingSystem": {
"description": "The operating system supported by a downloadable software package.",
"type": "array",
"items": {
"type": "string",
"enum": [
"Linux",
"Windows",
"Mac"
]
}
},
"language": {
"description": "Name of programming language the software source code was written in.",
"type": "array",
"items": {
"type": "string",
"enum": [
"ActionScript",
"Ada",
"AppleScript",
"Assembly language",
"AWK",
"Bash",
"C",
"C#",
"C++",
"COBOL",
"ColdFusion",
"CWL",
"D",
"Delphi",
"Dylan",
"Eiffel",
"Forth",
"Fortran",
"Groovy",
"Haskell",
"Icarus",
"Java",
"Javascript",
"JSP",
"LabVIEW",
"Lisp",
"Lua",
"Maple",
"Mathematica",
"MATLAB",
"MLXTRAN",
"NMTRAN",
"Pascal",
"Perl",
"PHP",
"Prolog",
"PyMOL",
"Python",
"R",
"Racket",
"REXX",
"Ruby",
"SAS",
"Scala",
"Scheme",
"Shell",
"Smalltalk",
"SQL",
"Turing",
"Verilog",
"VHDL",
"Visual Basic",
"Other"
]
}
},
"license": {
"description": "Software or data usage license.",
"type": "string",
"enum": [
"0BSD",
"AAL",
"ADSL",
"AFL-1.1",
"AFL-1.2",
"AFL-2.0",
"AFL-2.1",
"AFL-3.0",
"AGPL-1.0",
"AMDPLPA",
"AML",
"AMPAS",
"ANTLR-PD",
"APAFML",
"APL-1.0",
"APSL-1.0",
"APSL-1.1",
"APSL-1.2",
"APSL-2.0",
"Abstyles",
"Adobe-2006",
"Adobe-Glyph",
"Afmparse",
"Aladdin",
"Apache-1.0",
"Apache-1.1",
"Apache-2.0",
"Artistic-1.0",
"Artistic-1.0-Perl",
"Artistic-1.0-cl8",
"Artistic-2.0",
"BSD-2-Clause",
"BSD-2-Clause-FreeBSD",
"BSD-2-Clause-NetBSD",
"BSD-3-Clause",
"BSD-3-Clause-Attribution",
"BSD-3-Clause-Clear",
"BSD-3-Clause-LBNL",
"BSD-3-Clause-No-Nuclear-License",
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause-No-Nuclear-Warranty",
"BSD-4-Clause",
"BSD-4-Clause-UC",
"BSD-Protection",
"BSD-Source-Code",
"BSL-1.0",
"Bahyph",
"Barr",
"Beerware",
"BitTorrent-1.0",
"BitTorrent-1.1",
"Borceux",
"CATOSL-1.1",
"CC-BY-1.0",
"CC-BY-2.0",
"CC-BY-2.5",
"CC-BY-3.0",
"CC-BY-4.0",
"CC-BY-NC-1.0",
"CC-BY-NC-2.0",
"CC-BY-NC-2.5",
"CC-BY-NC-3.0",
"CC-BY-NC-4.0",
"CC-BY-NC-ND-1.0",
"CC-BY-NC-ND-2.0",
"CC-BY-NC-ND-2.5",
"CC-BY-NC-ND-3.0",
"CC-BY-NC-ND-4.0",
"CC-BY-NC-SA-1.0",
"CC-BY-NC-SA-2.0",
"CC-BY-NC-SA-2.5",
"CC-BY-NC-SA-3.0",
"CC-BY-NC-SA-4.0",
"CC-BY-ND-1.0",
"CC-BY-ND-2.0",
"CC-BY-ND-2.5",
"CC-BY-ND-3.0",
"CC-BY-ND-4.0",
"CC-BY-SA-1.0",
"CC-BY-SA-2.0",
"CC-BY-SA-2.5",
"CC-BY-SA-3.0",
"CC-BY-SA-4.0",
"CC0-1.0",
"CDDL-1.0",
"CDDL-1.1",
"CECILL-1.0",
"CECILL-1.1",
"CECILL-2.0",
"CECILL-2.1",
"CECILL-B",
"CECILL-C",
"CNRI-Jython",
"CNRI-Python",
"CNRI-Python-GPL-Compatible",
"CPAL-1.0",
"CPL-1.0",
"CPOL-1.02",
"CUA-OPL-1.0",
"Caldera",
"ClArtistic",
"Condor-1.1",
"Crossword",
"CrystalStacker",
"Cube",
"D-FSL-1.0",
"DOC",
"DSDP",
"Dotseqn",
"ECL-1.0",
"ECL-2.0",
"EFL-1.0",
"EFL-2.0",
"EPL-1.0",
"EUDatagrid",
"EUPL-1.0",
"EUPL-1.1",
"Entessa",
"ErlPL-1.1",
"Eurosym",
"FSFAP",
"FSFUL",
"FSFULLR",
"FTL",
"Fair",
"Frameworx-1.0",
"FreeImage",
"GFDL-1.1",
"GFDL-1.2",
"GFDL-1.3",
"GL2PS",
"GPL-1.0",
"GPL-2.0",
"GPL-3.0",
"Giftware",
"Glide",
"Glulxe",
"HPND",
"HaskellReport",
"IBM-pibs",
"ICU",
"IJG",
"IPA",
"IPL-1.0",
"ISC",
"ImageMagick",
"Imlib2",
"Info-ZIP",
"Intel",
"Intel-ACPI",
"Interbase-1.0",
"JSON",
"JasPer-2.0",
"LAL-1.2",
"LAL-1.3",
"LGPL-2.0",
"LGPL-2.1",
"LGPL-3.0",
"LGPLLR",
"LPL-1.0",
"LPL-1.02",
"LPPL-1.0",
"LPPL-1.1",
"LPPL-1.2",
"LPPL-1.3a",
"LPPL-1.3c",
"Latex2e",
"Leptonica",
"LiLiQ-P-1.1",
"LiLiQ-R-1.1",
"LiLiQ-Rplus-1.1",
"Libpng",
"MIT",
"MIT-CMU",
"MIT-advertising",
"MIT-enna",
"MIT-feh",
"MITNFA",
"MPL-1.0",
"MPL-1.1",
"MPL-2.0",
"MPL-2.0-no-copyleft-exception",
"MS-PL",
"MS-RL",
"MTLL",
"MakeIndex",
"MirOS",
"Motosoto",
"Multics",
"Mup",
"NASA-1.3",
"NBPL-1.0",
"NCSA",
"NGPL",
"NLOD-1.0",
"NLPL",
"NOSL",
"NPL-1.0",
"NPL-1.1",
"NPOSL-3.0",
"NRL",
"NTP",
"Naumen",
"NetCDF",
"Newsletr",
"Nokia",
"Noweb",
"Nunit",
"OCCT-PL",
"OCLC-2.0",
"ODbL-1.0",
"OFL-1.0",
"OFL-1.1",
"OGTSL",
"OLDAP-1.1",
"OLDAP-1.2",
"OLDAP-1.3",
"OLDAP-1.4",
"OLDAP-2.0",
"OLDAP-2.0.1",
"OLDAP-2.1",
"OLDAP-2.2",
"OLDAP-2.2.1",
"OLDAP-2.2.2",
"OLDAP-2.3",
"OLDAP-2.4",
"OLDAP-2.5",
"OLDAP-2.6",
"OLDAP-2.7",
"OLDAP-2.8",
"OML",
"OPL-1.0",
"OSET-PL-2.1",
"OSL-1.0",
"OSL-1.1",
"OSL-2.0",
"OSL-2.1",
"OSL-3.0",
"OpenSSL",
"PDDL-1.0",
"PHP-3.0",
"PHP-3.01",
"Plexus",
"PostgreSQL",
"Python-2.0",
"QPL-1.0",
"Qhull",
"RHeCos-1.1",
"RPL-1.1",
"RPL-1.5",
"RPSL-1.0",
"RSA-MD",
"RSCPL",
"Rdisc",
"Ruby",
"SAX-PD",
"SCEA",
"SGI-B-1.0",
"SGI-B-1.1",
"SGI-B-2.0",
"SISSL",
"SISSL-1.2",
"SMLNJ",
"SMPPL",
"SNIA",
"SPL-1.0",
"SWL",
"Saxpath",
"Sendmail",
"SimPL-2.0",
"Sleepycat",
"Spencer-86",
"Spencer-94",
"Spencer-99",
"SugarCRM-1.1.3",
"TCL",
"TMate",
"TORQUE-1.1",
"TOSL",
"UPL-1.0",
"Unicode-TOU",
"Unlicense",
"VOSTROM",
"VSL-1.0",
"Vim",
"W3C",
"W3C-19980720",
"WTFPL",
"Watcom-1.0",
"Wsuipa",
"X11",
"XFree86-1.1",
"XSkat",
"Xerox",
"Xnet",
"YPL-1.0",
"YPL-1.1",
"ZPL-1.1",
"ZPL-2.0",
"ZPL-2.1",
"Zed",
"Zend-2.0",
"Zimbra-1.3",
"Zimbra-1.4",
"Zlib",
"bzip2-1.0.5",
"bzip2-1.0.6",
"curl",
"diffmark",
"dvipdfm",
"eGenix",
"gSOAP-1.3b",
"gnuplot",
"iMatix",
"libtiff",
"mpich2",
"psfrag",
"psutils",
"xinetd",
"xpp",
"zlib-acknowledgement",
"Proprietary",
"Other"
]
},
"collectionID": {
"description": "Unique ID of a collection that the software has been assigned to within bio.tools.",
"type": "array",
"items": {
"type": "string",
"pattern": "[A-Za-z0-9_\\- _ ~]+"
}
},
"maturity": {
"description": "How mature the software product is.",
"type": "array",
"items": {
"type": "string",
"enum": [
"Emerging",
"Mature",
"Legacy"
]
}
},
"cost": {
"description": "Monetary cost of acquiring the software.",
"type": "array",
"items": {
"type": "string",
"enum": [
"Free of charge",
"Free of charge (with restrictions)",
"Commercial"
]
}
},
"accessibility": {
"description": "Whether the software is freely available for use.",
"type": "array",
"items": {
"type": "string",
"enum": [
"Open access",
"Restricted access",
"Proprietary",
"Freeware"
]
}
}
}
},
"relation": {
"description": "Details of a relationship this software shares with other software registered in bio.tools.",
"type": "array",
"items": {
"type": "object",
"properties": {
"biotoolsId": {
"description": "bio.tools ID (URL) of an existing bio.tools entry which this software is related to.",
"type": "string",
"format": "uri",
"pattern": "https?://bio.tools/(tool|t)/[A-Za-z0-9_\\- _ ~]+((/(version|v)/)?[A-Za-z0-9_\\- _ ~]+)?"
},
"type": {
"description": "Type of relation between this and another registered software.",
"type": "string",
"enum": [
"isNewVersionOf",
"hasNewVersion",
"isInterfaceTo",
"hasInterface",
"uses",
"usedBy",
"extends",
"extendedBy",
"includes",
"includedIn",
"isPluginFor",
"hasPlugin"
]
}
}
}
},
"apiSpec": {
"description": "Details of the API to a service including service endpoints.",
"type": "object",
"properties": {
"baseURL": {
"description": "The base URL of a service, upon which one or more service endpoints are hung.",
"type": "string",
"format": "uri",
"pattern": "https?://.+"
},
"endpoint": {
"description": "Details of an endpoint to a service, i.e. a URL that can be used to invoke a particular function of a service.",
"type": "array",
"items": {
"type": "object",
"properties": {
"httpMethod": {
"description": "HTTP method used by the endpoint.",
"type": "string",
"enum": [
"OPTIONS",
"GET",
"HEAD",
"POST",
"PUT",
"DELETE",
"TRACE",
"CONNECT"
]
},
"urlTemplate": {
"description": "Template for a URL fragment, which when appended to the base URL, defines the syntax of a valid resolvable URL. The template can include parameters that must be substituted before the URL is resolved.",
"type": "string"
},
"output": {
"description": "Details of output data provided by the endpoint.",
"type": "object",
"properties": {
"data": {
"description": "Type of output data, if any (EDAM Data).",
"type": "object",
"properties": {
"uri": {
"description": "URL of an EDAM Data concept.",
"type": "string",
"format": "uri",
"pattern": "http://edamontology.org/data_[0-9]{4}"
},
"term": {
"description": "An EDAM Data term (preferred label or synonym).",
"type": "string"
}
},
"oneOf": [
{
"required": [
"uri"
]
},
{
"required": [
"term"
]
}
]
},
"format": {
"description": "Possible format(s) of the output data (EDAM Format).",
"type": "array",
"items": {
"type": "object",
"properties": {
"uri": {
"description": "URL of an EDAM Forrmat concept.",
"type": "string",
"format": "uri",
"pattern": "http://edamontology.org/format_[0-9]{4}"
},
"term": {
"description": "An EDAM Format term (preferred label or synonym).",
"type": "string"
}
}
}
}
}
},
"summary": {
"description": "A textual summary of a service endpoint.",
"type": "string",
"maxLength": 1000
},
"parameter": {
"description": "A query string parameter in the template URL that that must be substituted before the URL is resolved.",
"type": "array",
"items": {
"type": "object",
"properties": {
"urlTemplateFragment": {
"description": "A fragment from the URL template corresponding to a URL parameter, which is replaced by some value when the service is called.",
"type": "string"
},
"data": {
"description": "Type of data (EDAM Data) of a parameter of an endpoint.",
"type": "object",
"properties": {
"type": "object",
"properties": {
"uri": {
"description": "URL of an EDAM Data concept.",
"type": "string",
"format": "uri",
"pattern": "http://edamontology.org/operation_[0-9]{4}"
},
"term": {
"description": "An EDAM Data term (preferred label or synonym).",
"type": "string"
}
}
}
},
"comment": {
"description": "A comment about a parameter of an endpoint.",
"type": "string",
"maxLength": 1000
}
}
}
}
}
}
}
}
},
"link": {
"description": "A miscellaneous link for the software e.g. repository, issue tracker or mailing list.",
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"description": "A link of some relevance to the software (URL).",
"type": "string",
"format": "uri",
"pattern": "(https?|s?ftp)://.+"
},
"type": {
"description": "The type of data, information or system that is obtained when the link is resolved.",
"type": "string",
"enum": [
"Browser",
"Helpdesk",
"Issue tracker",
"Mailing list",
"Mirror",
"Registry",
"Repository",
"Social media"
]
},
"comment": {
"description": "Comment about the link.",
"type": "string"
}
}
}
},
"download": {
"description": "A link to a download for the software, e.g. source code, virtual machine image or container.",
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"description": "Link to download (or repo providing a download) for the software.",
"type": "string",
"format": "uri",
"pattern": "(https?|s?ftp)://.+"
},
"type": {
"type": "string",
"enum": [
"API specification",
"Biological data",
"Binaries",
"Binary package",
"Command-line specification",
"Container file",
"CWL file",
"Icon",
"Ontology",
"Screenshot",
"Source code",
"Source package",
"Test data",
"Test script",
"Tool wrapper (galaxy)",
"Tool wrapper (taverna)",
"Tool wrapper (other)",
"VM image"
]
},
"comment": {
"description": "Comment about the download",
"type": "string",
"maxLength": 1000
},
"diskFormat": {
"description": "Virtual machine disk image format.",
"type": "string",
"enum": [
"aki",
"ami",
"ari",
"iso",
"qcow2",
"raw",
"vdi",
"vhd",
"vmdk"
]
},
"containerFormat": {
"description": "Virtual machine container format.",
"type": "string",
"enum": [
"aki",
"ami",
"ari",
"bare",
"docker",
"ovf",
"rkt",
"singularity"
]
},
"cmd": {
"description": "A useful command pertinent to the download, e.g. for getting or installing a tool.",
"type": "string",
"maxLength": 1000
}
}
}
},
"documentation": {
"description": "A link to documentation about the software e.g. manual, API specification or training material.",
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"description": "Link to documentation on the web for the tool.",
"type": "string",
"format": "uri",
"pattern": "(https?|s?ftp)://.+"
},
"type": {
"description": "Type of documentation that is linked to.",
"type": "string",
"enum": [
"API documentation",
"Citation instructions",
"General",
"Manual",
"Terms of use",
"Training material",
"Other"
]
},
"comment": {
"description": "Comment about the documentation.",
"type": "string",
"maxLength": 1000
}
}
}
},
"publication": {
"description": "A publication about the software.",
"type": "array",
"items": {
"type": "object",
"properties": {
"doi": {
"description": "Digital Object Identifier (DOI) of a publication about the software.",
"type": "string",
"pattern": "(doi:)?10.[0-9]{4,9}[A-Za-z0-9:;\\)\\(_/.-]+"
},
"pmid": {
"description": "PubMed Identifier (PMID) of a publication about the software.",
"type": "string",
"pattern": "(PMID:)?[1-9][0-9]{0,8}"
},
"pmcid": {
"description": "PubMed Central Identifier (PMCID) of a publication about the software.",
"type": "string",
"pattern": "(PMC)[1-9][0-9]{0,8}"
},
"type": {
"description": "Type of publication.",
"type": "string",
"enum": [
"Primary",
"Benchmark",
"Review",
"Other"
]
}
},
"oneOf": [
{
"required": [
"doi"
]
},
{
"required": [
"pmid"
]
},
{
"required": [
"pmcid"
]
}
]
}
},
"contact": {
"description": "Details of primary point(s) of contact, e.g. person, helpdesk or mailing list.",
"type": "array",
"items": {
"type": "object",
"properties": {
"email": {
"description": "Email address of the primary contact.",
"type": "string",
"pattern": "[A-Za-z0-9_]+([-+.'][A-Za-z0-9_]+)*@[A-Za-z0-9_]+([-.][A-Za-z0-9_]+)*\\.[A-Za-z0-9_]+([-.][A-Za-z0-9_]+)*"
},
"url": {
"description": "URL of the primary contact.",
"type": "string",
"format": "uri"
},
"name": {
"description": "Name of the primary contact.",
"type": "string",
"minLength": 1,
"maxLength": 100
},
"tel": {
"description": "Telephone number of primary contact.",
"type": "string"
}
}
}
},
"credit": {
"description": "An individual or organisation that should be credited for the software.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "Name of the entity that is credited.",
"type": "string",
"minLength": 1,
"maxLength": 100
},
"email": {
"description": "mail address of the entity that is credited.",
"type": "string",
"pattern": "[A-Za-z0-9_]+([-+.'][A-Za-z0-9_]+)*@[A-Za-z0-9_]+([-.][A-Za-z0-9_]+)*\\.[A-Za-z0-9_]+([-.][A-Za-z0-9_]+)*"
},
"url": {
"description": "URL for the entity that is credited, e.g. homepage of an institute.",
"type": "string",
"format": "uri"
},
"orcidId": {
"description": "Unique identifier (ORCID iD) of a person that is credited.",
"type": "string",
"pattern": "http://orcid.org/[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{4}"
},
"gridId": {
"description": "Unique identifier (GRID ID) of an organisation that is credited.",
"type": "string",
"pattern": "grid.[0-9]{4,}.[a-f0-9]{1,2}"
},
"typeEntity": {
"description": "Type of entity that is credited.",
"type": "string",
"enum": [
"Person",
"Project",
"Division",
"Institute",
"Consortium",
"Funding agency"
]
},
"typeRole": {
"description": "Role performed by entity that is credited.",
"type": "string",
"enum": [
"Developer",
"Maintainer",
"Provider",
"Contributor",
"Documentor",
"Support"
]
},
"comment": {
"description": "A comment about the credit.",
"type": "string",
"maxLength": 1000
}
},
"oneOf": [
{
"required": [
"email"
]
},
{
"required": [
"url"
]
}
]
}
},
"elixirInfo": {
"description": "Information for ELIXIR internal purposes, maintained by ELIXIR Hub.",
"type": "object",
"properties": {
"lastReviewExternalSab": {
"description": "Date of last review by the External SAB.",
"type": "string",
"format": "date-time"
},
"lastReviewElixirSab": {
"description": "Date of last review by the ELIXIR SAB.",
"type": "string",
"format": "date-time"
},
"inSDP": {
"description": "Whether the resource is listed in a node Service Delivery Plan.",
"type": "boolean"
},
"isCoreDataResource": {
"description": "Whether the resource is an official core data resource.",
"type": "boolean"
},
"platform": {
"description": "ELIXIR platform.",
"type": "string",
"enum": [
"Data",
"Tools",
"Compute",
"Interoperability",
"Training"
]
},
"node": {
"description": "ELIXIR node.",
"type": "string",
"enum": [
"Belgium",
"Czech Republic",
"Denmark",
"EMBL",
"Estonia",
"Finland",
"France",
"Germany",
"Greece",
"Netherlands",
"Norway",
"Ireland",
"Israel",
"Italy",
"Luxembourg",
"Portugal",
"Slovenia",
"Spain",
"Sweden",
"Switzerland",
"UK"
]
},
"comment": {
"description": "General comment.",
"type": "string",
"maxLength": 1000
}
}
}
}
}
}
}
}
} | o26314 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"title": "Device Recipe",
"description": "Schema for a single Device Recipe",
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"deviceRecipeId": {
"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
},
"deviceName": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"description": {
"type": "string",
"maxLength": 32767
},
"deviceDescription": {
"type": "string",
"maxLength": 32767
},
"tags": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"value": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"required": [
"key",
"value"
],
"additionalProperties": false
},
"maxItems": 100
},
"attributes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"dataType": {
"type": "string",
"enum": [
"string",
"number",
"gps",
"boolean",
"blob"
]
},
"contentType": {
"type": "string",
"maxLength": 64
},
"description": {
"type": "string",
"maxLength": 32767
},
"attributeTags": {
"type": "object",
"patternProperties": {
"^[0-9a-zA-Z_-]{1,255}$": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"additionalProperties": false
},
"system": {
"type": "object",
"properties": {
"aggregation": {
"type": "string",
"enum": [
"FIRST",
"LAST",
"COUNT",
"MAX",
"MIN",
"MEDIAN",
"MEAN",
"SUM",
"STD_DEV"
]
},
"aggregationOptions": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false
},
"additionalProperties": false,
"maxItems": 0
},
"childAttributes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"mode": {
"type": "string",
"enum": [
"all",
"whitelist",
"blacklist"
]
},
"deviceIds": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"maxItems": 1000
},
"deviceTags": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"value": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"additionalProperties": false
},
"maxItems": 100
}
},
"required": [
"name",
"mode"
],
"additionalProperties": false
},
"maxItems": 256
}
},
"additionalProperties": false
}
},
"required": [
"name",
"dataType"
],
"additionalProperties": false
},
"maxItems": 256
},
"deviceClass": {
"type": "string",
"enum": [
"standalone",
"gateway",
"peripheral",
"floating",
"edgeCompute",
"system"
]
},
"gatewayId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"parentId": {
"oneOf": [
{
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
{
"type": "null"
}
]
},
"systemInterval": {
"type": "integer",
"minimum": 5,
"maximum": 3600
},
"keepDuplicates": {
"type": "boolean"
}
}
}
},
"count": {
"type": "integer"
},
"totalCount": {
"type": "integer"
},
"perPage": {
"type": "integer"
},
"page": {
"type": "integer"
},
"filter": {
"type": "string"
},
"filterField": {
"type": "string"
},
"sortField": {
"type": "string"
},
"sortDirection": {
"type": "string",
"enum": [
"asc",
"desc",
"ASC",
"DESC",
""
]
},
"applicationId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
}
}
} | o9838 |
{
"_comment": "This Spec is for Phase 1!! Most updated version is at https://github.com/reTHINK-project/specs/tree/master/schemas",
"$schema": "http://json-schema.org/draft-04/schema#",
"URLList": {
"type": "object",
"anyOf": [
{
"$ref": "#/UserURLList"
},
{
"$ref": "#/UserUUIDURLList"
},
{
"$ref": "#/UserAccountURLList"
},
{
"$ref": "#/HypertyURLList"
},
{
"$ref": "#/HypertyCatalogueURLList"
},
{
"$ref": "#/HypertyRuntimeURLList"
},
{
"$ref": "#/CommunicationURLList"
},
{
"$ref": "#/DomainURLList"
},
{
"$ref": "#/ContextURLList"
}
],
"properties": {}
},
"UserURLList": {
"type": "object",
"properties": {}
},
"UserUUIDURLList": {
"type": "object",
"properties": {}
},
"DomainURLList": {
"type": "object",
"properties": {}
},
"UserAccountURLList": {
"type": "object",
"properties": {}
},
"HypertyURLList": {
"type": "object",
"properties": {}
},
"HypertyCatalogueURLList": {
"type": "object",
"properties": {}
},
"HypertyRuntimeURLList": {
"type": "object",
"properties": {}
},
"CommunicationURLList": {
"type": "object",
"properties": {}
},
"ContextURLList": {
"type": "object",
"properties": {}
},
"properties": {
"URLList": {
"$ref": "#/URLList"
},
"UserURLList": {
"$ref": "#/UserURLList"
},
"UserUUIDURLList": {
"$ref": "#/UserUUIDURLList"
},
"DomainURLList": {
"$ref": "#/DomainURLList"
},
"UserAccountURLList": {
"$ref": "#/UserAccountURLList"
},
"HypertyURLList": {
"$ref": "#/HypertyURLList"
},
"HypertyCatalogueURLList": {
"$ref": "#/HypertyCatalogueURLList"
},
"HypertyRuntimeURLList": {
"$ref": "#/HypertyRuntimeURLList"
},
"CommunicationURLList": {
"$ref": "#/CommunicationURLList"
},
"ContextURLList": {
"$ref": "#/ContextURLList"
}
},
"required": [
"URLList",
"UserURLList",
"UserUUIDURLList",
"DomainURLList",
"UserAccountURLList",
"HypertyURLList",
"HypertyCatalogueURLList",
"HypertyRuntimeURLList",
"CommunicationURLList",
"ContextURLList"
]
} | o69757 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"subtitle_url": {
"properties": {
"format": {
"description": "The format of the subtitles (e.g. SRT, DFXP, WEB_VTT, etc)",
"type": "string"
},
"url": {
"description": "The url of the subtitle stream.",
"type": "string"
}
}
}
},
"description": "Data about different subtitle encodings and confidences of auto-transcribed content.",
"properties": {
"confidence": {
"description": "How confident the transcriber (human or automated) is of the accuracy of the subtitles.",
"type": "number"
},
"urls": {
"description": "The locations of any subtitle transcriptions of the video.",
"items": {
"$ref": "#/definitions/subtitle_url"
},
"type": "array"
}
},
"title": "Video Subtitle Configuration Schema.",
"type": "object"
} | wp_122_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Access Token",
"description": "PayPal access token json schema",
"type": "object",
"properties": {
"scope": {
"description": "Scopes expressed in the form of resource URL endpoints. The value of the scope parameter is expressed as a list of space-delimited, case-sensitive strings. Value generated by PayPal.",
"type": "string"
},
"access_token": {
"description": "The access token issued by PayPal. The access token will expire (see expires_in), after which you\u2019ll have to request a new access token. Value generated by PayPal.",
"type": "string"
},
"token_type": {
"description": "The type of the token issued as described in OAuth2.0 RFC6749, Section 7.1. Value is case insensitive. Value generated by PayPal.",
"type": "string"
},
"expires_in": {
"description": "The lifetime in seconds of the access token. Value generated by PayPal.",
"type": "number"
}
}
} | o66048 |
{
"additionalProperties": false,
"properties": {
"port": {
"maximum": 65535,
"minimum": 0,
"type": "integer"
},
"priority": {
"maximum": 65535,
"minimum": 0,
"type": "integer"
},
"target": {
"format": "hostname",
"type": "string"
},
"weight": {
"maximum": 65535,
"minimum": 0,
"type": "integer"
}
},
"required": [
"priority",
"weight",
"port",
"target"
]
} | o55348 |
{
"additionalProperties": false,
"description": "Schema for a JSON Paths file for loading Redshift from JSON or Avro, http://docs.aws.amazon.com/redshift/latest/dg/copy-parameters-data-format.html#copy-json-jsonpaths",
"properties": {
"jsonpaths": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"jsonpaths"
],
"self": {
"format": "jsonschema",
"name": "jsonpaths_file",
"vendor": "com.amazon.aws.redshift",
"version": "1-0-0"
},
"type": "object"
} | sp_11_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"host": {
"description": "the host name",
"type": "string",
"default": "localhost"
},
"port": {
"description": "the port where the app should be running",
"type": "integer",
"default": 8080
}
}
} | o71448 |
{
"properties": {
"date_range": {
"properties": {
"end_date": {
"description": "The end date in YYYY-MM-DD format",
"type": "string"
},
"start_date": {
"description": "The start date in YYYY-MM-DD format",
"type": "string"
}
},
"type": "object"
},
"keyword": {
"description": "The keyword to search for events",
"type": "string"
},
"location": {
"description": "The location to filter the results",
"type": "string"
}
},
"required": [
"keyword"
],
"type": "object"
} | search_events_48bf3d6d |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_coordination_v1beta1_Lease": {
"description": "Lease defines a lease concept.",
"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": [
"Lease"
],
"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"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_coordination_v1beta1_LeaseSpec",
"description": "Specification of the Lease. 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": "coordination.k8s.io",
"kind": "Lease",
"version": "v1beta1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_coordination_v1beta1_LeaseSpec": {
"description": "LeaseSpec is a specification of a Lease.",
"properties": {
"acquireTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime",
"description": "acquireTime is a time when the current lease was acquired."
},
"holderIdentity": {
"description": "holderIdentity contains the identity of the holder of a current lease.",
"type": "string"
},
"leaseDurationSeconds": {
"_format": "int32",
"description": "leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed RenewTime.",
"type": "integer"
},
"leaseTransitions": {
"_format": "int32",
"description": "leaseTransitions is the number of transitions of a lease between holders.",
"type": "integer"
},
"renewTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime",
"description": "renewTime is a time when the current holder of a lease has last updated the lease."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": {
"description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
"properties": {
"continue": {
"description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
"type": "string"
},
"remainingItemCount": {
"_format": "int64",
"description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
"type": "integer"
},
"resourceVersion": {
"description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime": {
"_format": "date-time",
"description": "MicroTime is version of Time with microsecond level precision.",
"type": "string"
},
"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": "LeaseList is a list of Lease 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 a list of schema objects.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_coordination_v1beta1_Lease"
},
"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": [
"LeaseList"
],
"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": "coordination.k8s.io",
"kind": "LeaseList",
"version": "v1beta1"
}
]
} | kb_517_Normalized |
{
"additionalProperties": false,
"description": "Common Context Schema for a media player event",
"properties": {
"currentTime": {
"description": "The current playback time",
"maximum": 9007199254740991,
"minimum": 0,
"type": "number"
},
"duration": {
"description": "A double-precision floating-point value indicating the duration of the media in seconds",
"maximum": 9007199254740991,
"minimum": 0,
"type": [
"number",
"null"
]
},
"ended": {
"description": "If playback of the media has ended",
"type": "boolean"
},
"isLive": {
"description": "If the media is live",
"type": "boolean"
},
"loop": {
"description": "If the video should restart after ending",
"type": "boolean"
},
"muted": {
"description": "If the media element is muted",
"type": "boolean"
},
"paused": {
"description": "If the media element is paused",
"type": "boolean"
},
"percentProgress": {
"description": "The percent of the way through the media",
"maximum": 100,
"minimum": 0,
"type": [
"integer",
"null"
]
},
"playbackRate": {
"description": "Playback rate (1 is normal)",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "number"
},
"volume": {
"description": "Volume percent",
"maximum": 100,
"minimum": 0,
"type": "integer"
}
},
"required": [
"currentTime",
"duration",
"ended",
"loop",
"muted",
"paused",
"playbackRate",
"volume"
],
"self": {
"format": "jsonschema",
"name": "media_player",
"vendor": "com.snowplowanalytics.snowplow",
"version": "1-0-0"
},
"type": "object"
} | sp_296_Normalized |
{
"javaType": "org.apache.streams.datasift.twitter.DatasiftTwitterUser",
"properties": {
"created_at": {
"format": "date-time",
"type": "string"
},
"description": {
"type": "string"
},
"favourites_count": {
"type": "integer"
},
"followers_count": {
"type": "integer"
},
"friends_count": {
"type": "integer"
},
"geo_enabled": {
"type": "boolean"
},
"id": {
"type": "integer"
},
"id_str": {
"type": "string"
},
"lang": {
"type": "string"
},
"listed_count": {
"type": "integer"
},
"location": {
"type": "string"
},
"name": {
"type": "string"
},
"profile_image_url": {
"type": "string"
},
"profile_image_url_https": {
"type": "string"
},
"screen_name": {
"type": "string"
},
"statuses_count": {
"type": "integer"
},
"time_zone": {
"type": "string"
},
"url": {
"type": "string"
},
"utc_offset": {
"type": "integer"
},
"verified": {
"type": "boolean"
}
},
"type": "object"
} | o71157 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"additionalProperties": false,
"definitions": {
"GeneralConfig": {
"additionalProperties": false,
"description": "General configuration settings.",
"properties": {
"artifact_regions": {
"description": "List of AWS regions where artifacts need to be copied. This helps same region artifact bucket access to resources",
"items": {
"description": "AWS Region name",
"examples": [
"us-east-1"
],
"pattern": "^(ap|eu|us|sa|ca|cn|af|me|il|us-gov)-(central|south|north|east|west|southeast|southwest|northeast|northwest)-[0-9]$",
"type": "string"
},
"type": "array"
},
"auth": {
"additionalProperties": {
"type": "string"
},
"description": "AWS authentication section",
"examples": [
{
"cn-northwest-1": "china-profile",
"default": "my-default-profile",
"us-east-2": "specific-profile-for-us-east-2"
}
],
"type": "object"
},
"parameters": {
"additionalProperties": {
"anyOf": [
{
"items": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
]
},
"type": "array"
},
{
"type": "boolean"
},
{
"type": "integer"
},
{
"type": "string"
}
]
},
"description": "Parameter key-values to pass to CloudFormation, parameters provided in global config take precedence",
"type": "object"
},
"posthooks": {
"description": "hooks to execute after executing tests",
"items": {
"$ref": "#/definitions/HookData"
},
"type": "array"
},
"prehooks": {
"description": "hooks to execute prior to executing tests",
"items": {
"$ref": "#/definitions/HookData"
},
"type": "array"
},
"regions": {
"description": "List of AWS regions",
"items": {
"description": "AWS Region name",
"examples": [
"us-east-1"
],
"pattern": "^(ap|eu|us|sa|ca|cn|af|me|il|us-gov)-(central|south|north|east|west|southeast|southwest|northeast|northwest)-[0-9]$",
"type": "string"
},
"type": "array"
},
"s3_bucket": {
"description": "Name of S3 bucket to upload project to, if left out a bucket will be auto-generated",
"examples": [
"my-s3-bucket-name"
],
"type": "string"
},
"s3_regional_buckets": {
"description": "Enable regional auto-buckets.",
"examples": [
true,
false
],
"type": "boolean"
},
"tags": {
"additionalProperties": {
"type": "string"
},
"description": "Tags to apply to CloudFormation template",
"examples": [
{
"CostCenter": "1001"
}
],
"type": "object"
}
},
"type": "object"
},
"HookData": {
"additionalProperties": false,
"description": "Hook definition",
"properties": {
"config": {
"description": "hook configuration",
"type": "object"
},
"type": {
"description": "hook type",
"type": "string"
}
},
"type": "object"
},
"ProjectConfig": {
"additionalProperties": false,
"description": "Project specific configuration section",
"properties": {
"artifact_regions": {
"description": "List of AWS regions where artifacts need to be copied. This helps same region artifact bucket access to resources",
"items": {
"description": "AWS Region name",
"examples": [
"us-east-1"
],
"pattern": "^(ap|eu|us|sa|ca|cn|af|me|il|us-gov)-(central|south|north|east|west|southeast|southwest|northeast|northwest)-[0-9]$",
"type": "string"
},
"type": "array"
},
"auth": {
"additionalProperties": {
"type": "string"
},
"description": "AWS authentication section",
"examples": [
{
"cn-northwest-1": "china-profile",
"default": "my-default-profile",
"us-east-2": "specific-profile-for-us-east-2"
}
],
"type": "object"
},
"az_blacklist": {
"description": "List of Availablilty Zones ID's to exclude when generating availability zones",
"items": {
"description": "Availability Zone ID, eg.: 'use1-az1'",
"examples": [
"usw2-laz1-az1",
"use2-az2"
],
"pattern": "(afs1-az1|afs1-az2|afs1-az3|afs1-los1-az1|ape1-az1|ape1-az2|ape1-az3|apne1-az1|apne1-az2|apne1-az4|apne1-tpe1-az1|apne2-az1|apne2-az2|apne2-az3|apne2-az4|apne3-az1|apne3-az2|apne3-az3|aps1-az1|aps1-az2|aps1-az3|aps1-ccu1-az1|aps1-del1-az1|aps2-az1|aps2-az2|aps2-az3|apse1-az1|apse1-az2|apse1-az3|apse1-bkk1-az1|apse2-az1|apse2-az2|apse2-az3|apse2-per1-az1|apse3-az1|apse3-az2|apse3-az3|apse4-az1|apse4-az2|apse4-az3|cac1-az1|cac1-az2|cac1-az4|euc1-az1|euc1-az2|euc1-az3|euc1-ham1-az1|euc1-waw1-az1|euc2-az1|euc2-az2|euc2-az3|eun1-az1|eun1-az2|eun1-az3|eun1-cph1-az1|eun1-hel1-az1|eus1-az1|eus1-az2|eus1-az3|eus2-az1|eus2-az2|eus2-az3|euw1-az1|euw1-az2|euw1-az3|euw2-az1|euw2-az2|euw2-az3|euw3-az1|euw3-az2|euw3-az3|mec1-az1|mec1-az2|mec1-az3|mes1-az1|mes1-az2|mes1-az3|mes1-mct1-az1|sae1-az1|sae1-az2|sae1-az3|use1-atl1-az1|use1-az1|use1-az2|use1-az3|use1-az4|use1-az5|use1-az6|use1-bos1-az1|use1-bue1-az1|use1-chi1-az1|use1-dfw1-az1|use1-iah1-az1|use1-lim1-az1|use1-mci1-az1|use1-mia1-az1|use1-msp1-az1|use1-nyc1-az1|use1-phl1-az1|use1-qro1-az1|use1-scl1-az1|use2-az1|use2-az2|use2-az3|usw1-az1|usw1-az3|usw2-az1|usw2-az2|usw2-az3|usw2-az4|usw2-den1-az1|usw2-las1-az1|usw2-lax1-az1|usw2-lax1-az2|usw2-pdx1-az1|usw2-phx1-az1|usw2-sea1-az1)",
"type": "string"
},
"type": "array"
},
"build_submodules": {
"description": "Build Lambda zips recursively for submodules, set to false to disable",
"examples": [
true,
false
],
"type": "boolean"
},
"lambda_source_path": {
"description": "Path relative to the project root containing Lambda zip files, default is 'lambda_functions/source'",
"examples": [
"functions/source"
],
"type": "string"
},
"lambda_zip_path": {
"description": "Path relative to the project root to place Lambda zip files",
"examples": [
"functions/packages"
],
"type": "string"
},
"name": {
"description": "Project name, used as s3 key prefix when uploading objects",
"examples": [
"my-project-name"
],
"pattern": "^[a-z0-9-/]*$",
"type": "string"
},
"org_id": {
"description": "Organization ID to use when launching CFN Stacks. starts with o-. It is found on Organization Settings page",
"type": "string"
},
"owner": {
"description": "email address for project owner (not used at present)",
"examples": [
"[email protected]"
],
"type": "string"
},
"package_lambda": {
"description": "Package Lambda functions into zips before uploading to s3, set to false to disable",
"examples": [
true,
false
],
"type": "boolean"
},
"parameters": {
"additionalProperties": {
"anyOf": [
{
"items": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
]
},
"type": "array"
},
{
"type": "boolean"
},
{
"type": "integer"
},
{
"type": "string"
}
]
},
"description": "Parameter key-values to pass to CloudFormation, parameters provided in global config take precedence",
"type": "object"
},
"posthooks": {
"description": "hooks to execute after executing tests",
"items": {
"$ref": "#/definitions/HookData"
},
"type": "array"
},
"prehooks": {
"description": "hooks to execute prior to executing tests",
"items": {
"$ref": "#/definitions/HookData"
},
"type": "array"
},
"regions": {
"description": "List of AWS regions",
"items": {
"description": "AWS Region name",
"examples": [
"us-east-1"
],
"pattern": "^(ap|eu|us|sa|ca|cn|af|me|il|us-gov)-(central|south|north|east|west|southeast|southwest|northeast|northwest)-[0-9]$",
"type": "string"
},
"type": "array"
},
"role_name": {
"description": "Role name to use when launching CFN Stacks.",
"type": "string"
},
"s3_bucket": {
"description": "Name of S3 bucket to upload project to, if left out a bucket will be auto-generated",
"examples": [
"my-s3-bucket-name"
],
"pattern": "^[a-z0-9-]*$",
"type": "string"
},
"s3_enable_sig_v2": {
"description": "Enable (deprecated) sigv2 access to auto-generated buckets",
"examples": [
true,
false
],
"type": "boolean"
},
"s3_object_acl": {
"default": "private",
"description": "ACL for uploaded s3 objects",
"examples": [
"bucket-owner-read",
"private"
],
"pattern": "^(bucket-owner-full-control|bucket-owner-read|authenticated-read|aws-exec-read|public-read-write|public-read|private)$",
"type": "string"
},
"s3_regional_buckets": {
"description": "Enable regional auto-buckets.",
"examples": [
true,
false
],
"type": "boolean"
},
"shorten_stack_name": {
"description": "Shorten stack names generated for tests, set to true to enable",
"examples": [
true,
false
],
"type": "boolean"
},
"tags": {
"additionalProperties": {
"type": "string"
},
"description": "Tags to apply to CloudFormation template",
"examples": [
{
"CostCenter": "1001"
}
],
"type": "object"
},
"template": {
"description": "path to template file relative to the project config file path",
"examples": [
"cloudformation_templates/"
],
"type": "string"
}
},
"type": "object"
},
"TestConfig": {
"additionalProperties": false,
"description": "Test specific configuration section.",
"properties": {
"artifact_regions": {
"description": "List of AWS regions where artifacts need to be copied. This helps same region artifact bucket access to resources",
"items": {
"description": "AWS Region name",
"examples": [
"us-east-1"
],
"pattern": "^(ap|eu|us|sa|ca|cn|af|me|il|us-gov)-(central|south|north|east|west|southeast|southwest|northeast|northwest)-[0-9]$",
"type": "string"
},
"type": "array"
},
"auth": {
"additionalProperties": {
"type": "string"
},
"description": "AWS authentication section",
"examples": [
{
"cn-northwest-1": "china-profile",
"default": "my-default-profile",
"us-east-2": "specific-profile-for-us-east-2"
}
],
"type": "object"
},
"az_blacklist": {
"description": "List of Availablilty Zones ID's to exclude when generating availability zones",
"items": {
"description": "Availability Zone ID, eg.: 'use1-az1'",
"examples": [
"usw2-laz1-az1",
"use2-az2"
],
"pattern": "(afs1-az1|afs1-az2|afs1-az3|afs1-los1-az1|ape1-az1|ape1-az2|ape1-az3|apne1-az1|apne1-az2|apne1-az4|apne1-tpe1-az1|apne2-az1|apne2-az2|apne2-az3|apne2-az4|apne3-az1|apne3-az2|apne3-az3|aps1-az1|aps1-az2|aps1-az3|aps1-ccu1-az1|aps1-del1-az1|aps2-az1|aps2-az2|aps2-az3|apse1-az1|apse1-az2|apse1-az3|apse1-bkk1-az1|apse2-az1|apse2-az2|apse2-az3|apse2-per1-az1|apse3-az1|apse3-az2|apse3-az3|apse4-az1|apse4-az2|apse4-az3|cac1-az1|cac1-az2|cac1-az4|euc1-az1|euc1-az2|euc1-az3|euc1-ham1-az1|euc1-waw1-az1|euc2-az1|euc2-az2|euc2-az3|eun1-az1|eun1-az2|eun1-az3|eun1-cph1-az1|eun1-hel1-az1|eus1-az1|eus1-az2|eus1-az3|eus2-az1|eus2-az2|eus2-az3|euw1-az1|euw1-az2|euw1-az3|euw2-az1|euw2-az2|euw2-az3|euw3-az1|euw3-az2|euw3-az3|mec1-az1|mec1-az2|mec1-az3|mes1-az1|mes1-az2|mes1-az3|mes1-mct1-az1|sae1-az1|sae1-az2|sae1-az3|use1-atl1-az1|use1-az1|use1-az2|use1-az3|use1-az4|use1-az5|use1-az6|use1-bos1-az1|use1-bue1-az1|use1-chi1-az1|use1-dfw1-az1|use1-iah1-az1|use1-lim1-az1|use1-mci1-az1|use1-mia1-az1|use1-msp1-az1|use1-nyc1-az1|use1-phl1-az1|use1-qro1-az1|use1-scl1-az1|use2-az1|use2-az2|use2-az3|usw1-az1|usw1-az3|usw2-az1|usw2-az2|usw2-az3|usw2-az4|usw2-den1-az1|usw2-las1-az1|usw2-lax1-az1|usw2-lax1-az2|usw2-pdx1-az1|usw2-phx1-az1|usw2-sea1-az1)",
"type": "string"
},
"type": "array"
},
"parameters": {
"additionalProperties": {
"anyOf": [
{
"items": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
]
},
"type": "array"
},
{
"type": "boolean"
},
{
"type": "integer"
},
{
"type": "string"
}
]
},
"default": {},
"description": "Parameter key-values to pass to CloudFormation, parameters provided in global config take precedence",
"type": "object"
},
"posthooks": {
"description": "hooks to execute after executing tests",
"items": {
"$ref": "#/definitions/HookData"
},
"type": "array"
},
"prehooks": {
"description": "hooks to execute prior to executing tests",
"items": {
"$ref": "#/definitions/HookData"
},
"type": "array"
},
"regions": {
"description": "List of AWS regions",
"items": {
"description": "AWS Region name",
"examples": [
"us-east-1"
],
"pattern": "^(ap|eu|us|sa|ca|cn|af|me|il|us-gov)-(central|south|north|east|west|southeast|southwest|northeast|northwest)-[0-9]$",
"type": "string"
},
"type": "array"
},
"role_name": {
"description": "Role name to use when launching CFN Stacks.",
"type": "string"
},
"s3_bucket": {
"description": "Name of S3 bucket to upload project to, if left out a bucket will be auto-generated",
"examples": [
"my-s3-bucket-name"
],
"pattern": "^[a-z0-9-]*$",
"type": "string"
},
"s3_regional_buckets": {
"description": "Enable regional auto-buckets.",
"examples": [
true,
false
],
"type": "boolean"
},
"stack_name": {
"description": "Cloudformation Stack Name",
"type": "string"
},
"stack_name_prefix": {
"description": "Prefix to apply to generated CFN Stack Name",
"type": "string"
},
"stack_name_suffix": {
"description": "Suffix to apply to generated CFN Stack Name",
"type": "string"
},
"tags": {
"additionalProperties": {
"type": "string"
},
"description": "Tags to apply to CloudFormation template",
"examples": [
{
"CostCenter": "1001"
}
],
"type": "object"
},
"template": {
"description": "path to template file relative to the project config file path",
"examples": [
"cloudformation_templates/"
],
"type": "string"
}
},
"type": "object"
}
},
"description": "Taskcat configuration file",
"properties": {
"general": {
"$ref": "#/definitions/GeneralConfig",
"default": {
"artifact_regions": null,
"auth": null,
"parameters": null,
"posthooks": null,
"prehooks": null,
"regions": null,
"s3_bucket": null,
"s3_regional_buckets": null,
"tags": null
}
},
"project": {
"$ref": "#/definitions/ProjectConfig",
"default": {
"artifact_regions": null,
"auth": null,
"az_blacklist": null,
"build_submodules": null,
"lambda_source_path": null,
"lambda_zip_path": null,
"name": null,
"org_id": null,
"owner": null,
"package_lambda": null,
"parameters": null,
"posthooks": null,
"prehooks": null,
"regions": null,
"role_name": null,
"s3_bucket": null,
"s3_enable_sig_v2": null,
"s3_object_acl": null,
"s3_regional_buckets": null,
"shorten_stack_name": null,
"tags": null,
"template": null
}
},
"tests": {
"additionalProperties": {
"$ref": "#/definitions/TestConfig"
},
"default": {},
"type": "object"
}
},
"type": "object"
} | config_schema |
{
"definitions": {
"axis": {
"description": "Defines an axis of the image",
"properties": {
"Label": {
"description": "What to call this dimension.",
"type": "string"
},
"Resolution": {
"description": "The length of a voxel in this dimension.",
"minimum": 0,
"type": "number"
},
"Size": {
"description": "The span of the image (i.e., the number of voxels) in this dimension.",
"minimum": 0,
"type": "integer"
},
"Units": {
"description": "The units of length of a voxel in this dimension.",
"enum": [
"nanometers",
"micrometers",
"millimeters",
""
],
"type": "string"
}
},
"required": [
"Label",
"Resolution",
"Units",
"Size"
],
"type": "object"
},
"channel": {
"description": "Describes the value type for a channel of data",
"properties": {
"DataType": {
"description": "The fixed-size data type for the value.",
"enum": [
"uint8",
"int8",
"uint16",
"int16",
"uint32",
"int32",
"uint64",
"int64",
"float32",
"float64"
],
"type": "string"
},
"Label": {
"description": "The name of this value.",
"type": "string"
}
},
"required": [
"DataType"
],
"type": "object"
}
},
"description": "Supplies the meta data necessary to interpret N-dimensional image data returned by DVID",
"properties": {
"Axes": {
"description": "Specifies the dimensions of the image. Order of the axes within the list specifies the ordering of the data. The first object in the list corresponds to the dimension whose index varies most rapidly as we move through the data bytes. The second object in the list corresponds to the 2nd most rapidly changing index, and so on.",
"items": {
"$ref": "#/definitions/axis"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"Properties": {
"description": "Properties for datatype instance",
"properties": {
"Values": {
"description": "Specifies the interleaved values within one voxel of the n-D array. For example, a RGBA image would have four values, one for each of the colors and a fourth for the alpha channel.",
"items": {
"$ref": "#/definitions/channel"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"Values"
],
"type": "object"
},
"version": {
"type": "string"
}
},
"required": [
"Axes",
"Properties"
],
"title": "N-dimensional Image Data",
"type": "object",
"version": "0.01"
} | o48519 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "",
"type": "object",
"properties": {
"webservice": {
"type": "object",
"properties": {
"urlStem": {
"type": "string",
"minLength": 1
},
"token": {
"type": "string",
"minLength": 1
},
"lrs": {
"type": "object",
"properties": {
"endpoint": {
"type": "string",
"minLength": 1
},
"key": {
"type": "string",
"minLength": 1
},
"secret": {
"type": "string",
"minLength": 1
},
"token": {
"type": "string",
"minLength": 1
},
"version": {
"type": "string",
"minLength": 1
},
"contextID": {
"type": "string",
"minLength": 1
},
"contextGroup": {
"type": "string",
"minLength": 1
},
"contextParent": {
"type": "string",
"minLength": 1
},
"contextCategory": {
"type": "string",
"minLength": 1
}
},
"required": [
"endpoint",
"key",
"secret",
"token",
"version",
"contextID",
"contextGroup",
"contextParent",
"contextCategory"
]
},
"shadowdb": {
"type": "object",
"properties": {
"endpoint": {
"type": "string",
"minLength": 1
},
"token": {
"type": "string",
"minLength": 1
}
},
"required": [
"endpoint",
"token"
]
}
},
"required": [
"urlStem",
"token",
"lrs",
"shadowdb"
]
},
"defaultuser": {
"type": "string"
},
"currentVersion": {
"type": "string",
"minLength": 1
},
"newIfWithinDays": {
"type": "string",
"minLength": 1
},
"setup": {
"type": "object",
"properties": {
"title": {
"type": "string",
"minLength": 1
},
"secondaryNav": {
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"items": {
"required": [
"label",
"link"
],
"properties": {
"label": {
"type": "string",
"minLength": 1
},
"link": {
"type": "string",
"minLength": 1
}
}
}
},
"interface": {
"type": "object",
"properties": {
"periodLabel": {
"type": "string",
"minLength": 1
},
"showDateOnPeriod": {
"type": "boolean"
},
"timelineStyle": {
"type": "number"
},
"cardStyle": {
"type": "number"
}
},
"required": [
"periodLabel",
"showDateOnPeriod",
"timelineStyle",
"cardStyle"
]
},
"startEvent": {
"type": "string",
"minLength": 1
}
},
"required": [
"title",
"secondaryNav",
"interface",
"startEvent"
]
},
"contentTypes": {
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"items": {
"required": [
"label",
"icon"
],
"properties": {
"label": {
"type": "string",
"minLength": 1
},
"icon": {
"type": "string",
"minLength": 1
}
}
}
},
"structure": {
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"items": {
"required": [
"version",
"startDate",
"introduction",
"instructions"
],
"properties": {
"version": {
"type": "string",
"minLength": 1
},
"startDate": {
"type": "string",
"minLength": 1
},
"introduction": {
"type": "string"
},
"instructions": {
"type": "string"
},
"data": {
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"items": {
"required": [
"period",
"category",
"startDay",
"endDay"
],
"properties": {
"period": {
"type": "string",
"minLength": 1
},
"category": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string"
},
"startDay": {
"type": "string",
"minLength": 1
},
"endDay": {
"type": "string",
"minLength": 1
},
"summary": {
"type": "string"
},
"topics": {
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"items": {
"required": [
"title",
"summary"
],
"properties": {
"title": {
"type": "string",
"minLength": 1
},
"summary": {
"type": "string"
},
"content": {
"type": "array",
"minLength": 1
}
}
}
}
}
}
}
}
}
},
"content": {
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"items": {
"required": [
"active",
"dateAdded",
"dateUpdated",
"id",
"title",
"contentLink",
"summary",
"duration",
"contentType",
"requireConfirm"
],
"properties": {
"active": {
"type": "boolean"
},
"dateAdded": {
"type": "string",
"minLength": 1
},
"dateUpdated": {
"type": "string",
"minLength": 1
},
"id": {
"type": "number"
},
"title": {
"type": "string",
"minLength": 1
},
"contentLink": {
"type": "string",
"minLength": 1
},
"lmsID": {
"type": "number"
},
"summary": {
"type": "string",
"minLength": 1
},
"duration": {
"type": "string",
"minLength": 1
},
"contentType": {
"type": "number"
},
"isRequired": {},
"requireConfirm": {
"type": "boolean"
}
}
}
}
},
"required": [
"webservice",
"defaultuser",
"currentVersion",
"newIfWithinDays",
"setup",
"contentTypes",
"structure",
"content"
]
} | o64619 |
{
"properties": {
"check_in_date": {
"description": "The check-in date",
"format": "date",
"type": "string"
},
"check_out_date": {
"description": "The check-out date",
"format": "date",
"type": "string"
},
"guests": {
"description": "The number of guests",
"type": "integer"
},
"location": {
"description": "The location of the hotel",
"type": "string"
},
"room_type": {
"description": "The type of room required",
"type": "string"
}
},
"required": [
"check_in_date",
"check_out_date",
"location",
"room_type",
"guests"
],
"type": "object"
} | book_hotel_e2c3dd06 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "User",
"description": "A WoWFinder User",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"battleTag": {
"type": "string"
},
"accessToken": {
"type": "string"
},
"language": {
"type": "string",
"enum": [
"en",
"fr",
"de",
"ru"
]
},
"email": {
"type": "object",
"properties": {
"address": {
"type": "string",
"default": ""
},
"services": {
"type": "object",
"properties": {
"adsExpirationReminder": {
"type": "boolean",
"default": false
}
}
}
}
}
}
} | o85254 |
{
"properties": {
"dimensions": {
"dependencies": {
"shape": [
"rectangle",
"circle",
"triangle"
]
},
"properties": {
"base": {
"description": "The base of the shape",
"type": "number"
},
"height": {
"description": "The height of the shape",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width",
"radius",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The type of shape (rectangle, circle, triangle, etc.)",
"type": "string"
}
},
"required": [
"shape"
],
"type": "object"
} | calculate_area_42c63970 |
{
"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_ValidatingWebhook": {
"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"
},
"type": "array"
},
"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"
},
"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"
},
"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"
},
"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"
},
"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"
},
"timeoutSeconds": {
"_format": "int32",
"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.",
"type": "integer"
}
},
"required": [
"name",
"clientConfig"
],
"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_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"
}
},
"description": "ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it. Deprecated in v1.16, planned for removal in v1.19. Use admissionregistration.k8s.io/v1 ValidatingWebhookConfiguration instead.",
"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": [
"admissionregistration.k8s.io/v1beta1"
],
"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": [
"ValidatingWebhookConfiguration"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata."
},
"webhooks": {
"description": "Webhooks is a list of webhooks and the affected resources and operations.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_ValidatingWebhook"
},
"type": [
"array",
"null"
],
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "admissionregistration.k8s.io",
"kind": "ValidatingWebhookConfiguration",
"version": "v1beta1"
}
]
} | kb_1098_Normalized |
{
"description": "RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.",
"properties": {
"allowedRuntimeClassNames": {
"description": "allowedRuntimeClassNames is a whitelist of RuntimeClass names that may be specified on a pod. A value of \"*\" means that any RuntimeClass name is allowed, and must be the only item in the list. An empty list requires the RuntimeClassName field to be unset.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"defaultRuntimeClassName": {
"description": "defaultRuntimeClassName is the default RuntimeClassName to set on the pod. The default MUST be allowed by the allowedRuntimeClassNames list. A value of nil does not mutate the Pod.",
"type": [
"string",
"null"
]
}
},
"required": [
"allowedRuntimeClassNames"
],
"type": "object"
} | kb_905_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/github-vipera/MOTIF-MAM/master/json-schemas/motif.request.schema",
"properties": {
"description": {
"description": "API call description",
"type": "string"
},
"secure": {
"description": "The call must be secure and user must be logged in",
"type": "boolean"
},
"uri": {
"description": "The json call URI",
"type": "string"
},
"version": {
"description": "API call version",
"pattern": "^(\\d+\\.)?(\\d+\\.)?(\\*|\\d+)$",
"type": "string"
}
},
"required": [
"version",
"uri",
"secure"
],
"type": "object",
"version": "0.1.0"
} | o43291 |
{
"description": "an instance of <a href=\"i18n-locale-files\">a i18n locale file</a>.",
"properties": {
"key": {
"description": "It is the unique identifier for this file.",
"example": "project.en-US",
"title": "Key",
"type": "string"
},
"url": {
"description": "The file can be local or on a distant server, but must be a valid JSON one.",
"example": "./i18n/en-US/locale.json",
"title": "URL",
"type": "string"
}
},
"required": [
"key",
"url"
],
"title": "I18nLocaleFileConfig",
"type": "object"
} | o44280 |
{
"description": "Creates a new generic pipe definition in the given or default project.",
"properties": {
"export": {
"default": false,
"description": "When true, the declaring NgModule exports this pipe.",
"type": "boolean",
"x-user-analytics": 19
},
"flat": {
"default": true,
"description": "When true (the default) creates files at the top level of the project.",
"type": "boolean"
},
"lintFix": {
"default": false,
"description": "When true, applies lint fixes after generating the pipe.",
"type": "boolean",
"x-user-analytics": 15
},
"module": {
"alias": "m",
"description": "The declaring NgModule.",
"type": "string"
},
"name": {
"$default": {
"$source": "argv",
"index": 0
},
"description": "The name of the pipe.",
"type": "string",
"x-prompt": "What name would you like to use for the pipe?"
},
"path": {
"description": "The path at which to create the pipe, relative to the workspace root.",
"format": "path",
"type": "string",
"visible": false
},
"project": {
"$default": {
"$source": "projectName"
},
"description": "The name of the project.",
"type": "string"
},
"skipImport": {
"default": false,
"description": "When true, does not import this pipe into the owning NgModule.",
"type": "boolean",
"x-user-analytics": 18
},
"skipTests": {
"default": false,
"description": "When true, does not create \"spec.ts\" test files for the new pipe.",
"type": "boolean",
"x-user-analytics": 12
},
"spec": {
"default": true,
"description": "When true (the default), generates a \"spec.ts\" test file for the new pipe.",
"type": "boolean",
"x-deprecated": "Use \"skipTests\" instead."
}
},
"required": [
"name"
],
"title": "Angular Pipe Options Schema",
"type": "object"
} | o64886 |
{
"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_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_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_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_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_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_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_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": "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",
"null"
]
}
},
"required": [
"type"
],
"type": "object"
} | kb_556_Normalized |
{
"properties": {
"departure_date": {
"description": "The departure date of the flight (format: yyyy-mm-dd)",
"type": "string"
},
"destination": {
"description": "The destination airport code",
"type": "string"
},
"origin": {
"description": "The origin airport code",
"type": "string"
},
"passengers": {
"description": "The number of passengers",
"type": "integer"
},
"return_date": {
"description": "The return date of the flight (format: yyyy-mm-dd)",
"type": "string"
}
},
"required": [
"departure_date",
"origin",
"destination",
"passengers"
],
"type": "object"
} | book_flight_a15ee43f |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape (for circle)",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width"
],
"type": "object"
},
"shape": {
"description": "The shape to calculate the area for",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_c51afb82 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base length of the triangle",
"type": "number"
},
"height": {
"description": "The height of the rectangle",
"type": "number"
},
"height_triangle": {
"description": "The height of the triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_c332227d |
{
"definitions": {
"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"
}
},
"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"
} | kb_393_Normalized |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"config_type": {
"$id": "/properties/config_type",
"title": "Configuration type",
"type": "string",
"enum": [
"current",
"rollback 1",
"rollback 2"
],
"default": "current"
},
"config_filter": {
"$id": "/properties/config_filter",
"title": "Configuration filter",
"type": "string",
"enum": [
"all",
"system",
"system/login",
"system/services",
"system/syslog",
"interfaces",
"chassis",
"services",
"snmp",
"forwarding-options",
"event-options",
"policy-options",
"class-of-service",
"firewall",
"protocols",
"routing-instances",
"routing-options",
"switch-options",
"vlans"
],
"default": "all"
},
"compare_configurations": {
"$id": "/properties/compare_configurations",
"title": "Compare selected configuration with current",
"type": "boolean",
"default": false
}
},
"required": [
"config_type",
"config_filter",
"compare_configurations"
]
} | o8478 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"name": "Rocket Document asset.json",
"description": "Rocket Document asset.json specification",
"type": "object",
"properties": {
"asset_type": {
"type": "string",
"pattern": "rocket_document"
},
"rml_file": {
"type": "string",
"description": "Path to the .rml file, relative to the current asset directory."
},
"required_fonts": {
"description": "The fonts to load for the document, should be asset paths to rocket_font assets.",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"asset_type",
"rml_file"
]
} | o42983 |
{
"oneOf": [
{
"properties": {
"shape": {
"const": "circle"
}
},
"required": [
"radius"
]
},
{
"properties": {
"shape": {
"const": "rectangle"
}
},
"required": [
"length",
"width"
]
},
{
"properties": {
"shape": {
"const": "triangle"
}
},
"required": [
"base",
"height"
]
}
],
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"shape": {
"description": "The shape to calculate the area for",
"enum": [
"circle",
"rectangle",
"triangle"
],
"type": "string"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"shape"
],
"type": "object"
} | calculate_area_93241e5b |
{
"properties": {
"dimensions": {
"properties": {
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle or triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius",
"length",
"width",
"height"
],
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_62155cde |
{
"definitions": {
"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"
}
},
"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",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
}
},
"required": [
"volumeID"
],
"type": "object"
} | kb_79_Normalized |
{
"additionalProperties": false,
"description": "replace-in-file options.",
"properties": {
"$schema": {
"type": "string"
},
"$tool": {
"const": "replace-in-file",
"description": "Must be set to replace-in-file",
"type": "string"
},
"allowEmptyPaths": {
"description": "Specify if empty/invalid file paths are allowed (defaults to false). If set to true these paths will fail silently and no error will be thrown.",
"type": "boolean"
},
"encoding": {
"description": "Character encoding for reading/writing files (defaults to utf-8).",
"type": "string"
},
"files": {
"oneOf": [
{
"description": "File(glob) to proccess.",
"type": "string"
},
{
"description": "Files(glob) to proccess.",
"items": {
"type": "string"
},
"type": "array"
}
]
},
"from": {
"description": "RegExp(s) to find from files.",
"oneOf": [
{
"instanceof": "RegExp"
},
{
"preproccess": "regexp",
"type": "string"
},
{
"items": {
"oneOf": [
{
"instanceof": "RegExp"
},
{
"preproccess": "regexp",
"type": "string"
}
]
},
"minItems": 1,
"type": "array"
}
]
},
"to": {
"description": "Multiple replacements with same/different strings (replaced sequentially).",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
}
]
}
},
"required": [
"$tool",
"files",
"from",
"to"
],
"title": "replace-in-file Config",
"type": "object"
} | o39084 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"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"
}
},
"type": "object"
},
"shape": {
"description": "The shape type (e.g. circle, rectangle, triangle)",
"type": "string"
}
},
"type": "object"
} | calculate_area_baa0fced |
{
"additionalProperties": true,
"description": "Schema for a SendGrid clicked event. Property descriptions derived from the SendGrid documentation: https://sendgrid.com/docs/for-developers/tracking-events/event/",
"properties": {
"asm_group_id": {
"description": "The ID of the unsubscribe group the recipient\u2019s email address is included in. ASM IDs correspond to the ID that is returned when you create an unsubscribe group.",
"maximum": 32767,
"minimum": 0,
"type": "integer"
},
"category": {
"description": "Categories are custom tags that you set for the purpose of organizing your emails. Categories can be set as an array or string, and they will be returned as such when posted in your event endpoint.",
"items": {
"type": "string"
},
"type": [
"array",
"string"
]
},
"email": {
"_format": "email",
"description": "The email address of the recipient",
"type": "string"
},
"ip": {
"_format": "ipv4",
"description": "The IP address used to send the email. For open and click events, it is the IP address of the recipient who engaged with the email.",
"type": "string"
},
"marketing_campaign_id": {
"description": "For emails sent through our Marketing Campaigns feature, we add Marketing Campaigns specific parameters to the Event Webhook. Both marketing_campaign_name and marketing_campaign_id are displayed as unique arguments in the event data.",
"type": "integer"
},
"marketing_campaign_name": {
"description": "For emails sent through our Marketing Campaigns feature, we add Marketing Campaigns specific parameters to the Event Webhook. Both marketing_campaign_name and marketing_campaign_id are displayed as unique arguments in the event data.",
"type": "string"
},
"marketing_campaign_split_id": {
"description": "Marketing campaign split id",
"type": "integer"
},
"marketing_campaign_version": {
"description": "Displayed in the event data for emails sent as part of an A/B Test. The value for marketing_campaign_version are returned as A, B, C, etc.",
"type": "string"
},
"newsletter": {
"additionalProperties": true,
"description": "Legacy Marketing Email tool fields",
"properties": {
"newsletter_id": {
"type": "string"
},
"newsletter_send_id": {
"type": "string"
},
"newsletter_user_list_id": {
"type": "string"
}
},
"type": "object"
},
"sg_event_id": {
"description": "A unique ID to this event that you can use for deduplication purposes. These IDs are up to 100 characters long and are URL safe.",
"maxLength": 4096,
"minLength": 22,
"type": "string"
},
"sg_message_id": {
"description": "A unique, internal SendGrid ID for the message. The first half of this is pulled from the smtp-id.",
"type": "string"
},
"smtp-id": {
"description": "A unique ID attached to the message by the originating system",
"type": "string"
},
"timestamp": {
"_format": "date-time",
"description": "The timestamp of when the message was sent",
"type": "string"
},
"url": {
"_format": "uri",
"description": "The URL where the event originates. For click events, this is the URL clicked on by the recipient.",
"type": "string"
},
"useragent": {
"description": "The user agent responsible for the event. This is usually a web browser. For example, Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36.",
"type": "string"
}
},
"self": {
"format": "jsonschema",
"name": "click",
"vendor": "com.sendgrid",
"version": "2-0-0"
},
"type": "object"
} | sp_181_Normalized |
{
"$id": "https://github.com/sagiegurari/cargo-make",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"definitions": {
"semver": {
"title": "Semantic Version",
"type": "string",
"pattern": "^(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)(?:-((?:0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$"
},
"extend": {
"title": "External Makefile",
"description": "A potentially optional external makefile to extend",
"type": "object",
"x-taplo": {
"initKeys": ["optional"]
},
"required": ["path"],
"additionalProperties": false,
"properties": {
"path": {
"title": "File Path",
"description": "The path of the external makefile, relative to this file",
"type": "string",
"default": "path/to/Makefile.toml"
},
"optional": {
"description": "If true, the external makefile is optional and does not need to exist",
"type": "boolean",
"default": true
}
}
},
"script": {
"title": "Script",
"oneOf": [
{
"title": "Script Line",
"type": "string"
},
{
"title": "Script Lines",
"type": "array",
"items": {
"type": "string"
}
},
{
"title": "Script File",
"type": "object",
"examples": [
{
"file": "path/to/script"
},
{
"file": "path/to/script",
"absolute_path": true
}
],
"required": ["file"],
"additionalProperties": false,
"properties": {
"file": {
"title": "File Path",
"description": "Scipt file name",
"type": "string",
"default": "path/to/script"
},
"absolute_path": {
"description": "If true, the `file` value is an absolute path",
"default": true,
"type": "boolean"
}
}
},
{
"title": "Split Script",
"description": "Script content split to parts to enable a more fine tuned extension capability",
"type": "object",
"x-taplo": {
"initKeys": ["pre", "main", "post"]
},
"additionalProperties": false,
"properties": {
"pre": {
"title": "Pre-Main Script",
"description": "Pre-main script section",
"type": "string"
},
"main": {
"title": "Main Script",
"description": "Main script section",
"type": "string"
},
"post": {
"title": "Post-Main Script",
"description": "Post-main script section",
"type": "string"
}
}
}
]
},
"env_files": {
"title": "List of Env Files",
"description": "Load environment files",
"type": "array",
"default": [],
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-env-file"
}
},
"items": {
"$ref": "#/definitions/envfile"
},
"uniqueItems": true
},
"envfile": {
"title": "Env File",
"description": "File containing environment variables and their values",
"examples": [
"path/to/env.env",
{
"path": "path/to/env.env",
"profile": "development"
}
],
"oneOf": [
{
"title": "File Path",
"description": "The path to the env file",
"type": "string",
"default": "path/to/env.env"
},
{
"description": "The env file path and attributes",
"type": "object",
"x-taplo": {
"initKeys": ["profile"]
},
"required": ["path"],
"additionalProperties": false,
"properties": {
"path": {
"title": "File Path",
"description": "The path to the env file",
"type": "string",
"default": "path/to/env.env"
},
"base_path": {
"title": "Directory Path",
"description": "The path base directory (relative paths are from this base path)",
"type": "string",
"default": "path/to/dir"
},
"profile": {
"title": "Profile",
"description": "The profile name this file is relevant to",
"type": "string",
"default": "development",
"examples": ["development", "production"]
}
}
}
]
},
"env": {
"title": "Env Vars",
"description": "Setup environment variables",
"type": "object",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-env-config"
}
},
"additionalProperties": {
"$ref": "#/definitions/env_value"
}
},
"env_value": {
"title": "Env Value",
"description": "An environment variable value",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-env"
}
},
"anyOf": [
{
"title": "Boolean",
"type": "boolean"
},
{
"title": "Integer",
"type": "integer"
},
{
"title": "String",
"type": "string"
},
{
"title": "Separator List",
"description": "An array which will be joined with the `;` separator ",
"type": "array",
"items": {
"type": "string"
}
},
{
"$ref": "#/definitions/env_value_unset"
},
{
"$ref": "#/definitions/env_value_script"
},
{
"$ref": "#/definitions/env_value_decode"
},
{
"$ref": "#/definitions/env_value_conditioned"
},
{
"$ref": "#/definitions/env_value_path_glob"
},
{
"title": "Profile Env Vars",
"description": "Profile dependent environment variables",
"$ref": "#/definitions/env"
}
]
},
"env_value_unset": {
"title": "Unset",
"description": "Unsets environment variable",
"type": "object",
"required": ["unset"],
"additionalProperties": false,
"properties": {
"unset": {
"description": "If true, the env variable will be unset, else ignored",
"default": true,
"type": "boolean"
}
}
},
"env_value_script": {
"title": "Env Value Script",
"description": "Provide environment variable via script",
"type": "object",
"required": ["script"],
"additionalProperties": false,
"properties": {
"script": {
"title": "Script Lines",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"multi_line": {
"description": "Enable multi-line values",
"default": true,
"type": "boolean"
}
}
},
"env_value_decode": {
"title": "Env Value Mapping",
"description": "Environment variable value provided by decoding other values",
"type": "object",
"x-taplo": {
"initKeys": ["default_value"]
},
"required": ["source", "mapping"],
"additionalProperties": false,
"properties": {
"source": {
"title": "Env Var",
"description": "The source environment variable (can be an env expression)",
"type": "string"
},
"default_value": {
"title": "Env Value",
"description": "The default value in case no decode mapping was found, if not provided it will default to the source value",
"type": "string"
},
"mapping": {
"title": "Value Mapping",
"description": "The decoding mapping from one value to another value",
"type": "object",
"default": {},
"additionalProperties": {
"title": "Env Value",
"type": "string"
}
}
}
},
"env_value_conditioned": {
"title": "Conditional Env Value",
"description": "Environment variable value set if condition is met",
"type": "object",
"x-taplo": {
"initKeys": ["condition"]
},
"required": ["value"],
"additionalProperties": false,
"properties": {
"value": {
"title": "Env Value",
"description": "The value to set (can be an env expression)",
"type": "string"
},
"condition": {
"description": "Condition to evaluate to see whether to set the environment value or not",
"$ref": "#/definitions/task_condition"
}
}
},
"env_value_path_glob": {
"title": "Env Value Glob",
"description": "Environment value holding a list of paths based on given glob definitions",
"type": "object",
"required": ["glob"],
"additionalProperties": false,
"properties": {
"glob": {
"title": "Glob Pattern",
"description": "The glob used to fetch all paths",
"type": "string"
},
"include_files": {
"description": "If true, include files in glob",
"default": true,
"type": "boolean"
},
"include_dirs": {
"description": "If true, include directories in glob",
"default": true,
"type": "boolean"
},
"ignore_type": {
"title": "Ignore Source",
"description": "An ignore source that enables respecting ignore files from that source",
"enum": ["git"],
"type": "string",
"default": "git"
}
}
},
"task_condition": {
"title": "Condition",
"description": "Conditions allow you to evaluate at runtime if to run a specific task or not",
"type": "object",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-conditions"
}
},
"additionalProperties": false,
"properties": {
"fail_message": {
"title": "Message",
"description": "Message to display when the condition fails",
"type": "string"
},
"profiles": {
"title": "List of Profiles",
"description": "Profile names to match for the condition",
"type": "array",
"default": [],
"items": {
"title": "Profile",
"description": "Profile name",
"type": "string",
"default": "development"
}
},
"platforms": {
"title": "List of Platforms",
"description": "Platform names to match for the condition",
"type": "array",
"items": {
"title": "Platform",
"description": "Platform name",
"enum": ["linux", "windows", "mac"],
"type": "string"
}
},
"channels": {
"title": "List of Channels",
"description": "Rust channels to match for the condition",
"type": "array",
"items": {
"title": "Channel",
"description": "Rust channel",
"enum": ["stable", "beta", "nightly"],
"type": "string",
"default": "stable"
}
},
"env_set": {
"title": "List of Env Vars",
"description": "List of environment variables which must be defined",
"type": "array",
"items": {
"title": "Env Var",
"description": "Environment variable",
"type": "string"
}
},
"env_not_set": {
"title": "List of Env Vars",
"description": "List of environment variables which must not be defined",
"type": "array",
"items": {
"title": "Env Var",
"description": "Environment variable",
"type": "string"
}
},
"env_true": {
"title": "List of Env Vars",
"description": "List of environment variables which must be defined and must not be set to any of the following (case insensitive): `false`, `no`, `0`, or empty",
"type": "array",
"items": {
"title": "Env Var",
"description": "Environment variable",
"type": "string"
}
},
"env_false": {
"title": "List of Env Vars",
"description": "List of environment variables which must be defined and must be set to any of the following (case insensitive): `false`, `no`, `0`, or empty",
"type": "array",
"items": {
"title": "Env Var",
"description": "Environment variable",
"type": "string"
}
},
"env": {
"title": "Env Vars",
"description": "Map of environment variables that must be defined and equal to the provided values",
"type": "object",
"additionalProperties": {
"title": "Env Value",
"description": "Environment value",
"type": "string"
}
},
"env_contains": {
"title": "Env Vars",
"description": "Map of environment variables that must be defined and contain (case insensitive) the provided values",
"type": "object",
"additionalProperties": {
"title": "Env Value",
"description": "Environment value",
"type": "string"
}
},
"rust_version": {
"title": "Rust Version Criteria",
"description": "A definition of min, max and/or specific rust version",
"type": "object",
"x-taplo": {
"initKeys": ["min"]
},
"additionalProperties": false,
"properties": {
"min": {
"description": "Minimum Rust version",
"$ref": "#/definitions/semver"
},
"max": {
"description": "Maximum Rust version",
"$ref": "#/definitions/semver"
},
"equal": {
"description": "Exact Rust version",
"$ref": "#/definitions/semver"
}
}
},
"files_exist": {
"title": "List of Files",
"description": "List of absolute path files to check they exist. Environment substitution is supported so you can define relative paths",
"type": "array",
"items": {
"title": "File Path",
"description": "File path",
"type": "string"
}
},
"files_not_exist": {
"title": "List of Files",
"description": "List of absolute path files to check they do not exist. Environment substitution is supported so you can define relative paths",
"type": "array",
"items": {
"title": "File Path",
"description": "File path",
"type": "string"
}
},
"files_modified": {
"title": "Lists input and output globs",
"description": "If any input file is newer than all output files, the condition is met. Environment substitution is supported so you can define relative paths",
"type": "object",
"additionalProperties": false,
"properties": {
"input": {
"description": "List of input globs",
"type": "array",
"items": {
"description": "glob",
"type": "string"
}
},
"output": {
"description": "List of output globs",
"type": "array",
"items": {
"description": "glob",
"type": "string"
}
}
}
}
}
},
"task": {
"title": "Task",
"description": "A task is a command, script, rust code or other sub tasks to execute. Tasks can have dependencies which are also tasks that will be executed before the task itself.",
"type": "object",
"additionalProperties": false,
"properties": {
"clear": {
"description": "If true, it should ignore all data in the base task",
"default": true,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-default-tasks"
}
}
},
"description": {
"title": "Description",
"description": "A description used to document the task",
"type": "string"
},
"category": {
"title": "Category",
"description": "Category name used to document the task",
"type": "string"
},
"disabled": {
"description": "If true, the command/script of this task will not be invoked, but dependencies will be",
"default": true,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-default-tasks"
}
}
},
"private": {
"description": "If true, the task is hidden from the list of available tasks and also cannot be invoked directly from CLI",
"default": true,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-private-tasks"
}
}
},
"deprecated": {
"description": "If set, this task is documented as deprecated. This can be a boolean or a string deprecation message.",
"default": true,
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-deprecated-tasks"
}
},
"oneOf": [
{
"type": "boolean"
},
{
"title": "Deprecation Message",
"type": "string"
}
]
},
"extend": {
"title": "Task Name",
"description": "Extends the specified task as a base task",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-extend-attribute"
}
}
},
"workspace": {
"description": "Set to false to specify that this is not a workspace and should not call the task for every member (same as --no-workspace CLI flag)",
"default": false,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-workspace-disabling-workspace-support"
}
}
},
"watch": {
"description": "Watch for file changes and invoke the task operation",
"default": true,
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-watch"
}
},
"oneOf": [
{
"type": "boolean"
},
{
"title": "Watch Options",
"type": "object",
"x-taplo": {
"initKeys": ["watch"]
},
"additionalProperties": false,
"properties": {
"version": {
"description": "Version of cargo-watch to install if it's not already installed",
"$ref": "#/definitions/semver"
},
"postpone": {
"description": "Postpone first run until a file changes",
"default": true,
"type": "boolean"
},
"ignore_pattern": {
"title": "Glob Pattern",
"description": "Ignore a glob/gitignore-style pattern while watching",
"type": "string"
},
"no_git_ignore": {
"description": "Do not use .gitignore files while watching",
"default": true,
"type": "boolean"
},
"watch": {
"title": "List of Paths",
"description": "List of files and folders to watch",
"type": "array",
"items": {
"title": "Path",
"description": "File or folder to watch",
"type": "string"
}
}
}
}
]
},
"condition": {
"description": "If provided all condition values must be met in order for the task to be invoked (will not stop dependencies)",
"$ref": "#/definitions/task_condition"
},
"condition_script": {
"title": "Script",
"description": "If script exit code is not 0, the command/script of this task will not be invoked, dependencies however will be",
"type": "array",
"items": {
"type": "string"
},
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-conditions-script"
}
}
},
"ignore_errors": {
"description": "If true, any error while executing the task will be printed but will not break the build",
"default": true,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-ignoring-errors"
}
}
},
"force": {
"description": "DEPRECATED, replaced with `ignore_errors`",
"default": true,
"type": "boolean",
"deprecated": true,
"x-taplo": {
"hidden": true
}
},
"env_files": {
"description": "The env files to setup before running the task commands",
"$ref": "#/definitions/env_files"
},
"env": {
"description": "The env vars to setup before running the task commands",
"$ref": "#/definitions/env"
},
"cwd": {
"title": "Directory Path",
"description": "The working directory for the task to execute its command/script",
"type": "string",
"default": "path/to/dir"
},
"alias": {
"title": "Task Name",
"description": "If defined, task points to another task and all other properties are ignored",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-dependencies-alias"
}
}
},
"linux_alias": {
"title": "Task Name",
"description": "If defined and this platform is Linux, task points to another task and all other properties are ignored (takes precedence over `alias` on Linux)",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-dependencies-alias"
}
}
},
"windows_alias": {
"title": "Task Name",
"description": "If defined and this platform is Windows, task points to another task and all other properties are ignored (takes precedence over `alias` on Windows)",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-dependencies-alias"
}
}
},
"mac_alias": {
"title": "Task Name",
"description": "If defined and this platform is Mac, task points to another task and all other properties are ignored (takes precedence over `alias` on Mac)",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-dependencies-alias"
}
}
},
"install_crate": {
"description": "Indicates the provided crate needs to be installed (if needed) before running the task",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-installing-crates"
}
},
"oneOf": [
{
"description": "If set to false, will disable crate installation from the base task",
"default": false,
"type": "boolean"
},
{
"title": "Crate Name",
"description": "Name of the crate to install",
"type": "string"
},
{
"title": "Crate Install Options",
"description": "Instructions on how to install a crate",
"type": "object",
"required": ["crate_name", "binary", "test_arg"],
"additionalProperties": false,
"properties": {
"crate_name": {
"title": "Crate Name",
"description": "Name of the crate to install",
"type": "string"
},
"rustup_component_name": {
"title": "Component Name",
"description": "The component to install via rustup",
"type": "string"
},
"binary": {
"title": "File Name",
"description": "The binary file name to be used to test if the crate is already installed",
"type": "string"
},
"test_arg": {
"title": "Args",
"description": "Arguments used to check whether a crate or rustup component is installed.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"min_version": {
"description": "Minimum version of installed crate before it needs to be reinstalled",
"$ref": "#/definitions/semver"
},
"version": {
"description": "Exact version of installed crate",
"$ref": "#/definitions/semver"
},
"install_command": {
"title": "Install Command",
"description": "The alternative cargo install command to install the crate",
"type": "string"
}
}
},
{
"title": "Component Install Options",
"description": "Instructions on how to install a rustup component",
"type": "object",
"required": ["rustup_component_name"],
"additionalProperties": false,
"properties": {
"rustup_component_name": {
"title": "Component Name",
"description": "The component to install via rustup",
"type": "string"
},
"binary": {
"title": "File Name",
"description": "The binary file name to be used to test if the crate is already installed",
"type": "string"
},
"test_arg": {
"title": "Args",
"description": "Arguments used to check whether a crate or rustup component is installed.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
},
{
"title": "Plugin Install Options",
"description": "Instructions on how to install a cargo plugin",
"type": "object",
"required": ["crate_name", "min_version"],
"additionalProperties": false,
"properties": {
"crate_name": {
"title": "Crate Name",
"description": "Name of the crate to install",
"type": "string"
},
"min_version": {
"description": "Minimum version of installed crate before it needs to be reinstalled",
"$ref": "#/definitions/semver"
}
}
}
]
},
"install_crate_args": {
"title": "Args",
"description": "Additional cargo install args",
"type": "array",
"items": {
"type": "string"
}
},
"install_script": {
"description": "Provided script will be executed before running the task",
"$ref": "#/definitions/script"
},
"command": {
"title": "File Name",
"description": "The command to execute for this task",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplecommand"
}
}
},
"args": {
"title": "Args",
"description": "The args for the executed command",
"type": "array",
"items": {
"type": "string"
},
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplecommand"
}
}
},
"script": {
"description": "If `command` is not defined, but `script` is defined, the provided script will be executed",
"$ref": "#/definitions/script",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplescript"
}
}
},
"script_runner": {
"title": "Script Runner",
"description": "The script attribute may hold non OS scripts, for example rust code to be compiled and executed. In order to use non OS script runners, you must define the special script_runner with the @ prefix.",
"type": "string",
"examples": [
"@rust",
"@duckscript",
"@shell",
"python",
"perl",
"node",
"php",
"powershell"
],
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task"
}
}
},
"script_runner_args": {
"title": "Args",
"description": "The script runner arguments before the script file path",
"type": "string",
"examples": ["-f"],
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplegeneric"
}
}
},
"script_extension": {
"title": "File Extension",
"description": "The file extension to use for the script",
"type": "string",
"examples": ["py", "pl", "js", "php", "ps1"]
},
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplegeneric"
}
},
"run_task": {
"description": "Run a task as a sub-task at the end of executing this task",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"
}
},
"oneOf": [
{
"title": "Task Name",
"description": "Name of the sub-task to execute",
"type": "string"
},
{
"type": "object",
"required": ["name"],
"additionalProperties": false,
"properties": {
"name": {
"title": "Task Name",
"description": "Name(s) of the sub-task to execute",
"oneOf": [
{
"type": "string"
},
{
"title": "List of Task Names",
"type": "array",
"items": {
"title": "Task Name",
"type": "string"
}
}
]
},
"fork": {
"description": "Fork the sub-task into a a new subprocess",
"default": true,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"
}
}
},
"parallel": {
"description": "Run tasks in parallel",
"default": true,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"
}
}
},
"cleanup_task": {
"title": "Task Name",
"description": "A task to run after all specified sub-tasks have completed",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"
}
}
}
}
},
{
"title": "Conditional Tasks",
"description": "Conditional sub-task selector",
"type": "array",
"items": {
"description": "Sub-task routing information",
"type": "object",
"required": ["name"],
"additionalProperties": false,
"properties": {
"name": {
"title": "Task Name",
"description": "Name(s) of the sub-task to execute",
"oneOf": [
{
"type": "string"
},
{
"title": "List of Task Names",
"type": "array",
"items": {
"title": "Task Name",
"type": "string"
}
}
]
},
"fork": {
"description": "Fork the sub-task into a a new subprocess",
"default": true,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"
}
}
},
"parallel": {
"description": "Run tasks in parallel",
"default": true,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"
}
}
},
"cleanup_task": {
"title": "Task Name",
"description": "A task to run after all specified sub-tasks have completed",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"
}
}
},
"condition": {
"description": "If provided all condition values must be met in order for the task to be invoked",
"$ref": "#/definitions/task_condition"
},
"condition_script": {
"title": "Script",
"description": "If script exit code is not 0, the sub tasks will not be invoked",
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
]
},
"dependencies": {
"title": "List of Tasks",
"description": "A list of tasks to execute before this task",
"type": "array",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-dependencies-alias"
}
},
"items": {
"oneOf": [
{
"title": "Task Name",
"description": "The name of a task in this file",
"type": "string"
},
{
"title": "External Task",
"description": "A task dependency potentially in another file",
"type": "object",
"x-taplo": {
"initKeys": ["path"]
},
"required": ["name"],
"additionalProperties": false,
"properties": {
"name": {
"title": "Task Name",
"description": "The task name to execute",
"type": "string"
},
"path": {
"title": "File Path",
"description": "The path to the makefile the task resides in",
"type": "string",
"default": "path/to/makefile"
}
}
}
]
}
},
"toolchain": {
"title": "Toolchain",
"description": "The rust toolchain used to invoke the command or install the needed crates/components",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-toolchain"
}
}
},
"linux": {
"description": "Override task if runtime OS is Linux (takes precedence over alias)",
"$ref": "#/definitions/task"
},
"windows": {
"description": "Override task if runtime OS is Windows (takes precedence over alias)",
"$ref": "#/definitions/task"
},
"mac": {
"description": "Override task if runtime OS is Mac (takes precedence over alias)",
"$ref": "#/definitions/task"
}
}
}
},
"description": "A schema for cargo-make makefiles",
"properties": {
"extend": {
"title": "Extend External Makefile",
"description": "Extend an external makefile by importing its tasks and properties to this file. Paths are relative to this makefile",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-workspace-extending-external-makefile"
}
},
"default": "path/to/Makefile.toml",
"examples": [
"path/to/Makefile.toml",
{
"path": "path/to/Makefile.toml",
"optional": true
},
[
{
"path": "path/to/Makefile.toml",
"optional": true
}
]
],
"oneOf": [
{
"title": "File Path",
"description": "File path to external makefile relative to this file",
"type": "string",
"examples": ["path/to/Makefile.toml"]
},
{
"$ref": "#/definitions/extend"
},
{
"title": "External Makefile List",
"description": "List of external makefiles to extend",
"type": "array",
"items": {
"$ref": "#/definitions/extend"
},
"uniqueItems": true
}
]
},
"config": {
"title": "Config",
"description": "Configuration options for this makefile",
"type": "object",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/api/cli/types/struct.ConfigSection.html"
},
"initKeys": ["min_version"]
},
"additionalProperties": false,
"properties": {
"skip_core_tasks": {
"description": "If true, the default core tasks will not be loaded",
"default": false,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-predefined-flows-disable"
}
}
},
"skip_git_env_info": {
"description": "If true, the Git related environment variables will not be loaded",
"default": false,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://github.com/sagiegurari/cargo-make#performance-tuning"
}
}
},
"skip_rust_env_info": {
"description": "If true, the rust related environment variables will not be loaded",
"default": false,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://github.com/sagiegurari/cargo-make#performance-tuning"
}
}
},
"skip_crate_env_info": {
"description": "If true, the current crate related environment variables will not be loaded",
"default": false,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://github.com/sagiegurari/cargo-make#performance-tuning"
}
}
},
"modify_core_tasks": {
"description": "Options to modify all the core tasks",
"type": "object",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-predefined-flows-modify"
}
},
"examples": [
{
"private": true
},
{
"namespace": "default"
},
{
"private": true,
"namespace": "default"
}
],
"additionalProperties": false,
"properties": {
"private": {
"description": "If true, all core tasks will be set to private (default false)",
"default": true,
"type": "boolean"
},
"namespace": {
"title": "Namespace",
"description": "If set to some value, all core tasks are modified to: `namespace::name`",
"type": "string",
"default": "default"
}
}
},
"init_task": {
"title": "Task Name",
"description": "Init task name which will be invoked at the start of every run",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-init-end-tasks"
}
},
"default": "init"
},
"end_task": {
"title": "Task Name",
"description": "End task name which will be invoked at the end of every run",
"default": "end",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-init-end-tasks"
}
}
},
"on_error_task": {
"title": "Task Name",
"description": "The name of the task to run in case of any error during the invocation of the flow",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-catching-errors"
}
},
"default": "catch"
},
"legacy_migration_task": {
"title": "Task Name",
"description": "The name of the task which runs legacy migration flows",
"default": "legacy-migration",
"type": "string",
"x-taplo": {
"hidden": true
}
},
"additional_profiles": {
"title": "List of Profiles",
"description": "Additional profile names to load",
"default": [],
"type": "array",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-profiles"
}
},
"examples": [["additional_profile"]],
"items": {
"title": "Profile",
"description": "Additional profile name to load",
"type": "string",
"default": "additional_profile"
},
"uniqueItems": true
},
"min_version": {
"description": "Minimum cargo-make/makers version",
"$ref": "#/definitions/semver",
"default": "0.35.0",
"examples": ["0.35.0", "0.34.0", "0.33.0"],
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-min-version"
}
}
},
"default_to_workspace": {
"description": "The default value for the `workspace` value of tasks in this makefile",
"default": true,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-workspace-disabling-workspace-support"
}
}
},
"reduce_output": {
"description": "Set to true to reduce console output for non CI execution",
"default": true,
"type": "boolean"
},
"time_summary": {
"description": "Set to true to print time summary at the end of the flow",
"default": true,
"type": "boolean"
},
"load_cargo_aliases": {
"description": "Automatically load cargo aliases as cargo-make tasks",
"default": true,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-cargo-alias-tasks"
}
}
},
"main_project_member": {
"title": "Crate",
"description": "The project information member (used by workspaces)",
"type": "string",
"default": "main-crate"
},
"load_script": {
"description": "Invoked while loading the descriptor file but before loading any extended descriptor",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-load-scripts"
}
},
"$ref": "#/definitions/script"
},
"linux_load_script": {
"description": "Invoked while loading the descriptor file but before loading any extended descriptor. Takes precedence over `load_script` if runtime OS is Linux.",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-load-scripts"
}
},
"$ref": "#/definitions/script"
},
"windows_load_script": {
"description": "Invoked while loading the descriptor file but before loading any extended descriptor. Takes precedence over `load_script` if runtime OS is Windows.",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-load-scripts"
}
},
"$ref": "#/definitions/script"
},
"mac_load_script": {
"description": "Invoked while loading the descriptor file but before loading any extended descriptor. Takes precedence over `load_script` if runtime OS is Mac.",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-load-scripts"
}
},
"$ref": "#/definitions/script"
}
}
},
"env_files": {
"description": "The environment files to setup before running any tasks",
"$ref": "#/definitions/env_files"
},
"env_scripts": {
"title": "List of Env Scripts",
"description": "The environment scripts to execute after environment files and the env block. These scripts can be used to run anything needed before starting up the flow.",
"type": "array",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-env-file"
}
},
"default": [],
"items": {
"description": "Env script",
"type": "string",
"$ref": "#/definitions/script"
}
},
"env": {
"description": "The environment variables to setup before running any tasks",
"$ref": "#/definitions/env"
},
"tasks": {
"description": "Task definitions",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/task"
}
}
},
"title": "Makefile.toml",
"type": "object",
"x-taplo-info": {
"authors": ["Kathryn Long (https://github.com/starkat99)"],
"version": "0.35.0",
"patterns": ["^(.*(/|\\\\)Makefile\\.toml|Makefile\\.toml)$"]
}
}
| cargo-make |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"length": {
"description": "The length of a rectangle",
"type": "number"
},
"radius": {
"description": "The radius of a circle",
"type": "number"
},
"width": {
"description": "The width of a rectangle",
"type": "number"
}
},
"required": [
"radius",
"length",
"width"
],
"type": "object"
},
"shape": {
"description": "The geometric shape (e.g. circle, rectangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_553d1c2e |
{
"id": "http://schemas.triniti.io/json-schema/gdbots/contexts/cloud/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:contexts::cloud:1-0-0"
},
"provider": {
"type": "string",
"pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$",
"minLength": 0,
"maxLength": 20,
"pbj": {
"type": "string",
"rule": "single",
"format": "slug"
}
},
"region": {
"type": "string",
"pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$",
"minLength": 0,
"maxLength": 20,
"pbj": {
"type": "string",
"rule": "single",
"format": "slug"
}
},
"zone": {
"type": "string",
"pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$",
"minLength": 0,
"maxLength": 20,
"pbj": {
"type": "string",
"rule": "single",
"format": "slug"
}
},
"instance_id": {
"type": "string",
"pattern": "^[\\w\\.-]+$",
"pbj": {
"type": "string",
"rule": "single"
}
},
"instance_type": {
"type": "string",
"pattern": "^[\\w\\.-]+$",
"pbj": {
"type": "string",
"rule": "single"
}
}
},
"required": [
"_schema"
],
"additionalProperties": false
} | o82298 |
{
"properties": {
"category": {
"description": "The category of the news articles",
"type": "string"
},
"date_range": {
"properties": {
"end_date": {
"description": "The end date of the search range",
"type": "string"
},
"start_date": {
"description": "The start date of the search range",
"type": "string"
}
},
"type": "object"
},
"language": {
"description": "The language of the news articles",
"type": "string"
},
"query": {
"description": "The search query",
"type": "string"
}
},
"type": "object"
} | search_news_c4489ce0 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"type": "object",
"properties": {
"statements": {
"title": "Statements",
"type": "array",
"minItems": 1,
"items": {
"title": "Statement",
"type": "object",
"additionalProperties": false,
"properties": {
"expression": {
"title": "Expression",
"description": "JSON Paths are allowed, wrapped in {{this.is.a.path}}",
"type": "string",
"minLength": 1
},
"resultPath": {
"title": "Result Path",
"description": "JSON path to place result of evaluated expression",
"type": "string",
"minLength": 1
}
},
"required": [
"expression",
"resultPath"
]
}
}
},
"required": [
"statements"
]
} | o6225 |
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "assignment",
"description": "specification for work purchased from an oracle",
"type": "object",
"properties": {
"assignment": {
"$ref": "#/definitions/assignment"
},
"assignmentHash": {
"description": "hash used for signature of a contract SHA2-256",
"type": "string"
},
"name": {
"description": "human readable name",
"type": "string"
},
"signatures": {
"description": "signatures of participants",
"type": "array",
"items": {
"$ref": "#/definitions/signature"
}
},
"supportingInfo": {
"description": "extra information provided beyond the protocol",
"type": "object"
},
"version": {
"description": "version of the oracle protocol being used",
"type": "string"
}
},
"required": [
"assignment",
"version"
],
"definitions": {
"adapter": {
"description": "adapter that processes inputs and returns a new set of outputs",
"properties": {
"adapterParams": {
"description": "list of parameters required for the adapter's presets",
"type": "object"
},
"adapterType": {
"description": "type of custom parameters provided",
"type": "string"
}
},
"required": [
"adapterType"
]
},
"assignment": {
"description": "specification of the work to be done",
"properties": {
"description": {
"description": "human readable description defined by contract creators",
"type": "string"
},
"fees": {
"$ref": "#/definitions/fees"
},
"subtasks": {
"description": "series of adapters that feed into each other",
"type": "array",
"items": {
"$ref": "#/definitions/adapter"
}
},
"schedule": {
"$ref": "#/definitions/schedule"
}
},
"required": [
"schedule"
]
},
"fees": {
"description": "fee rates for possible costs of the oracle",
"properties": {
"currency": {
"description": "currency payment is expected in, using lowest divisible amount",
"type": "string"
},
"perDay": {
"description": "fees for time keeping the contract up",
"type": "string"
},
"perRequest": {
"description": "fees expected per request from a contract",
"type": "string"
}
},
"required": [
"currency"
]
},
"schedule": {
"description": "a cron like schedule",
"properties": {
"endAt": {
"description": "end time for term tracking",
"type": "string"
},
"hour": {
"description": "what hours to run on",
"type": "string"
},
"minute": {
"description": "what minutes to run on",
"type": "string"
},
"dayOfMonth": {
"description": "what days of the month to run on",
"type": "string"
},
"monthOfYear": {
"description": "what month of the year to run on",
"type": "string"
},
"dayOfWeek": {
"description": "what day of the week to run on",
"type": "string"
},
"runAt": {
"description": "collection of specifict times to gather snapshots",
"type": "array",
"items": {
"type": "string"
}
},
"startAt": {
"description": "time to start assignment, defaults to time received if not otherwise noted",
"type": "string"
}
},
"required": []
},
"signature": {
"description": "signature",
"properties": {
"identifier": {
"description": "to attach to another identity",
"type": "string"
},
"r": {
"description": "r value of an Ethereum style signature",
"type": "string"
},
"s": {
"description": "s value of an Ethereum style signature",
"type": "string"
},
"v": {
"description": "V value of an Ethereum style signature",
"type": "string"
}
},
"required": [
"r",
"s",
"v"
]
}
}
} | o65753 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"annotations": {
"oneOf": [
{
"$ref": "#/definitions/printf_annotation"
},
{
"$ref": "#/definitions/list_annotation"
}
]
},
"list_annotation": {
"additionalProperties": false,
"properties": {
"annotationProperty": {
"description": "A string corresponding to the rdfs:label of an owl annotation property. If the annotation property has no label, the shortForm ID should be used. The annotation property must be listed in the annotation property dictionary.'\n",
"type": "string"
},
"value": {
"description": "A single list variable (list_var or data_list_var). Each item in this list should be used to generate a separate annotation axiom.\n",
"type": "string"
}
},
"required": [
"annotationProperty",
"value"
],
"type": "object"
},
"list_annotation_obo": {
"additionalProperties": false,
"properties": {
"value": {
"description": "A single list variable (list_var or data_list_var). Each item in this list should be used to generate a separate annotation axiom.\n",
"type": "string"
},
"xrefs": {
"description": "Takes the name of a single data_list_var specifying a list of database cross references. Use of this field should add the same xref set to all annotation axioms generated.\n",
"mapping": "oboInOwl:hasDbXref",
"type": "string"
}
},
"required": [
"value"
],
"type": "object"
},
"opa": {
"additionalProperties": false,
"properties": {
"annotations": {
"items": {
"$ref": "#/definitions/annotations"
},
"type": "array"
},
"edge": {
"description": "A triple specified as an ordered array with 3 elements [subject, rel, object] * rel must be the quoted name of a relation from the relations (object property) dictionary. * subject and object must be the name of an individual specified in the nodes field.\n",
"items": {
"type": "string"
},
"maxItems": 3,
"minItems": 3,
"type": "array"
},
"not": {
"description": "Optional field for negated OPAs",
"type": "boolean"
}
},
"required": [
"edge"
],
"type": "object"
},
"printf_annotation": {
"additionalProperties": false,
"properties": {
"annotationProperty": {
"description": "A string corresponding to the rdfs:label of an owl annotation property. If the annotation property has no label, the shortForm ID should be used. The annotation property must be listed in the annotation property dictionary.'\n",
"type": "string"
},
"annotations": {
"items": {
"$ref": "#/definitions/annotations"
},
"type": "array"
},
"text": {
"description": "A print format string.",
"type": "string"
},
"vars": {
"description": "An ordered list of variables for substitution into the accompanying print format string. Each entry must correspond to the name of a variable specified in either the 'vars' field or the data_var field of the pattern. Where an OWL entity is specified, the label for the OWL entity should be used in the substitution. An empty var list can be specified simply by leaving this field out.\n",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"annotationProperty",
"text"
],
"type": "object"
},
"printf_annotation_obo": {
"additionalProperties": false,
"properties": {
"annotations": {
"items": {
"$ref": "#/definitions/annotations"
},
"type": "array"
},
"text": {
"description": "A print format string.",
"type": "string"
},
"vars": {
"description": "An ordered list of variables for substitution into the accompanying print format string. Each entry must correspond to the name of a variable specified in either the 'vars' field or the data_var field of the pattern. Where an OWL entity is specified, the label for the OWL entity should be used in the substitution.\n",
"items": {
"type": "string"
},
"type": "array"
},
"xrefs": {
"description": "Takes the name of a single data_list_var specifying a list of database cross references.\n",
"mapping": "oboInOwl:hasDbXref",
"type": "string"
}
},
"required": [
"text",
"vars"
],
"type": "object"
},
"printf_owl": {
"additionalProperties": false,
"properties": {
"annotations": {
"items": {
"$ref": "#/definitions/annotations"
},
"type": "array"
},
"axiom_type": {
"description": "OWL axiom type expressed as manchester syntax: equivalentTo, subClassOf, disjointWith. GCI - for general class inclusion axioms, is also valid (although missing from manchester syntax.) This specifies the axiom type to be generated from the text following substitution.'\n",
"enum": [
"equivalentTo",
"subClassOf",
"disjointWith",
"GCI"
],
"type": "string"
},
"text": {
"description": "A print format string in OWL Manchester syntax. Each entry must correspond to an entry in o the name of a var in the var field of the pattern. Entries in single quotes must correspond to the labels of entries in owl_entity dictionaries (classes, relations, dataProperties) \n",
"type": "string"
},
"vars": {
"description": "An ordered list of variables for substitution into the accompanying print format string. Each entry must correspond to the name of a variable specified in either the 'vars' field or the data_var field of the pattern. An empty var list can be specified simply by leaving this field out.\n",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"axiom_type",
"text",
"vars"
],
"type": "object"
},
"printf_owl_convenience": {
"additionalProperties": false,
"properties": {
"annotations": {
"items": {
"$ref": "#/definitions/annotations"
},
"type": "array"
},
"text": {
"description": "A print format string in OWL Manchester syntax. Each entry must correspond to an entry in o the name of a var in the var field of the pattern. Entries in single quotes must correspond to the labels of entries in owl_entity dictionaries (classes, relations, dataProperties)\n",
"type": "string"
},
"vars": {
"description": "An ordered list of variables for substitution into the accompanying print format string. Each entry must correspond to the name of a variable\n specified in either the 'vars' field or the data_var field of the pattern.\n",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"text",
"vars"
],
"type": "object"
},
"regex_sub": {
"additionalProperties": false,
"properties": {
"in": {
"description": "name of input var",
"type": "string"
},
"match": {
"description": "perl style regex match",
"type": "string"
},
"out": {
"description": "Name of output var. If input var specified an OWL entity then readable identifier is used as input to substitution\n",
"type": "string"
},
"sub": {
"description": "perl style regex sub. May include backreferences.",
"type": "string"
}
},
"required": [
"in",
"out",
"match",
"sub"
],
"type": "object"
}
},
"properties": {
"GCI": {
"$ref": "#/definitions/printf_owl_convenience"
},
"annotationProperties": {
"description": "A dictionary of OWL annotation properties key : label; value : short form id",
"type": "object"
},
"annotations": {
"items": {
"$ref": "#/definitions/printf_annotation"
},
"type": "array"
},
"base_IRI": {
"description": "Specifies the base IRI to be used to generate new classes.",
"type": "string"
},
"broad_synonym": {
"$ref": "#/definitions/list_annotation_obo",
"mapping": "oboInOwl:hasBroadSynonym"
},
"classes": {
"description": "A dictionary of OWL classes. key :label; value : short form id",
"type": "object"
},
"comment": {
"$ref": "#/definitions/printf_annotation_obo",
"mapping": "rdfs:comment"
},
"dataProperties": {
"description": "A dictionary of OWL data properties key : label; value : short form id",
"type": "object"
},
"data_list_vars": {
"description": "A dictionary of variables rrefering to lists of some specified OWL data-types. Key = variable name, value = variable range of all items in list, specified as a valid OWL data-type.\n"
},
"data_vars": {
"description": "A dictionary of variables ranging over OWL data-types. Key = variable name, value = variable range specified as a valid OWL data-type.\n",
"type": "object"
},
"def": {
"$ref": "#/definitions/printf_annotation_obo",
"mapping": "obo:IAO_0000115"
},
"description": {
"description": "A free text description of the pattern. Must be UTF-8 encoded.",
"type": "string"
},
"disjointWith": {
"$ref": "#/definitions/printf_owl_convenience"
},
"equivalentTo": {
"$ref": "#/definitions/printf_owl_convenience"
},
"exact_synonym": {
"$ref": "#/definitions/list_annotation_obo",
"mapping": "oboInOwl:hasExactSynonym"
},
"generated_broad_synonyms": {
"description": "An OBO convenience field to allow the specification of broad synonyms generated by interpolation of OWL entity names into printf text. Each entry may be annotated. \n",
"items": {
"$ref": "#/definitions/printf_annotation_obo",
"mapping": "oboInOwl:hasBroadSynonym"
},
"type": "array"
},
"generated_narrow_synonyms": {
"description": "An OBO convenience field to allow the specification of narrow synonyms generated by interpolation of OWL entity names into printf text. Each entry may be annotated. \n",
"items": {
"$ref": "#/definitions/printf_annotation_obo",
"mapping": "oboInOwl:hasNarrowSynonym"
},
"type": "array"
},
"generated_related_synonyms": {
"description": "An OBO convenience field to allow the specification of related synonyms generated by interpolation of OWL entity names into printf text. Each entry may be annotated. \n",
"items": {
"$ref": "#/definitions/printf_annotation_obo",
"mapping": "oboInOwl:hasBroadSynonym"
},
"type": "array"
},
"generated_synonyms": {
"description": "An OBO convenience field to allow the specification of exact synonyms generated by interpolation of OWL entity names into printf text. Each entry may be annotated. \n",
"items": {
"$ref": "#/definitions/printf_annotation_obo",
"mapping": "oboInOwl:hasExactSynonym"
},
"type": "array"
},
"instance_graph": {
"additionalProperties": false,
"properties": {
"edges": {
"items": {
"$ref": "#/definitions/opa"
},
"type": "array"
},
"nodes": {
"description": "Key = name of individual within this pattern doc Value = Type of individual specified using either the quoted name of a class in the class dictionary of this pattern or a var name. This field does not support typing via anonymous class expressions\n",
"type": "object"
}
},
"required": [
"nodes",
"edges"
],
"type": "object"
},
"list_vars": {
"description": "A dictionary of variables refering to lists of owl classes. Key = variable name, value = variable range of items in list specified as a valid OWL data-type.\n",
"type": "object"
},
"logical_axioms": {
"items": {
"$ref": "#/definitions/printf_owl"
},
"type": "array"
},
"name": {
"$ref": "#/definitions/printf_annotation_obo",
"mapping": "rdfs:label"
},
"namespace": {
"$ref": "#/definitions/printf_annotation_obo",
"mapping": "oboInOwl:hasOBONamespace"
},
"narrow_synonym": {
"$ref": "#/definitions/list_annotation_obo",
"mapping": "oboInOwl:hasNarrowSynonym"
},
"objectProperties": {
"description": "A dictionary of OWL object properties. key : label; value : short form id",
"type": "object"
},
"pattern_name": {
"description": "The name of the pattern. This must be an ASCII string with no spaces. The only special characters allowed are '_' and '-'. By convention, this is used as the file name of the pattern - with an appropriate extension.\n",
"type": "string"
},
"readable_identifiers": {
"description": "A list of annotation properties used as naming fields, in order of preference.",
"items": {
"type": "string"
},
"type": "array"
},
"related_synonym": {
"$ref": "#/definitions/list_annotation_obo",
"mapping": "oboInOwl:hasRelatedSynonym"
},
"relations": {
"description": "A dictionary of OWL object properties. key : label; value : short form id",
"type": "object"
},
"subClassOf": {
"$ref": "#/definitions/printf_owl_convenience"
},
"substitutions": {
"items": {
"$ref": "#/definitions/regex_sub"
},
"type": "array"
},
"vars": {
"description": "A dictionary of variables ranging over OWL classes. Key = variable name, value = variable range as manchester syntax string.\n",
"type": "object"
},
"xref": {
"$ref": "#/definitions/list_annotation_obo",
"mapping": "oboInOwl:hasDbXref"
}
},
"title": "DOSDP",
"type": "object"
} | o36779 |
{
"properties": {
"group": {
"minLength": 1,
"type": "string"
},
"name": {
"type": "string"
},
"status": {
"enum": [
"offline",
"online"
],
"type": "string"
}
},
"required": [
"group"
],
"type": "object"
} | o12209 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "input-todo-schema",
"description": "Schema of post data for creating a new todo",
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "The description of the new task",
"minLength": 3,
"maxLength": 255
}
},
"required": ["title"]
}
| o55685 |
{
"description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.",
"properties": {
"apiGroup": {
"description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.",
"type": [
"string",
"null"
]
},
"kind": {
"description": "Kind is the type of resource being referenced",
"type": [
"string",
"null"
]
},
"name": {
"description": "Name is the name of resource being referenced",
"type": [
"string",
"null"
]
}
},
"required": [
"kind",
"name"
],
"type": "object"
} | kb_1088_Normalized |
{
"definitions": {
"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"
}
},
"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",
"null"
]
},
"gateway": {
"description": "The host address of the ScaleIO API Gateway.",
"type": [
"string",
"null"
]
},
"protectionDomain": {
"description": "The name of the ScaleIO Protection Domain for the configured storage.",
"type": [
"string",
"null"
]
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": [
"boolean",
"null"
]
},
"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",
"null"
]
},
"storageMode": {
"description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
"type": [
"string",
"null"
]
},
"storagePool": {
"description": "The ScaleIO Storage Pool associated with the protection domain.",
"type": [
"string",
"null"
]
},
"system": {
"description": "The name of the storage system as configured in ScaleIO.",
"type": [
"string",
"null"
]
},
"volumeName": {
"description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
"type": [
"string",
"null"
]
}
},
"required": [
"gateway",
"system",
"secretRef"
],
"type": "object"
} | kb_914_Normalized |
{
"id": "https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/schemas/v1.2/infoObject.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "info object (section 5.1.3)",
"type": "object",
"required": [
"title",
"description"
],
"properties": {
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"termsOfServiceUrl": {
"type": "string",
"format": "uri"
},
"contact": {
"type": "string",
"format": "email"
},
"license": {
"type": "string"
},
"licenseUrl": {
"type": "string",
"format": "uri"
}
},
"additionalProperties": false
} | o12176 |
{
"$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": [
"EiffelTestSuiteFinishedEvent"
]
},
"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": {
"outcome": {
"type": "object",
"properties": {
"verdict": {
"type": "string",
"enum": [
"PASSED",
"FAILED",
"INCONCLUSIVE"
]
},
"conclusion": {
"type": "string",
"enum": [
"SUCCESSFUL",
"FAILED",
"ABORTED",
"TIMED_OUT",
"INCONCLUSIVE"
]
},
"description": {
"type": "string"
}
},
"additionalProperties": false
},
"persistentLogs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"uri": {
"type": "string"
}
},
"required": [
"name",
"uri"
],
"additionalProperties": false
}
},
"customData": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"value": {}
},
"required": [
"key",
"value"
],
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"target": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
}
},
"required": [
"type",
"target"
],
"additionalProperties": false
}
}
},
"required": [
"meta",
"data",
"links"
],
"additionalProperties": false
} | o5416 |
{
"id": "https://koriym.github.io/Polidog.Todo/todo.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Todo",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier for a todo."
},
"title": {
"type": "string",
"description": "The title of the todo",
"minLength": 1,
"maxLength": 255
},
"status": {
"type": "string",
"description": "2 if task has been completed",
"enum": [
"1",
"2"
]
},
"status_name": {
"description": "The name of the status",
"type": "string",
"maxLength": 255
},
"created": {
"description": "The date and time that the todo was created",
"type": "string",
"format": "datetime"
},
"updated": {
"description": "The date and time that the todo was last modified",
"type": "string",
"format": "datetime"
}
},
"required": [
"title",
"status",
"created",
"updated"
],
"additionalProperties": false
} | o55680 |
{
"properties": {
"include_lowercase": {
"description": "Include lowercase letters",
"type": "boolean"
},
"include_numbers": {
"description": "Include numbers",
"type": "boolean"
},
"include_symbols": {
"description": "Include symbols",
"type": "boolean"
},
"include_uppercase": {
"description": "Include uppercase letters",
"type": "boolean"
},
"length": {
"description": "The length of the password",
"type": "integer"
}
},
"required": [
"length",
"include_lowercase",
"include_uppercase"
],
"type": "object"
} | generate_password_603f30a9 |
{
"definitions": {
"allowed": {
"additionalItems": true,
"format": "table",
"items": {
"properties": {
"name": {
"$ref": "#/definitions/name",
"description": "An allowed key",
"title": "Path"
},
"read": {
"default": true,
"format": "checkbox",
"title": "Can Read",
"type": "boolean"
},
"write": {
"default": false,
"format": "checkbox",
"title": "Can Write",
"type": "boolean"
}
},
"type": "object"
},
"minItems": 0,
"name": "allowed",
"type": "array",
"_uniqueItems": true
},
"denied": {
"additionalItems": true,
"format": "table",
"items": {
"properties": {
"name": {
"$ref": "#/definitions/name",
"description": "A denied key",
"title": "Key"
},
"read": {
"default": true,
"format": "checkbox",
"title": "Block Read",
"type": "boolean"
},
"write": {
"default": true,
"format": "checkbox",
"title": "Block Write",
"type": "boolean"
}
},
"type": "object"
},
"minItems": 0,
"name": "denied",
"type": "array",
"_uniqueItems": true
},
"name": {
"enum": [
"all",
"none",
"aircraft",
"aton",
"config",
"sar",
"sources",
"resources",
"resources.charts",
"resources.notes",
"resources.regions",
"resources.routes",
"resources.waypoints",
"vessels",
"vessels.self",
"vessels.self.communication",
"vessels.self.communication.callsignHf",
"vessels.self.communication.callsignVhf",
"vessels.self.communication.crewNames",
"vessels.self.communication.email",
"vessels.self.communication.emailHf",
"vessels.self.communication.phoneNumber",
"vessels.self.communication.satPhoneNumber",
"vessels.self.communication.skipperName",
"vessels.self.design",
"vessels.self.design.airHeight",
"vessels.self.design.aisShipType",
"vessels.self.design.beam",
"vessels.self.design.displacement",
"vessels.self.design.draft",
"vessels.self.design.length",
"vessels.self.electrical",
"vessels.self.electrical.ac",
"vessels.self.electrical.alternators",
"vessels.self.electrical.batteries",
"vessels.self.electrical.chargers",
"vessels.self.electrical.inverters",
"vessels.self.electrical.solar",
"vessels.self.environment",
"vessels.self.environment.current",
"vessels.self.environment.depth",
"vessels.self.environment.heave",
"vessels.self.environment.inside",
"vessels.self.environment.mode",
"vessels.self.environment.outside",
"vessels.self.environment.tide",
"vessels.self.environment.time",
"vessels.self.environment.water",
"vessels.self.environment.wind",
"vessels.self.environment.wind.angleApparent",
"vessels.self.environment.wind.angleTrueGround",
"vessels.self.environment.wind.angleTrueWater",
"vessels.self.environment.wind.directionChangeAlarm",
"vessels.self.environment.wind.directionMagnetic",
"vessels.self.environment.wind.directionTrue",
"vessels.self.environment.wind.speedApparent",
"vessels.self.environment.wind.speedOverGround",
"vessels.self.environment.wind.speedTrue",
"vessels.self.navigation",
"vessels.self.navigation.anchor",
"vessels.self.navigation.attitude",
"vessels.self.navigation.closestApproach",
"vessels.self.navigation.courseGreatCircle",
"vessels.self.navigation.courseOverGroundMagnetic",
"vessels.self.navigation.courseOverGroundTrue",
"vessels.self.navigation.courseRhumbline",
"vessels.self.navigation.datetime",
"vessels.self.navigation.destination",
"vessels.self.navigation.gnss",
"vessels.self.navigation.headingMagnetic",
"vessels.self.navigation.headingTrue",
"vessels.self.navigation.leewayAngle",
"vessels.self.navigation.lights",
"vessels.self.navigation.log",
"vessels.self.navigation.maneuver",
"vessels.self.navigation.position",
"vessels.self.navigation.racing",
"vessels.self.navigation.rateOfTurn",
"vessels.self.navigation.speedOverGround",
"vessels.self.navigation.speedThroughWater",
"vessels.self.navigation.speedThroughWaterLongitudinal",
"vessels.self.navigation.speedThroughWaterTransverse",
"vessels.self.navigation.state",
"vessels.self.navigation.trip",
"vessels.self.performance",
"vessels.self.performance.beatAngle",
"vessels.self.performance.beatAngleTargetSpeed",
"vessels.self.performance.beatAngleVelocityMadeGood",
"vessels.self.performance.gybeAngle",
"vessels.self.performance.gybeAngleTargetSpeed",
"vessels.self.performance.gybeAngleVelocityMadeGood",
"vessels.self.performance.leeway",
"vessels.self.performance.polarSpeed",
"vessels.self.performance.polarSpeedRatio",
"vessels.self.performance.tackMagnetic",
"vessels.self.performance.tackTrue",
"vessels.self.performance.targetAngle",
"vessels.self.performance.targetSpeed",
"vessels.self.performance.velocityMadeGood",
"vessels.self.propulsion",
"vessels.self.sails",
"vessels.self.sails.area",
"vessels.self.sails.inventory",
"vessels.self.sensors",
"vessels.self.steering",
"vessels.self.steering.autopilot",
"vessels.self.steering.autopilot.gain",
"vessels.self.steering.autopilot.mode",
"vessels.self.steering.autopilot.state",
"vessels.self.steering.autopilot.target",
"vessels.self.steering.rudderAngle",
"vessels.self.tanks",
"vessels.self.tanks.ballast",
"vessels.self.tanks.blackWater",
"vessels.self.tanks.freshWater",
"vessels.self.tanks.fuel",
"vessels.self.tanks.gas",
"vessels.self.tanks.liveWell",
"vessels.self.tanks.lubrication",
"vessels.self.tanks.wasteWater"
],
"type": "string"
}
},
"properties": {
"net": {
"_id": "http://jsonschema.net/signalk/config/server/security",
"additionalProperties": false,
"description": "Control access by network or IP",
"format": "categories",
"name": "net",
"properties": {
"config": {
"_id": "http://jsonschema.net/signalk/config/server/security/config",
"additionalProperties": false,
"description": "Limit access to configuration",
"name": "config",
"properties": {
"ip": {
"_id": "http://jsonschema.net/signalk/config/server/security/config/ip",
"additionalItems": true,
"description": "Allow from IP (eg 192.168.0.1) or network (eg or 192.186.0.0/24)",
"format": "table",
"items": {
"_id": "http://jsonschema.net/signalk/config/server/security/config/ip/0",
"default": "",
"description": "",
"minLength": 1,
"name": "0",
"title": "IP address",
"type": "string"
},
"minItems": 0,
"name": "ip",
"title": "IP Address",
"type": "array",
"_uniqueItems": true
}
},
"required": [
"ip"
],
"title": "Config List",
"type": "object"
},
"deny": {
"_id": "http://jsonschema.net/signalk/config/server/security/deny",
"additionalProperties": false,
"description": "Deny these source addresses",
"name": "deny",
"properties": {
"ip": {
"_id": "http://jsonschema.net/signalk/config/server/security/deny/ip",
"additionalItems": true,
"description": "Deny from IP (eg 192.168.0.1) or network (eg or 192.186.0.0/24)",
"format": "table",
"items": {
"_id": "http://jsonschema.net/signalk/config/server/security/deny/ip/0",
"default": "",
"description": "",
"minLength": 1,
"name": "0",
"title": "IP address",
"type": "string"
},
"minItems": 0,
"name": "ip",
"title": "IP Address",
"type": "array",
"_uniqueItems": true
}
},
"required": [
"ip"
],
"title": "Black List",
"type": "object"
},
"white": {
"_id": "http://jsonschema.net/signalk/config/server/security/white",
"additionalProperties": false,
"description": "Always allow from these addresses",
"name": "white",
"properties": {
"ip": {
"_id": "http://jsonschema.net/signalk/config/server/security/white/ip",
"additionalItems": true,
"description": "Allow from IP (eg 192.168.0.1) or network (eg or 192.186.0.0/24)",
"format": "table",
"items": {
"_id": "http://jsonschema.net/signalk/config/server/security/white/ip/0",
"default": "",
"description": "",
"minLength": 1,
"name": "0",
"title": "IP address",
"type": "string"
},
"minItems": 0,
"name": "ip",
"title": "IP Address",
"type": "array",
"_uniqueItems": true
}
},
"required": [
"ip"
],
"title": "White List",
"type": "object"
}
},
"required": [
"deny",
"white",
"config"
],
"title": "Network Access",
"type": "object"
},
"roles": {
"description": "Roles and their permissions",
"format": "categories",
"properties": {
"ais": {
"description": "AIS allowed keys",
"name": "ais",
"properties": {
"allowed": {
"$ref": "#/definitions/allowed",
"description": "Allowed keys",
"title": "Allowed"
},
"denied": {
"$ref": "#/definitions/denied",
"description": "Denied keys",
"title": "Denied"
}
},
"title": "AIS",
"type": "object"
},
"crew": {
"description": "Crews allowed keys",
"name": "crew",
"properties": {
"allowed": {
"$ref": "#/definitions/allowed",
"description": "Allowed keys",
"title": "Allowed"
},
"denied": {
"$ref": "#/definitions/denied",
"description": "Denied keys",
"title": "Denied"
}
},
"title": "Crew",
"type": "object"
},
"friend": {
"description": "Friends allowed keys",
"name": "friend",
"properties": {
"allowed": {
"$ref": "#/definitions/allowed",
"description": "Allowed keys",
"title": "Allowed"
},
"denied": {
"$ref": "#/definitions/denied",
"description": "Denied keys",
"title": "Denied"
}
},
"title": "Friends",
"type": "object"
},
"guests": {
"description": "Guests allowed keys",
"name": "guests",
"properties": {
"allowed": {
"$ref": "#/definitions/allowed",
"description": "Allowed keys",
"title": "Allowed"
},
"denied": {
"$ref": "#/definitions/denied",
"description": "Denied keys",
"title": "Denied"
}
},
"title": "Guests",
"type": "object"
},
"n2k": {
"description": "NMEA2000 allowed keys",
"name": "n2k",
"properties": {
"allowed": {
"$ref": "#/definitions/allowed",
"description": "Allowed keys",
"title": "Allowed"
},
"denied": {
"$ref": "#/definitions/denied",
"description": "Denied keys",
"title": "Denied"
}
},
"title": "NMEA2000",
"type": "object"
},
"official": {
"description": "Official allowed keys",
"name": "official",
"properties": {
"allowed": {
"$ref": "#/definitions/allowed",
"description": "Allowed keys",
"title": "Allowed"
},
"denied": {
"$ref": "#/definitions/denied",
"description": "Denied keys",
"title": "Denied"
}
},
"title": "Official",
"type": "object"
},
"public": {
"description": "Public allowed keys",
"name": "public",
"properties": {
"allowed": {
"$ref": "#/definitions/allowed",
"description": "Allowed keys",
"title": "Allowed"
},
"denied": {
"$ref": "#/definitions/denied",
"description": "Denied keys",
"title": "Denied"
}
},
"title": "Public",
"type": "object"
},
"serial": {
"description": "Serial allowed keys",
"name": "serial",
"properties": {
"allowed": {
"$ref": "#/definitions/allowed",
"description": "Allowed keys",
"title": "Allowed"
},
"denied": {
"$ref": "#/definitions/denied",
"description": "Denied keys",
"title": "Denied"
}
},
"title": "Serial",
"type": "object"
},
"skipper": {
"description": "Skippers allowed keys",
"name": "skipper",
"properties": {
"allowed": {
"$ref": "#/definitions/allowed",
"description": "Allowed keys",
"title": "Allowed"
},
"denied": {
"$ref": "#/definitions/denied",
"description": "Denied keys",
"title": "Denied"
}
},
"title": "Skipper",
"type": "object"
},
"tcp_external": {
"description": "Internet allowed keys",
"name": "tcp_external",
"properties": {
"allowed": {
"$ref": "#/definitions/allowed",
"description": "Allowed keys",
"title": "Allowed"
},
"denied": {
"$ref": "#/definitions/denied",
"description": "Denied keys",
"title": "Denied"
}
},
"title": "Internet",
"type": "object"
},
"tcp_internal": {
"description": "Internal network allowed keys",
"name": "tcp_internal",
"properties": {
"allowed": {
"$ref": "#/definitions/allowed",
"description": "Allowed keys",
"title": "Allowed"
},
"denied": {
"$ref": "#/definitions/denied",
"description": "Denied keys",
"title": "Denied"
}
},
"title": "Internal network",
"type": "object"
}
},
"title": "Roles",
"type": "object"
},
"users": {
"additionalItems": true,
"description": "Users and their roles",
"format": "table",
"items": {
"properties": {
"email": {
"default": "",
"description": "The users email ",
"examples": [
"[email protected]"
],
"title": "Email ",
"type": "string"
},
"hash": {
"description": "Hashed password",
"options": {
"hidden": true
},
"title": "Hash ",
"type": "string"
},
"lastPasswordChange": {
"default": "",
"description": "The date the password was last reset",
"examples": [
"1969-12-31T23:59:59.999Z"
],
"title": "Last Changed ",
"type": "string"
},
"name": {
"default": "",
"description": "The users login name",
"examples": [
"joe"
],
"minLength": 1,
"title": "Login",
"type": "string"
},
"password": {
"default": "",
"description": "The users password",
"examples": [
"dddcccbbduh"
],
"minLength": 8,
"title": "Password ",
"type": "string"
},
"roles": {
"items": {
"default": "",
"description": "An explanation about the purpose of this instance.",
"enum": [
"admin",
"skipper",
"crew",
"guests",
"friend",
"official",
"public",
"ais",
"serial",
"n2k",
"tcp_internal",
"tcp_external"
],
"type": "string"
},
"title": "Roles ",
"type": "array",
"_uniqueItems": true
}
},
"required": [
"name",
"password",
"lastPasswordChange",
"roles"
],
"type": "object"
},
"minItems": 0,
"name": "users",
"title": "Users",
"type": "array",
"_uniqueItems": true
}
},
"required": [
"users",
"net",
"roles"
],
"title": "Security Config",
"type": "object"
} | o14077 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"accessToken": {
"type": "string",
"minLength": 1
},
"requestedScopes": {
"type": "array",
"_uniqueItems": true,
"items": {
"oneOf": [
{
"oneOf": [
{
"type": "string",
"enum": [
"all.Application",
"all.Application.read",
"all.Device",
"all.Device.read",
"application.*",
"applicationApiToken.*",
"applicationApiTokens.*",
"applicationCertificate.*",
"applicationCertificates.*",
"applicationCertificateAuthority.*",
"applicationCertificateAuthorities.*",
"applicationKey.*",
"applicationKeys.*",
"data.*",
"dataTable.*",
"dataTables.*",
"dataTableRow.*",
"dataTableRows.*",
"device.*",
"deviceRecipe.*",
"deviceRecipes.*",
"devices.*",
"edgeDeployments.*",
"event.*",
"events.*",
"experience.*",
"experienceDomain.*",
"experienceDomains.*",
"experienceEndpoint.*",
"experienceEndpoints.*",
"experienceGroup.*",
"experienceGroups.*",
"experienceSlug.*",
"experienceSlugs.*",
"experienceUser.*",
"experienceUsers.*",
"experienceVersion.*",
"experienceVersions.*",
"experienceView.*",
"experienceViews.*",
"integration.*",
"integrations.*",
"file.*",
"files.*",
"flow.*",
"flows.*",
"flowVersion.*",
"flowVersions.*",
"notebook.*",
"notebooks.*",
"webhook.*",
"webhooks.*",
"application.archiveData",
"application.backfillArchiveData",
"application.clone",
"application.export",
"application.import",
"application.fullEventsArchive",
"application.fullDataTablesArchive",
"application.debug",
"application.delete",
"application.get",
"application.mqttPublishMessage",
"application.mqttSubscriptionStream",
"application.patch",
"application.payloadCounts",
"application.search",
"applicationApiToken.delete",
"applicationApiToken.get",
"applicationApiToken.patch",
"applicationApiTokens.get",
"applicationApiTokens.post",
"applicationCertificate.delete",
"applicationCertificate.get",
"applicationCertificate.patch",
"applicationCertificates.get",
"applicationCertificates.post",
"applicationCertificateAuthority.delete",
"applicationCertificateAuthority.get",
"applicationCertificateAuthority.patch",
"applicationCertificateAuthorities.get",
"applicationCertificateAuthorities.post",
"applicationKey.delete",
"applicationKey.get",
"applicationKey.patch",
"applicationKeys.get",
"applicationKeys.post",
"data.export",
"data.lastValueQuery",
"data.timeSeriesQuery",
"dataTable.addColumn",
"dataTable.delete",
"dataTable.get",
"dataTable.patch",
"dataTable.removeColumn",
"dataTableRow.delete",
"dataTableRow.get",
"dataTableRow.patch",
"dataTableRows.get",
"dataTableRows.post",
"dataTableRows.query",
"dataTableRows.export",
"dataTableRows.delete",
"dataTableRows.truncate",
"dataTables.get",
"dataTables.post",
"device.commandStream",
"device.debug",
"device.delete",
"device.export",
"device.get",
"device.getCommand",
"device.getCompositeState",
"device.getLogEntries",
"device.getState",
"device.patch",
"device.removeData",
"device.sendCommand",
"device.sendState",
"device.setConnectionStatus",
"device.stateStream",
"deviceRecipe.bulkCreate",
"deviceRecipe.delete",
"deviceRecipe.get",
"deviceRecipe.patch",
"deviceRecipes.get",
"deviceRecipes.post",
"devices.patch",
"devices.delete",
"devices.removeData",
"devices.detailedSummary",
"devices.export",
"devices.get",
"devices.post",
"devices.sendCommand",
"edgeDeployments.get",
"edgeDeployments.release",
"edgeDeployments.remove",
"edgeDeployments.replace",
"event.delete",
"event.get",
"event.patch",
"events.delete",
"events.get",
"events.mostRecentBySeverity",
"events.patch",
"events.post",
"events.export",
"experience.delete",
"experience.bootstrap",
"experienceDomain.delete",
"experienceDomain.get",
"experienceDomain.patch",
"experienceDomains.get",
"experienceDomains.post",
"experienceEndpoint.delete",
"experienceEndpoint.get",
"experienceEndpoint.linkedResources",
"experienceEndpoint.patch",
"experienceEndpoints.get",
"experienceEndpoints.post",
"experienceEndpoints.stats",
"experienceGroup.delete",
"experienceGroup.get",
"experienceGroup.patch",
"experienceGroups.detailedSummary",
"experienceGroups.get",
"experienceGroups.post",
"experienceSlug.delete",
"experienceSlug.get",
"experienceSlug.patch",
"experienceSlugs.get",
"experienceSlugs.post",
"experienceUser.delete",
"experienceUser.get",
"experienceUser.patch",
"experienceUsers.detailedSummary",
"experienceUsers.get",
"experienceUsers.post",
"experienceVersion.delete",
"experienceVersion.get",
"experienceVersion.patch",
"experienceVersions.get",
"experienceVersions.post",
"experienceView.debug",
"experienceView.delete",
"experienceView.get",
"experienceView.linkedResources",
"experienceView.patch",
"experienceViews.debug",
"experienceViews.detailedSummary",
"experienceViews.get",
"experienceViews.post",
"file.get",
"file.patch",
"file.move",
"file.delete",
"file.upload",
"files.get",
"files.post",
"flow.debug",
"flow.delete",
"flow.clearStorageEntries",
"flow.get",
"flow.getStorageEntries",
"flow.log",
"flow.patch",
"flow.pressVirtualButton",
"flow.setStorageEntry",
"flows.get",
"flows.getByVersion",
"flows.import",
"flows.post",
"flowVersion.delete",
"flowVersion.get",
"flowVersion.log",
"flowVersion.patch",
"flowVersions.get",
"flowVersions.post",
"integration.delete",
"integration.get",
"integration.patch",
"integrations.get",
"integrations.post",
"notebook.delete",
"notebook.execute",
"notebook.get",
"notebook.logs",
"notebook.patch",
"notebook.requestInputDataExport",
"notebook.upload",
"notebooks.get",
"notebooks.post",
"webhook.delete",
"webhook.get",
"webhook.patch",
"webhooks.get",
"webhooks.post"
]
},
{
"type": "string",
"enum": [
"all.Organization",
"all.Organization.read",
"applications.*",
"auditLog.*",
"auditLogs.*",
"dashboard.*",
"dashboards.*",
"org.*",
"applications.get",
"applications.post",
"applications.import",
"applications.detailedSummary",
"auditLog.get",
"auditLogs.get",
"dashboard.patch",
"dashboard.delete",
"dashboard.sendReport",
"dashboards.get",
"dashboards.post",
"org.get",
"org.patch",
"org.delete",
"org.pendingInvites",
"org.inviteMember",
"org.revokeInvite",
"org.modifyMember",
"org.removeMember",
"org.payloadCounts",
"org.invoices",
"org.currentCard",
"org.chargeDetails",
"org.transferResources"
]
}
]
},
{
"type": "string",
"enum": [
"all.User",
"all.User.read",
"applicationTemplates.*",
"applicationTemplates.get",
"me.*",
"orgs.*",
"me.get",
"me.patch",
"me.delete",
"me.verifyEmail",
"me.changePassword",
"me.enableTwoFactorAuth",
"me.disableTwoFactorAuth",
"me.disconnectGithub",
"me.connectGithub",
"me.disconnectTwitter",
"me.connectTwitter",
"me.addRecentItem",
"me.fetchRecentItems",
"me.payloadCounts",
"me.transferResources",
"orgs.get",
"orgs.post"
]
}
]
}
},
"tokenTTL": {
"type": "integer",
"minimum": 0
}
},
"required": [
"accessToken"
],
"additionalProperties": false
} | o9918 |
{
"description": "\u300c\u4e3b\u306b\u5358\u8a9e\u3067\u7b54\u3048\u308b\u30b2\u30fc\u30e0\u306b\u304a\u3051\u308b\u6c4e\u7528\u7684\u306a\u8f9e\u66f8\u5f62\u5f0f\u306b\u95a2\u3059\u308bAPI\u300d\u306b\u304a\u3044\u3066\u3001\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u969b\u306e\u8fd4\u5374\u5024\u3067\u3059\u3002",
"items": {
"description": "\u500b\u3005\u306e\u30a8\u30e9\u30fc\u3092\u8868\u3057\u307e\u3059\u3002",
"properties": {
"messages": {
"description": "\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u30ea\u30b9\u30c8\u3067\u3059\u3002",
"items": {
"type": "string"
},
"minItems": 1,
"title": "\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8",
"type": "array"
},
"type": {
"description": "\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9\u306e\u8a73\u7d30\u306f\u6b21\u306eURL\u3092\u53c2\u7167: <https://github.com/esperecyan/dictionary-api/blob/master/README.md#\u30a8\u30e9\u30fc>",
"title": "\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9",
"type": "string"
}
},
"required": [
"type",
"messages"
],
"title": "\u30a8\u30e9\u30fc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8",
"type": "object"
},
"minItems": 1,
"title": "esperecyan/dictionary-api \u30a8\u30e9\u30fc",
"type": "array"
} | o39367 |
{
"id": "https://tredly.com/docs/tredlyfile-json-schema#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "schema for an JSON Tredlyfile",
"type": "object",
"definitions": {
"validPort": {
"type": "integer",
"minimum": 1,
"maximum": 65535
},
"validAnyPort": {
"type": "string",
"enum": [
"any"
]
},
"positiveInteger": {
"type": "integer",
"minimum": 0
},
"binaryStringType": {
"type": "string",
"enum": [
"0",
"1"
]
},
"stringPath": {
"type": "string",
"pattern": "^/"
},
"typeSizeMegabyte": {
"type": "string",
"pattern": "^[0-9]+(m|M)(b|B)?$"
},
"typeSizeGigabyte": {
"type": "string",
"pattern": "^[0-9]+(g|G)(b|B)?$"
},
"validIpv4": {
"pattern": "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$"
},
"validIpv4WithCidr": {
"type": "string",
"pattern": "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(/([0-9]|[1-2][0-9]|3[0-2]))?$"
},
"resourceUnlimited": {
"type": "string",
"enum": [
"unlimited"
]
},
"inOutPorts": {
"type": "object",
"additionalProperties": false,
"properties": {
"in": {
"type": "array",
"_uniqueItems": true,
"items": {
"oneOf": [
{
"$ref": "#/definitions/validPort"
},
{
"$ref": "#/definitions/validAnyPort"
}
]
},
"default": {}
},
"out": {
"type": "array",
"_uniqueItems": true,
"items": {
"oneOf": [
{
"$ref": "#/definitions/validPort"
},
{
"$ref": "#/definitions/validAnyPort"
}
]
},
"default": {}
}
}
},
"operationExec": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"exec"
]
},
"value": {
"type": "string"
}
},
"required": [
"value"
],
"additionalProperties": false
},
"operationFolderFileMapping": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"fileFolderMapping"
]
},
"source": {
"type": "string"
},
"target": {
"type": "string"
}
},
"required": [
"source",
"target"
],
"additionalProperties": false
},
"operationInstallPackage": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"installPackage"
]
},
"value": {
"type": "string"
}
},
"required": [
"value"
],
"additionalProperties": false
},
"arrayOfOperations": {
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/operationExec"
},
{
"$ref": "#/definitions/operationFolderFileMapping"
},
{
"$ref": "#/definitions/operationInstallPackage"
}
]
}
},
"arrayOfExecOperationsOnly": {
"type": "array",
"items": {
"$ref": "#/definitions/operationExec"
}
},
"uriProtocolHttps": {
"type": "string",
"pattern": "^https:\\/\\/"
},
"uriProtocolHttp": {
"type": "string",
"pattern": "^http:\\/\\/"
},
"httpsRedirect": {
"type": "object",
"additionalProperties": false,
"properties": {
"url": {
"$ref": "#/definitions/uriProtocolHttps"
},
"cert": {
"description": "SSL certificate to apply to a http redirect 'from' URL.",
"type": "string"
}
},
"required": [
"url",
"cert"
]
},
"httpRedirect": {
"type": "object",
"additionalProperties": false,
"properties": {
"url": {
"$ref": "#/definitions/uriProtocolHttp"
},
"cert": {
"type": "null",
"enum": [
null
]
}
},
"required": [
"url",
"cert"
]
}
},
"required": [
"container"
],
"properties": {
"container": {
"type": "object",
"properties": {
"name": {
"description": "Unique per partition. Hostname of this container will this value",
"type": "string",
"pattern": "^[-_a-zA-Z0-9]+$"
},
"restrictTo": {
"description": "The version of Tredly this file is compatible with.",
"oneOf": [
{
"type": "string",
"pattern": "^(\\*|[0-9](?:\\.(\\*|[0-9]{1,}(?:\\.(\\*|[0-9]{1,}))?)?)?)$"
},
{
"type": "null"
},
{
"type": "string",
"maxLength": 0
}
]
},
"group": {
"description": "Add this container to a particular group.",
"oneOf": [
{
"type": "string",
"pattern": "^[-_a-zA-Z0-9]+$"
},
{
"type": "null"
},
{
"type": "string",
"maxLength": 0
}
],
"optional": true
},
"startOrder": {
"description": "Order in which this container is started within your container group.",
"type": "integer",
"minimum": 1,
"maximum": 99,
"default": 1
},
"replicate": {
"description": "When set to yes, this allows a container to be replicated within its container group. This is required if 'group' has been set.",
"type": "boolean",
"default": false
},
"buildOptions": {
"type": "object",
"additionalProperties": false,
"properties": {
"publish": {
"description": "When set to true, on push to a Tredly host this container will be automatically validated and built.",
"type": "boolean",
"default": true
}
},
"required": [
"publish"
]
},
"technicalOptions": {
"description": "These options will be set when the container is created.",
"type": "object",
"optional": true,
"additionalProperties": false,
"properties": {
"securelevel": {
"type": "integer",
"minimum": -1,
"maximum": 3
},
"devfs_ruleset": {
"$ref": "#/definitions/positiveInteger"
},
"enforce_statfs": {
"$ref": "#/definitions/binaryStringType"
},
"children.max": {
"$ref": "#/definitions/positiveInteger"
},
"allow.set_hostname": {
"$ref": "#/definitions/binaryStringType"
},
"allow.sysvipc": {
"$ref": "#/definitions/binaryStringType"
},
"allow.raw_sockets": {
"$ref": "#/definitions/binaryStringType"
},
"allow.chflags": {
"$ref": "#/definitions/binaryStringType"
},
"allow.mount": {
"$ref": "#/definitions/binaryStringType"
},
"allow.mount.devfs": {
"$ref": "#/definitions/binaryStringType"
},
"allow.mount.nullfs": {
"$ref": "#/definitions/binaryStringType"
},
"allow.mount.procfs": {
"$ref": "#/definitions/binaryStringType"
},
"allow.mount.tmpfs": {
"$ref": "#/definitions/binaryStringType"
},
"allow.mount.zfs": {
"$ref": "#/definitions/binaryStringType"
},
"allow.quotas": {
"$ref": "#/definitions/binaryStringType"
},
"allow.socket_af": {
"$ref": "#/definitions/binaryStringType"
},
"exec.prestart": {
"$ref": "#/definitions/stringPath"
},
"exec.poststart": {
"$ref": "#/definitions/stringPath"
},
"exec.prestop": {
"$ref": "#/definitions/stringPath"
},
"exec.stop": {
"$ref": "#/definitions/stringPath"
},
"exec.clean": {
"$ref": "#/definitions/binaryStringType"
},
"exec.timeout": {
"$ref": "#/definitions/binaryStringType"
},
"exec.fib": {
"$ref": "#/definitions/binaryStringType"
},
"stop.timeout": {
"$ref": "#/definitions/binaryStringType"
},
"mount.devfs": {
"$ref": "#/definitions/binaryStringType"
},
"mount.fdescfs": {
"$ref": "#/definitions/binaryStringType"
}
}
},
"persistentStorage": {
"type": "object",
"optional": true,
"description": "Create a persistent block of storage for this container",
"additionalProperties": false,
"properties": {
"identifier": {
"description": "A unique name to identify this block of persistent storage.",
"type": "string",
"pattern": "^[-_a-zA-Z0-9]+$"
},
"mountPoint": {
"description": "The path within the container that the persistent storage will be mounted.",
"$ref": "#/definitions/stringPath"
}
},
"required": [
"identifier",
"mountPoint"
]
},
"resourceLimits": {
"description": "Limit resources used by this container.",
"type": "object",
"additionalProperties": false,
"properties": {
"maxCpu": {
"description": "The total number of cores or percent this container can utilise.",
"oneOf": [
{
"type": "string",
"pattern": "^[0-9]+%$"
},
{
"type": "integer",
"minimum": 1
},
{
"$ref": "#/definitions/resourceUnlimited"
}
],
"optional": true,
"default": "unlimited"
},
"maxHdd": {
"description": "The total amount of disk space, in Gigabytes (G) or Megabytes (M), this container.",
"oneOf": [
{
"$ref": "#/definitions/typeSizeMegabyte"
},
{
"$ref": "#/definitions/typeSizeGigabyte"
},
{
"$ref": "#/definitions/resourceUnlimited"
}
],
"optional": true,
"default": "unlimited"
},
"maxRam": {
"description": "The total amount of RAM, in Gigabytes (G) or Megabytes (M), this container can utilise.",
"oneOf": [
{
"$ref": "#/definitions/typeSizeMegabyte"
},
{
"$ref": "#/definitions/typeSizeGigabyte"
},
{
"$ref": "#/definitions/resourceUnlimited"
}
],
"optional": true,
"default": "unlimited"
}
}
},
"proxy": {
"type": "object",
"additionalProperties": false,
"properties": {
"layer4Proxy": {
"description": "Layer4 proxy allows the container to use the Hosts external IP and forward traffic to your container on specific ports.",
"type": "boolean",
"default": false
},
"layer7Proxy": {
"description": "Group of properties for URL(s) the container services and responds to.",
"optional": true,
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"url": {
"type": "string"
},
"cert": {
"type": [
"string",
"null"
]
},
"enableWebsocket": {
"optional": true,
"type": "boolean",
"default": false
},
"errorResponse": {
"type": "boolean",
"default": true
},
"maxFileSize": {
"type": "string",
"optional": true,
"pattern": "^[0-9]+(m|g)$",
"default": "1m"
},
"redirects": {
"type": "array",
"optional": true,
"items": {
"type": "object",
"anyOf": [
{
"$ref": "#/definitions/httpRedirect"
},
{
"$ref": "#/definitions/httpsRedirect"
}
]
}
}
},
"required": [
"url",
"cert"
]
}
}
},
"required": [
"layer4Proxy"
]
},
"firewall": {
"type": "object",
"optional": true,
"properties": {
"ipv4Whitelist": {
"type": "array",
"optional": true,
"_uniqueItems": true,
"default": {},
"items": {
"$ref": "#/definitions/validIpv4WithCidr"
}
},
"allowPorts": {
"type": "object",
"optional": true,
"additionalProperties": false,
"_uniqueItems": true,
"properties": {
"udp": {
"$ref": "#/definitions/inOutPorts"
},
"tcp": {
"$ref": "#/definitions/inOutPorts"
}
}
}
}
},
"customDNS": {
"type": "array",
"_uniqueItems": true,
"optional": true,
"default": {},
"items": {
"$ref": "#/definitions/validIpv4"
}
},
"operations": {
"type": "object",
"additionalProperties": false,
"properties": {
"onStart": {
"$ref": "#/definitions/arrayOfExecOperationsOnly"
},
"onStop": {
"$ref": "#/definitions/arrayOfExecOperationsOnly"
},
"onCreate": {
"$ref": "#/definitions/arrayOfOperations"
},
"onDestroy": {
"$ref": "#/definitions/arrayOfExecOperationsOnly"
}
}
}
}
}
}
} | o84383 |
{
"title": "Invocation manifest for CNI: GE P-File Classifier",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"config": {
"type": "object",
"properties": {
"timezone": {
"type": "string",
"default": "America/Los_Angeles"
}
},
"required": [
"timezone"
]
},
"inputs": {
"type": "object",
"properties": {
"pfile": {
"type": "object",
"properties": {
"type": {
"enum": [
"pfile"
]
}
}
}
},
"required": [
"pfile"
]
}
},
"required": [
"config",
"inputs"
]
} | o41548 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"protocol": {
"type": "string",
"enum": [
"choria:secure:request:1"
]
},
"message": {
"type": "string",
"description": "YAML encoded choria:request:1"
},
"signature": {
"type": "string",
"description": "SHA256 based signature of the message using the senders private key"
},
"pubcert": {
"type": "string",
"description": "PEM format X509 certificate of the sender"
}
},
"required": [
"protocol",
"message",
"signature",
"pubcert"
]
} | o31277 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "validate spider output",
"description": "validate spider output",
"type": "object",
"properties": {
"_metadata": {
"type": "object",
"properties": {
"status": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"minimum": 0
},
"message": {
"type": "string"
}
},
"required": [
"code",
"message"
],
"additionalProperties": false
},
"crawlTime": {
"type": "object",
"properties": {
"started": {
"type": "string"
},
"durationInMs": {
"type": "integer",
"minimum": 0
}
},
"required": [
"started",
"durationInMs"
],
"additionalProperties": false
},
"spider": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string",
"pattern": "^sha256:[a-f0-9]{64}$"
}
},
"required": [
"version",
"name"
],
"additionalProperties": false
},
"crawlArgs": {
"type": "array",
"items": {
"type": "string",
"pattern": "^sha256:[a-f0-9]{64}$"
},
"_uniqueItems": false
}
},
"required": [
"status",
"crawlTime",
"spider",
"crawlArgs"
],
"additionalProperties": false
},
"_debug": {
"type": "object",
"properties": {
"crawlLog": {
"type": "string",
"minLength": 1,
"maxLength": 512
},
"chromeDriverLog": {
"type": "string",
"minLength": 1,
"maxLength": 512
},
"screenshot": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"additionalProperties": false
}
},
"required": [
"_metadata"
],
"additionalProperties": true
} | o76440 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Product set",
"type": "array",
"items": {
"title": "Product",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for a product",
"type": "number"
},
"name": {
"type": "string"
},
"price": {
"type": "number",
"exclusiveMinimum": 0
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"_uniqueItems": true
},
"dimensions": {
"type": "object",
"properties": {
"length": {
"type": "number"
},
"width": {
"type": "number"
},
"height": {
"type": "number"
}
},
"required": [
"length",
"width",
"height"
]
},
"warehouseLocation": {
"description": "Coordinates of the warehouse with the product"
}
},
"required": [
"id",
"name",
"price"
]
}
} | o58666 |
{
"properties": {
"api": {
"aliases": [
"a"
],
"default": false,
"description": "Specifies if api success and failure actions should be generated.",
"type": "boolean",
"x-prompt": "Should we generate success and failure actions?"
},
"creators": {
"aliases": [
"c"
],
"default": true,
"description": "Specifies whether to use creator functions for handling actions and reducers.",
"type": "boolean",
"x-prompt": "Do you want to use the create function?"
},
"flat": {
"default": true,
"description": "Flag to indicate if a dir is created.",
"type": "boolean"
},
"group": {
"aliases": [
"g"
],
"default": false,
"description": "Group actions file within 'actions' folder",
"type": "boolean"
},
"name": {
"$default": {
"$source": "argv",
"index": 0
},
"description": "The name of the action.",
"type": "string",
"x-prompt": "What should be the name of the action?"
},
"path": {
"description": "The path to create the component.",
"format": "path",
"type": "string",
"visible": false
},
"project": {
"aliases": [
"p"
],
"description": "The name of the project.",
"type": "string"
},
"skipTests": {
"default": false,
"description": "When true, does not create test files.",
"type": "boolean"
}
},
"required": [],
"title": "NgRx Action Options Schema",
"type": "object"
} | o63318 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.