json_schema
stringlengths 43
1.28M
| unique_id
stringlengths 2
41
|
---|---|
{
"title": "JSON Patch",
"description": "A JSON Schema describing a JSON Patch",
"$schema": "http://json-schema.org/draft-04/schema#",
"notes": [
"Only required members are accounted for, other members are ignored"
],
"type": "array",
"items": {
"description": "one JSON Patch operation",
"allOf": [
{
"description": "Members common to all operations",
"type": "object",
"required": [
"op",
"path"
],
"properties": {
"path": {
"$ref": "#/definitions/jsonPointer"
}
}
},
{
"$ref": "#/definitions/oneOperation"
}
]
},
"definitions": {
"jsonPointer": {
"type": "string",
"pattern": "^(/[^/~]*(~[01][^/~]*)*)*$"
},
"add": {
"description": "add operation. Value can be any JSON value.",
"properties": {
"op": {
"enum": [
"add"
]
}
},
"required": [
"value"
]
},
"remove": {
"description": "remove operation. Only a path is specified.",
"properties": {
"op": {
"enum": [
"remove"
]
}
}
},
"replace": {
"description": "replace operation. Value can be any JSON value.",
"properties": {
"op": {
"enum": [
"replace"
]
}
},
"required": [
"value"
]
},
"move": {
"description": "move operation. \"from\" is a JSON Pointer.",
"properties": {
"op": {
"enum": [
"move"
]
},
"from": {
"$ref": "#/definitions/jsonPointer"
}
},
"required": [
"from"
]
},
"copy": {
"description": "copy operation. \"from\" is a JSON Pointer.",
"properties": {
"op": {
"enum": [
"copy"
]
},
"from": {
"$ref": "#/definitions/jsonPointer"
}
},
"required": [
"from"
]
},
"test": {
"description": "test operation. Value can be any JSON value.",
"properties": {
"op": {
"enum": [
"test"
]
}
},
"required": [
"value"
]
},
"oneOperation": {
"oneOf": [
{
"$ref": "#/definitions/add"
},
{
"$ref": "#/definitions/remove"
},
{
"$ref": "#/definitions/replace"
},
{
"$ref": "#/definitions/move"
},
{
"$ref": "#/definitions/copy"
},
{
"$ref": "#/definitions/test"
}
]
}
}
} | o89003 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"description": "The list of items purchased by the customer",
"items": {
"properties": {
"price": {
"description": "The price of the product",
"type": "number"
},
"product_name": {
"description": "The name of the product",
"type": "string"
},
"quantity": {
"description": "The quantity of the product",
"type": "integer"
}
},
"required": [
"product_name",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"items"
],
"type": "object"
} | generate_invoice_9f46fdc0 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Scenario Reasoner output for evaluate method",
"type": "object",
"properties": {
"result": {
"type": "object",
"title": "Result of the method evaluate",
"description": "This sub-schema describes the result of the method evaluate",
"name": "result",
"additionalProperties": {
"type": "object",
"properties": {
"value": {}
},
"required": [
"value"
]
}
},
"id": {
"description": "A value identifying this response, equal to the id of the request or null"
},
"error": {
"type": "null"
},
"version": {
"type": "string"
}
},
"required": [
"result",
"error",
"id",
"version"
],
"additionalProperties": false
} | o16041 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Unit Settings",
"description": "Settings that describe the behaviour and formatting of rewards corresponding to the configured unit or unit pattern",
"type": "object",
"properties": {
"id": {
"type": "string",
"title": "Reward Unit Settings Id",
"description": "A unique identifier generated by combining reward type and unit or unit pattern (e.g. CREDIT/USD)"
},
"config": {
"type": "object",
"title": "Unit Settings Configuration",
"description": "Behaviour and formatting supported by this unit setting",
"properties": {
"rewardModifications": {
"type": "object",
"title": "Reward Modifications",
"description": "The modifications supported by rewards applicable for this unit setting",
"properties": {
"isCancellable": {
"type": "boolean",
"title": "Is Cancellable",
"description": "Indicates whether rewards of this unit can be cancelled via SaaSquatch API/Portal"
},
"isRedeemable": {
"type": "boolean",
"title": "Is Redeemable",
"description": "Indicates whether rewards of this unit can be redeemed via SaaSquatch API/Portal"
},
"isExpirable": {
"type": "boolean",
"title": "Is Expirable",
"description": "Indicates whether expiration is applicable to this reward of this unit"
}
},
"additionalProperties": false,
"required": [
"isCancellable",
"isRedeemable",
"isExpirable"
]
},
"supportsCurrencies": {
"type": "boolean",
"title": "Supports Currencies",
"description": "Whether this unit supports multi-currencies. false by default."
},
"translatableConfig": {
"type": "object",
"title": "Translatable Configuration",
"description": "Locale-specific configuration for rewards of this unit",
"properties": {
"name": {
"type": "string",
"title": "Name",
"description": "The name of this reward unit"
},
"prettyValueFormat": {
"type": "object",
"title": "Pretty Value Format",
"description": "Format for prettyValue for rewards of this unit",
"properties": {
"templateType": {
"type": "string",
"title": "Template Type",
"description": "The type of this template, \"ICU\" by default.",
"enum": [
"ICU"
]
},
"template": {
"type": "string",
"title": "Template",
"description": "The template string for reward prettyValue"
}
},
"additionalProperties": false,
"required": [
"template"
]
}
},
"additionalProperties": false
}
},
"additionalProperties": false,
"required": [
"rewardModifications",
"supportsCurrencies"
]
}
},
"additionalProperties": false,
"required": [
"id",
"config"
]
} | o72199 |
{
"description": "A **custom field answer** stores arbitrary data about an applicant, answering the question posed by a **custom field**.",
"links": [
{
"description": "Display an existing custom field answer.",
"href": "/api/v1/user_identities/:user_identity_id/programs/:program_id/applicants_by_cas_id/:applicant_cas_id/custom_field_answers/:custom_field_id",
"http_header": {
"x-api-key": "0123456789abcdef0123456789abcdef"
},
"method": "GET",
"rel": "self",
"title": "Show"
},
{
"description": "Store a **custom field** value. If a value has not previously been stored, this *creates* an answer. Otherwise, this *updates* an existing answer.",
"href": "/api/v1/user_identities/:user_identity_id/programs/:program_id/applicants_by_cas_id/:applicant_cas_id/custom_field_answers/:custom_field_id",
"http_header": {
"x-api-key": "0123456789abcdef0123456789abcdef"
},
"method": "PUT",
"rel": "update",
"schema": {
"properties": {
"custom_field_answer": {
"properties": {
"field_type": {
"description": "Type of data that the **custom field** stores.",
"enum": [
"select"
],
"example": "select",
"type": "string"
},
"value": {
"description": "The select value to be stored as an answer to the **custom field**. The value must be one of the valid values configured on the custom field.",
"example": "Gryffindor",
"type": [
"string",
"null"
]
}
},
"required": [
"field_type",
"value"
],
"type": "object"
}
},
"type": "object"
},
"title": "Store"
},
{
"description": "Clear an existing custom field answer. (Same semantics as `PUT` with `\"value\": null`.) This is a \"soft delete\" that tracks who made the change.",
"href": "/api/v1/user_identities/:user_identity_id/programs/:program_id/applicants_by_cas_id/:applicant_cas_id/custom_field_answers/:custom_field_id",
"http_header": {
"x-api-key": "0123456789abcdef0123456789abcdef"
},
"method": "DELETE",
"rel": "destroy",
"targetSchema": {
"properties": {
"custom_field_answer": {
"properties": {
"custom_field_id": {
"example": 4,
"type": "integer"
},
"field_type": {
"enum": [
"select"
],
"example": "select",
"type": "string"
},
"href": {
"example": "/api/v1/user_identities/1/programs/42023191739237/applicants_by_cas_id/3/custom_field_answers/4",
"pattern": "/api/v1/user_identities/\\d+/programs/\\d+/applicants_by_cas_id/\\d+/custom_field_answers/\\d+",
"type": "string"
},
"label": {
"example": "Preferred house",
"type": "string"
},
"value": {
"example": null,
"type": "null"
}
},
"type": "object"
}
},
"type": "object"
},
"title": "Destroy"
}
],
"properties": {
"custom_field_answer": {
"properties": {
"custom_field_id": {
"description": "Unique identifier of the **custom field** that this answers.",
"example": 4,
"type": "integer"
},
"field_type": {
"description": "Type of data that the **custom field** stores.",
"enum": [
"select"
],
"example": "select",
"type": "string"
},
"href": {
"description": "Hypertext reference to this resource.",
"example": "/api/v1/user_identities/1/programs/42023191739237/applicants_by_cas_id/3/custom_field_answers/4",
"pattern": "/api/v1/user_identities/\\d+/programs/\\d+/applicants_by_cas_id/\\d+/custom_field_answers/\\d+",
"type": "string"
},
"label": {
"description": "Human-readable label of the **custom field** that this answers.",
"example": "Preferred house",
"type": "string"
},
"value": {
"description": "The select value stored as an answer to the **custom field**. The value must be one of the valid values configured on the custom field.",
"example": "Gryffindor",
"type": [
"string",
"null"
]
}
},
"type": "object"
}
},
"title": "Custom Field Answer (Select)",
"type": "object"
} | o9507 |
{
"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",
"null"
]
},
"expirationSeconds": {
"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.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"path": {
"description": "Path is the path relative to the mount point of the file to project the token into.",
"type": [
"string",
"null"
]
}
},
"required": [
"path"
],
"type": "object"
} | kb_976_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": {
"description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
"type": "integer"
},
"readOnly": {
"description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "boolean"
},
"volumeID": {
"description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity": {
"description": "Affinity is a group of affinity scheduling rules.",
"properties": {
"nodeAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity",
"description": "Describes node affinity scheduling rules for the pod."
},
"podAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity",
"description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))."
},
"podAntiAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity",
"description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": {
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
"properties": {
"cachingMode": {
"description": "Host Caching mode: None, Read Only, Read Write.",
"type": "string"
},
"diskName": {
"description": "The Name of the data disk in the blob storage",
"type": "string"
},
"diskURI": {
"description": "The URI the data disk in the blob storage",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"kind": {
"description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
}
},
"required": [
"diskName",
"diskURI"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource": {
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
"properties": {
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretName": {
"description": "the name of secret that contains Azure Storage Account Name and Key",
"type": "string"
},
"shareName": {
"description": "Share Name",
"type": "string"
}
},
"required": [
"secretName",
"shareName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": {
"description": "Represents a source location of a volume to mount, managed by an external CSI driver",
"properties": {
"driver": {
"description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.",
"type": "string"
},
"nodePublishSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed."
},
"readOnly": {
"description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).",
"type": "boolean"
},
"volumeAttributes": {
"additionalProperties": {
"type": "string"
},
"description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.",
"type": "object"
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": {
"description": "Adds and removes POSIX capabilities from running containers.",
"properties": {
"add": {
"description": "Added capabilities",
"items": {
"type": "string"
},
"type": "array"
},
"drop": {
"description": "Removed capabilities",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": {
"description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"monitors": {
"description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "boolean"
},
"secretFile": {
"description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
},
"user": {
"description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource": {
"description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
},
"volumeID": {
"description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource": {
"description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector": {
"description": "Selects a key from a ConfigMap.",
"properties": {
"key": {
"description": "The key to select.",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its key must be defined",
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection": {
"description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": {
"description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container": {
"description": "A single application container that you want to run within a pod.",
"properties": {
"args": {
"description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"description": "List of environment variables to set in the container. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"envFrom": {
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"image": {
"description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.",
"type": "string"
},
"imagePullPolicy": {
"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
"type": "string"
},
"lifecycle": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle",
"description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated."
},
"livenessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"name": {
"description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.",
"type": "string"
},
"ports": {
"description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"containerPort",
"protocol"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "containerPort",
"x-kubernetes-patch-strategy": "merge"
},
"readinessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"resources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements",
"description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/"
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext",
"description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
},
"startupProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"stdin": {
"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
"type": "boolean"
},
"stdinOnce": {
"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
"type": "boolean"
},
"terminationMessagePath": {
"description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
"type": "string"
},
"terminationMessagePolicy": {
"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
"type": "string"
},
"tty": {
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
"type": "boolean"
},
"volumeDevices": {
"description": "volumeDevices is the list of block devices to be used by the container.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice"
},
"type": "array",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge"
},
"volumeMounts": {
"description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort": {
"description": "ContainerPort represents a network port in a single container.",
"properties": {
"containerPort": {
"_format": "int32",
"description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.",
"type": "integer"
},
"hostIP": {
"description": "What host IP to bind the external port to.",
"type": "string"
},
"hostPort": {
"_format": "int32",
"description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.",
"type": "integer"
},
"name": {
"description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.",
"type": "string"
},
"protocol": {
"description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
"type": "string"
}
},
"required": [
"containerPort"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": {
"description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.",
"properties": {
"items": {
"description": "Items is a list of DownwardAPIVolume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": {
"description": "DownwardAPIVolumeFile represents information to create the file containing the pod field",
"properties": {
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported."
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'",
"type": "string"
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported."
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": {
"description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "Items is a list of downward API volume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": {
"description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
"properties": {
"medium": {
"description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir",
"type": "string"
},
"sizeLimit": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource": {
"description": "EnvFromSource represents the source of a set of ConfigMaps",
"properties": {
"configMapRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource",
"description": "The ConfigMap to select from"
},
"prefix": {
"description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource",
"description": "The Secret to select from"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar": {
"description": "EnvVar represents an environment variable present in a Container.",
"properties": {
"name": {
"description": "Name of the environment variable. Must be a C_IDENTIFIER.",
"type": "string"
},
"value": {
"description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".",
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource",
"description": "Source for the environment variable's value. Cannot be used if value is not empty."
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource": {
"description": "EnvVarSource represents a source for the value of an EnvVar.",
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector",
"description": "Selects a key of a ConfigMap."
},
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs."
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported."
},
"secretKeyRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector",
"description": "Selects a key of a secret in the pod's namespace"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer": {
"description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.",
"properties": {
"args": {
"description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"description": "List of environment variables to set in the container. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"envFrom": {
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"image": {
"description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images",
"type": "string"
},
"imagePullPolicy": {
"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
"type": "string"
},
"lifecycle": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle",
"description": "Lifecycle is not allowed for ephemeral containers."
},
"livenessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"name": {
"description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.",
"type": "string"
},
"ports": {
"description": "Ports are not allowed for ephemeral containers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort"
},
"type": "array"
},
"readinessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"resources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements",
"description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod."
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext",
"description": "SecurityContext is not allowed for ephemeral containers."
},
"startupProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"stdin": {
"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
"type": "boolean"
},
"stdinOnce": {
"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
"type": "boolean"
},
"targetContainerName": {
"description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.",
"type": "string"
},
"terminationMessagePath": {
"description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
"type": "string"
},
"terminationMessagePolicy": {
"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
"type": "string"
},
"tty": {
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
"type": "boolean"
},
"volumeDevices": {
"description": "volumeDevices is the list of block devices to be used by the container.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice"
},
"type": "array",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge"
},
"volumeMounts": {
"description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": {
"description": "ExecAction describes a \"run in container\" action.",
"properties": {
"command": {
"description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": {
"description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "Optional: FC target lun number",
"type": "integer"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"targetWWNs": {
"description": "Optional: FC target worldwide names (WWNs)",
"items": {
"type": "string"
},
"type": "array"
},
"wwids": {
"description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource": {
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
"properties": {
"driver": {
"description": "Driver is the name of the driver to use for this volume.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.",
"type": "string"
},
"options": {
"additionalProperties": {
"type": "string"
},
"description": "Optional: Extra command options if any.",
"type": "object"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts."
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": {
"description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.",
"properties": {
"datasetName": {
"description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
"type": "string"
},
"datasetUUID": {
"description": "UUID of the dataset. This is unique identifier of a Flocker dataset",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": {
"description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "integer"
},
"pdName": {
"description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "boolean"
}
},
"required": [
"pdName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource": {
"description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
"properties": {
"directory": {
"description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.",
"type": "string"
},
"repository": {
"description": "Repository URL",
"type": "string"
},
"revision": {
"description": "Commit hash for the specified revision.",
"type": "string"
}
},
"required": [
"repository"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": {
"description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"endpoints": {
"description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"path": {
"description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "boolean"
}
},
"required": [
"endpoints",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction": {
"description": "HTTPGetAction describes an action based on HTTP Get requests.",
"properties": {
"host": {
"description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
"type": "string"
},
"httpHeaders": {
"description": "Custom headers to set in the request. HTTP allows repeated headers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader"
},
"type": "array"
},
"path": {
"description": "Path to access on the HTTP server.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
},
"scheme": {
"description": "Scheme to use for connecting to the host. Defaults to HTTP.",
"type": "string"
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": {
"description": "HTTPHeader describes a custom header to be used in HTTP probes",
"properties": {
"name": {
"description": "The header field name",
"type": "string"
},
"value": {
"description": "The header field value",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": {
"description": "Handler defines a specific action that should be taken",
"properties": {
"exec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"httpGet": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"tcpSocket": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias": {
"description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
"properties": {
"hostnames": {
"description": "Hostnames for the above IP address.",
"items": {
"type": "string"
},
"type": "array"
},
"ip": {
"description": "IP address of the host file entry.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": {
"description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
},
"type": {
"description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource": {
"description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
"properties": {
"chapAuthDiscovery": {
"description": "whether support iSCSI Discovery CHAP authentication",
"type": "boolean"
},
"chapAuthSession": {
"description": "whether support iSCSI Session CHAP authentication",
"type": "boolean"
},
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi",
"type": "string"
},
"initiatorName": {
"description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
"type": "string"
},
"iqn": {
"description": "Target iSCSI Qualified Name.",
"type": "string"
},
"iscsiInterface": {
"description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "iSCSI Target Lun number.",
"type": "integer"
},
"portals": {
"description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"items": {
"type": "string"
},
"type": "array"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "CHAP Secret for iSCSI target and initiator authentication"
},
"targetPortal": {
"description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"type": "string"
}
},
"required": [
"targetPortal",
"iqn",
"lun"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath": {
"description": "Maps a string key to a path within a volume.",
"properties": {
"key": {
"description": "The key to project.",
"type": "string"
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.",
"type": "string"
}
},
"required": [
"key",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle": {
"description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.",
"properties": {
"postStart": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler",
"description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
},
"preStop": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler",
"description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": {
"description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": {
"description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "boolean"
},
"server": {
"description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
}
},
"required": [
"server",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity": {
"description": "Node affinity is a group of node affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector",
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": {
"description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.",
"properties": {
"nodeSelectorTerms": {
"description": "Required. A list of node selector terms. The terms are ORed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm"
},
"type": "array"
}
},
"required": [
"nodeSelectorTerms"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": {
"description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "The label key that the selector applies to.",
"type": "string"
},
"operator": {
"description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
"type": "string"
},
"values": {
"description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": {
"description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.",
"properties": {
"matchExpressions": {
"description": "A list of node selector requirements by node's labels.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
},
"matchFields": {
"description": "A list of node selector requirements by node's fields.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": {
"description": "ObjectFieldSelector selects an APIVersioned field of an object.",
"properties": {
"apiVersion": {
"description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
"type": "string"
},
"fieldPath": {
"description": "Path of the field to select in the specified API version.",
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": {
"description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).",
"properties": {
"claimName": {
"description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
"type": "string"
},
"readOnly": {
"description": "Will force the ReadOnly setting in VolumeMounts. Default false.",
"type": "boolean"
}
},
"required": [
"claimName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": {
"description": "Represents a Photon Controller persistent disk resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"pdID": {
"description": "ID that identifies Photon Controller persistent disk",
"type": "string"
}
},
"required": [
"pdID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity": {
"description": "Pod affinity is a group of inter pod affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": {
"description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running",
"properties": {
"labelSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "A label query over a set of resources, in this case pods."
},
"namespaces": {
"description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"",
"items": {
"type": "string"
},
"type": "array"
},
"topologyKey": {
"description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.",
"type": "string"
}
},
"required": [
"topologyKey"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": {
"description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig": {
"description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.",
"properties": {
"nameservers": {
"description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.",
"items": {
"type": "string"
},
"type": "array"
},
"options": {
"description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption"
},
"type": "array"
},
"searches": {
"description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption": {
"description": "PodDNSConfigOption defines DNS resolver options of a pod.",
"properties": {
"name": {
"description": "Required.",
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate": {
"description": "PodReadinessGate contains the reference to a pod condition",
"properties": {
"conditionType": {
"description": "ConditionType refers to a condition in the pod's condition list with matching type.",
"type": "string"
}
},
"required": [
"conditionType"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext": {
"description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.",
"properties": {
"fsGroup": {
"_format": "int64",
"description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.",
"type": "integer"
},
"fsGroupChangePolicy": {
"description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".",
"type": "string"
},
"runAsGroup": {
"_format": "int64",
"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"type": "integer"
},
"runAsNonRoot": {
"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "boolean"
},
"runAsUser": {
"_format": "int64",
"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"type": "integer"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container."
},
"supplementalGroups": {
"description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.",
"items": {
"_format": "int64",
"type": "integer"
},
"type": "array"
},
"sysctls": {
"description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl"
},
"type": "array"
},
"windowsOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions",
"description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec": {
"description": "PodSpec is a description of a pod.",
"properties": {
"activeDeadlineSeconds": {
"_format": "int64",
"description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.",
"type": "integer"
},
"affinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity",
"description": "If specified, the pod's scheduling constraints"
},
"automountServiceAccountToken": {
"description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.",
"type": "boolean"
},
"containers": {
"description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"dnsConfig": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig",
"description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy."
},
"dnsPolicy": {
"description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.",
"type": "string"
},
"enableServiceLinks": {
"description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.",
"type": "boolean"
},
"ephemeralContainers": {
"description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"hostAliases": {
"description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias"
},
"type": "array",
"x-kubernetes-patch-merge-key": "ip",
"x-kubernetes-patch-strategy": "merge"
},
"hostIPC": {
"description": "Use the host's ipc namespace. Optional: Default to false.",
"type": "boolean"
},
"hostNetwork": {
"description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.",
"type": "boolean"
},
"hostPID": {
"description": "Use the host's pid namespace. Optional: Default to false.",
"type": "boolean"
},
"hostname": {
"description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.",
"type": "string"
},
"imagePullSecrets": {
"description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"initContainers": {
"description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"nodeName": {
"description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.",
"type": "string"
},
"nodeSelector": {
"additionalProperties": {
"type": "string"
},
"description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/",
"type": "object"
},
"overhead": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.",
"type": "object"
},
"preemptionPolicy": {
"description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.",
"type": "string"
},
"priority": {
"_format": "int32",
"description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.",
"type": "integer"
},
"priorityClassName": {
"description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.",
"type": "string"
},
"readinessGates": {
"description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate"
},
"type": "array"
},
"restartPolicy": {
"description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy",
"type": "string"
},
"runtimeClassName": {
"description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.",
"type": "string"
},
"schedulerName": {
"description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.",
"type": "string"
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext",
"description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field."
},
"serviceAccount": {
"description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
"type": "string"
},
"serviceAccountName": {
"description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
"type": "string"
},
"shareProcessNamespace": {
"description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.",
"type": "boolean"
},
"subdomain": {
"description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.",
"type": "string"
},
"terminationGracePeriodSeconds": {
"_format": "int64",
"description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.",
"type": "integer"
},
"tolerations": {
"description": "If specified, the pod's tolerations.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration"
},
"type": "array"
},
"topologySpreadConstraints": {
"description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is only honored by clusters that enable the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"topologyKey",
"whenUnsatisfiable"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "topologyKey",
"x-kubernetes-patch-strategy": "merge"
},
"volumes": {
"description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge,retainKeys"
}
},
"required": [
"containers"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplate": {
"description": "PodTemplate describes a template for creating copies of a predefined 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": [
"PodTemplate"
],
"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"
},
"template": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec",
"description": "Template defines the pods that will be created from this pod template. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "",
"kind": "PodTemplate",
"version": "v1"
}
]
},
"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": "PodTemplateList is a list of PodTemplates.",
"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": "List of pod templates",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplate"
},
"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": [
"PodTemplateList"
],
"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#types-kinds"
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "",
"kind": "PodTemplateList",
"version": "v1"
}
]
} | kb_741_Normalized |
{
"title": "TextFixed",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"numWords": {
"type": "integer",
"minimum": 1
}
},
"required": [
"numWords"
]
} | o91001 |
{
"type": "object",
"description": "DForms Form Schema",
"required": [
"sections"
],
"definitions": {
"section": {
"properties": {
"label": {
"type": "string"
},
"fields": {
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9_]+$": {
"$ref": "#/definitions/fields"
}
}
}
},
"additionalProperties": false
},
"fields": {
"oneOf": [
{
"$ref": "#/definitions/textField"
},
{
"$ref": "#/definitions/numericField"
},
{
"$ref": "#/definitions/emailField"
},
{
"$ref": "#/definitions/currencyField"
},
{
"$ref": "#/definitions/staticField"
},
{
"$ref": "#/definitions/enumField"
},
{
"$ref": "#/definitions/multipleField"
},
{
"$ref": "#/definitions/dateField"
},
{
"$ref": "#/definitions/timeField"
},
{
"$ref": "#/definitions/datetimeField"
},
{
"$ref": "#/definitions/repeatingField"
}
]
},
"expressionId": {
"type": "string"
},
"textField": {
"type": "object",
"properties": {
"type": {
"enum": [
"text"
]
},
"suggestions": {
"type": "array"
},
"label": {
"type": "string"
},
"help": {
"type": "string"
},
"required": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"placeholder": {
"type": "string"
},
"size": {
"$ref": "#/definitions/fieldSize"
},
"visible": {
"$ref": "#/definitions/expressionId"
},
"valid": {
"$ref": "#/definitions/expressionId"
}
},
"required": [
"label"
],
"additionalProperties": false
},
"emailField": {
"type": "object",
"properties": {
"type": {
"enum": [
"email"
]
},
"label": {
"type": "string"
},
"help": {
"type": "string"
},
"required": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"placeholder": {
"type": "string"
},
"size": {
"$ref": "#/definitions/fieldSize"
},
"visible": {
"$ref": "#/definitions/expressionId"
},
"valid": {
"$ref": "#/definitions/expressionId"
}
},
"required": [
"label"
],
"additionalProperties": false
},
"currencyField": {
"type": "object",
"properties": {
"type": {
"enum": [
"currency"
]
},
"label": {
"type": "string"
},
"help": {
"type": "string"
},
"required": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"placeholder": {
"type": "string"
},
"size": {
"$ref": "#/definitions/fieldSize"
},
"visible": {
"$ref": "#/definitions/expressionId"
},
"valid": {
"$ref": "#/definitions/expressionId"
}
},
"required": [
"label"
],
"additionalProperties": false
},
"staticField": {
"type": "object",
"properties": {
"type": {
"enum": [
"static"
]
},
"label": {
"type": "string"
},
"help": {
"type": "string"
},
"size": {
"$ref": "#/definitions/fieldSize"
},
"visible": {
"$ref": "#/definitions/expressionId"
},
"valid": {
"$ref": "#/definitions/expressionId"
}
},
"required": [
"label"
],
"additionalProperties": false
},
"enumField": {
"type": "object",
"properties": {
"type": {
"enum": [
"enum"
]
},
"options": {
"anyOf": [
{
"type": "array",
"minItems": 1,
"_uniqueItems": true,
"items": {
"type": "string"
}
},
{
"type": "object",
"minProperties": 1
}
]
},
"default": {
"type": "string"
},
"label": {
"type": "string"
},
"help": {
"type": "string"
},
"required": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"size": {
"$ref": "#/definitions/fieldSize"
},
"visible": {
"$ref": "#/definitions/expressionId"
},
"valid": {
"$ref": "#/definitions/expressionId"
}
},
"required": [
"label"
],
"additionalProperties": false
},
"multipleField": {
"type": "object",
"properties": {
"type": {
"enum": [
"multiple"
]
},
"fields": {
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9_]+$": {
"$ref": "#/definitions/fields"
}
}
},
"label": {
"type": "string"
},
"help": {
"type": "string"
},
"visible": {
"$ref": "#/definitions/expressionId"
}
},
"required": [
"label"
],
"additionalProperties": false
},
"numericField": {
"type": "object",
"properties": {
"type": {
"enum": [
"number",
"decimal"
]
},
"min": {
"type": "number"
},
"max": {
"type": "number"
},
"label": {
"type": "string"
},
"help": {
"type": "string"
},
"required": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"placeholder": {
"type": "string"
},
"size": {
"$ref": "#/definitions/fieldSize"
},
"visible": {
"$ref": "#/definitions/expressionId"
},
"valid": {
"$ref": "#/definitions/expressionId"
}
},
"required": [
"label"
],
"additionalProperties": false
},
"dateField": {
"type": "object",
"properties": {
"type": {
"enum": [
"date"
]
},
"label": {
"type": "string"
},
"help": {
"type": "string"
},
"required": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"placeholder": {
"type": "string"
},
"size": {
"$ref": "#/definitions/fieldSize"
},
"visible": {
"$ref": "#/definitions/expressionId"
},
"valid": {
"$ref": "#/definitions/expressionId"
}
},
"required": [
"label"
],
"additionalProperties": false
},
"timeField": {
"type": "object",
"properties": {
"type": {
"enum": [
"time"
]
},
"label": {
"type": "string"
},
"help": {
"type": "string"
},
"required": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"placeholder": {
"type": "string"
},
"size": {
"$ref": "#/definitions/fieldSize"
},
"visible": {
"$ref": "#/definitions/expressionId"
},
"valid": {
"$ref": "#/definitions/expressionId"
}
},
"required": [
"label"
],
"additionalProperties": false
},
"datetimeField": {
"type": "object",
"properties": {
"type": {
"enum": [
"datetime"
]
},
"label": {
"type": "string"
},
"help": {
"type": "string"
},
"required": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"placeholder": {
"type": "string"
},
"size": {
"$ref": "#/definitions/fieldSize"
},
"visible": {
"$ref": "#/definitions/expressionId"
},
"valid": {
"$ref": "#/definitions/expressionId"
}
},
"required": [
"label"
],
"additionalProperties": false
},
"fieldSize": {
"type": "number",
"minimum": 1,
"maximum": 12,
"multipleOf": 1
},
"repeatingField": {
"type": "object",
"properties": {
"type": {
"enum": [
"repeating"
]
},
"fields": {
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9_]+$": {
"$ref": "#/definitions/fields"
}
}
},
"label": {
"type": "string"
},
"help": {
"type": "string"
},
"minRows": {
"oneOf": [
{
"type": "integer"
},
{
"type": "string"
}
]
},
"maxRows": {
"oneOf": [
{
"type": "integer"
},
{
"type": "string"
}
]
},
"inline": {
"type": "boolean"
},
"expressions": {
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9_]+$": {
"$ref": "#/definitions/expressions"
}
},
"additionalProperties": false
}
},
"required": [
"label"
],
"additionalProperties": false
},
"conditionAnd": {
"type": "array",
"minItems": 2,
"items": {
"$ref": "#/definitions/expressions"
}
},
"conditionOr": {
"type": "array",
"minItems": 2,
"items": {
"$ref": "#/definitions/expressions"
}
},
"conditionGreaterThan": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"$ref": "#/definitions/expressions"
}
},
"conditionGreaterThanOrEqualTo": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"$ref": "#/definitions/expressions"
}
},
"conditionLessThan": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"$ref": "#/definitions/expressions"
}
},
"conditionLessThanOrEqualTo": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"$ref": "#/definitions/expressions"
}
},
"conditionNot": {
"$ref": "#/definitions/expressions"
},
"conditionEmpty": {
"$ref": "#/definitions/expressions"
},
"conditionValue": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"conditionEquals": {
"type": "array",
"minItems": 2,
"items": {
"$ref": "#/definitions/expressions"
}
},
"conditionField": {
"type": "string"
},
"conditionExpression": {
"type": "string"
},
"expressions": {
"oneOf": [
{
"properties": {
"and": {
"$ref": "#/definitions/conditionAnd"
}
},
"additionalProperties": false
},
{
"properties": {
"or": {
"$ref": "#/definitions/conditionOr"
}
},
"additionalProperties": false
},
{
"properties": {
"not": {
"$ref": "#/definitions/conditionNot"
}
},
"additionalProperties": false
},
{
"properties": {
"field": {
"$ref": "#/definitions/conditionField"
}
},
"additionalProperties": false
},
{
"properties": {
"equals": {
"$ref": "#/definitions/conditionEquals"
}
},
"additionalProperties": false
},
{
"properties": {
"empty": {
"$ref": "#/definitions/conditionEmpty"
}
},
"additionalProperties": false
},
{
"properties": {
"value": {
"$ref": "#/definitions/conditionValue"
}
},
"additionalProperties": false
},
{
"properties": {
">": {
"$ref": "#/definitions/conditionGreaterThan"
}
},
"additionalProperties": false
},
{
"properties": {
">=": {
"$ref": "#/definitions/conditionGreaterThanOrEqualTo"
}
},
"additionalProperties": false
},
{
"properties": {
"<": {
"$ref": "#/definitions/conditionLessThan"
}
},
"additionalProperties": false
},
{
"properties": {
"<=": {
"$ref": "#/definitions/conditionLessThanOrEqualTo"
}
},
"additionalProperties": false
},
{
"properties": {
"expression": {
"$ref": "#/definitions/conditionExpression"
}
},
"additionalProperties": false
}
]
}
},
"properties": {
"sections": {
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9_]+$": {
"$ref": "#/definitions/section"
}
},
"additionalProperties": false
},
"expressions": {
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9_]+$": {
"$ref": "#/definitions/expressions"
}
},
"additionalProperties": false
}
}
}
| o36016 |
{
"properties": {
"measurements": {
"description": "The measurements required for the object",
"properties": {
"height": {
"description": "The height of the cylinder",
"type": "number"
},
"radius": {
"description": "The radius of the sphere",
"type": "number"
},
"side": {
"description": "The length of the side of the cube",
"type": "number"
}
},
"required": [
"radius",
"height",
"side"
],
"type": "object"
},
"object": {
"description": "The type of object (e.g. sphere, cylinder, cube)",
"type": "string"
}
},
"required": [
"object",
"measurements"
],
"type": "object"
} | calculate_volume_56fe1b99 |
{
"description": "schema for a ISO8061 date used in statements in the xAPI, version 1.0.*",
"pattern": "^[+-]?(\\d\\d\\d\\d)(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))?$",
"type": "string"
} | o88607 |
{
"properties": {
"customer_name": {
"description": "The customer's name",
"type": "string"
},
"items": {
"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",
"price",
"quantity"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"items"
],
"type": "object"
} | create_invoice_c6dd12c9 |
{
"properties": {
"length": {
"description": "The length of the password",
"type": "integer"
},
"use_lowercase": {
"description": "Include lowercase letters in the password",
"type": "boolean"
},
"use_numbers": {
"description": "Include numbers in the password",
"type": "boolean"
},
"use_special_characters": {
"description": "Include special characters in the password",
"type": "boolean"
},
"use_uppercase": {
"description": "Include uppercase letters in the password",
"type": "boolean"
}
},
"required": [
"length",
"use_lowercase",
"use_uppercase",
"use_numbers",
"use_special_characters"
],
"type": "object"
} | generate_random_password_4f3a045d |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/getTradeDate.result.scheme.json",
"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b getTradeDate",
"description": "\u0421\u0445\u0435\u043c\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b getTradeDate",
"type": "object",
"properties": {
"trade_date": {
"type": "object",
"properties": {
"date": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 date",
"type": "string"
},
"year": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 year",
"type": "number"
},
"month": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 month",
"type": "number"
},
"day": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 day",
"type": "number"
}
},
"required": [
"date",
"year",
"month",
"day"
]
}
},
"additionalProperties": false,
"required": [
"trade_date"
]
} | o5255 |
{
"properties": {
"date": {
"description": "The date of the event in YYYY-MM-DD format",
"type": "string"
},
"end_time": {
"description": "The end time of the event in HH:MM format",
"type": "string"
},
"location": {
"description": "The location of the event",
"type": "string"
},
"start_time": {
"description": "The start time of the event in HH:MM format",
"type": "string"
},
"title": {
"description": "The title of the event",
"type": "string"
}
},
"required": [
"title",
"date",
"start_time",
"end_time"
],
"type": "object"
} | create_calendar_event_f33c7e77 |
{
"description": "List of keys of fields",
"oneOf": [
{
"description": "Dot (.) indexed strings that specifies field keys",
"type": "string"
},
{
"description": "Array of keys that index a field",
"items": {
"pattern": "^[^\\.]*$",
"type": "string"
},
"type": "array"
}
],
"title": "FieldType"
} | o10076 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Common Core Metadata Schema",
"id": "http://project-open-data.github.io/schema#",
"properties": {
"PrimaryITInvestmentUII": {
"type": "string"
},
"accessLevel": {
"enum": [
"public",
"restricted public",
"non-public"
]
},
"accessLevelComment": {
"type": "string"
},
"accrualPeriodicity": {
"enum": [
"Annual",
"Bimonthly",
"Semiweekly",
"Daily",
"Biweekly",
"Semiannual",
"Biennial",
"Triennial",
"Three times a week",
"Three times a month",
"Continuously updated",
"Monthly",
"Quarterly",
"Semimonthly",
"Three times a year",
"Weekly",
"Completely irregular"
]
},
"bureauCode": {
"items": {
"pattern": "[0-9]{3}:[0-9]{2}",
"type": "string"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"contactPoint": {
"type": "string"
},
"dataDictionary": {
"_format": "uri",
"type": "string"
},
"dataQuality": {
"type": "boolean"
},
"description": {
"type": "string"
},
"distribution": {
"items": {
"properties": {
"accessURL": {
"_format": "uri",
"type": "string"
},
"format": {
"pattern": "^[-a-fA-F0-9]+/[-a-fA-F0-9]+([+][-a-fA-F0-9]+)?$",
"type": "string"
}
},
"type": "object"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"identifier": {
"pattern": "[0-9a-fA-F]+",
"type": "string"
},
"issued": {
"_format": "date-time",
"type": "string"
},
"keyword": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"landingPage": {
"_format": "uri",
"type": "string"
},
"language": {
"items": {
"pattern": "^[a-zA-Z]+(-[a-zA-Z]+)*$",
"type": "string"
},
"type": "array"
},
"license": {
"type": "string"
},
"mbox": {
"_format": "email",
"type": "string"
},
"modified": {
"_format": "date-time",
"type": "string"
},
"programCode": {
"items": {
"pattern": "[0-9]{3}:[0-9]{3}",
"type": "string"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"publisher": {
"type": "string"
},
"references": {
"items": {
"_format": "uri",
"type": "string"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"spatial": {
"type": "string"
},
"systemOfRecords": {
"type": "string"
},
"temporal": {
"type": "array"
},
"theme": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"title": {
"type": "string"
},
"webService": {
"_format": "uri",
"type": "string"
}
},
"required": [
"title",
"description",
"keyword",
"modified",
"publisher",
"contactPoint",
"mbox",
"identifier",
"accessLevel"
],
"type": "object"
} | o37682 |
{
"title": "Invocation manifest for FSL: Brain Extraction Tool (BET2)",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"config": {
"type": "object",
"properties": {
"fractional_intensity_threshold": {
"default": 0.5,
"minimum": 0,
"maximum": 1,
"type": "number",
"id": "-f"
},
"brain_surf_outline": {
"default": false,
"type": "boolean",
"id": "-o"
},
"binary_brain_mask": {
"default": false,
"type": "boolean",
"id": "-m"
},
"skull_image": {
"default": false,
"type": "boolean",
"id": "-s"
},
"vertical_gradient_intensity_threshold": {
"default": 0,
"minimum": -1,
"maximum": 1,
"type": "number",
"id": "-g"
},
"apply_mask_thresholding": {
"default": false,
"type": "boolean",
"id": "-t"
},
"vtk_surface_mesh": {
"default": false,
"type": "boolean",
"id": "-e"
},
"function_option": {
"default": "",
"type": "string",
"enum": [
"",
"-R",
"-S",
"-B",
"-Z",
"-F",
"-A",
"-A2"
]
}
},
"required": [
"fractional_intensity_threshold",
"brain_surf_outline",
"binary_brain_mask",
"skull_image",
"vertical_gradient_intensity_threshold",
"apply_mask_thresholding",
"vtk_surface_mesh",
"function_option"
]
},
"inputs": {
"type": "object",
"properties": {
"nifti": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
}
},
"required": [
"nifti"
]
}
},
"required": [
"config",
"inputs"
]
} | o41482 |
{
"properties": {
"_id": {
"readOnly": true,
"type": "string"
},
"body": {
"_$id": "/properties/body",
"description": "",
"oneOf": [
{
"type": "null"
},
{
"contentMediaType": "text/html",
"type": "string"
}
],
"title": "Body"
},
"created": {
"_$id": "/properties/created",
"_format": "date-time",
"description": "creation date",
"readOnly": true,
"title": "Created",
"type": "string"
},
"created_by": {
"_$id": "/properties/created_by",
"description": "user who created object",
"readOnly": true,
"title": "Created By",
"type": "integer"
},
"description": {
"_$id": "/properties/description",
"description": "",
"oneOf": [
{
"type": "null"
},
{
"contentMediaType": "text/html",
"type": "string"
}
],
"title": "Description"
},
"extra": {
"_$id": "/properties/extra",
"description": "object data extensions (JSON format)",
"oneOf": [
{
"type": "null"
},
{
"type": "object"
}
],
"title": "Extra"
},
"lang": {
"_$id": "/properties/lang",
"description": "language used, ISO 639-3 code",
"oneOf": [
{
"type": "null"
},
{
"type": "string"
}
],
"title": "Lang"
},
"locked": {
"_$id": "/properties/locked",
"default": false,
"description": "locked \"flag\": some fields (status, uname,...) cannot be changed",
"readOnly": true,
"title": "Locked",
"type": "boolean"
},
"modified": {
"_$id": "/properties/modified",
"_format": "date-time",
"description": "last modification date",
"readOnly": true,
"title": "Modified",
"type": "string"
},
"modified_by": {
"_$id": "/properties/modified_by",
"description": "last user to modify object",
"readOnly": true,
"title": "Modified By",
"type": "integer"
},
"publish_end": {
"_$id": "/properties/publish_end",
"description": "publish until this date",
"oneOf": [
{
"type": "null"
},
{
"_format": "date-time",
"type": "string"
}
],
"title": "Publish End"
},
"publish_start": {
"_$id": "/properties/publish_start",
"description": "publish from this date on",
"oneOf": [
{
"type": "null"
},
{
"_format": "date-time",
"type": "string"
}
],
"title": "Publish Start"
},
"published": {
"_$id": "/properties/published",
"description": "publication date, status set to ON",
"oneOf": [
{
"type": "null"
},
{
"_format": "date-time",
"type": "string"
}
],
"readOnly": true,
"title": "Published"
},
"status": {
"_$id": "/properties/status",
"default": "draft",
"description": "object \"status\": on, draft, off",
"enum": [
"on",
"off",
"draft"
],
"title": "Status",
"type": "string"
},
"title": {
"_$id": "/properties/title",
"description": "",
"oneOf": [
{
"type": "null"
},
{
"contentMediaType": "text/html",
"type": "string"
}
],
"title": "Title"
},
"type": {
"readOnly": true,
"type": "string"
},
"uname": {
"_$id": "/properties/uname",
"description": "unique and url friendly resource name (slug)",
"maxLength": 255,
"title": "Uname",
"type": "string"
}
},
"type": "object"
} | o25803 |
{
"type": "object",
"version": "v2",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Auspice config file to be supplied to `augur export v2`",
"$comment": "This schema includes deprecated-but-handled-by-augur-export-v1 properties, but their schema definitions are somewhat incomplete",
"additionalProperties": false,
"required": [],
"properties": {
"title": {
"description": "Title to be displayed in auspice",
"type": "string"
},
"colorings": {
"description": "Set traits to be available as color-dropdown options",
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"description": "An indiviual color-by for auspice",
"additionalProperties": false,
"required": [
"key"
],
"properties": {
"key": {
"description": "They key used to access the value of this coloring on each node",
"type": "string"
},
"title": {
"description": "Text to be displayed in the \"color by\" dropdown and legends",
"$comment": "string is parsed unchanged by Auspice",
"type": "string"
},
"type": {
"description": "Defines how the color scale should be constructed",
"type": "string",
"enum": [
"continuous",
"ordinal",
"categorical",
"boolean"
]
}
}
}
},
"color_options": {
"description": "DEPRECATED v1 syntax for defining colorings",
"deprecated": true,
"type": "object"
},
"geo_resolutions": {
"description": "Traits to be interpreted as 'geo resolution' options -- i.e. associated with lat/longs & made points on the map",
"$comment": "Note that array entries can be different structures & you can mix & match",
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"items": {
"oneOf": [
{
"type": "object",
"description": "An indiviual geo resolution",
"additionalProperties": false,
"required": [
"key"
],
"properties": {
"key": {
"type": "string",
"description": "Trait key - must be specified on nodes (e.g. 'country')"
},
"title": {
"type": "string",
"description": "The title to display in the geo resolution dropdown. Optional -- if not provided then `key` will be used."
}
}
},
{
"type": "string",
"description": "An indiviual geo resolution key"
}
]
}
},
"geo": {
"description": "DEPRECATED v1 syntax for defining geo_resolutions",
"deprecated": true,
"type": "array"
},
"maintainers": {
"description": "Who maintains this dataset?",
"$comment": "order similar to a publication",
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"name"
]
}
},
"maintainer": {
"description": "DEPRECATED v1 syntax for defining maintainers (but you could only define one!)",
"deprecated": true,
"type": "array"
},
"build_url": {
"description": "URL with instructions to reproduce build, usually expected to be a GitHub repo URL",
"$comment": "optional",
"type": "string"
},
"filters": {
"type": "array",
"_uniqueItems": true,
"minItems": 0,
"items": {
"type": "string"
}
},
"display_defaults": {
"type": "object",
"additionalProperties": false,
"properties": {
"map_triplicate": {
"type": "boolean"
},
"geo_resolution": {
"type": "string"
},
"color_by": {
"type": "string"
},
"distance_measure": {
"type": "string",
"enum": [
"num_date",
"div"
]
},
"layout": {
"type": "string",
"enum": [
"rect",
"radial",
"unrooted",
"clock"
]
},
"branch_label": {
"type": "string",
"enum": [
"clade",
"aa",
"none"
]
},
"transmission_lines": {
"type": "boolean"
}
}
},
"defaults": {
"description": "DEPRECATED v1 syntax for defining auspice view defaults",
"deprecated": true,
"type": "object"
},
"updated": {
"description": "DEPRECATED v1 (or older) syntax for defining when the build was updated",
"$comment": "unused in augur v6",
"deprecated": true,
"type": "string"
},
"panels": {
"type": "array",
"description": "Which panels should auspice display",
"$comment": "optional",
"minItems": 1,
"items": {
"type": "string",
"enum": [
"tree",
"map",
"frequencies",
"entropy"
]
}
},
"vaccine_choices": {
"type": "object",
"description": "UNUSED v1 syntax for defining vaccine choices",
"$comment": "This is unused in `augur export v2` which gets vaccine info vis a node-data JSON file. It remains in the schema so that v1 config files can be used by `augur export v2`"
}
}
} | o63300 |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"base": {
"description": "The base of the shape",
"type": "number"
},
"height": {
"description": "The height of the shape",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width",
"radius",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The shape type (e.g. rectangle, circle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_c4be2be4 |
{
"properties": {
"customer_details": {
"properties": {
"email": {
"description": "The email address of the customer",
"type": "string"
},
"name": {
"description": "The name of the customer",
"type": "string"
}
},
"required": [
"name",
"email"
],
"type": "object"
},
"items": {
"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_details",
"items"
],
"type": "object"
} | generate_invoice_bb1762cc |
{
"$id": "https://json.schemastore.org/jsdoc-1.0.0.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"plugins": {
"type": "array",
"title": "Configuring plugins",
"description": "Enables plugins for JSDoc",
"default": [],
"examples": [["plugins/markdown", "plugins/summarize"]]
},
"recurseDepth": {
"type": "integer",
"title": "Specifying recursion depth",
"default": 10,
"$comment": "Is used only if `jsdoc` command is invoked with `-r` flag",
"description": "Controls recursion depth for source files and tutorials"
},
"source": {
"type": "object",
"title": "Specifying input files",
"description": "Determines the set of input files",
"properties": {
"include": {
"examples": [
["myProject/a.js", "myProject/lib", "myProject/_private"]
],
"type": "array",
"title": "Input files paths",
"description": "An array of paths to input files",
"$comment": "`-r` flag for `jsdoc` command will recurse in subdirectories of paths listed"
},
"exclude": {
"examples": [["myProject/lib/ignore.js"]],
"type": "array",
"title": "Input files exclusion paths",
"description": "An array of paths to exclude from input",
"$comment": "With JSDoc ^3.3.0 may include subdirectories of include"
},
"includePattern": {
"type": "string",
"title": "Inclusion RegExp",
"default": ".+\\.js(doc|x)?$",
"$comment": "By default, .js, .jsx, .jsdoc files are included",
"description": "Forces input filenames to match regular expression"
},
"excludePattern": {
"type": "string",
"title": "Exclusion RegExp",
"default": "(^|\\/|\\\\)_",
"$comment": "By default, underscored files and folders are excluded",
"description": "Forces input filenames to match regular expression"
}
},
"additionalProperties": false
},
"sourceType": {
"type": "string",
"enum": ["module", "script"],
"default": "module",
"title": "Specifying source type",
"description": "Determines how input files are parsed"
},
"opts": {
"$comment": "The command line options take precedence over config file",
"type": "object",
"title": "Incorporating CLI options",
"description": "Determines flags that `jsdoc` command will be invoked with",
"additionalProperties": false,
"properties": {
"access": {
"$comment": "Equivalent to `-a` flag",
"default": "all",
"description": "Only display symbols with the given `access` property",
"enum": ["all", "private", "protected", "public", "undefined"],
"title": "Symbol access",
"type": "string"
},
"debug": {
"$comment": "Equivalent to `--debug` flag",
"description": "Log information that can help debug issues in JSDoc itself",
"title": "Log debug info",
"type": "boolean"
},
"destination": {
"$comment": "Equivalent to `-d` flag",
"default": "./out/",
"description": "The path to the output folder for the generated documentation",
"title": "Output folder",
"type": "string"
},
"encoding": {
"$comment": "Equivalent to `-e` flag",
"default": "utf8",
"description": "Assume this encoding when reading all source files",
"title": "Input files encoding",
"type": "string"
},
"package": {
"$comment": "Equivalent to `-p` flag",
"description": "The `package.json` file that contains the project name, version, and other details",
"title": "Package",
"type": "string"
},
"pedantic": {
"default": false,
"description": "Treat errors as fatal errors, and treat warnings as errors",
"title": "Pedantic",
"type": "boolean"
},
"readme": {
"$comment": "Equivalent to `-R` flag",
"description": "The README.md file to include in the generated documentation",
"title": "README.md",
"type": "string"
},
"recurse": {
"$comment": "Equivalent to `-r` flag",
"default": false,
"description": "Recurses to subdirectories when searching input files",
"title": "Recurse to subdirectories",
"type": "boolean"
},
"template": {
"$comment": "Equivalent to `-t` flag",
"default": "templates/default",
"description": "The path to the template to use for generating output",
"title": "Output template",
"type": "string"
},
"test": {
"$comment": "Equivalent to `-T` flag. Won't work if installed via NPM",
"default": false,
"description": "Run JSDoc's test suite, and print the results to the console",
"title": "Run tests",
"type": "boolean"
},
"tutorials": {
"$comment": "Equivalent to `-u` flag",
"description": "Directory in which JSDoc should search for tutorials",
"examples": ["path/to/tutorials", "./docs/tutorials"],
"title": "Tutorials path",
"type": "string"
}
}
},
"tags": {
"additionalProperties": false,
"description": "Controls allowed JSDoc tags and their interpretation",
"properties": {
"allowUnknownTags": {
"$comment": "If set to `false`, emits a warning. If set to an array, whitelists tags",
"default": true,
"description": "Determines how to handle unrecognized tags",
"items": {
"title": "JSDoc tag",
"type": "string"
},
"title": "Unknown tags",
"type": ["boolean", "array"],
"uniqueItems": true
},
"dictionaries": {
"description": "Controls which tags JSDoc recognizes and how they are interpreted",
"items": {
"$comment": "^3.3.0 two dictionaries: JSDoc and Closure Compiler",
"default": ["jsdoc", "closure"],
"enum": ["jsdoc", "closure"],
"title": "Dictionary",
"type": "string"
},
"title": "JSDoc dictionaries",
"type": "array"
}
},
"title": "Configuring tags and tag dictionaries",
"type": "object"
},
"templates": {
"description": "Affects the appearance and content of generated documentation",
"properties": {
"cleverLinks": {
"$comment": "If `true`, text of @link tag that is a URL will be rendered in normal font, else in monospace",
"default": false,
"description": "Controls @link tag text rendering",
"title": "@link URL",
"type": "boolean"
},
"default": {
"properties": {
"includeDate": {
"$comment": "^3.3.0 can be set to `false` to omit current date",
"default": true,
"description": "Controls if current date is displayed in the footer of documentation",
"title": "Showing the current date",
"type": "boolean"
},
"layoutFile": {
"$comment": "^3.4.0 can be set to custom layout file",
"default": "layout.tmpl",
"description": "Path to layout file to use for documentation template",
"title": "Overriding layout file",
"type": "string"
},
"outputSourceFiles": {
"$comment": "^3.3.0 can be set to `false` to remove links to source files",
"default": true,
"description": "Disables pretty-printed source files",
"title": "Generating pretty-printed source files",
"type": "boolean"
},
"staticFiles": {
"additionalProperties": false,
"properties": {
"exclude": {
"description": "An array of paths that should not be copied to the output directory",
"items": {
"type": "string"
},
"type": "array"
},
"excludePattern": {
"description": "A regular expression indicating which files to skip",
"type": "string"
},
"include": {
"description": "An array of paths whose contents should be copied to the output directory",
"items": {
"type": "string"
},
"type": "array"
},
"includePattern": {
"description": "A regular expression indicating which files to copy",
"type": "string"
}
},
"title": "Copying static files",
"type": "object"
},
"useLongnameInNav": {
"$comment": "^3.4.0 can be set to `true` to use longhands",
"default": false,
"description": "Controls if shortened or longhand version of a symbol will be shown in documentation",
"title": "Showing longnames",
"type": "boolean"
}
}
},
"monospaceLinks": {
"$comment": "If `true`, all link text of inline @link tag will be rendered in monospace font",
"default": false,
"description": "Controls @link tag text rendering",
"title": "@link text",
"type": "boolean"
}
},
"title": "Configuring templates",
"type": "object"
}
},
"title": "JSON Schema for JSDoc configuration files",
"type": "object"
}
| jsdoc-1 |
{
"additionalProperties": false,
"properties": {
"analyticsAvailable": {
"type": "boolean"
},
"apiAccess": {
"type": "boolean"
},
"apiType": {
"maxLength": 200,
"minLength": 0,
"pattern": "^$|(^(?:\\S+\\s+){0,19}\\S+$)",
"type": "string"
},
"auditInformationProvided": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"enum": [
"None",
"Data made available",
"Data made available by negotiation"
]
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"changeImpactAssessment": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"cloudDeploymentModel": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"enum": [
"Public cloud",
"Community cloud",
"Private cloud",
"Hybrid cloud"
]
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"codeLibraryLanguages": {
"items": {
"maxLength": 100,
"pattern": "^(?:\\S+\\s+){0,9}\\S+$",
"type": "string"
},
"maxItems": 10,
"minItems": 0,
"type": "array"
},
"dataAtRestProtections": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"items": {
"enum": [
"CPA Foundation-grade assured components",
"FIPS-assured encryption",
"Other encryption",
"Secure containers, racks or cages",
"Physical access control",
"No protection"
]
},
"maxItems": 6,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"dataBackupRecovery": {
"type": "boolean"
},
"dataExtractionRemoval": {
"type": "boolean"
},
"dataManagementLocations": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"UK",
"EU",
"USA - Safe Harbor",
"Other countries with data protection treaties",
"Rest of world"
]
},
"maxItems": 5,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"dataProtectionBetweenUserAndService": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"items": {
"enum": [
"Encrypted PSN service",
"PSN service",
"CPA Foundation VPN Gateway",
"VPN using TLS, version 1.2 or later",
"VPN using legacy SSL or TLS",
"No encryption"
]
},
"maxItems": 6,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"dataSecureDeletion": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"enum": [
"CPA Foundation-grade erasure product",
"CESG or CPNI-approved erasure process",
"Other secure erasure process",
"Other erasure process"
]
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"datacentreLocations": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"UK",
"EU",
"USA - Safe Harbor",
"Other countries with data protection treaties",
"Rest of world"
]
},
"maxItems": 5,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"datacentreProtectionDisclosure": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"datacentreTier": {
"enum": [
"TIA-942 Tier 1",
"TIA-942 Tier 2",
"TIA-942 Tier 3",
"TIA-942 Tier 4",
"Uptime Institute Tier 1",
"Uptime Institute Tier 2",
"Uptime Institute Tier 3",
"Uptime Institute Tier 4",
"None of the above"
]
},
"datacentresEUCode": {
"type": "boolean"
},
"datacentresSpecifyLocation": {
"type": "boolean"
},
"deprovisioningTime": {
"maxLength": 200,
"minLength": 1,
"pattern": "^(?:\\S+\\s+){0,19}\\S+$",
"type": "string"
},
"deviceAccessMethod": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"Corporate/enterprise devices",
"Partner devices",
"Unknown devices"
]
},
"maxItems": 3,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"educationPricing": {
"type": "boolean"
},
"elasticCloud": {
"type": "boolean"
},
"eventMonitoring": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"freeOption": {
"type": "boolean"
},
"governanceFramework": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"guaranteedResources": {
"type": "boolean"
},
"identityAuthenticationControls": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"items": {
"enum": [
"Username and two-factor authentication",
"Username and TLS client certificate",
"Authentication federation",
"Limited access over dedicated link, enterprise or community network",
"Username and password",
"Username and strong password/passphrase enforcement",
"Other mechanism"
]
},
"maxItems": 7,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"identityStandards": {
"items": {
"maxLength": 100,
"pattern": "^(?:\\S+\\s+){0,9}\\S+$",
"type": "string"
},
"maxItems": 10,
"minItems": 0,
"type": "array"
},
"incidentDefinitionPublished": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"incidentEscalation": {
"type": "boolean"
},
"incidentManagementProcess": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"incidentManagementReporting": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"legalJurisdiction": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"enum": [
"UK",
"EU",
"USA - Safe Harbor",
"Other countries with data protection treaties",
"Rest of world"
]
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"minimumContractPeriod": {
"enum": [
"Hour",
"Day",
"Month",
"Year",
"Other"
]
},
"networksConnected": {
"items": {
"enum": [
"Internet",
"Public Services Network (PSN)",
"Government Secure intranet (GSi)",
"Police National Network (PNN)",
"New NHS Network (N3)",
"Joint Academic Network (JANET)",
"Other"
]
},
"maxItems": 7,
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"offlineWorking": {
"type": "boolean"
},
"openSource": {
"type": "boolean"
},
"openStandardsSupported": {
"type": "boolean"
},
"otherConsumers": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"enum": [
"No other consumer",
"Only government consumers",
"A specific consumer group, eg Police, Defence or Health",
"Anyone - public"
]
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"persistentStorage": {
"type": "boolean"
},
"personnelSecurityChecks": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"Security clearance national vetting (SC)",
"Baseline personnel security standard (BPSS)",
"Background checks in accordance with BS7858:2012",
"Employment checks"
]
},
"maxItems": 4,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"priceInterval": {
"enum": [
"",
"Second",
"Minute",
"Hour",
"Day",
"Week",
"Month",
"Quarter",
"6 months",
"Year"
]
},
"priceMax": {
"pattern": "^$|^\\d{1,15}(?:\\.\\d{1,5})?$",
"type": "string"
},
"priceMin": {
"pattern": "^\\d{1,15}(?:\\.\\d{1,5})?$",
"type": "string"
},
"priceUnit": {
"enum": [
"Unit",
"Person",
"Licence",
"User",
"Device",
"Instance",
"Server",
"Virtual machine",
"Transaction",
"Megabyte",
"Gigabyte",
"Terabyte"
]
},
"pricingDocumentURL": {
"_format": "uri",
"type": "string"
},
"provisioningTime": {
"maxLength": 200,
"minLength": 1,
"pattern": "^(?:\\S+\\s+){0,19}\\S+$",
"type": "string"
},
"restrictAdministratorPermissions": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"secureConfigurationManagement": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"secureDesign": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"secureDevelopment": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"selfServiceProvisioning": {
"type": "boolean"
},
"serviceAvailabilityPercentage": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"exclusiveMaximum": 100,
"minimum": 0,
"type": "number"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"serviceBenefits": {
"items": {
"maxLength": 100,
"pattern": "^(?:\\S+\\s+){0,9}\\S+$",
"type": "string"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"serviceDefinitionDocumentURL": {
"_format": "uri",
"type": "string"
},
"serviceFeatures": {
"items": {
"maxLength": 100,
"pattern": "^(?:\\S+\\s+){0,9}\\S+$",
"type": "string"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"serviceManagementModel": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"Dedicated devices on a segregated network",
"Dedicated devices for community service management",
"Dedicated devices for multiple community service management",
"Service management via bastion hosts",
"Direct service management"
]
},
"maxItems": 5,
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"serviceName": {
"maxLength": 100,
"minLength": 1,
"type": "string"
},
"serviceOffboarding": {
"type": "boolean"
},
"serviceOnboarding": {
"type": "boolean"
},
"serviceSummary": {
"maxLength": 500,
"minLength": 1,
"pattern": "^(?:\\S+\\s+){0,49}\\S+$",
"type": "string"
},
"serviceTypes": {
"items": {
"enum": [
"Accounting and finance",
"Business intelligence and analytics",
"Collaboration",
"Creative and design",
"Customer relationship management (CRM)",
"Data management",
"Electronic document and records management (EDRM)",
"Energy and environment",
"Healthcare",
"Human resources and employee management",
"IT management",
"Legal",
"Libraries",
"Marketing",
"Operations management",
"Project management and planning",
"Sales",
"Schools and education",
"Security",
"Software development tools",
"Telecoms",
"Transport and logistics"
]
},
"maxItems": 22,
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"servicesManagementSeparation": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent testing of implementation",
"Assurance of service design",
"CESG-assured components"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"servicesSeparation": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent testing of implementation",
"Assurance of service design",
"CESG-assured components"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"sfiaRateDocumentURL": {
"_format": "uri",
"type": "string"
},
"supportAvailability": {
"maxLength": 200,
"minLength": 1,
"pattern": "^(?:\\S+\\s+){0,19}\\S+$",
"type": "string"
},
"supportForThirdParties": {
"type": "boolean"
},
"supportResponseTime": {
"maxLength": 200,
"minLength": 1,
"pattern": "^(?:\\S+\\s+){0,19}\\S+$",
"type": "string"
},
"supportTypes": {
"items": {
"enum": [
"Service desk",
"Email",
"Phone",
"Live chat",
"Onsite"
]
},
"maxItems": 5,
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"supportedBrowsers": {
"items": {
"enum": [
"Internet Explorer 6",
"Internet Explorer 7",
"Internet Explorer 8",
"Internet Explorer 9",
"Internet Explorer 10+",
"Firefox",
"Chrome",
"Safari",
"Opera"
]
},
"maxItems": 9,
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"supportedDevices": {
"items": {
"enum": [
"PC",
"Mac",
"Smartphone",
"Tablet"
]
},
"maxItems": 4,
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"termsAndConditionsDocumentURL": {
"_format": "uri",
"type": "string"
},
"thirdPartyComplianceMonitoring": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"thirdPartyDataSharingInformation": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"thirdPartyRiskAssessment": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"thirdPartySecurityRequirements": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"trainingProvided": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"trialOption": {
"type": "boolean"
},
"userAccessControlManagement": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"userAuthenticateManagement": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"userAuthenticateSupport": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"vatIncluded": {
"type": "boolean"
},
"vendorCertifications": {
"items": {
"maxLength": 100,
"pattern": "^(?:\\S+\\s+){0,9}\\S+$",
"type": "string"
},
"maxItems": 10,
"minItems": 0,
"type": "array"
},
"vulnerabilityAssessment": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"vulnerabilityMitigationPrioritisation": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"vulnerabilityMonitoring": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"vulnerabilityTimescales": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
},
"vulnerabilityTracking": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"required": [
"value",
"assurance"
],
"type": "object"
}
},
"required": [
"analyticsAvailable",
"apiAccess",
"auditInformationProvided",
"changeImpactAssessment",
"cloudDeploymentModel",
"dataAtRestProtections",
"dataBackupRecovery",
"dataExtractionRemoval",
"dataManagementLocations",
"dataProtectionBetweenUserAndService",
"dataSecureDeletion",
"datacentreLocations",
"datacentreProtectionDisclosure",
"datacentreTier",
"datacentresEUCode",
"datacentresSpecifyLocation",
"deprovisioningTime",
"deviceAccessMethod",
"educationPricing",
"elasticCloud",
"eventMonitoring",
"freeOption",
"governanceFramework",
"guaranteedResources",
"identityAuthenticationControls",
"incidentDefinitionPublished",
"incidentEscalation",
"incidentManagementProcess",
"incidentManagementReporting",
"legalJurisdiction",
"minimumContractPeriod",
"networksConnected",
"offlineWorking",
"openSource",
"openStandardsSupported",
"otherConsumers",
"persistentStorage",
"personnelSecurityChecks",
"priceMin",
"priceUnit",
"pricingDocumentURL",
"provisioningTime",
"restrictAdministratorPermissions",
"secureConfigurationManagement",
"secureDesign",
"secureDevelopment",
"selfServiceProvisioning",
"serviceAvailabilityPercentage",
"serviceBenefits",
"serviceDefinitionDocumentURL",
"serviceFeatures",
"serviceManagementModel",
"serviceName",
"serviceOffboarding",
"serviceOnboarding",
"serviceSummary",
"serviceTypes",
"servicesManagementSeparation",
"servicesSeparation",
"supportAvailability",
"supportForThirdParties",
"supportResponseTime",
"supportTypes",
"supportedBrowsers",
"supportedDevices",
"termsAndConditionsDocumentURL",
"thirdPartyComplianceMonitoring",
"thirdPartyDataSharingInformation",
"thirdPartyRiskAssessment",
"thirdPartySecurityRequirements",
"trainingProvided",
"trialOption",
"userAccessControlManagement",
"userAuthenticateManagement",
"userAuthenticateSupport",
"vatIncluded",
"vulnerabilityAssessment",
"vulnerabilityMitigationPrioritisation",
"vulnerabilityMonitoring",
"vulnerabilityTimescales",
"vulnerabilityTracking"
],
"title": "G-Cloud 7 SaaS Service Schema",
"type": "object"
} | o21137 |
{
"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"
},
"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": [
"subject_id",
"reconall_options",
"hippocampal_subfields",
"brainstem_structures",
"register_surfaces",
"convert_surfaces",
"convert_volumes",
"convert_stats",
"freesurfer_license"
]
},
"inputs": {
"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": [
"anatomical"
]
}
},
"required": [
"config",
"inputs"
]
} | o41474 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_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 at which the webhook will be contacted.",
"type": "string"
},
"port": {
"_format": "int32",
"description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.",
"type": "integer"
}
},
"required": [
"namespace",
"name"
],
"type": "object"
}
},
"description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.",
"properties": {
"caBundle": {
"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.",
"format": "byte",
"type": [
"string",
"null"
]
},
"service": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_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",
"null"
]
}
},
"type": "object"
} | kb_1152_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "channon plan schema",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"steps": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"payload": {
"type": "string",
"pattern": "^#!"
}
},
"required": [
"name",
"payload"
]
}
},
"notifications": {
"type": "array",
"items": {
"type": "object",
"properties": {
"target": {
"type": "string",
"enum": [
"every-run",
"every-failure",
"result-changed"
]
},
"payload": {
"type": "string",
"pattern": "^#!"
}
},
"required": [
"target",
"payload"
]
}
},
"triggers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"schedule": {
"type": "string"
}
},
"required": [
"type"
]
}
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"name"
]
} | o73815 |
{
"additionalProperties": false,
"description": "A generate_lead GTM server-side event.",
"properties": {
"currency": {
"description": "Currency of the items associated with the event, in 3-letter ISO 4217 format. Is required, if value is set.",
"maxLength": 3,
"minLength": 3,
"type": [
"string",
"null"
]
},
"value": {
"description": "The monetary value of the event.",
"minimum": 0,
"type": [
"number",
"null"
]
}
},
"self": {
"format": "jsonschema",
"name": "generate_lead",
"vendor": "com.google.tag-manager.server-side",
"version": "1-0-0"
},
"type": "object"
} | sp_84_Normalized |
{
"properties": {
"Interface": {
"type": "string"
},
"aclaction": {
"enum": [
"BRIDGE",
"DENY",
"ALLOW"
],
"type": "string"
},
"aclassociate": {
"enum": [
"NAT",
"FORWARDINGSESSION",
"NAT64",
"LSN"
],
"readonly": true,
"type": "object"
},
"aclname": {
"type": "string"
},
"destip": {
"type": "boolean"
},
"destipop": {
"enum": [
"=",
"!=",
"EQ",
"NEQ"
],
"type": "string"
},
"destipval": {
"type": "string"
},
"destport": {
"type": "boolean"
},
"destportop": {
"enum": [
"=",
"!=",
"EQ",
"NEQ"
],
"type": "string"
},
"destportval": {
"type": "string"
},
"dfdhash": {
"enum": [
"SIP-SPORT-DIP-DPORT",
"SIP",
"DIP",
"SIP-DIP",
"SIP-SPORT",
"DIP-DPORT"
],
"type": "string"
},
"established": {
"type": "boolean"
},
"hits": {
"readonly": true,
"type": "integer"
},
"icmpcode": {
"type": "integer"
},
"icmptype": {
"type": "integer"
},
"kernelstate": {
"enum": [
"APPLIED",
"NOTAPPLIED",
"RE-APPLY",
"SFAPPLIED",
"SFNOTAPPLIED",
"SFAPPLIED61",
"SFNOTAPPLIED61"
],
"readonly": true,
"type": "string"
},
"logstate": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"newname": {
"type": "string"
},
"priority": {
"type": "integer"
},
"protocol": {
"enum": [
"ICMP",
"IGMP",
"TCP",
"EGP",
"IGP",
"ARGUS",
"UDP",
"RDP",
"RSVP",
"EIGRP",
"L2TP",
"ISIS",
"GGP",
"IPoverIP",
"ST",
"CBT",
"BBN-RCC-M",
"NVP-II",
"PUP",
"EMCON",
"XNET",
"CHAOS",
"MUX",
"DCN-MEAS",
"HMP",
"PRM",
"XNS-IDP",
"TRUNK-1",
"TRUNK-2",
"LEAF-1",
"LEAF-2",
"IRTP",
"ISO-TP4",
"NETBLT",
"MFE-NSP",
"MERIT-INP",
"SEP",
"3PC",
"IDPR",
"XTP",
"DDP",
"IDPR-CMTP",
"TP++",
"IL",
"IPv6",
"SDRP",
"IPv6-Route",
"IPv6-Frag",
"IDRP",
"GRE",
"MHRP",
"BNA",
"ESP",
"AH",
"I-NLSP",
"SWIPE",
"NARP",
"MOBILE",
"TLSP",
"SKIP",
"ICMPV6",
"IPv6-NoNx",
"IPv6-Opts",
"Any-Host-Internal-Protocol",
"CFTP",
"Any-Local-Network",
"SAT-EXPAK",
"KRYPTOLAN",
"RVD",
"IPPC",
"Any-Distributed-File-System",
"TFTP",
"VISA",
"IPCV",
"CPNX",
"CPHB",
"WSN",
"PVP",
"BR-SAT-MO",
"SUN-ND",
"WB-MON",
"WB-EXPAK",
"ISO-IP",
"VMTP",
"SECURE-VM",
"VINES",
"TTP",
"NSFNET-IG",
"DGP",
"TCF",
"OSPFIGP",
"Sprite-RP",
"LARP",
"MTP",
"AX.25",
"IPIP",
"MICP",
"SCC-SP",
"ETHERIP",
"Any-Private-Encryption-Scheme",
"GMTP",
"IFMP",
"PNNI",
"PIM",
"ARIS",
"SCPS",
"QNX",
"A/N",
"IPComp",
"SNP",
"Compaq-Pe",
"IPX-in-IP",
"VRRP",
"PGM",
"Any-0-Hop-Protocol",
"ENCAP",
"DDX",
"IATP",
"STP",
"SRP",
"UTI",
"SMP",
"SM",
"PTP",
"FIRE",
"CRTP",
"CRUDP",
"SSCOPMCE",
"IPLT",
"SPS",
"PIPE",
"SCTP",
"FC",
"RSVP-E2E-IGNORE",
"Mobility-Header",
"UDPLite"
],
"type": "string"
},
"protocolnumber": {
"type": "integer"
},
"ratelimit": {
"type": "integer"
},
"srcip": {
"type": "boolean"
},
"srcipop": {
"enum": [
"=",
"!=",
"EQ",
"NEQ"
],
"type": "string"
},
"srcipval": {
"type": "string"
},
"srcmac": {
"type": "string"
},
"srcmacmask": {
"type": "string"
},
"srcport": {
"type": "boolean"
},
"srcportop": {
"enum": [
"=",
"!=",
"EQ",
"NEQ"
],
"type": "string"
},
"srcportval": {
"type": "string"
},
"state": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"stateful": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"td": {
"type": "integer"
},
"ttl": {
"type": "integer"
},
"type": {
"enum": [
"CLASSIC",
"DFD"
],
"type": "string"
},
"vlan": {
"type": "integer"
},
"vxlan": {
"type": "integer"
}
},
"title": "nsacl",
"type": "object"
} | o30734 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "legal project billing record",
"type": "object",
"properties": {
"approval": {
"$ref": "#/definitions/approval"
},
"client": {
"$ref": "#/definitions/client"
},
"completed": {
"$ref": "#/definitions/completed"
},
"contacts": {
"$ref": "#/definitions/contacts"
},
"limit": {
"properties": {
"type": {
"enum": [
"cap",
"estimate"
]
},
"amount": {
"type": "integer",
"minimum": 0
}
}
},
"notes": {
"type": "array",
"items": {
"type": "string"
}
},
"parties": {
"$ref": "#/definitions/parties"
},
"project": {
"$ref": "#/definitions/project"
},
"service": {
"$ref": "#/definitions/service"
},
"tags": {
"$ref": "#/definitions/tags"
}
},
"required": [
"client",
"contacts",
"project",
"service"
],
"additionalProperties": false,
"definitions": {
"approval": {
"title": "project approval",
"properties": {
"by": {
"$ref": "#/definitions/person"
},
"date": {
"type": "string",
"format": "date-time"
},
"method": {
"enum": [
"e-mail",
"GitHub",
"conversation"
]
}
},
"required": [
"by",
"date",
"method"
],
"additionalProperties": false
},
"client": {
"title": "client name",
"type": "string",
"minLength": 1
},
"completed": {
"title": "date of completion",
"type": "string",
"format": "date-time"
},
"contacts": {
"title": "project contacts",
"description": "client personnel involved in the project",
"type": "array",
"items": {
"$ref": "#/definitions/person"
},
"minItems": 1,
"_uniqueItems": true
},
"parties": {
"title": "counterparties",
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"_uniqueItems": true
},
"project": {
"title": "project title",
"type": "string",
"minLength": 1
},
"tags": {
"title": "project metadata tags",
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"minItems": 1,
"_uniqueItems": true
},
"person": {
"title": "name of a person",
"type": "string",
"minLength": 1
},
"entry": {
"title": "total time entry",
"description": "entry of total time served",
"type": "object",
"properties": {
"adjustment": {
"$ref": "#/definitions/adjustment"
},
"date": {
"type": "string",
"format": "date-time"
},
"narrative": {
"$ref": "#/definitions/narrative"
},
"time": {
"type": "number",
"multipleOf": 0.25,
"minimum": 0.25
},
"spans": {
"$ref": "#/definitions/span"
}
},
"required": [
"narrative"
],
"additionalProperties": false
},
"adjustment": {
"title": "time entry manual adjustment",
"type": "number",
"multipleOf": 0.25
},
"narrative": {
"title": "narrative",
"description": "list of tasks performed",
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"minItems": 1,
"_uniqueItems": true
},
"service": {
"title": "list of service entries",
"type": "array",
"items": {
"$ref": "#/definitions/entry"
}
},
"span": {
"type": "array",
"items": {
"type": "object",
"properties": {
"adjustment": {
"$ref": "#/definitions/adjustment"
},
"end": {
"type": "string",
"format": "date-time"
},
"start": {
"type": "string",
"format": "date-time"
}
},
"required": [
"start",
"end"
],
"additionalProperties": false
}
}
}
} | o55072 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"oneOf": [
{
"type": "string",
"enum": [
"standalone",
"gateway",
"peripheral",
"floating",
"edgeCompute",
"system"
]
},
{
"type": "array",
"items": {
"type": "string",
"enum": [
"standalone",
"gateway",
"peripheral",
"floating",
"edgeCompute",
"system"
]
},
"additionalProperties": false
}
]
} | o9824 |
{
"description": "ServiceReference holds a reference to Service.legacy.k8s.io",
"properties": {
"name": {
"description": "name is the name of the service. Required",
"type": [
"string",
"null"
]
},
"namespace": {
"description": "namespace is the namespace of the service. Required",
"type": [
"string",
"null"
]
},
"path": {
"description": "path is an optional URL path at which the webhook will be contacted.",
"type": [
"string",
"null"
]
},
"port": {
"description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.",
"format": "int32",
"type": [
"integer",
"null"
]
}
},
"required": [
"namespace",
"name"
],
"type": "object"
} | kb_984_Normalized |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/Microsoft/azure-pipelines-vscode/blob/main/service-schema.json",
"$comment": "v1.219.1",
"title": "Pipeline schema",
"description": "A pipeline definition",
"oneOf": [
{
"$ref": "#/definitions/pipeline"
},
{
"type": "string",
"pattern": "^$"
}
],
"definitions": {
"string": {
"type": "string"
},
"sequence": {
"type": "array",
"items": {
"$ref": "#/definitions/any"
}
},
"mapping": {
"type": "object",
"additionalProperties": true
},
"any": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/any"
}
},
{
"type": "object",
"additionalProperties": true
}
]
},
"pipeline": {
"anyOf": [
{
"type": "object",
"properties": {
"stages": {
"description": "Stages are groups of jobs that can run without human intervention",
"$ref": "#/definitions/stages"
},
"pool": {
"description": "Pool where jobs in this pipeline will run unless otherwise specified",
"$ref": "#/definitions/pool"
},
"name": {
"description": "Pipeline name",
"$ref": "#/definitions/string_allowExpressions"
},
"appendCommitMessageToRunName": {
"description": "Append the commit message to the build number",
"$ref": "#/definitions/boolean"
},
"trigger": {
"description": "Continuous integration triggers",
"$ref": "#/definitions/trigger"
},
"parameters": {
"description": "Pipeline template parameters",
"$ref": "#/definitions/pipelineTemplateParameters"
},
"pr": {
"description": "Pull request triggers",
"$ref": "#/definitions/pr"
},
"schedules": {
"$ref": "#/definitions/schedules"
},
"resources": {
"description": "Containers and repositories used in the build",
"$ref": "#/definitions/resources"
},
"variables": {
"description": "Variables for this pipeline",
"$ref": "#/definitions/variables"
},
"lockBehavior": {
"description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests",
"$ref": "#/definitions/lockBehavior"
}
},
"additionalProperties": false,
"required": [
"stages"
]
},
{
"type": "object",
"properties": {
"extends": {
"description": "Extends a template",
"$ref": "#/definitions/extends"
},
"pool": {
"description": "Pool where jobs in this pipeline will run unless otherwise specified",
"$ref": "#/definitions/pool"
},
"name": {
"description": "Pipeline name",
"$ref": "#/definitions/string_allowExpressions"
},
"appendCommitMessageToRunName": {
"description": "Append the commit message to the build number",
"$ref": "#/definitions/boolean"
},
"trigger": {
"description": "Continuous integration triggers",
"$ref": "#/definitions/trigger"
},
"parameters": {
"description": "Pipeline template parameters",
"$ref": "#/definitions/pipelineTemplateParameters"
},
"pr": {
"description": "Pull request triggers",
"$ref": "#/definitions/pr"
},
"schedules": {
"$ref": "#/definitions/schedules"
},
"resources": {
"description": "Containers and repositories used in the build",
"$ref": "#/definitions/resources"
},
"variables": {
"description": "Variables for this pipeline",
"$ref": "#/definitions/variables"
},
"lockBehavior": {
"description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests",
"$ref": "#/definitions/lockBehavior"
}
},
"additionalProperties": false,
"required": [
"extends"
]
},
{
"type": "object",
"properties": {
"jobs": {
"description": "Jobs represent units of work which can be assigned to a single agent or server",
"$ref": "#/definitions/jobs"
},
"pool": {
"description": "Pool where jobs in this pipeline will run unless otherwise specified",
"$ref": "#/definitions/pool"
},
"name": {
"description": "Pipeline name",
"$ref": "#/definitions/string_allowExpressions"
},
"appendCommitMessageToRunName": {
"description": "Append the commit message to the build number",
"$ref": "#/definitions/boolean"
},
"trigger": {
"description": "Continuous integration triggers",
"$ref": "#/definitions/trigger"
},
"parameters": {
"description": "Pipeline template parameters",
"$ref": "#/definitions/pipelineTemplateParameters"
},
"pr": {
"description": "Pull request triggers",
"$ref": "#/definitions/pr"
},
"schedules": {
"$ref": "#/definitions/schedules"
},
"resources": {
"description": "Containers and repositories used in the build",
"$ref": "#/definitions/resources"
},
"variables": {
"description": "Variables for this pipeline",
"$ref": "#/definitions/variables"
},
"lockBehavior": {
"description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests",
"$ref": "#/definitions/lockBehavior"
}
},
"additionalProperties": false,
"required": [
"jobs"
]
},
{
"type": "object",
"properties": {
"phases": {
"description": "Phases which make up the pipeline",
"deprecationMessage": "This option is deprecated, use `jobs` instead",
"doNotSuggest": true,
"$ref": "#/definitions/phases"
},
"name": {
"description": "Pipeline name",
"$ref": "#/definitions/string_allowExpressions"
},
"appendCommitMessageToRunName": {
"description": "Append the commit message to the build number",
"$ref": "#/definitions/boolean"
},
"trigger": {
"description": "Continuous integration triggers",
"$ref": "#/definitions/trigger"
},
"parameters": {
"description": "Pipeline template parameters",
"$ref": "#/definitions/pipelineTemplateParameters"
},
"pr": {
"description": "Pull request triggers",
"$ref": "#/definitions/pr"
},
"schedules": {
"$ref": "#/definitions/schedules"
},
"resources": {
"description": "Containers and repositories used in the build",
"$ref": "#/definitions/resources"
},
"variables": {
"description": "Variables for this pipeline",
"$ref": "#/definitions/variables"
},
"lockBehavior": {
"description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests",
"$ref": "#/definitions/lockBehavior"
}
},
"additionalProperties": false,
"required": [
"phases"
]
},
{
"type": "object",
"properties": {
"strategy": {
"description": "Execution strategy for this job",
"$ref": "#/definitions/jobStrategy"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/jobContinueOnError"
},
"pool": {
"description": "Pool where this job will run",
"$ref": "#/definitions/pool"
},
"container": {
"description": "Container resource name",
"$ref": "#/definitions/jobContainer"
},
"services": {
"$ref": "#/definitions/jobServices"
},
"workspace": {
"$ref": "#/definitions/jobWorkspace"
},
"steps": {
"description": "A list of steps to run in this job",
"$ref": "#/definitions/steps"
},
"name": {
"description": "Pipeline name",
"$ref": "#/definitions/string_allowExpressions"
},
"appendCommitMessageToRunName": {
"description": "Append the commit message to the build number",
"$ref": "#/definitions/boolean"
},
"trigger": {
"description": "Continuous integration triggers",
"$ref": "#/definitions/trigger"
},
"parameters": {
"description": "Pipeline template parameters",
"$ref": "#/definitions/pipelineTemplateParameters"
},
"pr": {
"description": "Pull request triggers",
"$ref": "#/definitions/pr"
},
"schedules": {
"$ref": "#/definitions/schedules"
},
"resources": {
"description": "Containers and repositories used in the build",
"$ref": "#/definitions/resources"
},
"variables": {
"description": "Variables for this pipeline",
"$ref": "#/definitions/variables"
},
"lockBehavior": {
"description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests",
"$ref": "#/definitions/lockBehavior"
}
},
"additionalProperties": false,
"required": [
"steps"
]
},
{
"type": "object",
"properties": {
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/jobContinueOnError"
},
"queue": {
"description": "Queue where this phase will run",
"deprecationMessage": "This option is deprecated, use pool instead",
"doNotSuggest": true,
"$ref": "#/definitions/phaseQueueTarget"
},
"steps": {
"description": "A list of steps to run in this phase",
"$ref": "#/definitions/steps"
},
"name": {
"description": "Pipeline name",
"$ref": "#/definitions/string_allowExpressions"
},
"appendCommitMessageToRunName": {
"description": "Append the commit message to the build number",
"$ref": "#/definitions/boolean"
},
"trigger": {
"description": "Continuous integration triggers",
"$ref": "#/definitions/trigger"
},
"parameters": {
"description": "Pipeline template parameters",
"$ref": "#/definitions/pipelineTemplateParameters"
},
"pr": {
"description": "Pull request triggers",
"$ref": "#/definitions/pr"
},
"schedules": {
"$ref": "#/definitions/schedules"
},
"resources": {
"description": "Containers and repositories used in the build",
"$ref": "#/definitions/resources"
},
"variables": {
"description": "Variables for this pipeline",
"$ref": "#/definitions/variables"
},
"lockBehavior": {
"description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests",
"$ref": "#/definitions/lockBehavior"
}
},
"additionalProperties": false,
"deprecationMessage": "This option is deprecated, use `job` (inside `jobs`) instead",
"required": [
"steps"
]
},
{
"type": "object",
"properties": {
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/jobContinueOnError"
},
"server": {
"description": "True if this is an agent-less phase (runs on server)",
"deprecationMessage": "This option is deprecated, use pool:server instead",
"doNotSuggest": true,
"$ref": "#/definitions/phaseServerTarget"
},
"steps": {
"description": "A list of steps to run in this phase",
"$ref": "#/definitions/steps"
},
"name": {
"description": "Pipeline name",
"$ref": "#/definitions/string_allowExpressions"
},
"appendCommitMessageToRunName": {
"description": "Append the commit message to the build number",
"$ref": "#/definitions/boolean"
},
"trigger": {
"description": "Continuous integration triggers",
"$ref": "#/definitions/trigger"
},
"parameters": {
"description": "Pipeline template parameters",
"$ref": "#/definitions/pipelineTemplateParameters"
},
"pr": {
"description": "Pull request triggers",
"$ref": "#/definitions/pr"
},
"schedules": {
"$ref": "#/definitions/schedules"
},
"resources": {
"description": "Containers and repositories used in the build",
"$ref": "#/definitions/resources"
},
"variables": {
"description": "Variables for this pipeline",
"$ref": "#/definitions/variables"
},
"lockBehavior": {
"description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests",
"$ref": "#/definitions/lockBehavior"
}
},
"additionalProperties": false,
"deprecationMessage": "This option is deprecated, use `job` (inside `jobs`) instead",
"required": [
"steps"
]
}
]
},
"pipelineBase": {
"type": "object",
"properties": {
"name": {
"description": "Pipeline name",
"$ref": "#/definitions/string_allowExpressions"
},
"appendCommitMessageToRunName": {
"description": "Append the commit message to the build number",
"$ref": "#/definitions/boolean"
},
"trigger": {
"description": "Continuous integration triggers",
"$ref": "#/definitions/trigger"
},
"parameters": {
"description": "Pipeline template parameters",
"$ref": "#/definitions/pipelineTemplateParameters"
},
"pr": {
"description": "Pull request triggers",
"$ref": "#/definitions/pr"
},
"schedules": {
"$ref": "#/definitions/schedules"
},
"resources": {
"description": "Containers and repositories used in the build",
"$ref": "#/definitions/resources"
},
"variables": {
"description": "Variables for this pipeline",
"$ref": "#/definitions/variables"
},
"lockBehavior": {
"description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests",
"$ref": "#/definitions/lockBehavior"
}
},
"additionalProperties": false
},
"pipelineTrigger": {
"type": "object",
"properties": {
"trigger": {
"description": "Continuous integration triggers",
"$ref": "#/definitions/trigger"
},
"name": {
"description": "Pipeline name",
"$ref": "#/definitions/any_allowExpressions"
},
"appendCommitMessageToRunName": {
"description": "Append the commit message to the build number",
"$ref": "#/definitions/any_allowExpressions"
},
"parameters": {
"description": "Pipeline template parameters",
"$ref": "#/definitions/any_allowExpressions"
},
"pr": {
"description": "Pull request triggers",
"$ref": "#/definitions/any_allowExpressions"
},
"schedules": {
"$ref": "#/definitions/any_allowExpressions"
},
"resources": {
"description": "Containers and repositories used in the build",
"$ref": "#/definitions/any_allowExpressions"
},
"variables": {
"description": "Variables for the entire pipeline",
"$ref": "#/definitions/any_allowExpressions"
},
"stages": {
"$ref": "#/definitions/any_allowExpressions"
},
"jobs": {
"description": "Jobs which make up the pipeline",
"$ref": "#/definitions/any_allowExpressions"
},
"extends": {
"description": "Extends a template",
"$ref": "#/definitions/any_allowExpressions"
},
"phases": {
"description": "Phases which make up the pipeline",
"deprecationMessage": "This option is deprecated, use `jobs` instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"strategy": {
"description": "Execution strategy for the job",
"$ref": "#/definitions/any_allowExpressions"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/any_allowExpressions"
},
"pool": {
"description": "Pool where this job will run",
"$ref": "#/definitions/any_allowExpressions"
},
"container": {
"description": "Container resource name",
"$ref": "#/definitions/any_allowExpressions"
},
"services": {
"$ref": "#/definitions/any_allowExpressions"
},
"workspace": {
"$ref": "#/definitions/any_allowExpressions"
},
"steps": {
"description": "A list of steps to run",
"$ref": "#/definitions/any_allowExpressions"
},
"queue": {
"description": "Queue where this phase will run",
"deprecationMessage": "This option is deprecated, use pool instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"server": {
"description": "True if this is an agent-less phase (runs on server)",
"deprecationMessage": "This option is deprecated, use pool:server instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"lockBehavior": {
"description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests",
"$ref": "#/definitions/lockBehavior"
}
},
"additionalProperties": false
},
"pipelineParameters": {
"type": "object",
"properties": {
"parameters": {
"description": "Pipeline template parameters",
"$ref": "#/definitions/pipelineTemplateParameters"
},
"name": {
"description": "Pipeline name",
"$ref": "#/definitions/any_allowExpressions"
},
"appendCommitMessageToRunName": {
"description": "Append the commit message to the build number",
"$ref": "#/definitions/any_allowExpressions"
},
"trigger": {
"description": "Continuous integration triggers",
"$ref": "#/definitions/any_allowExpressions"
},
"pr": {
"description": "Pull request triggers",
"$ref": "#/definitions/any_allowExpressions"
},
"schedules": {
"$ref": "#/definitions/any_allowExpressions"
},
"resources": {
"description": "Containers and repositories used in the build",
"$ref": "#/definitions/any_allowExpressions"
},
"variables": {
"description": "Variables for the entire pipeline",
"$ref": "#/definitions/any_allowExpressions"
},
"stages": {
"$ref": "#/definitions/any_allowExpressions"
},
"jobs": {
"description": "Jobs which make up the pipeline",
"$ref": "#/definitions/any_allowExpressions"
},
"extends": {
"description": "Extends a template",
"$ref": "#/definitions/any_allowExpressions"
},
"phases": {
"description": "Phases which make up the pipeline",
"deprecationMessage": "This option is deprecated, use `jobs` instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"strategy": {
"description": "Execution strategy for the job",
"$ref": "#/definitions/any_allowExpressions"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/any_allowExpressions"
},
"pool": {
"description": "Pool where this job will run",
"$ref": "#/definitions/any_allowExpressions"
},
"container": {
"description": "Container resource name",
"$ref": "#/definitions/any_allowExpressions"
},
"services": {
"$ref": "#/definitions/any_allowExpressions"
},
"workspace": {
"$ref": "#/definitions/any_allowExpressions"
},
"steps": {
"description": "A list of steps to run",
"$ref": "#/definitions/any_allowExpressions"
},
"queue": {
"description": "Queue where this phase will run",
"deprecationMessage": "This option is deprecated, use pool instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"server": {
"description": "True if this is an agent-less phase (runs on server)",
"deprecationMessage": "This option is deprecated, use pool:server instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"lockBehavior": {
"description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests",
"$ref": "#/definitions/lockBehavior"
}
},
"additionalProperties": false
},
"pipelinePR": {
"type": "object",
"properties": {
"pr": {
"description": "Pull request triggers",
"$ref": "#/definitions/pr"
},
"name": {
"description": "Pipeline name",
"$ref": "#/definitions/any_allowExpressions"
},
"appendCommitMessageToRunName": {
"description": "Append the commit message to the build number",
"$ref": "#/definitions/any_allowExpressions"
},
"trigger": {
"description": "Continuous integration triggers",
"$ref": "#/definitions/any_allowExpressions"
},
"parameters": {
"description": "Pipeline template parameters",
"$ref": "#/definitions/any_allowExpressions"
},
"schedules": {
"$ref": "#/definitions/any_allowExpressions"
},
"resources": {
"description": "Containers and repositories used in the build",
"$ref": "#/definitions/any_allowExpressions"
},
"variables": {
"description": "Variables for the entire pipeline",
"$ref": "#/definitions/any_allowExpressions"
},
"stages": {
"$ref": "#/definitions/any_allowExpressions"
},
"jobs": {
"description": "Jobs which make up the pipeline",
"$ref": "#/definitions/any_allowExpressions"
},
"extends": {
"description": "Extends a template",
"$ref": "#/definitions/any_allowExpressions"
},
"phases": {
"description": "Phases which make up the pipeline",
"deprecationMessage": "This option is deprecated, use `jobs` instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"strategy": {
"description": "Execution strategy for the job",
"$ref": "#/definitions/any_allowExpressions"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/any_allowExpressions"
},
"pool": {
"description": "Pool where this job will run",
"$ref": "#/definitions/any_allowExpressions"
},
"container": {
"description": "Container resource name",
"$ref": "#/definitions/any_allowExpressions"
},
"services": {
"$ref": "#/definitions/any_allowExpressions"
},
"workspace": {
"$ref": "#/definitions/any_allowExpressions"
},
"steps": {
"description": "A list of steps to run",
"$ref": "#/definitions/any_allowExpressions"
},
"queue": {
"description": "Queue where this phase will run",
"deprecationMessage": "This option is deprecated, use pool instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"server": {
"description": "True if this is an agent-less phase (runs on server)",
"deprecationMessage": "This option is deprecated, use pool:server instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"lockBehavior": {
"description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests",
"$ref": "#/definitions/lockBehavior"
}
},
"additionalProperties": false
},
"pipelineSchedules": {
"type": "object",
"properties": {
"schedules": {
"$ref": "#/definitions/schedules"
},
"name": {
"description": "Pipeline name",
"$ref": "#/definitions/any_allowExpressions"
},
"appendCommitMessageToRunName": {
"description": "Append the commit message to the build number",
"$ref": "#/definitions/any_allowExpressions"
},
"trigger": {
"description": "Continuous integration triggers",
"$ref": "#/definitions/any_allowExpressions"
},
"parameters": {
"description": "Pipeline template parameters",
"$ref": "#/definitions/any_allowExpressions"
},
"pr": {
"description": "Pull request triggers",
"$ref": "#/definitions/any_allowExpressions"
},
"resources": {
"description": "Containers and repositories used in the build",
"$ref": "#/definitions/any_allowExpressions"
},
"variables": {
"description": "Variables for the entire pipeline",
"$ref": "#/definitions/any_allowExpressions"
},
"stages": {
"$ref": "#/definitions/any_allowExpressions"
},
"jobs": {
"description": "Jobs which make up the pipeline",
"$ref": "#/definitions/any_allowExpressions"
},
"extends": {
"description": "Extends a template",
"$ref": "#/definitions/any_allowExpressions"
},
"phases": {
"description": "Phases which make up the pipeline",
"deprecationMessage": "This option is deprecated, use `jobs` instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"strategy": {
"description": "Execution strategy for the job",
"$ref": "#/definitions/any_allowExpressions"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/any_allowExpressions"
},
"pool": {
"description": "Pool where this job will run",
"$ref": "#/definitions/any_allowExpressions"
},
"container": {
"description": "Container resource name",
"$ref": "#/definitions/any_allowExpressions"
},
"services": {
"$ref": "#/definitions/any_allowExpressions"
},
"workspace": {
"$ref": "#/definitions/any_allowExpressions"
},
"steps": {
"description": "A list of steps to run",
"$ref": "#/definitions/any_allowExpressions"
},
"queue": {
"description": "Queue where this phase will run",
"deprecationMessage": "This option is deprecated, use pool instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"server": {
"description": "True if this is an agent-less phase (runs on server)",
"deprecationMessage": "This option is deprecated, use pool:server instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"lockBehavior": {
"description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests",
"$ref": "#/definitions/lockBehavior"
}
},
"additionalProperties": false
},
"pipelineAnyBase": {
"type": "object",
"properties": {
"name": {
"description": "Pipeline name",
"$ref": "#/definitions/any_allowExpressions"
},
"appendCommitMessageToRunName": {
"description": "Append the commit message to the build number",
"$ref": "#/definitions/any_allowExpressions"
},
"trigger": {
"description": "Continuous integration triggers",
"$ref": "#/definitions/any_allowExpressions"
},
"parameters": {
"description": "Pipeline template parameters",
"$ref": "#/definitions/any_allowExpressions"
},
"pr": {
"description": "Pull request triggers",
"$ref": "#/definitions/any_allowExpressions"
},
"schedules": {
"$ref": "#/definitions/any_allowExpressions"
},
"resources": {
"description": "Containers and repositories used in the build",
"$ref": "#/definitions/any_allowExpressions"
},
"variables": {
"description": "Variables for the entire pipeline",
"$ref": "#/definitions/any_allowExpressions"
},
"stages": {
"$ref": "#/definitions/any_allowExpressions"
},
"jobs": {
"description": "Jobs which make up the pipeline",
"$ref": "#/definitions/any_allowExpressions"
},
"extends": {
"description": "Extends a template",
"$ref": "#/definitions/any_allowExpressions"
},
"phases": {
"description": "Phases which make up the pipeline",
"deprecationMessage": "This option is deprecated, use `jobs` instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"strategy": {
"description": "Execution strategy for the job",
"$ref": "#/definitions/any_allowExpressions"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/any_allowExpressions"
},
"pool": {
"description": "Pool where this job will run",
"$ref": "#/definitions/any_allowExpressions"
},
"container": {
"description": "Container resource name",
"$ref": "#/definitions/any_allowExpressions"
},
"services": {
"$ref": "#/definitions/any_allowExpressions"
},
"workspace": {
"$ref": "#/definitions/any_allowExpressions"
},
"steps": {
"description": "A list of steps to run",
"$ref": "#/definitions/any_allowExpressions"
},
"queue": {
"description": "Queue where this phase will run",
"deprecationMessage": "This option is deprecated, use pool instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"server": {
"description": "True if this is an agent-less phase (runs on server)",
"deprecationMessage": "This option is deprecated, use pool:server instead",
"doNotSuggest": true,
"$ref": "#/definitions/any_allowExpressions"
},
"lockBehavior": {
"description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests",
"$ref": "#/definitions/lockBehavior"
}
},
"additionalProperties": false
},
"pr": {
"anyOf": [
{
"type": "string",
"pattern": "^none$"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/branchFilter"
}
},
{
"type": "object",
"properties": {
"autoCancel": {
"description": "Whether to cancel running PR builds when a new commit lands in the branch",
"$ref": "#/definitions/boolean"
},
"branches": {
"$ref": "#/definitions/includeExcludeFilters"
},
"paths": {
"$ref": "#/definitions/includeExcludeFilters"
},
"drafts": {
"description": "Whether to start a run when a draft PR is created",
"$ref": "#/definitions/boolean"
}
},
"additionalProperties": false
}
]
},
"trigger": {
"anyOf": [
{
"type": "string",
"pattern": "^none$"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/branchFilter"
}
},
{
"type": "object",
"properties": {
"batch": {
"description": "Whether to batch changes per branch",
"$ref": "#/definitions/boolean"
},
"branches": {
"$ref": "#/definitions/includeExcludeFilters"
},
"paths": {
"$ref": "#/definitions/includeExcludeFilters"
},
"tags": {
"$ref": "#/definitions/includeExcludeFilters"
}
},
"additionalProperties": false
}
]
},
"includeExcludeFilters": {
"type": "object",
"properties": {
"include": {
"$ref": "#/definitions/branchFilterArray"
},
"exclude": {
"$ref": "#/definitions/branchFilterArray"
}
},
"additionalProperties": false
},
"includeExcludeStringFilters": {
"anyOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/nonEmptyString"
}
},
{
"type": "object",
"properties": {
"include": {
"$ref": "#/definitions/sequenceOfNonEmptyString"
},
"exclude": {
"$ref": "#/definitions/sequenceOfNonEmptyString"
}
},
"additionalProperties": false
}
]
},
"branchFilterArray": {
"type": "array",
"items": {
"$ref": "#/definitions/branchFilter"
}
},
"branchFilter": {
"type": "string",
"description": "branch name or prefix filter",
"pattern": "^[^\\/~\\^\\: \\[\\]\\\\]+(\\/[^\\/~\\^\\: \\[\\]\\\\]+)*$"
},
"templateParameters": {
"anyOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/templateParameter"
}
},
{
"type": "object",
"additionalProperties": true
}
]
},
"templateParameter": {
"type": "object",
"properties": {
"name": {
"$ref": "#/definitions/nonEmptyString"
},
"displayName": {
"description": "Human-readable name for the parameter",
"$ref": "#/definitions/string"
},
"type": {
"$ref": "#/definitions/templateParameterType"
},
"default": {
"$ref": "#/definitions/any"
},
"values": {
"$ref": "#/definitions/sequenceOfNonEmptyString"
}
},
"additionalProperties": false,
"firstProperty": [
"name"
]
},
"templateParameterType": {
"anyOf": [
{
"type": "string",
"pattern": "^boolean$"
},
{
"type": "string",
"pattern": "^container$"
},
{
"type": "string",
"pattern": "^containerList$"
},
{
"type": "string",
"pattern": "^deployment$"
},
{
"type": "string",
"pattern": "^deploymentList$"
},
{
"type": "string",
"pattern": "^job$"
},
{
"type": "string",
"pattern": "^jobList$"
},
{
"type": "string",
"pattern": "^legacyObject$"
},
{
"type": "string",
"pattern": "^number$"
},
{
"type": "string",
"pattern": "^object$"
},
{
"type": "string",
"pattern": "^stage$"
},
{
"type": "string",
"pattern": "^stageList$"
},
{
"type": "string",
"pattern": "^step$"
},
{
"type": "string",
"pattern": "^stepList$"
},
{
"type": "string",
"pattern": "^string$"
}
]
},
"pipelineTemplateParameters": {
"type": "array",
"items": {
"$ref": "#/definitions/pipelineTemplateParameter"
}
},
"pipelineTemplateParameter": {
"type": "object",
"properties": {
"name": {
"$ref": "#/definitions/nonEmptyString"
},
"displayName": {
"description": "Human-readable name for the parameter",
"$ref": "#/definitions/string"
},
"type": {
"$ref": "#/definitions/pipelineTemplateParameterType"
},
"default": {
"$ref": "#/definitions/any"
},
"values": {
"$ref": "#/definitions/sequenceOfNonEmptyString"
}
},
"additionalProperties": false,
"firstProperty": [
"name"
]
},
"pipelineTemplateParameterType": {
"anyOf": [
{
"type": "string",
"pattern": "^boolean$"
},
{
"type": "string",
"pattern": "^container$"
},
{
"type": "string",
"pattern": "^containerList$"
},
{
"type": "string",
"pattern": "^deployment$"
},
{
"type": "string",
"pattern": "^deploymentList$"
},
{
"type": "string",
"pattern": "^environment$"
},
{
"type": "string",
"pattern": "^filePath$"
},
{
"type": "string",
"pattern": "^job$"
},
{
"type": "string",
"pattern": "^jobList$"
},
{
"type": "string",
"pattern": "^number$"
},
{
"type": "string",
"pattern": "^object$"
},
{
"type": "string",
"pattern": "^pool$"
},
{
"type": "string",
"pattern": "^secureFile$"
},
{
"type": "string",
"pattern": "^serviceConnection$"
},
{
"type": "string",
"pattern": "^stage$"
},
{
"type": "string",
"pattern": "^stageList$"
},
{
"type": "string",
"pattern": "^step$"
},
{
"type": "string",
"pattern": "^stepList$"
},
{
"type": "string",
"pattern": "^string$"
}
]
},
"schedules": {
"type": "array",
"items": {
"$ref": "#/definitions/schedule"
}
},
"schedule": {
"type": "object",
"properties": {
"cron": {
"$ref": "#/definitions/nonEmptyString"
},
"displayName": {
"$ref": "#/definitions/string"
},
"branches": {
"$ref": "#/definitions/includeExcludeFilters"
},
"batch": {
"$ref": "#/definitions/boolean"
},
"always": {
"$ref": "#/definitions/boolean"
}
},
"additionalProperties": false,
"firstProperty": [
"cron"
]
},
"resources": {
"anyOf": [
{
"type": "object",
"properties": {
"builds": {
"description": "List of external build resources",
"$ref": "#/definitions/buildResources"
},
"containers": {
"description": "List of container images",
"$ref": "#/definitions/containerResources"
},
"pipelines": {
"$ref": "#/definitions/pipelineResources"
},
"repositories": {
"description": "List of external repositories",
"$ref": "#/definitions/repositoryResources"
},
"webhooks": {
"description": "List of webhooks",
"$ref": "#/definitions/webhookResources"
},
"packages": {
"description": "List of external packages",
"$ref": "#/definitions/packageResources"
}
},
"additionalProperties": false
},
{
"type": "array",
"items": {
"$ref": "#/definitions/legacyResource"
}
}
]
},
"buildResources": {
"type": "array",
"items": {
"$ref": "#/definitions/buildResource"
}
},
"buildResource": {
"type": "object",
"properties": {
"build": {
"description": "Alias or name of build artifact",
"$ref": "#/definitions/referenceName"
},
"type": {
"description": "Name of the artifact type",
"$ref": "#/definitions/nonEmptyString"
},
"connection": {
"description": "Name of the connection. This connection will be used for all the communication related to this artifact.",
"$ref": "#/definitions/nonEmptyString"
},
"source": {
"description": "Name of the source definition/build/job",
"$ref": "#/definitions/nonEmptyString"
},
"version": {
"$ref": "#/definitions/string_allowExpressions"
},
"branch": {
"$ref": "#/definitions/string_allowExpressions"
},
"trigger": {
"description": "When the artifact mentioned in this build resource completes a build, its allowed to trigger this pipeline.",
"$ref": "#/definitions/buildResourceTrigger"
}
},
"additionalProperties": false,
"firstProperty": [
"build"
],
"required": [
"build",
"type",
"connection",
"source"
]
},
"buildResourceTrigger": {
"anyOf": [
{
"type": "string",
"pattern": "^none$"
},
{
"type": "string",
"pattern": "^true$"
}
]
},
"packageResources": {
"type": "array",
"items": {
"$ref": "#/definitions/packageResource"
}
},
"packageResource": {
"type": "object",
"properties": {
"package": {
"description": "Alias of package artifact",
"$ref": "#/definitions/referenceName"
},
"type": {
"description": "Type of the package. Ex - NuGet, NPM etc.",
"$ref": "#/definitions/nonEmptyString"
},
"connection": {
"description": "Name of the connection. This connection will be used for all the communication related to this artifact.",
"$ref": "#/definitions/nonEmptyString"
},
"name": {
"description": "Name of the package",
"$ref": "#/definitions/nonEmptyString"
},
"version": {
"$ref": "#/definitions/string_allowExpressions"
},
"tag": {
"$ref": "#/definitions/string_allowExpressions"
},
"trigger": {
"description": "Trigger a new pipeline run when a new version of this package is available.",
"$ref": "#/definitions/packageResourceTrigger"
}
},
"additionalProperties": false,
"firstProperty": [
"package"
],
"required": [
"package",
"type",
"connection",
"name"
]
},
"packageResourceTrigger": {
"anyOf": [
{
"type": "string",
"pattern": "^none$"
},
{
"type": "string",
"pattern": "^true$"
}
]
},
"containerResources": {
"type": "array",
"items": {
"$ref": "#/definitions/containerResource"
}
},
"containerResource": {
"type": "object",
"properties": {
"container": {
"description": "ID for the container",
"$ref": "#/definitions/referenceName"
},
"type": {
"$ref": "#/definitions/containerArtifactType"
},
"trigger": {
"$ref": "#/definitions/containerResourceTrigger"
},
"endpoint": {
"description": "ID of the service endpoint connecting to a private container registry",
"$ref": "#/definitions/string_allowExpressions"
},
"env": {
"description": "Variables to map into the container's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"image": {
"description": "Container image tag",
"$ref": "#/definitions/string",
"examples": [
"ubuntu:16.04",
"windows:1803"
]
},
"mapDockerSocket": {
"description": "Set this flag to false to force the agent not to setup the /var/run/docker.sock volume on container jobs",
"$ref": "#/definitions/boolean"
},
"options": {
"description": "Options to pass into container host",
"$ref": "#/definitions/string_allowExpressions"
},
"ports": {
"$ref": "#/definitions/sequenceOfString_allowExpressions"
},
"volumes": {
"$ref": "#/definitions/sequenceOfString_allowExpressions"
},
"mountReadOnly": {
"$ref": "#/definitions/readOnlyMounts"
}
},
"additionalProperties": true,
"firstProperty": [
"container"
],
"required": [
"container",
"image"
]
},
"containerArtifactType": {
"anyOf": [
{
"type": "string",
"ignoreCase": "value",
"pattern": "^ACR$"
},
{
"type": "string"
}
]
},
"containerResourceTrigger": {
"anyOf": [
{
"type": "string",
"pattern": "^none$"
},
{
"type": "string",
"pattern": "^true$"
},
{
"type": "object",
"properties": {
"enabled": {
"$ref": "#/definitions/boolean"
},
"tags": {
"$ref": "#/definitions/includeExcludeStringFilters"
}
},
"additionalProperties": false
}
]
},
"pipelineResources": {
"type": "array",
"items": {
"$ref": "#/definitions/pipelineResource"
}
},
"pipelineResource": {
"type": "object",
"properties": {
"pipeline": {
"description": "ID of the pipeline resource",
"$ref": "#/definitions/referenceName"
},
"project": {
"$ref": "#/definitions/nonEmptyString"
},
"source": {
"$ref": "#/definitions/nonEmptyString"
},
"version": {
"$ref": "#/definitions/string_allowExpressions"
},
"branch": {
"$ref": "#/definitions/string_allowExpressions"
},
"tags": {
"$ref": "#/definitions/sequenceOfNonEmptyString"
},
"trigger": {
"$ref": "#/definitions/pipelineResourceTrigger"
}
},
"additionalProperties": false,
"firstProperty": [
"pipeline"
],
"required": [
"pipeline"
]
},
"pipelineResourceTrigger": {
"anyOf": [
{
"type": "string",
"pattern": "^none$"
},
{
"type": "string",
"pattern": "^true$"
},
{
"type": "object",
"properties": {
"enabled": {
"$ref": "#/definitions/boolean"
},
"branches": {
"$ref": "#/definitions/triggerBranchFilter"
},
"stages": {
"$ref": "#/definitions/sequenceOfNonEmptyString"
},
"tags": {
"$ref": "#/definitions/sequenceOfNonEmptyString"
}
},
"additionalProperties": false
}
]
},
"triggerBranchFilter": {
"anyOf": [
{
"type": "object",
"properties": {
"include": {
"$ref": "#/definitions/branchFilterArray"
},
"exclude": {
"$ref": "#/definitions/branchFilterArray"
}
},
"additionalProperties": false
},
{
"type": "array",
"items": {
"$ref": "#/definitions/branchFilter"
}
}
]
},
"repositoryResources": {
"type": "array",
"items": {
"$ref": "#/definitions/repositoryResource"
}
},
"repositoryResource": {
"type": "object",
"properties": {
"repository": {
"description": "ID of the external repository",
"$ref": "#/definitions/referenceName"
},
"endpoint": {
"description": "ID of the service endpoint connecting to this repository",
"$ref": "#/definitions/nonEmptyString"
},
"trigger": {
"$ref": "#/definitions/trigger"
},
"checkoutOptions": {
"deprecationMessage": "This location is deprecated, `checkoutOptions` should be a peer of the `repository` keyword.",
"doNotSuggest": true,
"$ref": "#/definitions/repositoryCheckoutOptions"
},
"ref": {
"$ref": "#/definitions/string_allowExpressions"
}
},
"additionalProperties": true,
"firstProperty": [
"repository"
],
"required": [
"repository"
]
},
"repositoryCheckoutOptions": {
"type": "object",
"properties": {
"clean": {
"description": "Scorch the repo before fetching?",
"enum": [
"true",
"false"
],
"$ref": "#/definitions/string"
},
"fetchDepth": {
"description": "Depth of Git graph to fetch",
"$ref": "#/definitions/string"
},
"fetchTags": {
"description": "Fetch tags?",
"$ref": "#/definitions/string"
},
"lfs": {
"description": "Fetch and checkout Git LFS objects?",
"$ref": "#/definitions/string"
},
"submodules": {
"description": "Fetch and checkout submodules?",
"$ref": "#/definitions/string"
},
"persistCredentials": {
"description": "Keep credentials available for later use?",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false
},
"legacyResource": {
"type": "object",
"properties": {
"repo": {
"$ref": "#/definitions/legacyRepoResourceAlias"
},
"clean": {
"description": "Scorch the repo before fetching?",
"enum": [
"true",
"false"
],
"$ref": "#/definitions/string"
},
"fetchDepth": {
"description": "Depth of Git graph to fetch",
"$ref": "#/definitions/string"
},
"lfs": {
"description": "Fetch and checkout Git LFS objects?",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false,
"firstProperty": [
"repo"
]
},
"legacyRepoResourceAlias": {
"type": "string",
"pattern": "^self$"
},
"webhookResources": {
"type": "array",
"items": {
"$ref": "#/definitions/webhookResource"
}
},
"webhookResource": {
"type": "object",
"properties": {
"webhook": {
"description": "Name of the webhook",
"$ref": "#/definitions/referenceName"
},
"connection": {
"description": "Name of the connection. In case of offline webhook this will be the type of Incoming Webhook otherwise it will be the type of the webhook extension.",
"$ref": "#/definitions/nonEmptyString"
},
"type": {
"description": "Name of the webhook extension. leave this empty if its offline webhook.",
"$ref": "#/definitions/nonEmptyString"
},
"filters": {
"description": "List of trigger filters.",
"$ref": "#/definitions/webhookFilters"
}
},
"additionalProperties": false,
"firstProperty": [
"webhook"
],
"required": [
"webhook",
"connection"
]
},
"webhookFilters": {
"type": "array",
"items": {
"$ref": "#/definitions/webhookFilter"
}
},
"webhookFilter": {
"type": "object",
"properties": {
"path": {
"description": "json path to select data from event payload",
"$ref": "#/definitions/nonEmptyString"
},
"value": {
"description": "Expected value for the filter to match",
"$ref": "#/definitions/nonEmptyString"
}
},
"additionalProperties": false,
"firstProperty": [
"path"
],
"required": [
"path",
"value"
]
},
"variablesTemplate": {
"type": "object",
"properties": {
"parameters": {
"$ref": "#/definitions/templateParameters"
},
"variables": {
"$ref": "#/definitions/variables"
}
},
"additionalProperties": false
},
"variables": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {
"$ref": "#/definitions/variable"
}
}
]
},
"variable": {
"anyOf": [
{
"type": "object",
"properties": {
"name": {
"$ref": "#/definitions/nonEmptyString"
},
"value": {
"$ref": "#/definitions/string"
},
"readonly": {
"$ref": "#/definitions/boolean"
}
},
"additionalProperties": false,
"firstProperty": [
"name"
]
},
{
"type": "object",
"properties": {
"group": {
"$ref": "#/definitions/nonEmptyString"
}
},
"additionalProperties": false,
"firstProperty": [
"group"
]
},
{
"type": "object",
"properties": {
"template": {
"$ref": "#/definitions/nonEmptyString"
},
"parameters": {
"$ref": "#/definitions/mapping"
}
},
"additionalProperties": false,
"firstProperty": [
"template"
]
}
]
},
"stagesTemplate": {
"type": "object",
"properties": {
"parameters": {
"$ref": "#/definitions/templateParameters"
},
"stages": {
"$ref": "#/definitions/stages"
}
},
"additionalProperties": false
},
"stages": {
"type": "array",
"items": {
"$ref": "#/definitions/stage"
}
},
"stage": {
"anyOf": [
{
"type": "object",
"properties": {
"stage": {
"description": "ID of the stage",
"$ref": "#/definitions/string"
},
"displayName": {
"description": "Human-readable name for the stage",
"$ref": "#/definitions/string"
},
"pool": {
"description": "Pool where jobs in this stage will run unless otherwise specified",
"$ref": "#/definitions/pool"
},
"dependsOn": {
"description": "Any stages which must complete before this one",
"$ref": "#/definitions/jobDependsOn"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this stage",
"$ref": "#/definitions/string"
},
"variables": {
"description": "Stage-specific variables",
"$ref": "#/definitions/variables"
},
"jobs": {
"description": "Jobs which make up the stage",
"$ref": "#/definitions/jobs"
},
"lockBehavior": {
"description": "Behavior lock requests from this stage should exhibit in relation to other exclusive lock requests",
"$ref": "#/definitions/lockBehavior"
},
"templateContext": {
"$ref": "#/definitions/templateContext"
}
},
"additionalProperties": false,
"firstProperty": [
"stage"
]
},
{
"type": "object",
"properties": {
"template": {
"description": "Reference to a template for this stage",
"$ref": "#/definitions/nonEmptyString"
},
"parameters": {
"description": "Parameters used in a stage template",
"$ref": "#/definitions/mapping"
}
},
"additionalProperties": false,
"firstProperty": [
"template"
]
}
]
},
"lockBehavior": {
"anyOf": [
{
"type": "string",
"pattern": "^sequential$"
},
{
"type": "string",
"pattern": "^runLatest$"
}
]
},
"extendsParameters": {
"type": "array",
"items": {
"$ref": "#/definitions/templateParameter"
}
},
"extendsTemplate": {
"anyOf": [
{
"type": "object",
"properties": {
"stages": {
"$ref": "#/definitions/stages"
},
"trigger": {
"$ref": "#/definitions/trigger"
},
"resources": {
"$ref": "#/definitions/resources"
},
"parameters": {
"$ref": "#/definitions/extendsParameters"
},
"variables": {
"$ref": "#/definitions/variables"
}
},
"additionalProperties": false
},
{
"type": "object",
"properties": {
"jobs": {
"$ref": "#/definitions/jobs"
},
"trigger": {
"$ref": "#/definitions/trigger"
},
"resources": {
"$ref": "#/definitions/resources"
},
"parameters": {
"$ref": "#/definitions/extendsParameters"
},
"variables": {
"$ref": "#/definitions/variables"
}
},
"additionalProperties": false
},
{
"type": "object",
"properties": {
"steps": {
"$ref": "#/definitions/steps"
},
"trigger": {
"$ref": "#/definitions/trigger"
},
"resources": {
"$ref": "#/definitions/resources"
},
"parameters": {
"$ref": "#/definitions/extendsParameters"
},
"variables": {
"$ref": "#/definitions/variables"
}
},
"additionalProperties": false
},
{
"type": "object",
"properties": {
"trigger": {
"$ref": "#/definitions/trigger"
},
"resources": {
"$ref": "#/definitions/resources"
},
"parameters": {
"$ref": "#/definitions/extendsParameters"
},
"extends": {
"$ref": "#/definitions/extends"
}
},
"additionalProperties": false
}
]
},
"extendsTemplateBase": {
"type": "object",
"properties": {
"trigger": {
"$ref": "#/definitions/trigger"
},
"resources": {
"$ref": "#/definitions/resources"
},
"parameters": {
"$ref": "#/definitions/extendsParameters"
},
"variables": {
"$ref": "#/definitions/variables"
}
},
"additionalProperties": false
},
"parametersTemplate": {
"anyOf": [
{
"type": "object",
"properties": {
"parameters": {
"description": "Step-specific parameters",
"$ref": "#/definitions/templateParameters"
},
"steps": {
"description": "A list of steps to run",
"$ref": "#/definitions/steps"
}
},
"additionalProperties": false,
"required": [
"steps"
]
},
{
"type": "object",
"properties": {
"parameters": {
"description": "Parameters used in a job template",
"$ref": "#/definitions/templateParameters"
},
"jobs": {
"description": "Jobs which make up the pipeline",
"$ref": "#/definitions/jobs"
}
},
"additionalProperties": false
},
{
"type": "object",
"properties": {
"parameters": {
"$ref": "#/definitions/templateParameters"
},
"stages": {
"$ref": "#/definitions/stages"
}
},
"additionalProperties": false
},
{
"type": "object",
"properties": {
"resources": {
"$ref": "#/definitions/resources"
},
"parameters": {
"$ref": "#/definitions/templateParameters"
},
"extends": {
"description": "Extends a template",
"$ref": "#/definitions/extends"
}
},
"additionalProperties": false,
"required": [
"extends"
]
}
]
},
"extends": {
"type": "object",
"properties": {
"template": {
"$ref": "#/definitions/nonEmptyString"
},
"parameters": {
"description": "Parameters used in the extend",
"$ref": "#/definitions/mapping"
}
},
"additionalProperties": false
},
"jobsTemplate": {
"anyOf": [
{
"type": "object",
"properties": {
"parameters": {
"description": "Parameters used in a job template",
"$ref": "#/definitions/templateParameters"
},
"jobs": {
"description": "Jobs which make up the pipeline",
"$ref": "#/definitions/jobs"
}
},
"additionalProperties": false
},
{
"type": "object",
"properties": {
"parameters": {
"description": "Parameters used in a phase template",
"$ref": "#/definitions/templateParameters"
},
"phases": {
"description": "Phases which make up the pipeline",
"deprecationMessage": "This option is deprecated, use `jobs` instead",
"doNotSuggest": true,
"$ref": "#/definitions/phases"
}
},
"additionalProperties": false
}
]
},
"jobs": {
"type": "array",
"items": {
"$ref": "#/definitions/job"
}
},
"job": {
"anyOf": [
{
"type": "object",
"properties": {
"job": {
"description": "ID of the job",
"$ref": "#/definitions/referenceName"
},
"displayName": {
"description": "Human-readable name for the job",
"$ref": "#/definitions/string"
},
"dependsOn": {
"description": "Any jobs which must complete before this one",
"$ref": "#/definitions/jobDependsOn"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this job",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/jobContinueOnError"
},
"timeoutInMinutes": {
"description": "Time to wait for this job to complete before the server kills it",
"$ref": "#/definitions/nonEmptyString"
},
"cancelTimeoutInMinutes": {
"description": "Time to wait for the job to cancel before forcibly terminating it",
"$ref": "#/definitions/nonEmptyString"
},
"variables": {
"description": "Job-specific variables",
"$ref": "#/definitions/variables"
},
"strategy": {
"description": "Execution strategy for this job",
"$ref": "#/definitions/jobStrategy"
},
"pool": {
"description": "Pool where this job will run",
"$ref": "#/definitions/pool"
},
"container": {
"description": "Container resource name",
"$ref": "#/definitions/jobContainer"
},
"services": {
"$ref": "#/definitions/jobServices"
},
"workspace": {
"$ref": "#/definitions/jobWorkspace"
},
"uses": {
"description": "Any resources required by this job that are not already referenced",
"$ref": "#/definitions/explicitResources"
},
"steps": {
"description": "A list of steps to run",
"$ref": "#/definitions/steps"
},
"templateContext": {
"$ref": "#/definitions/templateContext"
}
},
"additionalProperties": false,
"firstProperty": [
"job"
]
},
{
"type": "object",
"properties": {
"deployment": {
"$ref": "#/definitions/string"
},
"displayName": {
"description": "Human-readable name for the deployment",
"$ref": "#/definitions/string"
},
"dependsOn": {
"description": "Any jobs which must complete before this one",
"$ref": "#/definitions/jobDependsOn"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this deployment",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/jobContinueOnError"
},
"timeoutInMinutes": {
"description": "Time to wait for this job to complete before the server kills it",
"$ref": "#/definitions/nonEmptyString"
},
"cancelTimeoutInMinutes": {
"description": "Time to wait for the job to cancel before forcibly terminating it",
"$ref": "#/definitions/nonEmptyString"
},
"variables": {
"description": "Deployment-specific variables",
"$ref": "#/definitions/variables"
},
"pool": {
"description": "Pool where this job will run",
"$ref": "#/definitions/pool"
},
"environment": {
"$ref": "#/definitions/deploymentEnvironment"
},
"strategy": {
"description": "Execution strategy for this deployment",
"$ref": "#/definitions/deploymentStrategy"
},
"workspace": {
"description": "What to clean up before the job runs",
"$ref": "#/definitions/jobWorkspace"
},
"uses": {
"description": "Any resources required by this job that are not already referenced",
"$ref": "#/definitions/explicitResources"
},
"container": {
"description": "Container resource name",
"$ref": "#/definitions/jobContainer"
},
"services": {
"description": "Container resources to run as a service container",
"$ref": "#/definitions/jobServices"
},
"templateContext": {
"$ref": "#/definitions/templateContext"
}
},
"additionalProperties": false,
"firstProperty": [
"deployment"
]
},
{
"type": "object",
"properties": {
"template": {
"description": "Reference to a template for this deployment",
"$ref": "#/definitions/nonEmptyString"
},
"parameters": {
"description": "Parameters used in a deployment template",
"$ref": "#/definitions/mapping"
}
},
"additionalProperties": false,
"firstProperty": [
"template"
]
}
]
},
"explicitResources": {
"type": "object",
"properties": {
"repositories": {
"description": "Repository references",
"$ref": "#/definitions/sequenceOfNonEmptyString"
},
"pools": {
"description": "Pool references",
"$ref": "#/definitions/sequenceOfNonEmptyString"
}
},
"additionalProperties": false
},
"pool": {
"description": "Pool details",
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"name": {
"description": "Name of a pool",
"$ref": "#/definitions/nonEmptyString"
},
"demands": {
"description": "List of demands (for a private pool)",
"$ref": "#/definitions/poolDemands"
}
},
"additionalProperties": true
}
]
},
"poolDemands": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/nonEmptyString"
}
}
]
},
"jobContainer": {
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"alias": {
"description": "The alias of the container resource",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false
},
{
"type": "object",
"properties": {
"endpoint": {
"description": "ID of the service endpoint connecting to a private container registry",
"$ref": "#/definitions/string_allowExpressions"
},
"env": {
"description": "Variables to map into the container's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"image": {
"description": "Container image tag",
"$ref": "#/definitions/string",
"examples": [
"ubuntu:16.04",
"windows:1803"
]
},
"mapDockerSocket": {
"description": "Set this flag to false to force the agent not to setup the /var/run/docker.sock volume on container jobs",
"$ref": "#/definitions/boolean"
},
"options": {
"description": "Options to pass into container host",
"$ref": "#/definitions/string_allowExpressions"
},
"ports": {
"$ref": "#/definitions/sequenceOfString_allowExpressions"
},
"volumes": {
"$ref": "#/definitions/sequenceOfString_allowExpressions"
},
"mountReadOnly": {
"$ref": "#/definitions/readOnlyMounts"
}
},
"required": [
"image"
]
}
]
},
"containerBase": {
"type": "object",
"properties": {
"endpoint": {
"description": "ID of the service endpoint connecting to a private container registry",
"$ref": "#/definitions/string_allowExpressions"
},
"env": {
"description": "Variables to map into the container's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"image": {
"description": "Container image tag",
"$ref": "#/definitions/string",
"examples": [
"ubuntu:16.04",
"windows:1803"
]
},
"mapDockerSocket": {
"description": "Set this flag to false to force the agent not to setup the /var/run/docker.sock volume on container jobs",
"$ref": "#/definitions/boolean"
},
"options": {
"description": "Options to pass into container host",
"$ref": "#/definitions/string_allowExpressions"
},
"ports": {
"$ref": "#/definitions/sequenceOfString_allowExpressions"
},
"volumes": {
"$ref": "#/definitions/sequenceOfString_allowExpressions"
},
"mountReadOnly": {
"$ref": "#/definitions/readOnlyMounts"
}
},
"additionalProperties": false,
"required": [
"image"
]
},
"readOnlyMounts": {
"type": "object",
"properties": {
"work": {
"description": "Mount the work directory as readonly",
"$ref": "#/definitions/boolean"
},
"externals": {
"description": "Mount the externals directory as readonly",
"$ref": "#/definitions/boolean"
},
"tools": {
"description": "Mount the tools directory as readonly",
"$ref": "#/definitions/boolean"
},
"tasks": {
"description": "Mount the tasks directory as readonly",
"$ref": "#/definitions/boolean"
}
},
"additionalProperties": false
},
"jobServices": {
"type": "object",
"additionalProperties": true
},
"jobWorkspace": {
"type": "object",
"properties": {
"clean": {
"description": "Which parts of the workspace should be scorched before fetching",
"enum": [
"outputs",
"resources",
"all"
],
"$ref": "#/definitions/string"
}
},
"additionalProperties": false
},
"jobStrategy": {
"anyOf": [
{
"type": "object",
"properties": {
"matrix": {
"$ref": "#/definitions/jobMatrix"
},
"maxParallel": {
"description": "Maximum number of jobs running in parallel",
"$ref": "#/definitions/nonEmptyString"
}
},
"additionalProperties": false
},
{
"type": "object",
"properties": {
"parallel": {
"description": "Run the job this many times",
"$ref": "#/definitions/nonEmptyString"
}
},
"additionalProperties": false
}
]
},
"jobMatrix": {
"anyOf": [
{
"type": "object",
"additionalProperties": true,
"minProperties": 1,
"patternProperties": {
"^[A-Za-z0-9_]+$": {
"$ref": "#/definitions/matrixProperties"
}
}
},
{
"type": "string"
}
]
},
"matrixProperties": {
"type": "object",
"description": "Variable-value pair to pass in this matrix instance",
"additionalProperties": true
},
"deploymentEnvironment": {
"description": "Environment details",
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"name": {
"description": "Name of environment",
"$ref": "#/definitions/nonEmptyString"
},
"resourceName": {
"description": "Name of resource",
"$ref": "#/definitions/nonEmptyString"
},
"resourceId": {
"description": "Id of resource",
"$ref": "#/definitions/nonEmptyString"
},
"resourceType": {
"description": "Type of environment resource",
"$ref": "#/definitions/nonEmptyString"
},
"tags": {
"description": "List of tag filters",
"$ref": "#/definitions/nonEmptyString"
}
},
"additionalProperties": false
}
]
},
"deploymentStrategy": {
"anyOf": [
{
"type": "object",
"properties": {
"runOnce": {
"description": "RunOnce Deployment strategy",
"$ref": "#/definitions/runOnceDeploymentStrategy"
}
},
"additionalProperties": false
},
{
"type": "object",
"properties": {
"rolling": {
"description": "Rolling Deployment strategy",
"$ref": "#/definitions/rollingDeploymentStrategy"
}
},
"additionalProperties": false
},
{
"type": "object",
"properties": {
"canary": {
"description": "Canary Deployment strategy",
"$ref": "#/definitions/canaryDeploymentStrategy"
}
},
"additionalProperties": false
}
]
},
"preDeployHook": {
"type": "object",
"properties": {
"steps": {
"description": "A list of steps to run",
"$ref": "#/definitions/steps"
},
"pool": {
"description": "Pool where pre deploy steps will run",
"$ref": "#/definitions/pool"
}
},
"additionalProperties": false
},
"deployHook": {
"type": "object",
"properties": {
"steps": {
"description": "A list of steps to run",
"$ref": "#/definitions/steps"
},
"pool": {
"description": "Pool where deploy steps will run",
"$ref": "#/definitions/pool"
}
},
"additionalProperties": false
},
"routeTrafficHook": {
"type": "object",
"properties": {
"steps": {
"description": "A list of steps to run",
"$ref": "#/definitions/steps"
},
"pool": {
"description": "Pool where route traffic steps will run",
"$ref": "#/definitions/pool"
}
},
"additionalProperties": false
},
"postRouteTrafficHook": {
"type": "object",
"properties": {
"steps": {
"description": "A list of steps to run",
"$ref": "#/definitions/steps"
},
"pool": {
"description": "Pool where post route traffic steps will run",
"$ref": "#/definitions/pool"
}
},
"additionalProperties": false
},
"onSuccessOrFailureHook": {
"type": "object",
"properties": {
"failure": {
"description": "Runs on failure of any step",
"$ref": "#/definitions/onFailureHook"
},
"success": {
"description": "Runs on success of all of the steps",
"$ref": "#/definitions/onSuccessHook"
}
},
"additionalProperties": false
},
"onFailureHook": {
"type": "object",
"properties": {
"steps": {
"description": "A list of steps to run",
"$ref": "#/definitions/steps"
},
"pool": {
"description": "Pool where post on failure steps will run",
"$ref": "#/definitions/pool"
}
},
"additionalProperties": false
},
"onSuccessHook": {
"type": "object",
"properties": {
"steps": {
"description": "A list of steps to run",
"$ref": "#/definitions/steps"
},
"pool": {
"description": "Pool where on success steps will run",
"$ref": "#/definitions/pool"
}
},
"additionalProperties": false
},
"runOnceDeploymentStrategy": {
"type": "object",
"properties": {
"preDeploy": {
"description": "Pre deploy hook for runOnce deployment strategy",
"$ref": "#/definitions/preDeployHook"
},
"deploy": {
"description": "Deploy hook for runOnce deployment strategy",
"$ref": "#/definitions/deployHook"
},
"routeTraffic": {
"description": "Route traffic hook for runOnce deployment strategy",
"$ref": "#/definitions/routeTrafficHook"
},
"postRouteTraffic": {
"description": "Post route traffic hook for runOnce deployment strategy",
"$ref": "#/definitions/postRouteTrafficHook"
},
"on": {
"description": "On success or failure hook for runOnce deployment strategy",
"$ref": "#/definitions/onSuccessOrFailureHook"
}
},
"additionalProperties": false
},
"rollingDeploymentStrategy": {
"type": "object",
"properties": {
"maxParallel": {
"description": "Maximum number of jobs running in parallel",
"$ref": "#/definitions/nonEmptyString"
},
"preDeploy": {
"description": "Pre deploy hook for rolling deployment strategy",
"$ref": "#/definitions/preDeployHook"
},
"deploy": {
"description": "Deploy hook for rolling deployment strategy",
"$ref": "#/definitions/deployHook"
},
"routeTraffic": {
"description": "Route traffic hook for rolling deployment strategy",
"$ref": "#/definitions/routeTrafficHook"
},
"postRouteTraffic": {
"description": "Post route traffic hook for rolling deployment strategy",
"$ref": "#/definitions/postRouteTrafficHook"
},
"on": {
"description": "On success or failure hook for rolling deployment strategy",
"$ref": "#/definitions/onSuccessOrFailureHook"
}
},
"additionalProperties": false
},
"canaryDeploymentStrategy": {
"type": "object",
"properties": {
"increments": {
"description": "Maximum batch size for deployment",
"$ref": "#/definitions/canaryDeploymentIncrements"
},
"preDeploy": {
"description": "Pre deploy hook for canary deployment strategy",
"$ref": "#/definitions/preDeployHook"
},
"deploy": {
"description": "Deploy hook for canary deployment strategy",
"$ref": "#/definitions/deployHook"
},
"routeTraffic": {
"description": "Route traffic hook for canary deployment strategy",
"$ref": "#/definitions/routeTrafficHook"
},
"postRouteTraffic": {
"description": "Post route traffic hook for canary deployment strategy",
"$ref": "#/definitions/postRouteTrafficHook"
},
"on": {
"description": "On success or failure hook for canary deployment strategy",
"$ref": "#/definitions/onSuccessOrFailureHook"
}
},
"additionalProperties": false
},
"canaryDeploymentIncrements": {
"type": "array",
"items": {
"$ref": "#/definitions/nonEmptyString"
}
},
"phases": {
"type": "array",
"deprecationMessage": "This option is deprecated, use `jobs` instead",
"items": {
"$ref": "#/definitions/phase"
}
},
"phase": {
"deprecationMessage": "This option is deprecated, use `job` (inside `jobs`) instead",
"anyOf": [
{
"type": "object",
"properties": {
"phase": {
"description": "ID of the phase",
"$ref": "#/definitions/referenceName"
},
"dependsOn": {
"description": "Any phases which must complete before this one",
"$ref": "#/definitions/jobDependsOn"
},
"displayName": {
"description": "Human-readable name of the phase",
"$ref": "#/definitions/string"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this phase",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/jobContinueOnError"
},
"queue": {
"description": "Queue where this phase will run",
"deprecationMessage": "This option is deprecated, use pool instead",
"doNotSuggest": true,
"$ref": "#/definitions/phaseQueueTarget"
},
"variables": {
"description": "Phase-specific variables",
"$ref": "#/definitions/variables"
},
"steps": {
"description": "A list of steps to run in this phase",
"$ref": "#/definitions/steps"
}
},
"additionalProperties": false,
"firstProperty": [
"phase"
]
},
{
"type": "object",
"properties": {
"phase": {
"description": "ID of the phase",
"$ref": "#/definitions/referenceName"
},
"dependsOn": {
"description": "Any phases which must complete before this one",
"$ref": "#/definitions/jobDependsOn"
},
"displayName": {
"description": "Human-readable name of the phase",
"$ref": "#/definitions/string"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this phase",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/jobContinueOnError"
},
"server": {
"description": "True if this is an agent-less phase (runs on server)",
"deprecationMessage": "This option is deprecated, use pool:server instead",
"doNotSuggest": true,
"$ref": "#/definitions/phaseServerTarget"
},
"variables": {
"description": "Phase-specific variables",
"$ref": "#/definitions/variables"
},
"steps": {
"description": "A list of steps to run in this phase",
"$ref": "#/definitions/steps"
}
},
"additionalProperties": false,
"firstProperty": [
"phase"
]
},
{
"type": "object",
"properties": {
"template": {
"description": "Reference to a template for this phase",
"$ref": "#/definitions/nonEmptyString"
},
"parameters": {
"description": "Parameters used in a phase template",
"$ref": "#/definitions/mapping"
}
},
"additionalProperties": false,
"firstProperty": [
"template"
]
}
]
},
"phaseQueueTarget": {
"description": "Queue details",
"deprecationMessage": "This option is deprecated, use `pool` under `jobs` instead",
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"cancelTimeoutInMinutes": {
"description": "Time to wait for the phase to cancel before forcibly terminating it",
"$ref": "#/definitions/nonEmptyString"
},
"container": {
"description": "Container resource name",
"$ref": "#/definitions/nonEmptyString"
},
"demands": {
"description": "List of demands (for a private queue)",
"$ref": "#/definitions/phaseTargetDemands"
},
"matrix": {
"$ref": "#/definitions/phaseTargetMatrix"
},
"name": {
"description": "Name of a queue",
"$ref": "#/definitions/string"
},
"parallel": {
"description": "Maximum number of parallel agent executions",
"$ref": "#/definitions/nonEmptyString"
},
"timeoutInMinutes": {
"description": "Time to wait before cancelling the phase",
"$ref": "#/definitions/nonEmptyString"
},
"workspace": {
"$ref": "#/definitions/phaseTargetWorkspace"
}
},
"additionalProperties": false
}
]
},
"phaseServerTarget": {
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"cancelTimeoutInMinutes": {
"description": "Time to wait for the job to cancel before forcibly terminating it",
"$ref": "#/definitions/nonEmptyString"
},
"matrix": {
"$ref": "#/definitions/phaseTargetMatrix"
},
"parallel": {
"description": "Maximum number of parallel agent executions",
"$ref": "#/definitions/nonEmptyString"
},
"timeoutInMinutes": {
"description": "Time to wait before cancelling the job",
"$ref": "#/definitions/nonEmptyString"
}
},
"additionalProperties": false
}
]
},
"phaseTargetDemands": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/nonEmptyString"
}
}
]
},
"phaseTargetWorkspace": {
"type": "object",
"properties": {
"clean": {
"description": "Scorch the repo before fetching?",
"enum": [
"outputs",
"resources",
"all"
],
"$ref": "#/definitions/string"
}
},
"additionalProperties": false
},
"phaseTargetMatrix": {
"description": "List of permutations of variable values to run",
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "string"
}
],
"minProperties": 1,
"patternProperties": {
"^[A-Za-z0-9_]+$": {
"$ref": "#/definitions/matrixProperties"
}
}
},
"stepsTemplate": {
"type": "object",
"properties": {
"parameters": {
"description": "Step-specific parameters",
"$ref": "#/definitions/templateParameters"
},
"steps": {
"description": "A list of steps to run",
"$ref": "#/definitions/steps"
}
},
"additionalProperties": false
},
"steps": {
"type": "array",
"items": {
"$ref": "#/definitions/step"
}
},
"step": {
"anyOf": [
{
"type": "object",
"$ref": "#/definitions/task"
},
{
"type": "object",
"properties": {
"script": {
"description": "An inline script",
"$ref": "#/definitions/string"
},
"failOnStderr": {
"description": "Fail the task if output is sent to Stderr?",
"$ref": "#/definitions/string"
},
"workingDirectory": {
"description": "Start the script with this working directory",
"$ref": "#/definitions/string"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this task",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/boolean"
},
"displayName": {
"description": "Human-readable name for the task",
"$ref": "#/definitions/string"
},
"target": {
"description": "Environment in which to run this task",
"$ref": "#/definitions/stepTarget"
},
"enabled": {
"description": "Run this task when the job runs?",
"$ref": "#/definitions/boolean"
},
"env": {
"description": "Variables to map into the process's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"name": {
"description": "ID of the step",
"$ref": "#/definitions/referenceName"
},
"timeoutInMinutes": {
"description": "Time to wait for this task to complete before the server kills it",
"$ref": "#/definitions/nonEmptyString"
},
"retryCountOnTaskFailure": {
"description": "Number of retries if the task fails",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false,
"firstProperty": [
"script"
],
"required": [
"script"
]
},
{
"type": "object",
"properties": {
"powershell": {
"description": "Inline PowerShell or reference to a PowerShell file",
"$ref": "#/definitions/string"
},
"errorActionPreference": {
"$ref": "#/definitions/string"
},
"failOnStderr": {
"description": "Fail the task if output is sent to Stderr?",
"$ref": "#/definitions/string"
},
"ignoreLASTEXITCODE": {
"description": "Check the final exit code of the script to determine whether the step succeeded?",
"$ref": "#/definitions/string"
},
"workingDirectory": {
"description": "Start the script with this working directory",
"$ref": "#/definitions/string"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this task",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/boolean"
},
"displayName": {
"description": "Human-readable name for the task",
"$ref": "#/definitions/string"
},
"target": {
"description": "Environment in which to run this task",
"$ref": "#/definitions/stepTarget"
},
"enabled": {
"description": "Run this task when the job runs?",
"$ref": "#/definitions/boolean"
},
"env": {
"description": "Variables to map into the process's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"name": {
"description": "ID of the step",
"$ref": "#/definitions/referenceName"
},
"timeoutInMinutes": {
"description": "Time to wait for this task to complete before the server kills it",
"$ref": "#/definitions/nonEmptyString"
},
"retryCountOnTaskFailure": {
"description": "Number of retries if the task fails",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false,
"firstProperty": [
"powershell"
],
"required": [
"powershell"
]
},
{
"type": "object",
"properties": {
"pwsh": {
"description": "Inline PowerShell or reference to a PowerShell file",
"$ref": "#/definitions/string"
},
"errorActionPreference": {
"$ref": "#/definitions/string"
},
"failOnStderr": {
"description": "Fail the task if output is sent to Stderr?",
"$ref": "#/definitions/string"
},
"ignoreLASTEXITCODE": {
"description": "Check the final exit code of the script to determine whether the step succeeded?",
"$ref": "#/definitions/string"
},
"workingDirectory": {
"description": "Start the script with this working directory",
"$ref": "#/definitions/string"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this task",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/boolean"
},
"displayName": {
"description": "Human-readable name for the task",
"$ref": "#/definitions/string"
},
"target": {
"description": "Environment in which to run this task",
"$ref": "#/definitions/stepTarget"
},
"enabled": {
"description": "Run this task when the job runs?",
"$ref": "#/definitions/boolean"
},
"env": {
"description": "Variables to map into the process's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"name": {
"description": "ID of the step",
"$ref": "#/definitions/referenceName"
},
"timeoutInMinutes": {
"description": "Time to wait for this task to complete before the server kills it",
"$ref": "#/definitions/nonEmptyString"
},
"retryCountOnTaskFailure": {
"description": "Number of retries if the task fails",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false,
"firstProperty": [
"pwsh"
],
"required": [
"pwsh"
]
},
{
"type": "object",
"properties": {
"bash": {
"description": "An inline script",
"$ref": "#/definitions/string"
},
"failOnStderr": {
"description": "Fail the task if output is sent to Stderr?",
"$ref": "#/definitions/string"
},
"workingDirectory": {
"description": "Start the script with this working directory",
"$ref": "#/definitions/string"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this task",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/boolean"
},
"displayName": {
"description": "Human-readable name for the task",
"$ref": "#/definitions/string"
},
"target": {
"description": "Environment in which to run this task",
"$ref": "#/definitions/stepTarget"
},
"enabled": {
"description": "Run this task when the job runs?",
"$ref": "#/definitions/boolean"
},
"env": {
"description": "Variables to map into the process's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"name": {
"description": "ID of the step",
"$ref": "#/definitions/referenceName"
},
"timeoutInMinutes": {
"description": "Time to wait for this task to complete before the server kills it",
"$ref": "#/definitions/nonEmptyString"
},
"retryCountOnTaskFailure": {
"description": "Number of retries if the task fails",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false,
"firstProperty": [
"bash"
],
"required": [
"bash"
]
},
{
"type": "object",
"properties": {
"checkout": {
"description": "Alias of the repository resource to check out or 'none'",
"$ref": "#/definitions/string"
},
"clean": {
"description": "Scorch the repo before fetching?",
"enum": [
"true",
"false"
],
"$ref": "#/definitions/string"
},
"fetchDepth": {
"description": "Depth of Git graph to fetch",
"$ref": "#/definitions/string"
},
"fetchTags": {
"description": "Fetch tags?",
"$ref": "#/definitions/string"
},
"lfs": {
"description": "Fetch Git-LFS objects?",
"$ref": "#/definitions/string"
},
"persistCredentials": {
"description": "Keep credentials available for later use?",
"$ref": "#/definitions/string"
},
"submodules": {
"description": "Check out Git submodules?",
"$ref": "#/definitions/string"
},
"path": {
"description": "Path of the repository to check out",
"$ref": "#/definitions/string"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this task",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/boolean"
},
"displayName": {
"description": "Human-readable name for the task",
"$ref": "#/definitions/string"
},
"target": {
"description": "Environment in which to run this task",
"$ref": "#/definitions/stepTarget"
},
"enabled": {
"description": "Run this task when the job runs?",
"$ref": "#/definitions/boolean"
},
"env": {
"description": "Variables to map into the process's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"name": {
"description": "ID of the step",
"$ref": "#/definitions/referenceName"
},
"timeoutInMinutes": {
"description": "Time to wait for this task to complete before the server kills it",
"$ref": "#/definitions/nonEmptyString"
},
"retryCountOnTaskFailure": {
"description": "Number of retries if the task fails",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false,
"firstProperty": [
"checkout"
]
},
{
"type": "object",
"properties": {
"download": {
"description": "Reference to the pipeline",
"$ref": "#/definitions/nonEmptyString"
},
"artifact": {
"description": "Name of the artifact to download",
"$ref": "#/definitions/nonEmptyString"
},
"patterns": {
"description": "Pattern to download files from artifact",
"$ref": "#/definitions/nonEmptyString"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this task",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/boolean"
},
"displayName": {
"description": "Human-readable name for the task",
"$ref": "#/definitions/string"
},
"target": {
"description": "Environment in which to run this task",
"$ref": "#/definitions/stepTarget"
},
"enabled": {
"description": "Run this task when the job runs?",
"$ref": "#/definitions/boolean"
},
"env": {
"description": "Variables to map into the process's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"name": {
"description": "ID of the step",
"$ref": "#/definitions/referenceName"
},
"timeoutInMinutes": {
"description": "Time to wait for this task to complete before the server kills it",
"$ref": "#/definitions/nonEmptyString"
},
"retryCountOnTaskFailure": {
"description": "Number of retries if the task fails",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false,
"firstProperty": [
"download"
],
"required": [
"download"
]
},
{
"type": "object",
"properties": {
"downloadBuild": {
"description": "ID for the build resource",
"$ref": "#/definitions/nonEmptyString"
},
"artifact": {
"description": "Name of the artifact to download",
"$ref": "#/definitions/string"
},
"path": {
"description": "Path to download the artifact into",
"$ref": "#/definitions/string"
},
"patterns": {
"description": "Downloads the files which matches the patterns",
"$ref": "#/definitions/string"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this task",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/boolean"
},
"displayName": {
"description": "Human-readable name for the task",
"$ref": "#/definitions/string"
},
"target": {
"description": "Environment in which to run this task",
"$ref": "#/definitions/stepTarget"
},
"enabled": {
"description": "Run this task when the job runs?",
"$ref": "#/definitions/boolean"
},
"env": {
"description": "Variables to map into the process's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"name": {
"description": "ID of the step",
"$ref": "#/definitions/referenceName"
},
"timeoutInMinutes": {
"description": "Time to wait for this task to complete before the server kills it",
"$ref": "#/definitions/nonEmptyString"
},
"retryCountOnTaskFailure": {
"description": "Number of retries if the task fails",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false,
"firstProperty": [
"downloadBuild"
]
},
{
"type": "object",
"properties": {
"getPackage": {
"description": "ID for the package resource",
"$ref": "#/definitions/nonEmptyString"
},
"path": {
"description": "Path to download the package into",
"$ref": "#/definitions/string"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this task",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/boolean"
},
"displayName": {
"description": "Human-readable name for the task",
"$ref": "#/definitions/string"
},
"target": {
"description": "Environment in which to run this task",
"$ref": "#/definitions/stepTarget"
},
"enabled": {
"description": "Run this task when the job runs?",
"$ref": "#/definitions/boolean"
},
"env": {
"description": "Variables to map into the process's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"name": {
"description": "ID of the step",
"$ref": "#/definitions/referenceName"
},
"timeoutInMinutes": {
"description": "Time to wait for this task to complete before the server kills it",
"$ref": "#/definitions/nonEmptyString"
},
"retryCountOnTaskFailure": {
"description": "Number of retries if the task fails",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false,
"firstProperty": [
"getPackage"
]
},
{
"type": "object",
"properties": {
"upload": {
"deprecationMessage": "This option is deprecated, use `publish` instead",
"doNotSuggest": true,
"$ref": "#/definitions/string"
},
"artifact": {
"$ref": "#/definitions/string"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this task",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/boolean"
},
"displayName": {
"description": "Human-readable name for the task",
"$ref": "#/definitions/string"
},
"target": {
"description": "Environment in which to run this task",
"$ref": "#/definitions/stepTarget"
},
"enabled": {
"description": "Run this task when the job runs?",
"$ref": "#/definitions/boolean"
},
"env": {
"description": "Variables to map into the process's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"name": {
"description": "ID of the step",
"$ref": "#/definitions/referenceName"
},
"timeoutInMinutes": {
"description": "Time to wait for this task to complete before the server kills it",
"$ref": "#/definitions/nonEmptyString"
},
"retryCountOnTaskFailure": {
"description": "Number of retries if the task fails",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false,
"firstProperty": [
"upload"
]
},
{
"type": "object",
"properties": {
"publish": {
"$ref": "#/definitions/string"
},
"artifact": {
"$ref": "#/definitions/string"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this task",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/boolean"
},
"displayName": {
"description": "Human-readable name for the task",
"$ref": "#/definitions/string"
},
"target": {
"description": "Environment in which to run this task",
"$ref": "#/definitions/stepTarget"
},
"enabled": {
"description": "Run this task when the job runs?",
"$ref": "#/definitions/boolean"
},
"env": {
"description": "Variables to map into the process's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"name": {
"description": "ID of the step",
"$ref": "#/definitions/referenceName"
},
"timeoutInMinutes": {
"description": "Time to wait for this task to complete before the server kills it",
"$ref": "#/definitions/nonEmptyString"
},
"retryCountOnTaskFailure": {
"description": "Number of retries if the task fails",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false,
"firstProperty": [
"publish"
]
},
{
"type": "object",
"properties": {
"template": {
"description": "Reference to a template for this step",
"$ref": "#/definitions/nonEmptyString"
},
"parameters": {
"description": "Parameters used in a step template",
"$ref": "#/definitions/mapping"
}
},
"additionalProperties": false,
"firstProperty": [
"template"
]
},
{
"type": "object",
"properties": {
"reviewApp": {
"$ref": "#/definitions/string"
},
"condition": {
"description": "Evaluate this condition expression to determine whether to run this task",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/boolean"
},
"displayName": {
"description": "Human-readable name for the task",
"$ref": "#/definitions/string"
},
"target": {
"description": "Environment in which to run this task",
"$ref": "#/definitions/stepTarget"
},
"enabled": {
"description": "Run this task when the job runs?",
"$ref": "#/definitions/boolean"
},
"env": {
"description": "Variables to map into the process's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"name": {
"description": "ID of the step",
"$ref": "#/definitions/referenceName"
},
"timeoutInMinutes": {
"description": "Time to wait for this task to complete before the server kills it",
"$ref": "#/definitions/nonEmptyString"
},
"retryCountOnTaskFailure": {
"description": "Number of retries if the task fails",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false,
"firstProperty": [
"reviewApp"
]
}
]
},
"stepTarget": {
"description": "Step target",
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"container": {
"description": "Container to target (or 'host' for host machine)",
"$ref": "#/definitions/nonEmptyString"
},
"commands": {
"description": "Set of allowed logging commands ('any' or 'restricted')",
"enum": [
"any",
"restricted"
],
"$ref": "#/definitions/string"
},
"settableVariables": {
"description": "Restrictions on which variables that can be set",
"$ref": "#/definitions/variableRestrictions"
}
},
"additionalProperties": false
}
]
},
"variableRestrictions": {
"anyOf": [
{
"type": "string",
"ignoreCase": "value",
"pattern": "^none$"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/nonEmptyString"
}
}
]
},
"jobDecoratorSteps": {
"type": "object",
"properties": {
"steps": {
"description": "A list of steps to run in this job",
"$ref": "#/definitions/tasks"
}
},
"additionalProperties": false
},
"tasks": {
"type": "array",
"items": {
"$ref": "#/definitions/task"
}
},
"taskBase": {
"type": "object",
"properties": {
"condition": {
"description": "Evaluate this condition expression to determine whether to run this task",
"$ref": "#/definitions/string"
},
"continueOnError": {
"description": "Continue running even on failure?",
"$ref": "#/definitions/boolean"
},
"displayName": {
"description": "Human-readable name for the task",
"$ref": "#/definitions/string"
},
"target": {
"description": "Environment in which to run this task",
"$ref": "#/definitions/stepTarget"
},
"enabled": {
"description": "Run this task when the job runs?",
"$ref": "#/definitions/boolean"
},
"env": {
"description": "Variables to map into the process's environment",
"$ref": "#/definitions/mappingOfStringString"
},
"name": {
"description": "ID of the step",
"$ref": "#/definitions/referenceName"
},
"timeoutInMinutes": {
"description": "Time to wait for this task to complete before the server kills it",
"$ref": "#/definitions/nonEmptyString"
},
"retryCountOnTaskFailure": {
"description": "Number of retries if the task fails",
"$ref": "#/definitions/string"
}
},
"additionalProperties": false
},
"jobContinueOnError": {
"type": "string"
},
"jobDependsOn": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/string"
}
}
]
},
"referenceName": {
"type": "string",
"pattern": "^[-_A-Za-z0-9]*$"
},
"templateContext": {
"type": "object",
"additionalProperties": true
},
"boolean": {
"anyOf": [
{
"type": "string",
"ignoreCase": "value",
"pattern": "^true$"
},
{
"type": "string",
"ignoreCase": "value",
"pattern": "^y$"
},
{
"type": "string",
"ignoreCase": "value",
"pattern": "^yes$"
},
{
"type": "string",
"ignoreCase": "value",
"pattern": "^on$"
},
{
"type": "string",
"ignoreCase": "value",
"pattern": "^false$"
},
{
"type": "string",
"ignoreCase": "value",
"pattern": "^n$"
},
{
"type": "string",
"ignoreCase": "value",
"pattern": "^no$"
},
{
"type": "string",
"ignoreCase": "value",
"pattern": "^off$"
}
]
},
"string_allowExpressions": {
"type": "string"
},
"nonEmptyString": {
"type": "string"
},
"sequenceOfNonEmptyString": {
"type": "array",
"items": {
"$ref": "#/definitions/nonEmptyString"
}
},
"sequenceOfString_allowExpressions": {
"type": "array",
"items": {
"$ref": "#/definitions/string_allowExpressions"
}
},
"mappingOfStringString": {
"type": "object",
"additionalProperties": true
},
"any_allowExpressions": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/any"
}
},
{
"type": "object",
"additionalProperties": true
}
]
},
"task": {
"type": "object",
"properties": {
"task": {
"anyOf": [
{
"description": "Run a PowerShell script",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PowerShell@1"
]
},
{
"description": "Run a PowerShell script on Linux, macOS, or Windows",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PowerShell@2"
]
},
{
"description": "Run a PowerShell script within an Azure environment",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzurePowerShell@4"
]
},
{
"description": "Run a PowerShell script within an Azure environment",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzurePowerShell@2"
]
},
{
"description": "Run a PowerShell script within an Azure environment",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzurePowerShell@5"
]
},
{
"description": "Run a PowerShell script within an Azure environment",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzurePowerShell@3"
]
},
{
"description": "Run a PowerShell script within an Azure environment",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzurePowerShell@1"
]
},
{
"description": "Run scripts and make changes to a MySQL Database",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"MysqlDeploymentOnMachineGroup@1"
]
},
{
"description": "Authentication task for the pip client used for installing Python distributions",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PipAuthenticate@1"
]
},
{
"description": "Authentication task for the pip client used for installing Python distributions",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PipAuthenticate@0"
]
},
{
"description": "Build, test, and deploy with Apache Maven",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Maven@4"
]
},
{
"description": "Build, test, and deploy with Apache Maven",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Maven@3"
]
},
{
"description": "Build, test, and deploy with Apache Maven",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Maven@2"
]
},
{
"description": "Build with Apache Maven",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Maven@1"
]
},
{
"description": "Build, test and publish using dotnet core command-line.",
"deprecationMessage": "DotNetCoreCLI is deprecated - Build, test and publish using dotnet core command-line.",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"DotNetCoreCLI@0"
]
},
{
"description": "Build, test, package, or publish a dotnet application, or run a custom dotnet command",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DotNetCoreCLI@2"
]
},
{
"description": "Build, test and publish using dotnet core command-line.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DotNetCoreCLI@1"
]
},
{
"description": "This task is deprecated. Use 'NuGet' instead.",
"deprecationMessage": "XamarinComponentRestore is deprecated - This task is deprecated. Use 'NuGet' instead.",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"XamarinComponentRestore@0"
]
},
{
"description": "Deploy to Azure App Service a web, mobile, or API app using Docker, Java, .NET, .NET Core, Node.js, PHP, Python, or Ruby",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureRmWebAppDeployment@4"
]
},
{
"description": "Update Azure App Service using Web Deploy / Kudu REST APIs",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureRmWebAppDeployment@2"
]
},
{
"description": "Deploy to Azure App Service a web, mobile, or API app using Docker, Java, .NET, .NET Core, Node.js, PHP, Python, or Ruby",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureRmWebAppDeployment@3"
]
},
{
"description": "Execute PowerShell scripts on remote machines using PSSession and Invoke-Command for remoting",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PowerShellOnTargetMachines@3"
]
},
{
"description": "Execute PowerShell scripts on remote machine(s)",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PowerShellOnTargetMachines@1"
]
},
{
"description": "Execute PowerShell scripts on remote machine(s)",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PowerShellOnTargetMachines@2"
]
},
{
"description": "Publish any of the code coverage results from a build",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PublishCodeCoverageResults@2"
]
},
{
"description": "Publish Cobertura or JaCoCo code coverage results from a build",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PublishCodeCoverageResults@1"
]
},
{
"description": "Deprecated: This task and it’s companion task (Visual Studio Test Agent Deployment) are deprecated. Use the 'Visual Studio Test' task instead. The VSTest task can run unit as well as functional tests. Run tests on one or more agents using the multi-agent job setting. Use the 'Visual Studio Test Platform' task to run tests without needing Visual Studio on the agent. VSTest task also brings new capabilities such as automatically rerunning failed tests.",
"deprecationMessage": "RunVisualStudioTestsusingTestAgent is deprecated - Deprecated: This task and it’s companion task (Visual Studio Test Agent Deployment) are deprecated. Use the 'Visual Studio Test' task instead. The VSTest task can run unit as well as functional tests. Run tests on one or more agents using the multi-agent job setting. Use the 'Visual Studio Test Platform' task to run tests without needing Visual Studio on the agent. VSTest task also brings new capabilities such as automatically rerunning failed tests.",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"RunVisualStudioTestsusingTestAgent@1"
]
},
{
"description": "Pause deployment and wait for manual intervention",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"ManualIntervention@8"
]
},
{
"description": "Install an Apple provisioning profile required to build on a macOS agent",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"InstallAppleProvisioningProfile@0"
]
},
{
"description": "Install an Apple provisioning profile required to build on a macOS agent machine",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"InstallAppleProvisioningProfile@1"
]
},
{
"description": "[DEPRECATED] Finish the analysis and upload the results to SonarQube",
"deprecationMessage": "SonarQubePostTest is deprecated - [DEPRECATED] Finish the analysis and upload the results to SonarQube",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"SonarQubePostTest@1"
]
},
{
"description": "Create and upload an sdist or wheel to a PyPI-compatible index using Twine",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PyPIPublisher@0"
]
},
{
"description": "Run scripts with Knife commands on your Chef workstation",
"deprecationMessage": "ChefKnife is deprecated - Run scripts with Knife commands on your Chef workstation",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"ChefKnife@1"
]
},
{
"description": "Find in cache or download a specific version of Go and add it to the PATH",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"GoTool@0"
]
},
{
"description": "Generate an .ipa file from Xcode build output using xcrun (Xcode 7 or below)",
"deprecationMessage": "XcodePackageiOS is deprecated - Generate an .ipa file from Xcode build output using xcrun (Xcode 7 or below)",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"XcodePackageiOS@0"
]
},
{
"description": "Get, build, or test a Go application, or run a custom Go command",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Go@0"
]
},
{
"description": "Publish Pipeline Metadata to Evidence store",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PublishPipelineMetadata@0"
]
},
{
"description": "Build, tag, push, or run Docker images, or run a Docker command",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Docker@0"
]
},
{
"description": "Build, tag, push, or run Docker images, or run a Docker command",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Docker@1"
]
},
{
"description": "Build or push Docker images, login or logout, start or stop containers, or run a Docker command",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Docker@2"
]
},
{
"description": "Queue a job on a Jenkins server",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"JenkinsQueueJob@1"
]
},
{
"description": "Queue a job on a Jenkins server",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"JenkinsQueueJob@2"
]
},
{
"description": "Upload files using FTP",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"FtpUpload@2"
]
},
{
"description": "Upload files using FTP",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"FtpUpload@1"
]
},
{
"description": "Copy files to remote Windows machines",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"WindowsMachineFileCopy@1"
]
},
{
"description": "Copy files to remote Windows machines",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"WindowsMachineFileCopy@2"
]
},
{
"description": "[Deprecated] Use Gradle",
"deprecationMessage": "AndroidBuild is deprecated - [Deprecated] Use Gradle",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"AndroidBuild@1"
]
},
{
"description": "Authenticate for uploading Python distributions using twine. Add '-r FeedName/EndpointName --config-file $(PYPIRC_PATH)' to your twine upload command. For feeds present in this organization, use the feed name as the repository (-r). Otherwise, use the endpoint name defined in the service connection.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"TwineAuthenticate@0"
]
},
{
"description": "Authenticate for uploading Python distributions using twine. Add '-r FeedName/EndpointName --config-file $(PYPIRC_PATH)' to your twine upload command. For feeds present in this organization, use the feed name as the repository (-r). Otherwise, use the endpoint name defined in the service connection.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"TwineAuthenticate@1"
]
},
{
"description": "Deploy a website or web application using Web Deploy",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"IISWebAppDeploymentOnMachineGroup@0"
]
},
{
"description": "Run a Python file or inline script",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PythonScript@0"
]
},
{
"description": "Install Helm and Kubernetes on an agent machine",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"HelmInstaller@0"
]
},
{
"description": "Install Helm on an agent machine",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"HelmInstaller@1"
]
},
{
"description": "Install specific Node.js version to run node tasks",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"NodeTaskRunnerInstaller@0"
]
},
{
"description": "[Deprecated] Upgrade to free version of Xamarin: https://store.xamarin.com",
"deprecationMessage": "XamarinLicense is deprecated - [Deprecated] Upgrade to free version of Xamarin: https://store.xamarin.com",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"XamarinLicense@1"
]
},
{
"description": "This version of the task is deprecated, use NuGetAuthenticateV1 instead. Configure NuGet tools to authenticate with Azure Artifacts and other NuGet repositories. Requires NuGet >= 4.8.5385, dotnet >= 2.1.400, or MSBuild >= 15.8.166.59604.",
"deprecationMessage": "NuGetAuthenticate is deprecated - This version of the task is deprecated, use NuGetAuthenticateV1 instead. Configure NuGet tools to authenticate with Azure Artifacts and other NuGet repositories. Requires NuGet >= 4.8.5385, dotnet >= 2.1.400, or MSBuild >= 15.8.166.59604.",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"NuGetAuthenticate@0"
]
},
{
"description": "Configure NuGet tools to authenticate with Azure Artifacts and other NuGet repositories. Requires NuGet >= 4.8.5385, dotnet >= 6, or MSBuild >= 15.8.166.59604",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"NuGetAuthenticate@1"
]
},
{
"description": "Restore your nuget packages using dotnet CLI",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DownloadGitHubNugetPackage@1"
]
},
{
"description": "Provides credentials for Azure Artifacts feeds and external maven repositories",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"MavenAuthenticate@0"
]
},
{
"description": "Use this task under deploy phase provider to create a resource dynamically",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"ReviewApp@0"
]
},
{
"description": "Acquire a specific version of Java from a user-supplied Azure blob or the tool cache and sets JAVA_HOME",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"JavaToolInstaller@0"
]
},
{
"description": "Deploy to Chef environments by editing environment attributes",
"deprecationMessage": "Chef is deprecated - Deploy to Chef environments by editing environment attributes",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"Chef@1"
]
},
{
"description": "Update a function app with .NET, Python, JavaScript, PowerShell, Java based web applications",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureFunctionApp@2"
]
},
{
"description": "Update a function app with .NET, Python, JavaScript, PowerShell, Java based web applications",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureFunctionApp@1"
]
},
{
"description": "Don't use this task if you're also using the npm task. Provides npm credentials to an .npmrc file in your repository for the scope of the build. This enables npm task runners like gulp and Grunt to authenticate with private registries.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"npmAuthenticate@0"
]
},
{
"description": "Build with MSBuild",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"MSBuild@1"
]
},
{
"description": "Build a machine image using Packer, which may be used for Azure Virtual machine scale set deployment",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PackerBuild@0"
]
},
{
"description": "Build a machine image using Packer, which may be used for Azure Virtual machine scale set deployment",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PackerBuild@1"
]
},
{
"description": "Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.",
"deprecationMessage": "NuGetPackager is deprecated - Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"NuGetPackager@0"
]
},
{
"description": "Install a specified version of Duffle for installing and managing CNAB bundles",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DuffleInstaller@0"
]
},
{
"description": "Automatically updates the versions of a packaged Service Fabric application.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"ServiceFabricUpdateAppVersions@1"
]
},
{
"description": "Automatically update portions of application and service manifests in a packaged Azure Service Fabric application",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"ServiceFabricUpdateManifests@2"
]
},
{
"description": "Observe the configured Azure Monitor rules for active alerts",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureMonitor@1"
]
},
{
"description": "Observe the configured classic Azure Monitor rules for active alerts",
"deprecationMessage": "AzureMonitor is deprecated - Observe the configured classic Azure Monitor rules for active alerts",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"AzureMonitor@0"
]
},
{
"description": "Connect or disconnect an Azure virtual machine's network interface to a Load Balancer's back end address pool",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureNLBManagement@1"
]
},
{
"description": "Run an Apache JMeter load test in the cloud",
"deprecationMessage": "ApacheJMeterLoadTest is deprecated - Run an Apache JMeter load test in the cloud",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"ApacheJMeterLoadTest@1"
]
},
{
"description": "Build, push or run multi-container Docker applications. Task can be used with Docker or Azure Container registry.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DockerCompose@0"
]
},
{
"description": "Configure alerts on available metrics for an Azure resource (Deprecated)",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureMonitorAlerts@0"
]
},
{
"description": "[Deprecated] Test mobile apps with Xamarin Test Cloud using Xamarin.UITest. Instead, use the 'App Center test' task.",
"deprecationMessage": "XamarinTestCloud is deprecated - [Deprecated] Test mobile apps with Xamarin Test Cloud using Xamarin.UITest. Instead, use the 'App Center test' task.",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"XamarinTestCloud@1"
]
},
{
"description": "Deploy an Azure Service Fabric application to a cluster",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"ServiceFabricDeploy@1"
]
},
{
"description": "Build, test, or archive an Xcode workspace on macOS. Optionally package an app.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Xcode@5"
]
},
{
"description": "Build an Xcode workspace on macOS",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Xcode@3"
]
},
{
"description": "Build, test, or archive an Xcode workspace on macOS. Optionally package an app.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Xcode@4"
]
},
{
"description": "Build an Xcode workspace on Mac OS",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Xcode@2"
]
},
{
"description": "Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.",
"deprecationMessage": "NuGetPublisher is deprecated - Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"NuGetPublisher@0"
]
},
{
"description": "Execute a work item query and check the number of items returned",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"queryWorkItems@0"
]
},
{
"description": "Deploy containers to Azure App Service",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureWebAppContainer@1"
]
},
{
"description": "Deploy a SQL Server database using DACPAC or SQL scripts",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"SqlDacpacDeploymentOnMachineGroup@0"
]
},
{
"description": "Cache files between runs",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"CacheBeta@1"
]
},
{
"description": "Cache files between runs",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Cache@2"
]
},
{
"description": "Cache files between runs",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"CacheBeta@0"
]
},
{
"description": "Build with the CMake cross-platform build system",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"CMake@1"
]
},
{
"description": "Test mobile app packages with Visual Studio Mobile Center.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"VSMobileCenterTest@0"
]
},
{
"description": "Test app packages with Visual Studio App Center",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AppCenterTest@1"
]
},
{
"description": "Download a secure file to the agent machine",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DownloadSecureFile@1"
]
},
{
"description": "An Azure DevOps Task to build and deploy Azure Container Apps.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureContainerApps@0"
]
},
{
"description": "Use the specified version of Ruby from the tool cache, optionally adding it to the PATH",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"UseRubyVersion@0"
]
},
{
"description": "Run the Grunt JavaScript task runner",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Grunt@0"
]
},
{
"description": "Deploy an Azure SQL Database using DACPAC or run scripts using SQLCMD",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"SqlAzureDacpacDeployment@1"
]
},
{
"description": "Uses container-structure-test (https://github.com/GoogleContainerTools/container-structure-test) to validate the structure of an image based on four categories of tests - command tests, file existence tests, file content tests and metadata tests",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"ContainerStructureTest@0"
]
},
{
"description": "Deploy using MSDeploy, then create/update websites and app pools",
"deprecationMessage": "IISWebAppDeployment is deprecated - Deploy using MSDeploy, then create/update websites and app pools",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"IISWebAppDeployment@1"
]
},
{
"description": "Run a load test in the cloud with Azure Pipelines",
"deprecationMessage": "CloudLoadTest is deprecated - Run a load test in the cloud with Azure Pipelines",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"CloudLoadTest@1"
]
},
{
"description": "Install Kubectl on agent machine",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"KubectlInstaller@0"
]
},
{
"description": "Run a command line with arguments",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"CmdLine@1"
]
},
{
"description": "Run a command line script using Bash on Linux and macOS and cmd.exe on Windows",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"CmdLine@2"
]
},
{
"description": "Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.",
"deprecationMessage": "NuGet is deprecated - Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"NuGet@0"
]
},
{
"description": "Container Build Task",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"ContainerBuild@0"
]
},
{
"description": "Restore, pack, or push NuGet packages, or run a NuGet command. Supports NuGet.org and authenticated feeds like Azure Artifacts and MyGet. Uses NuGet.exe and works with .NET Framework apps. For .NET Core and .NET Standard apps, use the .NET Core task.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"NuGetCommand@2"
]
},
{
"description": "Installs or restores missing NuGet packages. Use NuGetAuthenticate@0 task for latest capabilities.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"NuGetInstaller@0"
]
},
{
"description": "Restores NuGet packages in preparation for a Visual Studio Build step.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"NuGetRestore@1"
]
},
{
"description": "Delay further execution of a workflow by a fixed time",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Delay@1"
]
},
{
"description": "Build an iOS app with Xamarin on macOS",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"XamariniOS@2"
]
},
{
"description": "Build an iOS app with Xamarin on macOS",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"XamariniOS@1"
]
},
{
"description": "Publish test results to Azure Pipelines",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PublishTestResults@1"
]
},
{
"description": "Publish test results to Azure Pipelines",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PublishTestResults@2"
]
},
{
"description": "Copy files to Azure Blob Storage or virtual machines",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureFileCopy@1"
]
},
{
"description": "Copy files to Azure Blob Storage or virtual machines",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureFileCopy@4"
]
},
{
"description": "Copy files to Azure Blob Storage or virtual machines",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureFileCopy@5"
]
},
{
"description": "Copy files to Azure Blob Storage or virtual machines",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureFileCopy@2"
]
},
{
"description": "Copy files to Azure Blob Storage or virtual machines",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureFileCopy@3"
]
},
{
"description": "Index your source code and publish symbols to a file share or Azure Artifacts symbol server",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PublishSymbols@2"
]
},
{
"description": "Index your source code and publish symbols to a file share",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PublishSymbols@1"
]
},
{
"description": "Copy files or build artifacts to a remote machine over SSH",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"CopyFilesOverSSH@0"
]
},
{
"description": "Build using a Gradle wrapper script",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Gradle@2"
]
},
{
"description": "Build using a Gradle wrapper script",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Gradle@3"
]
},
{
"description": "Build using a Gradle wrapper script",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Gradle@1"
]
},
{
"description": "Distribute app builds to testers and users via Visual Studio App Center",
"deprecationMessage": "AppCenterDistribute is deprecated - Distribute app builds to testers and users via Visual Studio App Center",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"AppCenterDistribute@2"
]
},
{
"description": "Distribute app builds to testers and users via Visual Studio App Center",
"deprecationMessage": "AppCenterDistribute is deprecated - Distribute app builds to testers and users via Visual Studio App Center",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"AppCenterDistribute@1"
]
},
{
"description": "Distribute app builds to testers and users via Visual Studio App Center",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AppCenterDistribute@3"
]
},
{
"description": "Distribute app builds to testers and users via App Center",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AppCenterDistribute@0"
]
},
{
"description": "Acquires a specific version of NuGet from the internet or the tools cache and adds it to the PATH. Use this task to change the version of NuGet used in the NuGet tasks.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"NuGetToolInstaller@0"
]
},
{
"description": "Acquires a specific version of NuGet from the internet or the tools cache and adds it to the PATH. Use this task to change the version of NuGet used in the NuGet tasks.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"NuGetToolInstaller@1"
]
},
{
"description": "Download artifacts produced by a Jenkins job",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"JenkinsDownloadArtifacts@1"
]
},
{
"description": "Update a function app with a Docker container",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureFunctionAppContainer@1"
]
},
{
"description": "Acquire a specific version of Java from a user-supplied Azure blob or the tool cache and sets JAVA_HOME",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"JavaToolInstallerTestVuln2@0"
]
},
{
"description": "Decrypt a file using OpenSSL",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DecryptFile@1"
]
},
{
"description": "Deploy, configure, update a Kubernetes cluster in Azure Container Service by running helm commands",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"HelmDeploy@0"
]
},
{
"description": "Install an Apple certificate required to build on a macOS agent machine",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"InstallAppleCertificate@2"
]
},
{
"description": "Install an Apple certificate required to build on a macOS agent",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"InstallAppleCertificate@1"
]
},
{
"description": "Install an Apple certificate required to build on a macOS agent",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"InstallAppleCertificate@0"
]
},
{
"description": "Invoke an Azure Function",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureFunction@1"
]
},
{
"description": "Invoke Azure function as a part of your process.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureFunction@0"
]
},
{
"description": "Downloads a GitHub Release from a repository",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DownloadGitHubRelease@0"
]
},
{
"description": "Run shell commands or a script on a remote machine using SSH",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"SSH@0"
]
},
{
"description": "Publish a local directory or file as a named artifact for the current pipeline",
"deprecationMessage": "PublishPipelineArtifact is deprecated - Publish a local directory or file as a named artifact for the current pipeline",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"PublishPipelineArtifact@0"
]
},
{
"description": "Publish (upload) a file or directory as a named artifact for the current run",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PublishPipelineArtifact@1"
]
},
{
"description": "[DEPRECATED] Fetch the Quality Profile from SonarQube to configure the analysis",
"deprecationMessage": "SonarQubePreBuild is deprecated - [DEPRECATED] Fetch the Quality Profile from SonarQube to configure the analysis",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"SonarQubePreBuild@1"
]
},
{
"description": "Download artifacts from a file share, like \\\\share\\drop",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DownloadFileshareArtifacts@1"
]
},
{
"description": "Deploy, configure, update a Kubernetes cluster in Azure Container Service by running kubectl commands",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Kubernetes@0"
]
},
{
"description": "Deploy, configure, update a Kubernetes cluster in Azure Container Service by running kubectl commands",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Kubernetes@1"
]
},
{
"description": "Build and deploy an Azure IoT Edge image",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureIoTEdge@2"
]
},
{
"description": "Deploy a Docker Compose application to an Azure Service Fabric cluster",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"ServiceFabricComposeDeploy@0"
]
},
{
"description": "Sign and align Android APK files",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AndroidSigning@2"
]
},
{
"description": "Sign and align Android APK files",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AndroidSigning@3"
]
},
{
"description": "Sign and align Android APK files",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AndroidSigning@1"
]
},
{
"description": "Download a named artifact from a pipeline to a local path",
"deprecationMessage": "DownloadPipelineArtifact is deprecated - Download a named artifact from a pipeline to a local path",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"DownloadPipelineArtifact@1"
]
},
{
"description": "Downloads an artifact associated with a pipeline",
"deprecationMessage": "DownloadPipelineArtifact is deprecated - Downloads an artifact associated with a pipeline",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"DownloadPipelineArtifact@0"
]
},
{
"description": "Download build and pipeline artifacts",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DownloadPipelineArtifact@2"
]
},
{
"description": "Use the specified version of Python from the tool cache, optionally adding it to the PATH",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"UsePythonVersion@0"
]
},
{
"description": "Run a PowerShell script in the context of an Azure Service Fabric cluster connection",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"ServiceFabricPowerShell@1"
]
},
{
"description": "Run tests with Visual Studio test runner",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"VSTest@1"
]
},
{
"description": "Run unit and functional tests (Selenium, Appium, Coded UI test, etc.) using the Visual Studio Test (VsTest) runner. Test frameworks that have a Visual Studio test adapter such as MsTest, xUnit, NUnit, Chutzpah (for JavaScript tests using QUnit, Mocha and Jasmine), etc. can be run. Tests can be distributed on multiple agents using this task (version 2).",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"VSTest@2"
]
},
{
"description": "[PREVIEW] Pause a pipeline run to wait for manual interaction. Works only with YAML pipelines.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"ManualValidation@0"
]
},
{
"description": "Build with Apache Ant",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Ant@1"
]
},
{
"description": "Deprecated: Instead, use the 'Visual Studio Test' task to run unit and functional tests",
"deprecationMessage": "DeployVisualStudioTestAgent is deprecated - Deprecated: Instead, use the 'Visual Studio Test' task to run unit and functional tests",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"DeployVisualStudioTestAgent@2"
]
},
{
"description": "Deploy and configure Test Agent to run tests on a set of machines",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DeployVisualStudioTestAgent@1"
]
},
{
"description": "Create and activate a Conda environment",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"CondaEnvironment@0"
]
},
{
"description": "This task is deprecated. Use `conda` directly in script to work with Anaconda environments.",
"deprecationMessage": "CondaEnvironment is deprecated - This task is deprecated. Use `conda` directly in script to work with Anaconda environments.",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"CondaEnvironment@1"
]
},
{
"description": "Run a Windows command or batch script and optionally allow it to change the environment",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"BatchScript@1"
]
},
{
"description": "Install npm packages from GitHub.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DownloadGithubNpmPackage@1"
]
},
{
"description": "Build with MSBuild and set the Visual Studio version property",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"VSBuild@1"
]
},
{
"description": "Download Azure Key Vault secrets",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureKeyVault@2"
]
},
{
"description": "Download Azure Key Vault secrets",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureKeyVault@1"
]
},
{
"description": "Acquires a specific version of the .NET Core SDK from the internet or the local cache and adds it to the PATH. Use this task to change the version of .NET Core used in subsequent tasks. Additionally provides proxy support.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"UseDotNet@2"
]
},
{
"description": "Acquire a specific version of the .NET Core SDK from the internet or local cache and add it to the PATH",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DotNetCoreInstaller@0"
]
},
{
"description": "Acquire a specific version of the .NET Core SDK from the internet or local cache and add it to the PATH",
"deprecationMessage": "DotNetCoreInstaller is deprecated - Acquire a specific version of the .NET Core SDK from the internet or local cache and add it to the PATH",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"DotNetCoreInstaller@1"
]
},
{
"description": "Start, stop, restart, slot swap, slot delete, install site extensions or enable continuous monitoring for an Azure App Service",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureAppServiceManage@0"
]
},
{
"description": "Install Azure Func Core Tools",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"FuncToolsInstaller@0"
]
},
{
"description": "Replace tokens with variable values in XML or JSON configuration files",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"FileTransform@2"
]
},
{
"description": "Replace tokens with variable values in XML or JSON configuration files",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"FileTransform@1"
]
},
{
"description": "Extract a variety of archive and compression files such as .7z, .rar, .tar.gz, and .zip",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"ExtractFiles@1"
]
},
{
"description": "Build an Android app with Xamarin",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"XamarinAndroid@1"
]
},
{
"description": "[DEPRECATED] Use the Copy Files task and the Publish Build Artifacts task instead",
"deprecationMessage": "CopyPublishBuildArtifacts is deprecated - [DEPRECATED] Use the Copy Files task and the Publish Build Artifacts task instead",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"CopyPublishBuildArtifacts@1"
]
},
{
"description": "Download a package from a package management feed in Azure Artifacts",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DownloadPackage@0"
]
},
{
"description": "Download a package from a package management feed in Azure Artifacts",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DownloadPackage@1"
]
},
{
"description": "Deploy an Azure Resource Manager (ARM) template to all the deployment scopes",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureResourceManagerTemplateDeployment@3"
]
},
{
"description": "Deploy, start, stop, delete Azure Resource Groups",
"deprecationMessage": "AzureResourceGroupDeployment is deprecated - Deploy, start, stop, delete Azure Resource Groups",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"AzureResourceGroupDeployment@1"
]
},
{
"description": "Deploy an Azure Resource Manager (ARM) template to a resource group and manage virtual machines",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureResourceGroupDeployment@2"
]
},
{
"description": "Invoke REST API as a part of your process.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"InvokeRESTAPI@0"
]
},
{
"description": "Invoke a REST API as a part of your pipeline.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"InvokeRESTAPI@1"
]
},
{
"description": "Archive files using compression formats such as .7z, .rar, .tar.gz, and .zip.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"ArchiveFiles@1"
]
},
{
"description": "Compress files into .7z, .tar.gz, or .zip",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"ArchiveFiles@2"
]
},
{
"description": "Write a comment to your Github entity i.e. issue or a Pull Request (PR)",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"GitHubComment@0"
]
},
{
"description": "Copy files from source folder to target folder using minimatch patterns (The minimatch patterns will only match file paths, not folder paths)",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"CopyFiles@1"
]
},
{
"description": "Copy files from a source folder to a target folder using patterns matching file paths (not folder paths)",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"CopyFiles@2"
]
},
{
"description": "Run your scripts and make changes to your Azure Database for MySQL",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureMysqlDeployment@1"
]
},
{
"description": "Run an npm command. Use NpmAuthenticate@0 task for latest capabilities.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Npm@0"
]
},
{
"description": "Install and publish npm packages, or run an npm command. Supports npmjs.com and authenticated registries like Azure Artifacts.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Npm@1"
]
},
{
"description": "[PREVIEW] Build and deploy an Azure Static Web App",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureStaticWebApp@0"
]
},
{
"description": "Finds or downloads and caches the specified version spec of Node.js and adds it to the PATH",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"NodeTool@0"
]
},
{
"description": "Set up a Node.js environment and add it to the PATH, additionally providing proxy support",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"UseNode@1"
]
},
{
"description": "Deploy a SQL Server database using DACPAC",
"deprecationMessage": "SqlServerDacpacDeployment is deprecated - Deploy a SQL Server database using DACPAC",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"SqlServerDacpacDeployment@1"
]
},
{
"description": "Acquire the test platform from nuget.org or the tool cache. Satisfies the ‘vstest’ demand and can be used for running tests and collecting diagnostic data using the Visual Studio Test task.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"VisualStudioTestPlatformInstaller@1"
]
},
{
"description": "Sends a message to Azure Service Bus using a service connection (no agent is required)",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PublishToAzureServiceBus@1"
]
},
{
"description": "Sends a message to azure service bus using a service connection (no agent required).",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PublishToAzureServiceBus@0"
]
},
{
"description": "Use Kubernetes manifest files to deploy to clusters or even bake the manifest files to be used for deployments using Helm charts",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"KubernetesManifest@0"
]
},
{
"description": "Use Kubernetes manifest files to deploy to clusters or even bake the manifest files to be used for deployments using Helm charts",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"KubernetesManifest@1"
]
},
{
"description": "Download files that were saved as artifacts of a completed build",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DownloadBuildArtifacts@0"
]
},
{
"description": "Download files that were saved as artifacts of a completed build",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DownloadBuildArtifacts@1"
]
},
{
"description": "Install CocoaPods dependencies for Swift and Objective-C Cocoa projects",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"CocoaPods@0"
]
},
{
"description": "Deploy applications to Azure Spring Cloud and manage deployments.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureSpringCloud@0"
]
},
{
"description": "Deploy an Azure Web App for Linux or Windows",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureWebApp@1"
]
},
{
"description": "Run Azure CLI commands against an Azure subscription in a Shell script when running on Linux agent or Batch script when running on Windows agent.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureCLI@1"
]
},
{
"description": "Run a Shell or Batch script with Azure CLI commands against an azure subscription",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureCLI@0"
]
},
{
"description": "Run Azure CLI commands against an Azure subscription in a PowerShell Core/Shell script when running on Linux agent or PowerShell/PowerShell Core/Batch script when running on Windows agent.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureCLI@2"
]
},
{
"description": "Create, edit, or delete a GitHub release",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"GitHubRelease@1"
]
},
{
"description": "Create, edit, or delete a GitHub release",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"GitHubRelease@0"
]
},
{
"description": "Use cURL to upload files with FTP, FTPS, SFTP, HTTP, and more.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"cURLUploader@1"
]
},
{
"description": "Use cURL's supported protocols to upload files",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"cURLUploader@2"
]
},
{
"description": "Update/Add App settings an Azure Web App for Linux or Windows",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureAppServiceSettings@1"
]
},
{
"description": "Download or publish Universal Packages",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"UniversalPackages@0"
]
},
{
"description": "Security and compliance assessment for Azure Policy",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzurePolicyCheckGate@0"
]
},
{
"description": "Deploy Azure function to Kubernetes cluster.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureFunctionOnKubernetes@0"
]
},
{
"description": "Deploy Azure function to Kubernetes cluster.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureFunctionOnKubernetes@1"
]
},
{
"description": "Run a Bash script on macOS, Linux, or Windows",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"Bash@3"
]
},
{
"description": "Run a shell script using Bash",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"ShellScript@2"
]
},
{
"description": "Publish build artifacts to Azure Pipelines or a Windows file share",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"PublishBuildArtifacts@1"
]
},
{
"description": "Install an SSH key prior to a build or deployment",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"InstallSSHKey@0"
]
},
{
"description": "Deploy a virtual machine scale set image",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureVmssDeployment@0"
]
},
{
"description": "Create or update Azure App Service using Azure PowerShell",
"deprecationMessage": "AzureWebPowerShellDeployment is deprecated - Create or update Azure App Service using Azure PowerShell",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"AzureWebPowerShellDeployment@1"
]
},
{
"description": "Deploy an Azure Cloud Service",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"AzureCloudPowerShellDeployment@1"
]
},
{
"description": "Authentication task for the cargo client used for installing Cargo crates distribution",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"CargoAuthenticate@0"
]
},
{
"description": "Delete folders, or files matching a pattern",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DeleteFiles@1"
]
},
{
"description": "Run the gulp Node.js streaming task-based build system",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"gulp@0"
]
},
{
"description": "Run the gulp Node.js streaming task-based build system",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"gulp@1"
]
},
{
"description": "Run a quick web performance test in the cloud with Azure Pipelines",
"deprecationMessage": "QuickPerfTest is deprecated - Run a quick web performance test in the cloud with Azure Pipelines",
"doNotSuggest": true,
"ignoreCase": "value",
"enum": [
"QuickPerfTest@1"
]
},
{
"description": "Create or update websites, web apps, virtual directories, or application pools",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"IISWebAppManagementOnMachineGroup@0"
]
},
{
"description": "Install Docker CLI on agent machine.",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"DockerInstaller@0"
]
}
]
},
"displayName": {
"type": "string",
"description": "Human-readable name for the task"
},
"name": {
"type": "string",
"description": "ID of the task instance",
"pattern": "^[_A-Za-z0-9]*$"
},
"condition": {
"type": "string",
"description": "Evaluate this condition expression to determine whether to run this task"
},
"continueOnError": {
"type": "boolean",
"description": "Continue running the parent job even on failure?"
},
"enabled": {
"type": "string",
"description": "Run this task when the job runs?"
},
"retryCountOnTaskFailure": {
"type": "integer",
"description": "Number of retries if the task fails"
},
"timeoutInMinutes": {
"type": "integer",
"description": "Time to wait for this task to complete before the server kills it"
},
"inputs": {
"type": "object",
"description": "Task-specific inputs"
},
"env": {
"type": "object",
"description": "Variables to map into the process's environment"
}
},
"additionalProperties": false,
"firstProperty": [
"task"
],
"anyOf": [
{
"properties": {
"task": {
"description": "PowerShell\n\nRun a PowerShell script",
"ignoreCase": "value",
"pattern": "^PowerShell@1$"
},
"inputs": {
"description": "PowerShell inputs",
"properties": {
"scriptType": {
"description": "Type",
"ignoreCase": "all",
"enum": [
"inlineScript",
"filePath"
]
},
"scriptName": {
"type": "string",
"description": "Script Path",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"workingFolder": {
"type": "string",
"description": "Working folder",
"ignoreCase": "key"
},
"inlineScript": {
"type": "string",
"description": "Inline Script",
"ignoreCase": "key"
},
"failOnStandardError": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "PowerShell\n\nRun a PowerShell script on Linux, macOS, or Windows",
"ignoreCase": "value",
"pattern": "^PowerShell@2$"
},
"inputs": {
"description": "PowerShell inputs",
"properties": {
"targetType": {
"description": "Type",
"ignoreCase": "all",
"enum": [
"filePath",
"inline"
]
},
"filePath": {
"type": "string",
"description": "Script Path",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"script": {
"type": "string",
"description": "Script",
"ignoreCase": "key"
},
"errorActionPreference": {
"description": "ErrorActionPreference",
"ignoreCase": "all",
"enum": [
"default",
"stop",
"continue",
"silentlyContinue"
]
},
"warningPreference": {
"description": "WarningPreference",
"ignoreCase": "all",
"enum": [
"default",
"stop",
"continue",
"silentlyContinue"
]
},
"informationPreference": {
"description": "InformationPreference",
"ignoreCase": "all",
"enum": [
"default",
"stop",
"continue",
"silentlyContinue"
]
},
"verbosePreference": {
"description": "VerbosePreference",
"ignoreCase": "all",
"enum": [
"default",
"stop",
"continue",
"silentlyContinue"
]
},
"debugPreference": {
"description": "DebugPreference",
"ignoreCase": "all",
"enum": [
"default",
"stop",
"continue",
"silentlyContinue"
]
},
"progressPreference": {
"description": "ProgressPreference",
"ignoreCase": "all",
"enum": [
"default",
"stop",
"continue",
"silentlyContinue"
]
},
"failOnStderr": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
},
"showWarnings": {
"type": "boolean",
"description": "Show warnings as Azure DevOps warnings",
"ignoreCase": "key"
},
"ignoreLASTEXITCODE": {
"type": "boolean",
"description": "Ignore $LASTEXITCODE",
"ignoreCase": "key"
},
"pwsh": {
"type": "boolean",
"description": "Use PowerShell Core",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key"
},
"runScriptInSeparateScope": {
"type": "boolean",
"description": "Run script in the separate scope",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Azure PowerShell\n\nRun a PowerShell script within an Azure environment",
"ignoreCase": "value",
"pattern": "^AzurePowerShell@4$"
},
"inputs": {
"description": "Azure PowerShell inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceNameARM"
]
},
"ScriptType": {
"description": "Script Type",
"ignoreCase": "all",
"enum": [
"FilePath",
"InlineScript"
]
},
"ScriptPath": {
"type": "string",
"description": "Script Path",
"ignoreCase": "key"
},
"Inline": {
"type": "string",
"description": "Inline Script",
"ignoreCase": "key"
},
"ScriptArguments": {
"type": "string",
"description": "Script Arguments",
"ignoreCase": "key"
},
"errorActionPreference": {
"description": "ErrorActionPreference",
"ignoreCase": "all",
"enum": [
"stop",
"continue",
"silentlyContinue"
]
},
"FailOnStandardError": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
},
"RestrictContextToCurrentTask": {
"type": "boolean",
"description": "Restrict scope of context to current task",
"ignoreCase": "key"
},
"azurePowerShellVersion": {
"description": "Azure PowerShell Version",
"ignoreCase": "all",
"enum": [
"LatestVersion",
"OtherVersion"
],
"aliases": [
"TargetAzurePs"
]
},
"preferredAzurePowerShellVersion": {
"type": "string",
"description": "Preferred Azure PowerShell Version",
"ignoreCase": "key",
"aliases": [
"CustomTargetAzurePs"
]
},
"pwsh": {
"type": "boolean",
"description": "Use PowerShell Core",
"ignoreCase": "key"
},
"validateScriptSignature": {
"type": "boolean",
"description": "Validate script signature",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure PowerShell\n\nRun a PowerShell script within an Azure environment",
"ignoreCase": "value",
"pattern": "^AzurePowerShell@2$"
},
"inputs": {
"description": "Azure PowerShell inputs",
"properties": {
"azureConnectionType": {
"description": "Azure Connection Type",
"ignoreCase": "all",
"enum": [
"ConnectedServiceName",
"ConnectedServiceNameARM"
],
"aliases": [
"ConnectedServiceNameSelector"
]
},
"azureClassicSubscription": {
"type": "string",
"description": "Azure Classic Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"azureSubscription": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceNameARM"
]
},
"ScriptType": {
"description": "Script Type",
"ignoreCase": "all",
"enum": [
"FilePath",
"InlineScript"
]
},
"ScriptPath": {
"type": "string",
"description": "Script Path",
"ignoreCase": "key"
},
"Inline": {
"type": "string",
"description": "Inline Script",
"ignoreCase": "key"
},
"ScriptArguments": {
"type": "string",
"description": "Script Arguments",
"ignoreCase": "key"
},
"azurePowerShellVersion": {
"description": "Azure PowerShell Version",
"ignoreCase": "all",
"enum": [
"LatestVersion",
"OtherVersion"
],
"aliases": [
"TargetAzurePs"
]
},
"preferredAzurePowerShellVersion": {
"type": "string",
"description": "Preferred Azure PowerShell Version",
"ignoreCase": "key",
"aliases": [
"CustomTargetAzurePs"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Azure PowerShell\n\nRun a PowerShell script within an Azure environment",
"ignoreCase": "value",
"pattern": "^AzurePowerShell@5$"
},
"inputs": {
"description": "Azure PowerShell inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceNameARM"
]
},
"ScriptType": {
"description": "Script Type",
"ignoreCase": "all",
"enum": [
"FilePath",
"InlineScript"
]
},
"ScriptPath": {
"type": "string",
"description": "Script Path",
"ignoreCase": "key"
},
"Inline": {
"type": "string",
"description": "Inline Script",
"ignoreCase": "key"
},
"ScriptArguments": {
"type": "string",
"description": "Script Arguments",
"ignoreCase": "key"
},
"errorActionPreference": {
"description": "ErrorActionPreference",
"ignoreCase": "all",
"enum": [
"stop",
"continue",
"silentlyContinue"
]
},
"FailOnStandardError": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
},
"azurePowerShellVersion": {
"description": "Azure PowerShell Version",
"ignoreCase": "all",
"enum": [
"LatestVersion",
"OtherVersion"
],
"aliases": [
"TargetAzurePs"
]
},
"preferredAzurePowerShellVersion": {
"type": "string",
"description": "Preferred Azure PowerShell Version",
"ignoreCase": "key",
"aliases": [
"CustomTargetAzurePs"
]
},
"pwsh": {
"type": "boolean",
"description": "Use PowerShell Core",
"ignoreCase": "key"
},
"validateScriptSignature": {
"type": "boolean",
"description": "Validate script signature",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure PowerShell\n\nRun a PowerShell script within an Azure environment",
"ignoreCase": "value",
"pattern": "^AzurePowerShell@3$"
},
"inputs": {
"description": "Azure PowerShell inputs",
"properties": {
"azureConnectionType": {
"description": "Azure Connection Type",
"ignoreCase": "all",
"enum": [
"ConnectedServiceName",
"ConnectedServiceNameARM"
],
"aliases": [
"ConnectedServiceNameSelector"
]
},
"azureClassicSubscription": {
"type": "string",
"description": "Azure Classic Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"azureSubscription": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceNameARM"
]
},
"ScriptType": {
"description": "Script Type",
"ignoreCase": "all",
"enum": [
"FilePath",
"InlineScript"
]
},
"ScriptPath": {
"type": "string",
"description": "Script Path",
"ignoreCase": "key"
},
"Inline": {
"type": "string",
"description": "Inline Script",
"ignoreCase": "key"
},
"ScriptArguments": {
"type": "string",
"description": "Script Arguments",
"ignoreCase": "key"
},
"errorActionPreference": {
"description": "ErrorActionPreference",
"ignoreCase": "all",
"enum": [
"stop",
"continue",
"silentlyContinue"
]
},
"FailOnStandardError": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
},
"azurePowerShellVersion": {
"description": "Azure PowerShell Version",
"ignoreCase": "all",
"enum": [
"LatestVersion",
"OtherVersion"
],
"aliases": [
"TargetAzurePs"
]
},
"preferredAzurePowerShellVersion": {
"type": "string",
"description": "Preferred Azure PowerShell Version",
"ignoreCase": "key",
"aliases": [
"CustomTargetAzurePs"
]
},
"validateScriptSignature": {
"type": "boolean",
"description": "Validate script signature",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Azure PowerShell\n\nRun a PowerShell script within an Azure environment",
"ignoreCase": "value",
"pattern": "^AzurePowerShell@1$"
},
"inputs": {
"description": "Azure PowerShell inputs",
"properties": {
"ConnectedServiceNameSelector": {
"description": "Azure Connection Type",
"ignoreCase": "all",
"enum": [
"ConnectedServiceName",
"ConnectedServiceNameARM"
]
},
"ConnectedServiceName": {
"type": "string",
"description": "Azure Classic Subscription",
"ignoreCase": "key"
},
"ConnectedServiceNameARM": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key"
},
"ScriptType": {
"description": "Script Type",
"ignoreCase": "all",
"enum": [
"FilePath",
"InlineScript"
]
},
"ScriptPath": {
"type": "string",
"description": "Script Path",
"ignoreCase": "key"
},
"Inline": {
"type": "string",
"description": "Inline Script",
"ignoreCase": "key"
},
"ScriptArguments": {
"type": "string",
"description": "Script Arguments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "MySQL database deploy\n\nRun scripts and make changes to a MySQL Database",
"ignoreCase": "value",
"pattern": "^MysqlDeploymentOnMachineGroup@1$"
},
"inputs": {
"description": "MySQL database deploy inputs",
"properties": {
"TaskNameSelector": {
"description": "Deploy MySql Using",
"ignoreCase": "all",
"enum": [
"SqlTaskFile",
"InlineSqlTask"
]
},
"SqlFile": {
"type": "string",
"description": "MySQL Script",
"ignoreCase": "key"
},
"SqlInline": {
"type": "string",
"description": "Inline MySQL Script",
"ignoreCase": "key"
},
"ServerName": {
"type": "string",
"description": "Host Name",
"ignoreCase": "key"
},
"DatabaseName": {
"type": "string",
"description": "Database Name",
"ignoreCase": "key"
},
"SqlUsername": {
"type": "string",
"description": "Mysql User Name",
"ignoreCase": "key"
},
"SqlPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"SqlAdditionalArguments": {
"type": "string",
"description": "Additional Arguments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"SqlUsername",
"SqlPassword"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Python pip authenticate\n\nAuthentication task for the pip client used for installing Python distributions",
"ignoreCase": "value",
"pattern": "^PipAuthenticate@1$"
},
"inputs": {
"description": "Python pip authenticate inputs",
"properties": {
"artifactFeeds": {
"type": "string",
"description": "My feeds (select below)",
"ignoreCase": "key",
"aliases": [
"artifactFeeds"
]
},
"pythonDownloadServiceConnections": {
"type": "string",
"description": "Feeds from external organizations",
"ignoreCase": "key",
"aliases": [
"pythonDownloadServiceConnections"
]
},
"onlyAddExtraIndex": {
"type": "boolean",
"description": "Don't set primary index URL",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Python pip authenticate\n\nAuthentication task for the pip client used for installing Python distributions",
"ignoreCase": "value",
"pattern": "^PipAuthenticate@0$"
},
"inputs": {
"description": "Python pip authenticate inputs",
"properties": {
"artifactFeeds": {
"type": "string",
"description": "My feeds (select below)",
"ignoreCase": "key",
"aliases": [
"feedList"
]
},
"externalFeeds": {
"type": "string",
"description": "Feeds from external organizations",
"ignoreCase": "key",
"aliases": [
"externalSources"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Maven\n\nBuild, test, and deploy with Apache Maven",
"ignoreCase": "value",
"pattern": "^Maven@4$"
},
"inputs": {
"description": "Maven inputs",
"properties": {
"mavenPomFile": {
"type": "string",
"description": "Maven POM file",
"ignoreCase": "key",
"aliases": [
"mavenPOMFile"
]
},
"goals": {
"type": "string",
"description": "Goal(s)",
"ignoreCase": "key"
},
"options": {
"type": "string",
"description": "Options",
"ignoreCase": "key"
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish to Azure Pipelines",
"ignoreCase": "key"
},
"testResultsFiles": {
"type": "string",
"description": "Test results files",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test run title",
"ignoreCase": "key"
},
"allowBrokenSymlinks": {
"type": "boolean",
"description": "Allow broken symbolic links",
"ignoreCase": "key",
"aliases": [
"allowBrokenSymbolicLinks"
]
},
"codeCoverageToolOption": {
"description": "Code coverage tool",
"ignoreCase": "all",
"enum": [
"None",
"Cobertura",
"JaCoCo"
],
"aliases": [
"codeCoverageTool"
]
},
"codeCoverageClassFilter": {
"type": "string",
"description": "Class inclusion/exclusion filters",
"ignoreCase": "key",
"aliases": [
"classFilter"
]
},
"codeCoverageClassFilesDirectories": {
"type": "string",
"description": "Class files directories",
"ignoreCase": "key",
"aliases": [
"classFilesDirectories"
]
},
"codeCoverageSourceDirectories": {
"type": "string",
"description": "Source files directories",
"ignoreCase": "key",
"aliases": [
"srcDirectories"
]
},
"codeCoverageFailIfEmpty": {
"type": "boolean",
"description": "Fail when code coverage results are missing",
"ignoreCase": "key",
"aliases": [
"failIfCoverageEmpty"
]
},
"codeCoverageRestoreOriginalPomXml": {
"type": "boolean",
"description": "Restore original pom.xml after task execution",
"ignoreCase": "key",
"aliases": [
"restoreOriginalPomXml"
]
},
"javaHomeOption": {
"description": "Set JAVA_HOME by",
"ignoreCase": "all",
"enum": [
"JDKVersion",
"Path"
],
"aliases": [
"javaHomeSelection"
]
},
"jdkVersionOption": {
"description": "JDK version",
"ignoreCase": "all",
"enum": [
"default",
"1.17",
"1.11",
"1.10",
"1.9",
"1.8",
"1.7",
"1.6"
],
"aliases": [
"jdkVersion"
]
},
"jdkDirectory": {
"type": "string",
"description": "JDK path",
"ignoreCase": "key",
"aliases": [
"jdkUserInputPath"
]
},
"jdkArchitectureOption": {
"description": "JDK architecture",
"ignoreCase": "all",
"enum": [
"x86",
"x64"
],
"aliases": [
"jdkArchitecture"
]
},
"mavenVersionOption": {
"description": "Maven version",
"ignoreCase": "all",
"enum": [
"Default",
"Path"
],
"aliases": [
"mavenVersionSelection"
]
},
"mavenDirectory": {
"type": "string",
"description": "Maven path",
"ignoreCase": "key",
"aliases": [
"mavenPath"
]
},
"mavenSetM2Home": {
"type": "boolean",
"description": "Set M2_HOME variable",
"ignoreCase": "key"
},
"mavenOptions": {
"type": "string",
"description": "Set MAVEN_OPTS to",
"ignoreCase": "key",
"aliases": [
"mavenOpts"
]
},
"mavenAuthenticateFeed": {
"type": "boolean",
"description": "Authenticate built-in Maven feeds",
"ignoreCase": "key",
"aliases": [
"mavenFeedAuthenticate"
]
},
"effectivePomSkip": {
"type": "boolean",
"description": "Skip generating effective POM while authenticating built-in feeds",
"ignoreCase": "key",
"aliases": [
"skipEffectivePom"
]
},
"sonarQubeRunAnalysis": {
"type": "boolean",
"description": "Run SonarQube or SonarCloud analysis",
"ignoreCase": "key",
"aliases": [
"sqAnalysisEnabled"
]
},
"isJacocoCoverageReportXML": {
"type": "boolean",
"description": "Use XML Jacoco reports for SonarQube analysis",
"ignoreCase": "key"
},
"sqMavenPluginVersionChoice": {
"description": "SonarQube scanner for Maven version",
"ignoreCase": "all",
"enum": [
"latest",
"pom"
]
},
"checkStyleRunAnalysis": {
"type": "boolean",
"description": "Run Checkstyle",
"ignoreCase": "key",
"aliases": [
"checkstyleAnalysisEnabled"
]
},
"pmdRunAnalysis": {
"type": "boolean",
"description": "Run PMD",
"ignoreCase": "key",
"aliases": [
"pmdAnalysisEnabled"
]
},
"findBugsRunAnalysis": {
"type": "boolean",
"description": "Run FindBugs",
"ignoreCase": "key",
"aliases": [
"findbugsAnalysisEnabled"
]
},
"spotBugsRunAnalysis": {
"type": "boolean",
"description": "Run SpotBugs analysis",
"ignoreCase": "key",
"aliases": [
"spotBugsAnalysisEnabled"
]
},
"spotBugsVersion": {
"type": "string",
"description": "Version number",
"ignoreCase": "key",
"aliases": [
"spotBugsMavenPluginVersion"
]
},
"spotBugsGoal": {
"description": "The goal for the spotbugs plugin",
"ignoreCase": "all",
"enum": [
"spotbugs",
"check"
]
},
"failWhenBugsFound": {
"type": "boolean",
"description": "Fail when bugs are found with spotbugs:check",
"ignoreCase": "key",
"aliases": [
"spotBugsFailWhenBugsFound",
"sbFailWhenBugsFound"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Maven\n\nBuild, test, and deploy with Apache Maven",
"ignoreCase": "value",
"pattern": "^Maven@3$"
},
"inputs": {
"description": "Maven inputs",
"properties": {
"mavenPomFile": {
"type": "string",
"description": "Maven POM file",
"ignoreCase": "key",
"aliases": [
"mavenPOMFile"
]
},
"goals": {
"type": "string",
"description": "Goal(s)",
"ignoreCase": "key"
},
"options": {
"type": "string",
"description": "Options",
"ignoreCase": "key"
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish to Azure Pipelines",
"ignoreCase": "key"
},
"testResultsFiles": {
"type": "string",
"description": "Test results files",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test run title",
"ignoreCase": "key"
},
"allowBrokenSymlinks": {
"type": "boolean",
"description": "Allow broken symbolic links",
"ignoreCase": "key",
"aliases": [
"allowBrokenSymbolicLinks"
]
},
"codeCoverageToolOption": {
"description": "Code coverage tool",
"ignoreCase": "all",
"enum": [
"None",
"Cobertura",
"JaCoCo"
],
"aliases": [
"codeCoverageTool"
]
},
"codeCoverageClassFilter": {
"type": "string",
"description": "Class inclusion/exclusion filters",
"ignoreCase": "key",
"aliases": [
"classFilter"
]
},
"codeCoverageClassFilesDirectories": {
"type": "string",
"description": "Class files directories",
"ignoreCase": "key",
"aliases": [
"classFilesDirectories"
]
},
"codeCoverageSourceDirectories": {
"type": "string",
"description": "Source files directories",
"ignoreCase": "key",
"aliases": [
"srcDirectories"
]
},
"codeCoverageFailIfEmpty": {
"type": "boolean",
"description": "Fail when code coverage results are missing",
"ignoreCase": "key",
"aliases": [
"failIfCoverageEmpty"
]
},
"codeCoverageRestoreOriginalPomXml": {
"type": "boolean",
"description": "Restore original pom.xml after task execution",
"ignoreCase": "key",
"aliases": [
"restoreOriginalPomXml"
]
},
"javaHomeOption": {
"description": "Set JAVA_HOME by",
"ignoreCase": "all",
"enum": [
"JDKVersion",
"Path"
],
"aliases": [
"javaHomeSelection"
]
},
"jdkVersionOption": {
"description": "JDK version",
"ignoreCase": "all",
"enum": [
"default",
"1.17",
"1.11",
"1.10",
"1.9",
"1.8",
"1.7",
"1.6"
],
"aliases": [
"jdkVersion"
]
},
"jdkDirectory": {
"type": "string",
"description": "JDK path",
"ignoreCase": "key",
"aliases": [
"jdkUserInputPath"
]
},
"jdkArchitectureOption": {
"description": "JDK architecture",
"ignoreCase": "all",
"enum": [
"x86",
"x64"
],
"aliases": [
"jdkArchitecture"
]
},
"mavenVersionOption": {
"description": "Maven version",
"ignoreCase": "all",
"enum": [
"Default",
"Path"
],
"aliases": [
"mavenVersionSelection"
]
},
"mavenDirectory": {
"type": "string",
"description": "Maven path",
"ignoreCase": "key",
"aliases": [
"mavenPath"
]
},
"mavenSetM2Home": {
"type": "boolean",
"description": "Set M2_HOME variable",
"ignoreCase": "key"
},
"mavenOptions": {
"type": "string",
"description": "Set MAVEN_OPTS to",
"ignoreCase": "key",
"aliases": [
"mavenOpts"
]
},
"mavenAuthenticateFeed": {
"type": "boolean",
"description": "Authenticate built-in Maven feeds",
"ignoreCase": "key",
"aliases": [
"mavenFeedAuthenticate"
]
},
"effectivePomSkip": {
"type": "boolean",
"description": "Skip generating effective POM while authenticating built-in feeds",
"ignoreCase": "key",
"aliases": [
"skipEffectivePom"
]
},
"sonarQubeRunAnalysis": {
"type": "boolean",
"description": "Run SonarQube or SonarCloud analysis",
"ignoreCase": "key",
"aliases": [
"sqAnalysisEnabled"
]
},
"isJacocoCoverageReportXML": {
"type": "boolean",
"description": "Use XML Jacoco reports for SonarQube analysis",
"ignoreCase": "key"
},
"sqMavenPluginVersionChoice": {
"description": "SonarQube scanner for Maven version",
"ignoreCase": "all",
"enum": [
"latest",
"pom"
]
},
"checkStyleRunAnalysis": {
"type": "boolean",
"description": "Run Checkstyle",
"ignoreCase": "key",
"aliases": [
"checkstyleAnalysisEnabled"
]
},
"pmdRunAnalysis": {
"type": "boolean",
"description": "Run PMD",
"ignoreCase": "key",
"aliases": [
"pmdAnalysisEnabled"
]
},
"findBugsRunAnalysis": {
"type": "boolean",
"description": "Run FindBugs",
"ignoreCase": "key",
"aliases": [
"findbugsAnalysisEnabled"
]
},
"spotBugsRunAnalysis": {
"type": "boolean",
"description": "Run SpotBugs analysis",
"ignoreCase": "key",
"aliases": [
"spotBugsAnalysisEnabled"
]
},
"spotBugsVersion": {
"type": "string",
"description": "Version number",
"ignoreCase": "key",
"aliases": [
"spotBugsMavenPluginVersion"
]
},
"spotBugsGoal": {
"description": "The goal for the spotbugs plugin",
"ignoreCase": "all",
"enum": [
"spotbugs",
"check"
]
},
"failWhenBugsFound": {
"type": "boolean",
"description": "Fail when bugs are found with spotbugs:check",
"ignoreCase": "key",
"aliases": [
"spotBugsFailWhenBugsFound",
"sbFailWhenBugsFound"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Maven\n\nBuild, test, and deploy with Apache Maven",
"ignoreCase": "value",
"pattern": "^Maven@2$"
},
"inputs": {
"description": "Maven inputs",
"properties": {
"mavenPomFile": {
"type": "string",
"description": "Maven POM file",
"ignoreCase": "key",
"aliases": [
"mavenPOMFile"
]
},
"goals": {
"type": "string",
"description": "Goal(s)",
"ignoreCase": "key"
},
"options": {
"type": "string",
"description": "Options",
"ignoreCase": "key"
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish to Azure Pipelines",
"ignoreCase": "key"
},
"testResultsFiles": {
"type": "string",
"description": "Test results files",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test run title",
"ignoreCase": "key"
},
"allowBrokenSymlinks": {
"type": "boolean",
"description": "Allow broken symbolic links",
"ignoreCase": "key",
"aliases": [
"allowBrokenSymbolicLinks"
]
},
"codeCoverageToolOption": {
"description": "Code coverage tool",
"ignoreCase": "all",
"enum": [
"None",
"Cobertura",
"JaCoCo"
],
"aliases": [
"codeCoverageTool"
]
},
"codeCoverageClassFilter": {
"type": "string",
"description": "Class inclusion/exclusion filters",
"ignoreCase": "key",
"aliases": [
"classFilter"
]
},
"codeCoverageClassFilesDirectories": {
"type": "string",
"description": "Class files directories",
"ignoreCase": "key",
"aliases": [
"classFilesDirectories"
]
},
"codeCoverageSourceDirectories": {
"type": "string",
"description": "Source files directories",
"ignoreCase": "key",
"aliases": [
"srcDirectories"
]
},
"codeCoverageFailIfEmpty": {
"type": "boolean",
"description": "Fail when code coverage results are missing",
"ignoreCase": "key",
"aliases": [
"failIfCoverageEmpty"
]
},
"codeCoverageRestoreOriginalPomXml": {
"type": "boolean",
"description": "Restore original pom.xml after task execution",
"ignoreCase": "key",
"aliases": [
"restoreOriginalPomXml"
]
},
"javaHomeOption": {
"description": "Set JAVA_HOME by",
"ignoreCase": "all",
"enum": [
"JDKVersion",
"Path"
],
"aliases": [
"javaHomeSelection"
]
},
"jdkVersionOption": {
"description": "JDK version",
"ignoreCase": "all",
"enum": [
"default",
"1.17",
"1.11",
"1.10",
"1.9",
"1.8",
"1.7",
"1.6"
],
"aliases": [
"jdkVersion"
]
},
"jdkDirectory": {
"type": "string",
"description": "JDK path",
"ignoreCase": "key",
"aliases": [
"jdkUserInputPath"
]
},
"jdkArchitectureOption": {
"description": "JDK architecture",
"ignoreCase": "all",
"enum": [
"x86",
"x64"
],
"aliases": [
"jdkArchitecture"
]
},
"mavenVersionOption": {
"description": "Maven version",
"ignoreCase": "all",
"enum": [
"Default",
"Path"
],
"aliases": [
"mavenVersionSelection"
]
},
"mavenDirectory": {
"type": "string",
"description": "Maven path",
"ignoreCase": "key",
"aliases": [
"mavenPath"
]
},
"mavenSetM2Home": {
"type": "boolean",
"description": "Set M2_HOME variable",
"ignoreCase": "key"
},
"mavenOptions": {
"type": "string",
"description": "Set MAVEN_OPTS to",
"ignoreCase": "key",
"aliases": [
"mavenOpts"
]
},
"mavenAuthenticateFeed": {
"type": "boolean",
"description": "Authenticate built-in Maven feeds",
"ignoreCase": "key",
"aliases": [
"mavenFeedAuthenticate"
]
},
"sonarQubeRunAnalysis": {
"type": "boolean",
"description": "Run SonarQube or SonarCloud analysis",
"ignoreCase": "key",
"aliases": [
"sqAnalysisEnabled"
]
},
"isJacocoCoverageReportXML": {
"type": "boolean",
"description": "Use XML Jacoco reports for SonarQube analysis",
"ignoreCase": "key"
},
"sqMavenPluginVersionChoice": {
"description": "SonarQube scanner for Maven version",
"ignoreCase": "all",
"enum": [
"latest",
"pom"
]
},
"checkStyleRunAnalysis": {
"type": "boolean",
"description": "Run Checkstyle",
"ignoreCase": "key",
"aliases": [
"checkstyleAnalysisEnabled"
]
},
"pmdRunAnalysis": {
"type": "boolean",
"description": "Run PMD",
"ignoreCase": "key",
"aliases": [
"pmdAnalysisEnabled"
]
},
"findBugsRunAnalysis": {
"type": "boolean",
"description": "Run FindBugs",
"ignoreCase": "key",
"aliases": [
"findbugsAnalysisEnabled"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Maven\n\nBuild with Apache Maven",
"ignoreCase": "value",
"pattern": "^Maven@1$"
},
"inputs": {
"description": "Maven inputs",
"properties": {
"mavenPomFile": {
"type": "string",
"description": "Maven POM file",
"ignoreCase": "key",
"aliases": [
"mavenPOMFile"
]
},
"goals": {
"type": "string",
"description": "Goal(s)",
"ignoreCase": "key"
},
"options": {
"type": "string",
"description": "Options",
"ignoreCase": "key"
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish to TFS/Team Services",
"ignoreCase": "key"
},
"testResultsFiles": {
"type": "string",
"description": "Test Results Files",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test Run Title",
"ignoreCase": "key"
},
"codeCoverageToolOption": {
"description": "Code Coverage Tool",
"ignoreCase": "all",
"enum": [
"None",
"Cobertura",
"JaCoCo"
],
"aliases": [
"codeCoverageTool"
]
},
"codeCoverageClassFilter": {
"type": "string",
"description": "Class Inclusion/Exclusion Filters",
"ignoreCase": "key",
"aliases": [
"classFilter"
]
},
"codeCoverageClassFilesDirectories": {
"type": "string",
"description": "Class Files Directories",
"ignoreCase": "key",
"aliases": [
"classFilesDirectories"
]
},
"codeCoverageSourceDirectories": {
"type": "string",
"description": "Source Files Directories",
"ignoreCase": "key",
"aliases": [
"srcDirectories"
]
},
"codeCoverageFailIfEmpty": {
"type": "boolean",
"description": "Fail When Code Coverage Results Are Missing",
"ignoreCase": "key",
"aliases": [
"failIfCoverageEmpty"
]
},
"javaHomeOption": {
"description": "Set JAVA_HOME by",
"ignoreCase": "all",
"enum": [
"JDKVersion",
"Path"
],
"aliases": [
"javaHomeSelection"
]
},
"jdkVersionOption": {
"description": "JDK Version",
"ignoreCase": "all",
"enum": [
"default",
"1.9",
"1.8",
"1.7",
"1.6"
],
"aliases": [
"jdkVersion"
]
},
"jdkDirectory": {
"type": "string",
"description": "JDK Path",
"ignoreCase": "key",
"aliases": [
"jdkUserInputPath"
]
},
"jdkArchitectureOption": {
"description": "JDK Architecture",
"ignoreCase": "all",
"enum": [
"x86",
"x64"
],
"aliases": [
"jdkArchitecture"
]
},
"mavenVersionOption": {
"description": "Maven Version",
"ignoreCase": "all",
"enum": [
"Default",
"Path"
],
"aliases": [
"mavenVersionSelection"
]
},
"mavenDirectory": {
"type": "string",
"description": "Maven Path",
"ignoreCase": "key",
"aliases": [
"mavenPath"
]
},
"mavenSetM2Home": {
"type": "boolean",
"description": "Set M2_HOME variable",
"ignoreCase": "key"
},
"mavenOptions": {
"type": "string",
"description": "Set MAVEN_OPTS to",
"ignoreCase": "key",
"aliases": [
"mavenOpts"
]
},
"mavenAuthenticateFeed": {
"type": "boolean",
"description": "Authenticate built-in Maven feeds",
"ignoreCase": "key",
"aliases": [
"mavenFeedAuthenticate"
]
},
"sonarQubeRunAnalysis": {
"type": "boolean",
"description": "Run SonarQube Analysis",
"ignoreCase": "key",
"aliases": [
"sqAnalysisEnabled"
]
},
"sonarQubeServiceEndpoint": {
"type": "string",
"description": "SonarQube Endpoint",
"ignoreCase": "key",
"aliases": [
"sqConnectedServiceName"
]
},
"sonarQubeProjectName": {
"type": "string",
"description": "SonarQube Project Name",
"ignoreCase": "key",
"aliases": [
"sqProjectName"
]
},
"sonarQubeProjectKey": {
"type": "string",
"description": "SonarQube Project Key",
"ignoreCase": "key",
"aliases": [
"sqProjectKey"
]
},
"sonarQubeProjectVersion": {
"type": "string",
"description": "SonarQube Project Version",
"ignoreCase": "key",
"aliases": [
"sqProjectVersion"
]
},
"sonarQubeSpecifyDB": {
"type": "boolean",
"description": "The SonarQube server version is lower than 5.2",
"ignoreCase": "key",
"aliases": [
"sqDbDetailsRequired"
]
},
"sonarQubeDBUrl": {
"type": "string",
"description": "Db Connection String",
"ignoreCase": "key",
"aliases": [
"sqDbUrl"
]
},
"sonarQubeDBUsername": {
"type": "string",
"description": "Db Username",
"ignoreCase": "key",
"aliases": [
"sqDbUsername"
]
},
"sonarQubeDBPassword": {
"type": "string",
"description": "Db User Password",
"ignoreCase": "key",
"aliases": [
"sqDbPassword"
]
},
"sonarQubeIncludeFullReport": {
"type": "boolean",
"description": "Include full analysis report in the build summary (SQ 5.3+)",
"ignoreCase": "key",
"aliases": [
"sqAnalysisIncludeFullReport"
]
},
"sonarQubeFailWhenQualityGateFails": {
"type": "boolean",
"description": "Fail the build on quality gate failure (SQ 5.3+)",
"ignoreCase": "key",
"aliases": [
"sqAnalysisBreakBuildIfQualityGateFailed"
]
},
"checkStyleRunAnalysis": {
"type": "boolean",
"description": "Run Checkstyle",
"ignoreCase": "key",
"aliases": [
"checkstyleAnalysisEnabled"
]
},
"pmdRunAnalysis": {
"type": "boolean",
"description": "Run PMD",
"ignoreCase": "key",
"aliases": [
"pmdAnalysisEnabled"
]
},
"findBugsRunAnalysis": {
"type": "boolean",
"description": "Run FindBugs",
"ignoreCase": "key",
"aliases": [
"findbugsAnalysisEnabled"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": ".NET Core (PREVIEW)\n\nBuild, test and publish using dotnet core command-line.",
"ignoreCase": "value",
"pattern": "^DotNetCoreCLI@0$"
},
"inputs": {
"description": ".NET Core (PREVIEW) inputs",
"properties": {
"command": {
"description": "Command",
"ignoreCase": "all",
"enum": [
"build",
"publish",
"restore",
"test",
"run"
]
},
"publishWebProjects": {
"type": "boolean",
"description": "Publish Web Projects",
"ignoreCase": "key"
},
"projects": {
"type": "string",
"description": "Project(s)",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"zipAfterPublish": {
"type": "boolean",
"description": "Zip Published Projects",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"deprecationMessage": "DotNetCoreCLI is deprecated - Build, test and publish using dotnet core command-line.",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": ".NET Core\n\nBuild, test, package, or publish a dotnet application, or run a custom dotnet command",
"ignoreCase": "value",
"pattern": "^DotNetCoreCLI@2$"
},
"inputs": {
"description": ".NET Core inputs",
"properties": {
"command": {
"description": "Command",
"ignoreCase": "all",
"enum": [
"build",
"push",
"pack",
"publish",
"restore",
"run",
"test",
"custom"
]
},
"publishWebProjects": {
"type": "boolean",
"description": "Publish web projects",
"ignoreCase": "key"
},
"projects": {
"type": "string",
"description": "Path to project(s)",
"ignoreCase": "key"
},
"custom": {
"type": "string",
"description": "Custom command",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"restoreArguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"publishTestResults": {
"type": "boolean",
"description": "Publish test results and code coverage",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test run title",
"ignoreCase": "key"
},
"zipAfterPublish": {
"type": "boolean",
"description": "Zip published projects",
"ignoreCase": "key"
},
"modifyOutputPath": {
"type": "boolean",
"description": "Add project's folder name to publish path",
"ignoreCase": "key"
},
"feedsToUse": {
"description": "Feeds to use",
"ignoreCase": "all",
"enum": [
"select",
"config"
],
"aliases": [
"selectOrConfig"
]
},
"vstsFeed": {
"type": "string",
"description": "Use packages from this Azure Artifacts feed",
"ignoreCase": "key",
"aliases": [
"feedRestore"
]
},
"includeNuGetOrg": {
"type": "boolean",
"description": "Use packages from NuGet.org",
"ignoreCase": "key"
},
"nugetConfigPath": {
"type": "string",
"description": "Path to NuGet.config",
"ignoreCase": "key"
},
"externalFeedCredentials": {
"type": "string",
"description": "Credentials for feeds outside this organization/collection",
"ignoreCase": "key",
"aliases": [
"externalEndpoints"
]
},
"noCache": {
"type": "boolean",
"description": "Disable local cache",
"ignoreCase": "key"
},
"restoreDirectory": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key",
"aliases": [
"packagesDirectory"
]
},
"verbosityRestore": {
"description": "Verbosity",
"ignoreCase": "all",
"enum": [
"-",
"Quiet",
"Minimal",
"Normal",
"Detailed",
"Diagnostic"
]
},
"packagesToPush": {
"type": "string",
"description": "Path to NuGet package(s) to publish",
"ignoreCase": "key",
"aliases": [
"searchPatternPush"
]
},
"nuGetFeedType": {
"description": "Target feed location",
"ignoreCase": "all",
"enum": [
"internal",
"external"
]
},
"publishVstsFeed": {
"type": "string",
"description": "Target feed",
"ignoreCase": "key",
"aliases": [
"feedPublish"
]
},
"publishPackageMetadata": {
"type": "boolean",
"description": "Publish pipeline metadata",
"ignoreCase": "key"
},
"publishFeedCredentials": {
"type": "string",
"description": "NuGet server",
"ignoreCase": "key",
"aliases": [
"externalEndpoint"
]
},
"packagesToPack": {
"type": "string",
"description": "Path to csproj or nuspec file(s) to pack",
"ignoreCase": "key",
"aliases": [
"searchPatternPack"
]
},
"configuration": {
"type": "string",
"description": "Configuration to Package",
"ignoreCase": "key",
"aliases": [
"configurationToPack"
]
},
"packDirectory": {
"type": "string",
"description": "Package Folder",
"ignoreCase": "key",
"aliases": [
"outputDir"
]
},
"nobuild": {
"type": "boolean",
"description": "Do not build",
"ignoreCase": "key"
},
"includesymbols": {
"type": "boolean",
"description": "Include Symbols",
"ignoreCase": "key"
},
"includesource": {
"type": "boolean",
"description": "Include Source",
"ignoreCase": "key"
},
"versioningScheme": {
"description": "Automatic package versioning",
"ignoreCase": "all",
"enum": [
"off",
"byPrereleaseNumber",
"byEnvVar",
"byBuildNumber"
]
},
"versionEnvVar": {
"type": "string",
"description": "Environment variable",
"ignoreCase": "key"
},
"majorVersion": {
"type": "string",
"description": "Major",
"ignoreCase": "key",
"aliases": [
"requestedMajorVersion"
]
},
"minorVersion": {
"type": "string",
"description": "Minor",
"ignoreCase": "key",
"aliases": [
"requestedMinorVersion"
]
},
"patchVersion": {
"type": "string",
"description": "Patch",
"ignoreCase": "key",
"aliases": [
"requestedPatchVersion"
]
},
"buildProperties": {
"type": "string",
"description": "Additional build properties",
"ignoreCase": "key"
},
"verbosityPack": {
"description": "Verbosity",
"ignoreCase": "all",
"enum": [
"-",
"Quiet",
"Minimal",
"Normal",
"Detailed",
"Diagnostic"
]
},
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": ".NET Core\n\nBuild, test and publish using dotnet core command-line.",
"ignoreCase": "value",
"pattern": "^DotNetCoreCLI@1$"
},
"inputs": {
"description": ".NET Core inputs",
"properties": {
"command": {
"description": "Command",
"ignoreCase": "all",
"enum": [
"build",
"publish",
"restore",
"test",
"run"
]
},
"publishWebProjects": {
"type": "boolean",
"description": "Publish Web Projects",
"ignoreCase": "key"
},
"projects": {
"type": "string",
"description": "Project(s)",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"zipAfterPublish": {
"type": "boolean",
"description": "Zip Published Projects",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Xamarin Component Restore\n\nThis task is deprecated. Use 'NuGet' instead.",
"ignoreCase": "value",
"pattern": "^XamarinComponentRestore@0$"
},
"inputs": {
"description": "Xamarin Component Restore inputs",
"properties": {
"solutionFile": {
"type": "string",
"description": "Path to solution",
"ignoreCase": "key",
"aliases": [
"solution"
]
},
"email": {
"type": "string",
"description": "Email",
"ignoreCase": "key"
},
"password": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"email",
"password"
]
}
},
"deprecationMessage": "XamarinComponentRestore is deprecated - This task is deprecated. Use 'NuGet' instead.",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure App Service deploy\n\nDeploy to Azure App Service a web, mobile, or API app using Docker, Java, .NET, .NET Core, Node.js, PHP, Python, or Ruby",
"ignoreCase": "value",
"pattern": "^AzureRmWebAppDeployment@4$"
},
"inputs": {
"description": "Azure App Service deploy inputs",
"properties": {
"ConnectionType": {
"description": "Connection type",
"ignoreCase": "all",
"enum": [
"AzureRM",
"PublishProfile"
]
},
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"PublishProfilePath": {
"type": "string",
"description": "Publish profile path",
"ignoreCase": "key"
},
"PublishProfilePassword": {
"type": "string",
"description": "Publish profile password",
"ignoreCase": "key"
},
"appType": {
"description": "App Service type",
"ignoreCase": "all",
"enum": [
"webApp",
"webAppLinux",
"webAppContainer",
"webAppHyperVContainer",
"functionApp",
"functionAppLinux",
"functionAppContainer",
"apiApp",
"mobileApp"
],
"aliases": [
"WebAppKind"
]
},
"WebAppName": {
"type": "string",
"description": "App Service name",
"ignoreCase": "key"
},
"deployToSlotOrASE": {
"type": "boolean",
"description": "Deploy to Slot or App Service Environment",
"ignoreCase": "key",
"aliases": [
"DeployToSlotOrASEFlag"
]
},
"ResourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"SlotName": {
"type": "string",
"description": "Slot",
"ignoreCase": "key"
},
"DockerNamespace": {
"type": "string",
"description": "Registry or Namespace",
"ignoreCase": "key"
},
"DockerRepository": {
"type": "string",
"description": "Image",
"ignoreCase": "key"
},
"DockerImageTag": {
"type": "string",
"description": "Tag",
"ignoreCase": "key"
},
"VirtualApplication": {
"type": "string",
"description": "Virtual application",
"ignoreCase": "key"
},
"packageForLinux": {
"type": "string",
"description": "Package or folder",
"ignoreCase": "key",
"aliases": [
"Package"
]
},
"RuntimeStack": {
"type": "string",
"description": "Runtime Stack",
"ignoreCase": "key"
},
"RuntimeStackFunction": {
"description": "Runtime Stack",
"ignoreCase": "all",
"enum": [
"DOTNET|2.2",
"DOTNET|3.1",
"JAVA|8",
"JAVA|11",
"NODE|8",
"NODE|10",
"NODE|12",
"NODE|14",
"PYTHON|3.6",
"PYTHON|3.7",
"PYTHON|3.8"
]
},
"StartupCommand": {
"type": "string",
"description": "Startup command ",
"ignoreCase": "key"
},
"ScriptType": {
"description": "Deployment script type",
"ignoreCase": "all",
"enum": [
"",
"Inline Script",
"File Path"
]
},
"InlineScript": {
"type": "string",
"description": "Inline Script",
"ignoreCase": "key"
},
"ScriptPath": {
"type": "string",
"description": "Deployment script path",
"ignoreCase": "key"
},
"WebConfigParameters": {
"type": "string",
"description": "Generate web.config parameters for Python, Node.js, Go and Java apps",
"ignoreCase": "key"
},
"AppSettings": {
"type": "string",
"description": "App settings",
"ignoreCase": "key"
},
"ConfigurationSettings": {
"type": "string",
"description": "Configuration settings",
"ignoreCase": "key"
},
"enableCustomDeployment": {
"type": "boolean",
"description": "Select deployment method",
"ignoreCase": "key",
"aliases": [
"UseWebDeploy"
]
},
"DeploymentType": {
"description": "Deployment method",
"ignoreCase": "all",
"enum": [
"webDeploy",
"zipDeploy",
"runFromZip"
]
},
"TakeAppOfflineFlag": {
"type": "boolean",
"description": "Take App Offline",
"ignoreCase": "key"
},
"SetParametersFile": {
"type": "string",
"description": "SetParameters file",
"ignoreCase": "key"
},
"RemoveAdditionalFilesFlag": {
"type": "boolean",
"description": "Remove additional files at destination",
"ignoreCase": "key"
},
"ExcludeFilesFromAppDataFlag": {
"type": "boolean",
"description": "Exclude files from the App_Data folder",
"ignoreCase": "key"
},
"AdditionalArguments": {
"type": "string",
"description": "Additional arguments",
"ignoreCase": "key"
},
"RenameFilesFlag": {
"type": "boolean",
"description": "Rename locked files",
"ignoreCase": "key"
},
"enableXmlTransform": {
"type": "boolean",
"description": "XML transformation",
"ignoreCase": "key",
"aliases": [
"XmlTransformation"
]
},
"enableXmlVariableSubstitution": {
"type": "boolean",
"description": "XML variable substitution",
"ignoreCase": "key",
"aliases": [
"XmlVariableSubstitution"
]
},
"JSONFiles": {
"type": "string",
"description": "JSON variable substitution",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Azure App Service Deploy\n\nUpdate Azure App Service using Web Deploy / Kudu REST APIs",
"ignoreCase": "value",
"pattern": "^AzureRmWebAppDeployment@2$"
},
"inputs": {
"description": "Azure App Service Deploy inputs",
"properties": {
"ConnectedServiceName": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key"
},
"WebAppName": {
"type": "string",
"description": "App Service name",
"ignoreCase": "key"
},
"DeployToSlotFlag": {
"type": "boolean",
"description": "Deploy to slot",
"ignoreCase": "key"
},
"ResourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"SlotName": {
"type": "string",
"description": "Slot",
"ignoreCase": "key"
},
"VirtualApplication": {
"type": "string",
"description": "Virtual Application",
"ignoreCase": "key"
},
"Package": {
"type": "string",
"description": "Package or Folder",
"ignoreCase": "key"
},
"WebAppUri": {
"type": "string",
"description": "App Service URL",
"ignoreCase": "key"
},
"UseWebDeploy": {
"type": "boolean",
"description": "Publish using Web Deploy",
"ignoreCase": "key"
},
"SetParametersFile": {
"type": "string",
"description": "SetParameters File",
"ignoreCase": "key"
},
"RemoveAdditionalFilesFlag": {
"type": "boolean",
"description": "Remove Additional Files at Destination",
"ignoreCase": "key"
},
"ExcludeFilesFromAppDataFlag": {
"type": "boolean",
"description": "Exclude Files from the App_Data Folder",
"ignoreCase": "key"
},
"AdditionalArguments": {
"type": "string",
"description": "Additional Arguments",
"ignoreCase": "key"
},
"TakeAppOfflineFlag": {
"type": "boolean",
"description": "Take App Offline",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"ConnectedServiceName",
"WebAppName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure App Service deploy\n\nDeploy to Azure App Service a web, mobile, or API app using Docker, Java, .NET, .NET Core, Node.js, PHP, Python, or Ruby",
"ignoreCase": "value",
"pattern": "^AzureRmWebAppDeployment@3$"
},
"inputs": {
"description": "Azure App Service deploy inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"appType": {
"description": "App type",
"ignoreCase": "all",
"enum": [
"app",
"applinux",
"functionapp",
"api",
"mobileapp"
],
"aliases": [
"WebAppKind"
]
},
"WebAppName": {
"type": "string",
"description": "App Service name",
"ignoreCase": "key"
},
"DeployToSlotFlag": {
"type": "boolean",
"description": "Deploy to slot",
"ignoreCase": "key"
},
"ResourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"SlotName": {
"type": "string",
"description": "Slot",
"ignoreCase": "key"
},
"ImageSource": {
"description": "Image Source",
"ignoreCase": "all",
"enum": [
"Registry",
"Builtin"
]
},
"AzureContainerRegistry": {
"type": "string",
"description": "Registry",
"ignoreCase": "key"
},
"AzureContainerRegistryLoginServer": {
"type": "string",
"description": "Registry Login Server Name",
"ignoreCase": "key"
},
"AzureContainerRegistryImage": {
"type": "string",
"description": "Image",
"ignoreCase": "key"
},
"AzureContainerRegistryTag": {
"type": "string",
"description": "Tag",
"ignoreCase": "key"
},
"DockerRepositoryAccess": {
"description": "Repository Access",
"ignoreCase": "all",
"enum": [
"private",
"public"
]
},
"dockerRegistryConnection": {
"type": "string",
"description": "Registry Connection",
"ignoreCase": "key",
"aliases": [
"RegistryConnectedServiceName"
]
},
"PrivateRegistryImage": {
"type": "string",
"description": "Image",
"ignoreCase": "key"
},
"PrivateRegistryTag": {
"type": "string",
"description": "Tag",
"ignoreCase": "key"
},
"DockerNamespace": {
"type": "string",
"description": "Registry or Namespace",
"ignoreCase": "key"
},
"DockerRepository": {
"type": "string",
"description": "Image",
"ignoreCase": "key"
},
"DockerImageTag": {
"type": "string",
"description": "Tag",
"ignoreCase": "key"
},
"VirtualApplication": {
"type": "string",
"description": "Virtual application",
"ignoreCase": "key"
},
"Package": {
"type": "string",
"description": "Package or folder",
"ignoreCase": "key"
},
"packageForLinux": {
"type": "string",
"description": "Package or folder",
"ignoreCase": "key",
"aliases": [
"BuiltinLinuxPackage"
]
},
"RuntimeStack": {
"type": "string",
"description": "Runtime Stack",
"ignoreCase": "key"
},
"StartupCommand": {
"type": "string",
"description": "Startup command ",
"ignoreCase": "key"
},
"WebAppUri": {
"type": "string",
"description": "App Service URL",
"ignoreCase": "key"
},
"ScriptType": {
"description": "Deployment script type",
"ignoreCase": "all",
"enum": [
"",
"Inline Script",
"File Path"
]
},
"InlineScript": {
"type": "string",
"description": "Inline Script",
"ignoreCase": "key"
},
"ScriptPath": {
"type": "string",
"description": "Deployment script path",
"ignoreCase": "key"
},
"GenerateWebConfig": {
"type": "boolean",
"description": "Generate Web.config",
"ignoreCase": "key"
},
"WebConfigParameters": {
"type": "string",
"description": "Web.config parameters",
"ignoreCase": "key"
},
"AppSettings": {
"type": "string",
"description": "App settings",
"ignoreCase": "key"
},
"ConfigurationSettings": {
"type": "string",
"description": "Configuration settings",
"ignoreCase": "key"
},
"TakeAppOfflineFlag": {
"type": "boolean",
"description": "Take App Offline",
"ignoreCase": "key"
},
"UseWebDeploy": {
"type": "boolean",
"description": "Publish using Web Deploy",
"ignoreCase": "key"
},
"SetParametersFile": {
"type": "string",
"description": "SetParameters file",
"ignoreCase": "key"
},
"RemoveAdditionalFilesFlag": {
"type": "boolean",
"description": "Remove additional files at destination",
"ignoreCase": "key"
},
"ExcludeFilesFromAppDataFlag": {
"type": "boolean",
"description": "Exclude files from the App_Data folder",
"ignoreCase": "key"
},
"AdditionalArguments": {
"type": "string",
"description": "Additional arguments",
"ignoreCase": "key"
},
"RenameFilesFlag": {
"type": "boolean",
"description": "Rename locked files",
"ignoreCase": "key"
},
"enableXmlTransform": {
"type": "boolean",
"description": "XML transformation",
"ignoreCase": "key",
"aliases": [
"XmlTransformation"
]
},
"enableXmlVariableSubstitution": {
"type": "boolean",
"description": "XML variable substitution",
"ignoreCase": "key",
"aliases": [
"XmlVariableSubstitution"
]
},
"JSONFiles": {
"type": "string",
"description": "JSON variable substitution",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"WebAppName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "PowerShell on target machines\n\nExecute PowerShell scripts on remote machines using PSSession and Invoke-Command for remoting",
"ignoreCase": "value",
"pattern": "^PowerShellOnTargetMachines@3$"
},
"inputs": {
"description": "PowerShell on target machines inputs",
"properties": {
"Machines": {
"type": "string",
"description": "Machines",
"ignoreCase": "key"
},
"UserName": {
"type": "string",
"description": "Username",
"ignoreCase": "key"
},
"UserPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"ScriptType": {
"description": "Script Type",
"ignoreCase": "all",
"enum": [
"FilePath",
"Inline"
]
},
"ScriptPath": {
"type": "string",
"description": "Script File Path",
"ignoreCase": "key"
},
"InlineScript": {
"type": "string",
"description": "Script",
"ignoreCase": "key"
},
"ScriptArguments": {
"type": "string",
"description": "Script Arguments",
"ignoreCase": "key"
},
"InitializationScript": {
"type": "string",
"description": "Initialization script",
"ignoreCase": "key"
},
"SessionVariables": {
"type": "string",
"description": "Session Variables",
"ignoreCase": "key"
},
"CommunicationProtocol": {
"description": "Protocol",
"ignoreCase": "all",
"enum": [
"Http",
"Https"
]
},
"AuthenticationMechanism": {
"description": "Authentication",
"ignoreCase": "all",
"enum": [
"Default",
"Credssp"
]
},
"NewPsSessionOptionArguments": {
"type": "string",
"description": "Session Option parameters",
"ignoreCase": "key"
},
"ErrorActionPreference": {
"description": "ErrorActionPreference",
"ignoreCase": "all",
"enum": [
"stop",
"continue",
"silentlyContinue"
]
},
"failOnStderr": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
},
"ignoreLASTEXITCODE": {
"type": "boolean",
"description": "Ignore $LASTEXITCODE",
"ignoreCase": "key"
},
"WorkingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key"
},
"RunPowershellInParallel": {
"type": "boolean",
"description": "Run PowerShell in Parallel",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"Machines"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "PowerShell on Target Machines\n\nExecute PowerShell scripts on remote machine(s)",
"ignoreCase": "value",
"pattern": "^PowerShellOnTargetMachines@1$"
},
"inputs": {
"description": "PowerShell on Target Machines inputs",
"properties": {
"EnvironmentName": {
"type": "string",
"description": "Machines",
"ignoreCase": "key"
},
"AdminUserName": {
"type": "string",
"description": "Admin Login",
"ignoreCase": "key"
},
"AdminPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"Protocol": {
"description": "Protocol",
"ignoreCase": "all",
"enum": [
"Http",
"Https"
]
},
"TestCertificate": {
"type": "boolean",
"description": "Test Certificate",
"ignoreCase": "key"
},
"ScriptPath": {
"type": "string",
"description": "PowerShell Script",
"ignoreCase": "key"
},
"ScriptArguments": {
"type": "string",
"description": "Script Arguments",
"ignoreCase": "key"
},
"InitializationScriptPath": {
"type": "string",
"description": "Initialization Script",
"ignoreCase": "key"
},
"SessionVariables": {
"type": "string",
"description": "Session Variables",
"ignoreCase": "key"
},
"RunPowershellInParallel": {
"type": "boolean",
"description": "Run PowerShell in Parallel",
"ignoreCase": "key"
},
"ResourceFilteringMethod": {
"description": "Select Machines By",
"ignoreCase": "all",
"enum": [
"machineNames",
"tags"
]
},
"MachineNames": {
"type": "string",
"description": "Filter Criteria",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"EnvironmentName",
"ScriptPath"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "PowerShell on Target Machines\n\nExecute PowerShell scripts on remote machine(s)",
"ignoreCase": "value",
"pattern": "^PowerShellOnTargetMachines@2$"
},
"inputs": {
"description": "PowerShell on Target Machines inputs",
"properties": {
"EnvironmentName": {
"type": "string",
"description": "Machines",
"ignoreCase": "key"
},
"AdminUserName": {
"type": "string",
"description": "Admin Login",
"ignoreCase": "key"
},
"AdminPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"Protocol": {
"description": "Protocol",
"ignoreCase": "all",
"enum": [
"Http",
"Https"
]
},
"TestCertificate": {
"type": "boolean",
"description": "Test Certificate",
"ignoreCase": "key"
},
"ScriptPath": {
"type": "string",
"description": "PowerShell Script",
"ignoreCase": "key"
},
"ScriptArguments": {
"type": "string",
"description": "Script Arguments",
"ignoreCase": "key"
},
"InitializationScriptPath": {
"type": "string",
"description": "Initialization Script",
"ignoreCase": "key"
},
"SessionVariables": {
"type": "string",
"description": "Session Variables",
"ignoreCase": "key"
},
"RunPowershellInParallel": {
"type": "boolean",
"description": "Run PowerShell in Parallel",
"ignoreCase": "key"
},
"ResourceFilteringMethod": {
"description": "Select Machines By",
"ignoreCase": "all",
"enum": [
"machineNames",
"tags"
]
},
"MachineNames": {
"type": "string",
"description": "Filter Criteria",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"EnvironmentName",
"ScriptPath"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Publish code coverage results v2\n\nPublish any of the code coverage results from a build",
"ignoreCase": "value",
"pattern": "^PublishCodeCoverageResults@2$"
},
"inputs": {
"description": "Publish code coverage results v2 inputs",
"properties": {
"summaryFileLocation": {
"type": "string",
"description": "Path to summary files",
"ignoreCase": "key"
},
"pathToSources": {
"type": "string",
"description": "Path to Source files",
"ignoreCase": "key"
},
"failIfCoverageEmpty": {
"type": "boolean",
"description": "Fail if code coverage results are missing",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"summaryFileLocation"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Publish code coverage results\n\nPublish Cobertura or JaCoCo code coverage results from a build",
"ignoreCase": "value",
"pattern": "^PublishCodeCoverageResults@1$"
},
"inputs": {
"description": "Publish code coverage results inputs",
"properties": {
"codeCoverageTool": {
"description": "Code coverage tool",
"ignoreCase": "all",
"enum": [
"Cobertura",
"JaCoCo"
]
},
"summaryFileLocation": {
"type": "string",
"description": "Summary file",
"ignoreCase": "key"
},
"pathToSources": {
"type": "string",
"description": "Path to Source files",
"ignoreCase": "key"
},
"reportDirectory": {
"type": "string",
"description": "Report directory",
"ignoreCase": "key"
},
"additionalCodeCoverageFiles": {
"type": "string",
"description": "Additional files",
"ignoreCase": "key"
},
"failIfCoverageEmpty": {
"type": "boolean",
"description": "Fail when code coverage results are missing",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"summaryFileLocation"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Run functional tests\n\nDeprecated: This task and it’s companion task (Visual Studio Test Agent Deployment) are deprecated. Use the 'Visual Studio Test' task instead. The VSTest task can run unit as well as functional tests. Run tests on one or more agents using the multi-agent job setting. Use the 'Visual Studio Test Platform' task to run tests without needing Visual Studio on the agent. VSTest task also brings new capabilities such as automatically rerunning failed tests.",
"ignoreCase": "value",
"pattern": "^RunVisualStudioTestsusingTestAgent@1$"
},
"inputs": {
"description": "Run functional tests inputs",
"properties": {
"testMachineGroup": {
"type": "string",
"description": "Machines",
"ignoreCase": "key"
},
"dropLocation": {
"type": "string",
"description": "Test Drop Location",
"ignoreCase": "key"
},
"testSelection": {
"description": "Test Selection",
"ignoreCase": "all",
"enum": [
"testAssembly",
"testPlan"
]
},
"testPlan": {
"type": "string",
"description": "Test Plan",
"ignoreCase": "key"
},
"testSuite": {
"type": "string",
"description": "Test Suite",
"ignoreCase": "key"
},
"testConfiguration": {
"type": "string",
"description": "Test Configuration",
"ignoreCase": "key"
},
"sourcefilters": {
"type": "string",
"description": "Test Assembly",
"ignoreCase": "key"
},
"testFilterCriteria": {
"type": "string",
"description": "Test Filter criteria",
"ignoreCase": "key"
},
"runSettingsFile": {
"type": "string",
"description": "Run Settings File",
"ignoreCase": "key"
},
"overrideRunParams": {
"type": "string",
"description": "Override Test Run Parameters",
"ignoreCase": "key"
},
"codeCoverageEnabled": {
"type": "boolean",
"description": "Code Coverage Enabled",
"ignoreCase": "key"
},
"customSlicingEnabled": {
"type": "boolean",
"description": "Distribute tests by number of machines",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test Run Title",
"ignoreCase": "key"
},
"platform": {
"type": "string",
"description": "Platform",
"ignoreCase": "key"
},
"configuration": {
"type": "string",
"description": "Configuration",
"ignoreCase": "key"
},
"testConfigurations": {
"type": "string",
"description": "Test Configurations",
"ignoreCase": "key"
},
"autMachineGroup": {
"type": "string",
"description": "Application Under Test Machines",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"testMachineGroup",
"dropLocation"
]
}
},
"deprecationMessage": "RunVisualStudioTestsusingTestAgent is deprecated - Deprecated: This task and it’s companion task (Visual Studio Test Agent Deployment) are deprecated. Use the 'Visual Studio Test' task instead. The VSTest task can run unit as well as functional tests. Run tests on one or more agents using the multi-agent job setting. Use the 'Visual Studio Test Platform' task to run tests without needing Visual Studio on the agent. VSTest task also brings new capabilities such as automatically rerunning failed tests.",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Manual intervention\n\nPause deployment and wait for manual intervention",
"ignoreCase": "value",
"pattern": "^ManualIntervention@8$"
},
"inputs": {
"description": "Manual intervention inputs",
"properties": {
"instructions": {
"type": "string",
"description": "Instructions",
"ignoreCase": "key"
},
"emailRecipients": {
"type": "string",
"description": "Notify users",
"ignoreCase": "key"
},
"onTimeout": {
"description": "On timeout",
"ignoreCase": "all",
"enum": [
"reject",
"resume"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Install Apple Provisioning Profile\n\nInstall an Apple provisioning profile required to build on a macOS agent",
"ignoreCase": "value",
"pattern": "^InstallAppleProvisioningProfile@0$"
},
"inputs": {
"description": "Install Apple Provisioning Profile inputs",
"properties": {
"provProfileSecureFile": {
"type": "string",
"description": "Provisioning Profile",
"ignoreCase": "key"
},
"removeProfile": {
"type": "boolean",
"description": "Remove Profile After Build",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"provProfileSecureFile"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Install Apple provisioning profile\n\nInstall an Apple provisioning profile required to build on a macOS agent machine",
"ignoreCase": "value",
"pattern": "^InstallAppleProvisioningProfile@1$"
},
"inputs": {
"description": "Install Apple provisioning profile inputs",
"properties": {
"provisioningProfileLocation": {
"description": "Provisioning profile location",
"ignoreCase": "all",
"enum": [
"secureFiles",
"sourceRepository"
]
},
"provProfileSecureFile": {
"type": "string",
"description": "Provisioning profile",
"ignoreCase": "key"
},
"provProfileSourceRepository": {
"type": "string",
"description": "Provisioning profile",
"ignoreCase": "key"
},
"removeProfile": {
"type": "boolean",
"description": "Remove profile after build",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "SonarQube for MSBuild - End Analysis\n\n[DEPRECATED] Finish the analysis and upload the results to SonarQube",
"ignoreCase": "value",
"pattern": "^SonarQubePostTest@1$"
},
"inputs": {
"description": "SonarQube for MSBuild - End Analysis inputs",
"properties": {},
"additionalProperties": false,
"required": []
}
},
"deprecationMessage": "SonarQubePostTest is deprecated - [DEPRECATED] Finish the analysis and upload the results to SonarQube",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "PyPI publisher\n\nCreate and upload an sdist or wheel to a PyPI-compatible index using Twine",
"ignoreCase": "value",
"pattern": "^PyPIPublisher@0$"
},
"inputs": {
"description": "PyPI publisher inputs",
"properties": {
"pypiConnection": {
"type": "string",
"description": "PyPI service connection",
"ignoreCase": "key",
"aliases": [
"serviceEndpoint"
]
},
"packageDirectory": {
"type": "string",
"description": "Python package directory",
"ignoreCase": "key",
"aliases": [
"wd"
]
},
"alsoPublishWheel": {
"type": "boolean",
"description": "Also publish a wheel",
"ignoreCase": "key",
"aliases": [
"wheel"
]
}
},
"additionalProperties": false,
"required": [
"pypiConnection",
"packageDirectory"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Chef Knife\n\nRun scripts with Knife commands on your Chef workstation",
"ignoreCase": "value",
"pattern": "^ChefKnife@1$"
},
"inputs": {
"description": "Chef Knife inputs",
"properties": {
"ConnectedServiceName": {
"type": "string",
"description": "Chef Subscription",
"ignoreCase": "key"
},
"ScriptPath": {
"type": "string",
"description": "Script Path",
"ignoreCase": "key"
},
"ScriptArguments": {
"type": "string",
"description": "Script Arguments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"ConnectedServiceName",
"ScriptPath"
]
}
},
"deprecationMessage": "ChefKnife is deprecated - Run scripts with Knife commands on your Chef workstation",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Go tool installer\n\nFind in cache or download a specific version of Go and add it to the PATH",
"ignoreCase": "value",
"pattern": "^GoTool@0$"
},
"inputs": {
"description": "Go tool installer inputs",
"properties": {
"version": {
"type": "string",
"description": "Version",
"ignoreCase": "key"
},
"goPath": {
"type": "string",
"description": "GOPATH",
"ignoreCase": "key"
},
"goBin": {
"type": "string",
"description": "GOBIN",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Xcode Package iOS\n\nGenerate an .ipa file from Xcode build output using xcrun (Xcode 7 or below)",
"ignoreCase": "value",
"pattern": "^XcodePackageiOS@0$"
},
"inputs": {
"description": "Xcode Package iOS inputs",
"properties": {
"appName": {
"type": "string",
"description": "Name of .app",
"ignoreCase": "key"
},
"ipaName": {
"type": "string",
"description": "Name of .ipa",
"ignoreCase": "key"
},
"provisioningProfile": {
"type": "string",
"description": "Provisioning Profile Name",
"ignoreCase": "key"
},
"sdk": {
"type": "string",
"description": "SDK",
"ignoreCase": "key"
},
"appPath": {
"type": "string",
"description": "Path to .app",
"ignoreCase": "key"
},
"ipaPath": {
"type": "string",
"description": "Path to place .ipa",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"provisioningProfile"
]
}
},
"deprecationMessage": "XcodePackageiOS is deprecated - Generate an .ipa file from Xcode build output using xcrun (Xcode 7 or below)",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Go\n\nGet, build, or test a Go application, or run a custom Go command",
"ignoreCase": "value",
"pattern": "^Go@0$"
},
"inputs": {
"description": "Go inputs",
"properties": {
"command": {
"description": "Command",
"ignoreCase": "all",
"enum": [
"get",
"build",
"test",
"custom"
]
},
"customCommand": {
"type": "string",
"description": "Custom command",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Publish Pipeline Metadata\n\nPublish Pipeline Metadata to Evidence store",
"ignoreCase": "value",
"pattern": "^PublishPipelineMetadata@0$"
},
"inputs": {
"description": "Publish Pipeline Metadata inputs",
"properties": {},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Docker\n\nBuild, tag, push, or run Docker images, or run a Docker command",
"ignoreCase": "value",
"pattern": "^Docker@0$"
},
"inputs": {
"description": "Docker inputs",
"properties": {
"containerregistrytype": {
"description": "Container Registry Type",
"ignoreCase": "all",
"enum": [
"Azure Container Registry",
"Container Registry"
]
},
"dockerRegistryConnection": {
"type": "string",
"description": "Docker Registry Service Connection",
"ignoreCase": "key",
"aliases": [
"dockerRegistryEndpoint"
]
},
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"azureSubscriptionEndpoint"
]
},
"azureContainerRegistry": {
"type": "string",
"description": "Azure Container Registry",
"ignoreCase": "key"
},
"action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"Build an image",
"Tag images",
"Push an image",
"Push images",
"Run an image",
"Run a Docker command"
]
},
"dockerFile": {
"type": "string",
"description": "Docker File",
"ignoreCase": "key"
},
"addBaseImageData": {
"type": "boolean",
"description": "Add base image metadata to image(s)",
"ignoreCase": "key"
},
"buildArguments": {
"type": "string",
"description": "Build Arguments",
"ignoreCase": "key"
},
"defaultContext": {
"type": "boolean",
"description": "Use Default Build Context",
"ignoreCase": "key"
},
"context": {
"type": "string",
"description": "Build Context",
"ignoreCase": "key"
},
"imageName": {
"type": "string",
"description": "Image Name",
"ignoreCase": "key"
},
"imageNamesPath": {
"type": "string",
"description": "Image Names Path",
"ignoreCase": "key"
},
"qualifyImageName": {
"type": "boolean",
"description": "Qualify Image Name",
"ignoreCase": "key"
},
"additionalImageTags": {
"type": "string",
"description": "Additional Image Tags",
"ignoreCase": "key"
},
"includeSourceTags": {
"type": "boolean",
"description": "Include Source Tags",
"ignoreCase": "key"
},
"includeLatestTag": {
"type": "boolean",
"description": "Include Latest Tag",
"ignoreCase": "key"
},
"imageDigestFile": {
"type": "string",
"description": "Image Digest File",
"ignoreCase": "key"
},
"containerName": {
"type": "string",
"description": "Container Name",
"ignoreCase": "key"
},
"ports": {
"type": "string",
"description": "Ports",
"ignoreCase": "key"
},
"volumes": {
"type": "string",
"description": "Volumes",
"ignoreCase": "key"
},
"envVars": {
"type": "string",
"description": "Environment Variables",
"ignoreCase": "key"
},
"workDir": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key"
},
"entrypoint": {
"type": "string",
"description": "Entry Point Override",
"ignoreCase": "key"
},
"containerCommand": {
"type": "string",
"description": "Command",
"ignoreCase": "key"
},
"detached": {
"type": "boolean",
"description": "Run In Background",
"ignoreCase": "key"
},
"restartPolicy": {
"description": "Restart Policy",
"ignoreCase": "all",
"enum": [
"no",
"onFailure",
"always",
"unlessStopped"
]
},
"restartMaxRetries": {
"type": "string",
"description": "Maximum Restart Retries",
"ignoreCase": "key"
},
"customCommand": {
"type": "string",
"description": "Command",
"ignoreCase": "key"
},
"dockerHostEndpoint": {
"type": "string",
"description": "Docker Host Service Connection",
"ignoreCase": "key"
},
"enforceDockerNamingConvention": {
"type": "boolean",
"description": "Force image name to follow Docker naming convention",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"memory": {
"type": "string",
"description": "Memory limit",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Docker\n\nBuild, tag, push, or run Docker images, or run a Docker command",
"ignoreCase": "value",
"pattern": "^Docker@1$"
},
"inputs": {
"description": "Docker inputs",
"properties": {
"containerregistrytype": {
"description": "Container registry type",
"ignoreCase": "all",
"enum": [
"Azure Container Registry",
"Container Registry"
]
},
"addBaseImageData": {
"type": "boolean",
"description": "Add base image metadata to image(s)",
"ignoreCase": "key"
},
"dockerRegistryEndpoint": {
"type": "string",
"description": "Docker registry service connection",
"ignoreCase": "key"
},
"azureSubscriptionEndpoint": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"azureContainerRegistry": {
"type": "string",
"description": "Azure container registry",
"ignoreCase": "key"
},
"command": {
"description": "Command",
"ignoreCase": "all",
"enum": [
"Build an image",
"Tag image",
"Push an image",
"Run an image",
"login",
"logout"
]
},
"dockerFile": {
"type": "string",
"description": "Dockerfile",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"pushMultipleImages": {
"type": "boolean",
"description": "Push multiple images",
"ignoreCase": "key"
},
"tagMultipleImages": {
"type": "boolean",
"description": "Tag multiple images",
"ignoreCase": "key"
},
"imageName": {
"type": "string",
"description": "Image name",
"ignoreCase": "key"
},
"imageNamesPath": {
"type": "string",
"description": "Image names path",
"ignoreCase": "key"
},
"qualifyImageName": {
"type": "boolean",
"description": "Qualify image name",
"ignoreCase": "key"
},
"qualifySourceImageName": {
"type": "boolean",
"description": "Qualify source image name",
"ignoreCase": "key"
},
"includeSourceTags": {
"type": "boolean",
"description": "Include source tags",
"ignoreCase": "key"
},
"includeLatestTag": {
"type": "boolean",
"description": "Include latest tag",
"ignoreCase": "key"
},
"addDefaultLabels": {
"type": "boolean",
"description": "Add default labels",
"ignoreCase": "key"
},
"useDefaultContext": {
"type": "boolean",
"description": "Use default build context",
"ignoreCase": "key"
},
"buildContext": {
"type": "string",
"description": "Build context",
"ignoreCase": "key"
},
"imageDigestFile": {
"type": "string",
"description": "Image digest file",
"ignoreCase": "key"
},
"containerName": {
"type": "string",
"description": "Container name",
"ignoreCase": "key"
},
"ports": {
"type": "string",
"description": "Ports",
"ignoreCase": "key"
},
"volumes": {
"type": "string",
"description": "Volumes",
"ignoreCase": "key"
},
"envVars": {
"type": "string",
"description": "Environment variables",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key"
},
"entrypointOverride": {
"type": "string",
"description": "Entry point override",
"ignoreCase": "key"
},
"containerCommand": {
"type": "string",
"description": "Container command",
"ignoreCase": "key"
},
"runInBackground": {
"type": "boolean",
"description": "Run in background",
"ignoreCase": "key"
},
"restartPolicy": {
"description": "Restart policy",
"ignoreCase": "all",
"enum": [
"no",
"onFailure",
"always",
"unlessStopped"
]
},
"maxRestartRetries": {
"type": "string",
"description": "Maximum restart retries",
"ignoreCase": "key"
},
"dockerHostEndpoint": {
"type": "string",
"description": "Docker host service connection",
"ignoreCase": "key"
},
"enforceDockerNamingConvention": {
"type": "boolean",
"description": "Force image name to follow Docker naming convention",
"ignoreCase": "key"
},
"memoryLimit": {
"type": "string",
"description": "Memory limit",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Docker\n\nBuild or push Docker images, login or logout, start or stop containers, or run a Docker command",
"ignoreCase": "value",
"pattern": "^Docker@2$"
},
"inputs": {
"description": "Docker inputs",
"properties": {
"containerRegistry": {
"type": "string",
"description": "Container registry",
"ignoreCase": "key"
},
"repository": {
"type": "string",
"description": "Container repository",
"ignoreCase": "key"
},
"command": {
"description": "Command",
"ignoreCase": "all",
"enum": [
"buildAndPush",
"build",
"push",
"login",
"logout",
"start",
"stop"
]
},
"Dockerfile": {
"type": "string",
"description": "Dockerfile",
"ignoreCase": "key"
},
"buildContext": {
"type": "string",
"description": "Build context",
"ignoreCase": "key"
},
"tags": {
"type": "string",
"description": "Tags",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"addPipelineData": {
"type": "boolean",
"description": "Add Pipeline metadata to image(s)",
"ignoreCase": "key"
},
"addBaseImageData": {
"type": "boolean",
"description": "Add base image metadata to image(s)",
"ignoreCase": "key"
},
"container": {
"type": "string",
"description": "Container",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Jenkins Queue Job\n\nQueue a job on a Jenkins server",
"ignoreCase": "value",
"pattern": "^JenkinsQueueJob@1$"
},
"inputs": {
"description": "Jenkins Queue Job inputs",
"properties": {
"serverEndpoint": {
"type": "string",
"description": "Jenkins service endpoint",
"ignoreCase": "key"
},
"jobName": {
"type": "string",
"description": "Job name",
"ignoreCase": "key"
},
"isMultibranchJob": {
"type": "boolean",
"description": "Job is of Multibranch Pipeline type",
"ignoreCase": "key"
},
"multibranchPipelineBranch": {
"type": "string",
"description": "Multibranch Pipeline Branch",
"ignoreCase": "key"
},
"captureConsole": {
"type": "boolean",
"description": "Capture console output and wait for completion",
"ignoreCase": "key"
},
"capturePipeline": {
"type": "boolean",
"description": "Capture pipeline output and wait for pipeline completion",
"ignoreCase": "key"
},
"parameterizedJob": {
"type": "boolean",
"description": "Parameterized job",
"ignoreCase": "key"
},
"jobParameters": {
"type": "string",
"description": "Job parameters",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"serverEndpoint",
"jobName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Jenkins queue job\n\nQueue a job on a Jenkins server",
"ignoreCase": "value",
"pattern": "^JenkinsQueueJob@2$"
},
"inputs": {
"description": "Jenkins queue job inputs",
"properties": {
"serverEndpoint": {
"type": "string",
"description": "Jenkins service connection",
"ignoreCase": "key"
},
"jobName": {
"type": "string",
"description": "Job name",
"ignoreCase": "key"
},
"isMultibranchJob": {
"type": "boolean",
"description": "Job is of multibranch pipeline type",
"ignoreCase": "key"
},
"multibranchPipelineBranch": {
"type": "string",
"description": "Multibranch pipeline branch",
"ignoreCase": "key"
},
"captureConsole": {
"type": "boolean",
"description": "Capture console output and wait for completion",
"ignoreCase": "key"
},
"capturePipeline": {
"type": "boolean",
"description": "Capture pipeline output and wait for pipeline completion",
"ignoreCase": "key"
},
"isParameterizedJob": {
"type": "boolean",
"description": "Parameterized job",
"ignoreCase": "key",
"aliases": [
"parameterizedJob"
]
},
"jobParameters": {
"type": "string",
"description": "Job parameters",
"ignoreCase": "key"
},
"failOnUnstableResult": {
"type": "boolean",
"description": "Fail on unstable result",
"ignoreCase": "key"
},
"retryCount": {
"type": "string",
"description": "Number of retries for failed connection",
"ignoreCase": "key"
},
"delayBetweenRetries": {
"type": "string",
"description": "Time between retries",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"serverEndpoint",
"jobName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "FTP upload\n\nUpload files using FTP",
"ignoreCase": "value",
"pattern": "^FtpUpload@2$"
},
"inputs": {
"description": "FTP upload inputs",
"properties": {
"credentialsOption": {
"description": "Authentication Method",
"ignoreCase": "all",
"enum": [
"serviceEndpoint",
"inputs"
],
"aliases": [
"credsType"
]
},
"serverEndpoint": {
"type": "string",
"description": "FTP Service Connection",
"ignoreCase": "key"
},
"serverUrl": {
"type": "string",
"description": "Server URL",
"ignoreCase": "key"
},
"username": {
"type": "string",
"description": "Username",
"ignoreCase": "key"
},
"password": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"rootDirectory": {
"type": "string",
"description": "Root folder",
"ignoreCase": "key",
"aliases": [
"rootFolder"
]
},
"filePatterns": {
"type": "string",
"description": "File patterns",
"ignoreCase": "key"
},
"remoteDirectory": {
"type": "string",
"description": "Remote directory",
"ignoreCase": "key",
"aliases": [
"remotePath"
]
},
"enableUtf8": {
"type": "boolean",
"description": "Enable UTF8 support",
"ignoreCase": "key"
},
"clean": {
"type": "boolean",
"description": "Delete remote directory",
"ignoreCase": "key"
},
"cleanContents": {
"type": "boolean",
"description": "Clear remote directory contents",
"ignoreCase": "key"
},
"preservePaths": {
"type": "boolean",
"description": "Preserve file paths",
"ignoreCase": "key"
},
"trustSSL": {
"type": "boolean",
"description": "Trust server certificate",
"ignoreCase": "key"
},
"customCmds": {
"type": "string",
"description": "FTP Commands",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"rootDirectory"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "FTP upload\n\nUpload files using FTP",
"ignoreCase": "value",
"pattern": "^FtpUpload@1$"
},
"inputs": {
"description": "FTP upload inputs",
"properties": {
"credentialsOption": {
"description": "Authentication Method",
"ignoreCase": "all",
"enum": [
"serviceEndpoint",
"inputs"
],
"aliases": [
"credsType"
]
},
"serverEndpoint": {
"type": "string",
"description": "FTP Service Connection",
"ignoreCase": "key"
},
"serverUrl": {
"type": "string",
"description": "Server URL",
"ignoreCase": "key"
},
"username": {
"type": "string",
"description": "Username",
"ignoreCase": "key"
},
"password": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"rootDirectory": {
"type": "string",
"description": "Root folder",
"ignoreCase": "key",
"aliases": [
"rootFolder"
]
},
"filePatterns": {
"type": "string",
"description": "File patterns",
"ignoreCase": "key"
},
"remoteDirectory": {
"type": "string",
"description": "Remote directory",
"ignoreCase": "key",
"aliases": [
"remotePath"
]
},
"clean": {
"type": "boolean",
"description": "Delete remote directory",
"ignoreCase": "key"
},
"cleanContents": {
"type": "boolean",
"description": "Clear remote directory contents",
"ignoreCase": "key"
},
"overwrite": {
"type": "boolean",
"description": "Overwrite",
"ignoreCase": "key"
},
"preservePaths": {
"type": "boolean",
"description": "Preserve file paths",
"ignoreCase": "key"
},
"trustSSL": {
"type": "boolean",
"description": "Trust server certificate",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"rootDirectory"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Windows machine file copy\n\nCopy files to remote Windows machines",
"ignoreCase": "value",
"pattern": "^WindowsMachineFileCopy@1$"
},
"inputs": {
"description": "Windows machine file copy inputs",
"properties": {
"SourcePath": {
"type": "string",
"description": "Source",
"ignoreCase": "key"
},
"EnvironmentName": {
"type": "string",
"description": "Machines",
"ignoreCase": "key"
},
"AdminUserName": {
"type": "string",
"description": "Admin Login",
"ignoreCase": "key"
},
"AdminPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"TargetPath": {
"type": "string",
"description": "Destination Folder",
"ignoreCase": "key"
},
"CleanTargetBeforeCopy": {
"type": "boolean",
"description": "Clean Target",
"ignoreCase": "key"
},
"CopyFilesInParallel": {
"type": "boolean",
"description": "Copy Files in Parallel",
"ignoreCase": "key"
},
"AdditionalArguments": {
"type": "string",
"description": "Additional Arguments",
"ignoreCase": "key"
},
"ResourceFilteringMethod": {
"description": "Select Machines By",
"ignoreCase": "all",
"enum": [
"machineNames",
"tags"
]
},
"MachineNames": {
"type": "string",
"description": "Filter Criteria",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"SourcePath",
"TargetPath"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Windows machine file copy\n\nCopy files to remote Windows machines",
"ignoreCase": "value",
"pattern": "^WindowsMachineFileCopy@2$"
},
"inputs": {
"description": "Windows machine file copy inputs",
"properties": {
"SourcePath": {
"type": "string",
"description": "Source",
"ignoreCase": "key"
},
"MachineNames": {
"type": "string",
"description": "Machines",
"ignoreCase": "key"
},
"AdminUserName": {
"type": "string",
"description": "Admin Login",
"ignoreCase": "key"
},
"AdminPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"TargetPath": {
"type": "string",
"description": "Destination Folder",
"ignoreCase": "key"
},
"CleanTargetBeforeCopy": {
"type": "boolean",
"description": "Clean Target",
"ignoreCase": "key"
},
"CopyFilesInParallel": {
"type": "boolean",
"description": "Copy Files in Parallel",
"ignoreCase": "key"
},
"AdditionalArguments": {
"type": "string",
"description": "Additional Arguments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"SourcePath",
"MachineNames",
"AdminUserName",
"AdminPassword",
"TargetPath"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Android Build\n\n[Deprecated] Use Gradle",
"ignoreCase": "value",
"pattern": "^AndroidBuild@1$"
},
"inputs": {
"description": "Android Build inputs",
"properties": {
"gradleWrapper": {
"type": "string",
"description": "Location of Gradle Wrapper",
"ignoreCase": "key"
},
"gradleProj": {
"type": "string",
"description": "Project Directory",
"ignoreCase": "key"
},
"gradleArguments": {
"type": "string",
"description": "Gradle Arguments",
"ignoreCase": "key"
},
"avdName": {
"type": "string",
"description": "Name",
"ignoreCase": "key"
},
"createAvd": {
"type": "boolean",
"description": "Create AVD",
"ignoreCase": "key"
},
"emulatorTarget": {
"type": "string",
"description": "AVD Target SDK",
"ignoreCase": "key"
},
"emulatorDevice": {
"type": "string",
"description": "AVD Device",
"ignoreCase": "key"
},
"avdAbi": {
"type": "string",
"description": "AVD ABI",
"ignoreCase": "key"
},
"avdForce": {
"type": "boolean",
"description": "Overwrite Existing AVD",
"ignoreCase": "key"
},
"avdOptionalArgs": {
"type": "string",
"description": "Create AVD Optional Arguments",
"ignoreCase": "key"
},
"startEmulator": {
"type": "boolean",
"description": "Start and Stop Android Emulator",
"ignoreCase": "key"
},
"emulatorTimeout": {
"type": "string",
"description": "Timeout in Seconds",
"ignoreCase": "key"
},
"emulatorHeadless": {
"type": "boolean",
"description": "Headless Display",
"ignoreCase": "key"
},
"emulatorOptionalArgs": {
"type": "string",
"description": "Emulator Optional Arguments",
"ignoreCase": "key"
},
"deleteAvd": {
"type": "boolean",
"description": "Delete AVD",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"deprecationMessage": "AndroidBuild is deprecated - [Deprecated] Use Gradle",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Python twine upload authenticate\n\nAuthenticate for uploading Python distributions using twine. Add '-r FeedName/EndpointName --config-file $(PYPIRC_PATH)' to your twine upload command. For feeds present in this organization, use the feed name as the repository (-r). Otherwise, use the endpoint name defined in the service connection.",
"ignoreCase": "value",
"pattern": "^TwineAuthenticate@0$"
},
"inputs": {
"description": "Python twine upload authenticate inputs",
"properties": {
"artifactFeeds": {
"type": "string",
"description": "My feeds (select below)",
"ignoreCase": "key",
"aliases": [
"feedList"
]
},
"externalFeeds": {
"type": "string",
"description": "Feeds from external organizations",
"ignoreCase": "key",
"aliases": [
"externalSources"
]
},
"publishPackageMetadata": {
"type": "boolean",
"description": "Publish pipeline metadata",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Python twine upload authenticate\n\nAuthenticate for uploading Python distributions using twine. Add '-r FeedName/EndpointName --config-file $(PYPIRC_PATH)' to your twine upload command. For feeds present in this organization, use the feed name as the repository (-r). Otherwise, use the endpoint name defined in the service connection.",
"ignoreCase": "value",
"pattern": "^TwineAuthenticate@1$"
},
"inputs": {
"description": "Python twine upload authenticate inputs",
"properties": {
"artifactFeed": {
"type": "string",
"description": "My feed name (select below)",
"ignoreCase": "key",
"aliases": [
"artifactFeed"
]
},
"pythonUploadServiceConnection": {
"type": "string",
"description": "Feed from external organizations",
"ignoreCase": "key",
"aliases": [
"pythonUploadServiceConnection"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "IIS web app deploy\n\nDeploy a website or web application using Web Deploy",
"ignoreCase": "value",
"pattern": "^IISWebAppDeploymentOnMachineGroup@0$"
},
"inputs": {
"description": "IIS web app deploy inputs",
"properties": {
"WebSiteName": {
"type": "string",
"description": "Website Name",
"ignoreCase": "key"
},
"VirtualApplication": {
"type": "string",
"description": "Virtual Application",
"ignoreCase": "key"
},
"Package": {
"type": "string",
"description": "Package or Folder",
"ignoreCase": "key"
},
"SetParametersFile": {
"type": "string",
"description": "SetParameters File",
"ignoreCase": "key"
},
"RemoveAdditionalFilesFlag": {
"type": "boolean",
"description": "Remove Additional Files at Destination",
"ignoreCase": "key"
},
"ExcludeFilesFromAppDataFlag": {
"type": "boolean",
"description": "Exclude Files from the App_Data Folder",
"ignoreCase": "key"
},
"TakeAppOfflineFlag": {
"type": "boolean",
"description": "Take App Offline",
"ignoreCase": "key"
},
"AdditionalArguments": {
"type": "string",
"description": "Additional Arguments",
"ignoreCase": "key"
},
"XmlTransformation": {
"type": "boolean",
"description": "XML transformation",
"ignoreCase": "key"
},
"XmlVariableSubstitution": {
"type": "boolean",
"description": "XML variable substitution",
"ignoreCase": "key"
},
"JSONFiles": {
"type": "string",
"description": "JSON variable substitution",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"WebSiteName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Python script\n\nRun a Python file or inline script",
"ignoreCase": "value",
"pattern": "^PythonScript@0$"
},
"inputs": {
"description": "Python script inputs",
"properties": {
"scriptSource": {
"description": "Script source",
"ignoreCase": "all",
"enum": [
"filePath",
"inline"
]
},
"scriptPath": {
"type": "string",
"description": "Script path",
"ignoreCase": "key"
},
"script": {
"type": "string",
"description": "Script",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"pythonInterpreter": {
"type": "string",
"description": "Python interpreter",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key"
},
"failOnStderr": {
"type": "boolean",
"description": "Fail on standard error",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Helm tool installer\n\nInstall Helm and Kubernetes on an agent machine",
"ignoreCase": "value",
"pattern": "^HelmInstaller@0$"
},
"inputs": {
"description": "Helm tool installer inputs",
"properties": {
"helmVersion": {
"type": "string",
"description": "Helm Version Spec",
"ignoreCase": "key"
},
"checkLatestHelmVersion": {
"type": "boolean",
"description": "Check for latest version of Helm",
"ignoreCase": "key"
},
"installKubectl": {
"type": "boolean",
"description": "Install Kubectl",
"ignoreCase": "key",
"aliases": [
"installKubeCtl"
]
},
"kubectlVersion": {
"type": "string",
"description": "Kubectl Version Spec",
"ignoreCase": "key"
},
"checkLatestKubectl": {
"type": "boolean",
"description": "Check for latest version of kubectl",
"ignoreCase": "key",
"aliases": [
"checkLatestKubeCtl"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Helm tool installer\n\nInstall Helm on an agent machine",
"ignoreCase": "value",
"pattern": "^HelmInstaller@1$"
},
"inputs": {
"description": "Helm tool installer inputs",
"properties": {
"helmVersionToInstall": {
"type": "string",
"description": "Helm Version Spec",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Node.js tasks runner installer\n\nInstall specific Node.js version to run node tasks",
"ignoreCase": "value",
"pattern": "^NodeTaskRunnerInstaller@0$"
},
"inputs": {
"description": "Node.js tasks runner installer inputs",
"properties": {
"nodeVersion": {
"description": "Version of runner to install",
"ignoreCase": "all",
"enum": [
"6",
"10"
],
"aliases": [
"runnerVersion",
"installVersion"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Xamarin License\n\n[Deprecated] Upgrade to free version of Xamarin: https://store.xamarin.com",
"ignoreCase": "value",
"pattern": "^XamarinLicense@1$"
},
"inputs": {
"description": "Xamarin License inputs",
"properties": {
"action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"Activate",
"Deactivate"
]
},
"email": {
"type": "string",
"description": "Email",
"ignoreCase": "key"
},
"password": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"product": {
"description": "Xamarin Product",
"ignoreCase": "all",
"enum": [
"MA",
"MT",
"MM"
]
},
"timeout": {
"type": "string",
"description": "Timeout in Seconds",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"email",
"password"
]
}
},
"deprecationMessage": "XamarinLicense is deprecated - [Deprecated] Upgrade to free version of Xamarin: https://store.xamarin.com",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "NuGet authenticate\n\nThis version of the task is deprecated, use NuGetAuthenticateV1 instead. Configure NuGet tools to authenticate with Azure Artifacts and other NuGet repositories. Requires NuGet >= 4.8.5385, dotnet >= 2.1.400, or MSBuild >= 15.8.166.59604.",
"ignoreCase": "value",
"pattern": "^NuGetAuthenticate@0$"
},
"inputs": {
"description": "NuGet authenticate inputs",
"properties": {
"nuGetServiceConnections": {
"type": "string",
"description": "Service connection credentials for feeds outside this organization",
"ignoreCase": "key"
},
"forceReinstallCredentialProvider": {
"type": "boolean",
"description": "Reinstall the credential provider even if already installed",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"deprecationMessage": "NuGetAuthenticate is deprecated - This version of the task is deprecated, use NuGetAuthenticateV1 instead. Configure NuGet tools to authenticate with Azure Artifacts and other NuGet repositories. Requires NuGet >= 4.8.5385, dotnet >= 2.1.400, or MSBuild >= 15.8.166.59604.",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "NuGet authenticate\n\nConfigure NuGet tools to authenticate with Azure Artifacts and other NuGet repositories. Requires NuGet >= 4.8.5385, dotnet >= 6, or MSBuild >= 15.8.166.59604",
"ignoreCase": "value",
"pattern": "^NuGetAuthenticate@1$"
},
"inputs": {
"description": "NuGet authenticate inputs",
"properties": {
"nuGetServiceConnections": {
"type": "string",
"description": "Service connection credentials for feeds outside this organization",
"ignoreCase": "key"
},
"forceReinstallCredentialProvider": {
"type": "boolean",
"description": "Reinstall the credential provider even if already installed",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Download GitHub Nuget Packages\n\nRestore your nuget packages using dotnet CLI",
"ignoreCase": "value",
"pattern": "^DownloadGitHubNugetPackage@1$"
},
"inputs": {
"description": "Download GitHub Nuget Packages inputs",
"properties": {
"packageName": {
"type": "string",
"description": "Package Name",
"ignoreCase": "key"
},
"version": {
"type": "string",
"description": "Package Version",
"ignoreCase": "key"
},
"externalFeedCredentials": {
"type": "string",
"description": "Credentials for feed from GitHub",
"ignoreCase": "key",
"aliases": [
"externalEndpoints"
]
},
"restoreDirectory": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key",
"aliases": [
"packagesDirectory"
]
}
},
"additionalProperties": false,
"required": [
"packageName",
"version"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Maven Authenticate\n\nProvides credentials for Azure Artifacts feeds and external maven repositories",
"ignoreCase": "value",
"pattern": "^MavenAuthenticate@0$"
},
"inputs": {
"description": "Maven Authenticate inputs",
"properties": {
"artifactsFeeds": {
"type": "string",
"description": "Feeds",
"ignoreCase": "key"
},
"mavenServiceConnections": {
"type": "string",
"description": "Credentials for repositories outside this organization/collection",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Review App\n\nUse this task under deploy phase provider to create a resource dynamically",
"ignoreCase": "value",
"pattern": "^ReviewApp@0$"
},
"inputs": {
"description": "Review App inputs",
"properties": {
"resourceName": {
"type": "string",
"description": "Resource name",
"ignoreCase": "key"
},
"baseEnvironmentName": {
"type": "string",
"description": "Environment name",
"ignoreCase": "key"
},
"reviewResourceName": {
"type": "string",
"description": "Review Resource Name",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"resourceName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Java tool installer\n\nAcquire a specific version of Java from a user-supplied Azure blob or the tool cache and sets JAVA_HOME",
"ignoreCase": "value",
"pattern": "^JavaToolInstaller@0$"
},
"inputs": {
"description": "Java tool installer inputs",
"properties": {
"versionSpec": {
"type": "string",
"description": "JDK version",
"ignoreCase": "key"
},
"jdkArchitectureOption": {
"description": "JDK architecture",
"ignoreCase": "all",
"enum": [
"x64",
"x86"
]
},
"jdkSourceOption": {
"description": "JDK source",
"ignoreCase": "all",
"enum": [
"AzureStorage",
"LocalDirectory",
"PreInstalled"
]
},
"jdkFile": {
"type": "string",
"description": "JDK file",
"ignoreCase": "key"
},
"azureResourceManagerEndpoint": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"azureStorageAccountName": {
"type": "string",
"description": "Storage account name",
"ignoreCase": "key"
},
"azureContainerName": {
"type": "string",
"description": "Container name",
"ignoreCase": "key"
},
"azureCommonVirtualFile": {
"type": "string",
"description": "Common virtual path",
"ignoreCase": "key"
},
"jdkDestinationDirectory": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key"
},
"cleanDestinationDirectory": {
"type": "boolean",
"description": "Clean destination directory",
"ignoreCase": "key"
},
"createExtractDirectory": {
"type": "boolean",
"description": "Create directory for extracting",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"jdkArchitectureOption",
"jdkSourceOption"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Chef\n\nDeploy to Chef environments by editing environment attributes",
"ignoreCase": "value",
"pattern": "^Chef@1$"
},
"inputs": {
"description": "Chef inputs",
"properties": {
"connectedServiceName": {
"type": "string",
"description": "Chef Service Connection",
"ignoreCase": "key"
},
"Environment": {
"type": "string",
"description": "Environment",
"ignoreCase": "key"
},
"Attributes": {
"type": "string",
"description": "Environment Attributes",
"ignoreCase": "key"
},
"chefWaitTime": {
"type": "string",
"description": "Wait Time",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"connectedServiceName",
"Environment",
"Attributes"
]
}
},
"deprecationMessage": "Chef is deprecated - Deploy to Chef environments by editing environment attributes",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure Functions Deploy\n\nUpdate a function app with .NET, Python, JavaScript, PowerShell, Java based web applications",
"ignoreCase": "value",
"pattern": "^AzureFunctionApp@2$"
},
"inputs": {
"description": "Azure Functions Deploy inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"appType": {
"description": "App type",
"ignoreCase": "all",
"enum": [
"functionApp",
"functionAppLinux"
]
},
"appName": {
"type": "string",
"description": "Azure Functions App name",
"ignoreCase": "key"
},
"deployToSlotOrASE": {
"type": "boolean",
"description": "Deploy to Slot or App Service Environment",
"ignoreCase": "key"
},
"resourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"slotName": {
"type": "string",
"description": "Slot",
"ignoreCase": "key"
},
"package": {
"type": "string",
"description": "Package or folder",
"ignoreCase": "key"
},
"runtimeStack": {
"description": "Runtime stack",
"ignoreCase": "all",
"enum": [
"DOTNET|2.2",
"DOTNET|3.1",
"DOTNET|6.0",
"DOTNET-ISOLATED|7.0",
"JAVA|8",
"JAVA|11",
"NODE|8",
"NODE|10",
"NODE|12",
"NODE|14",
"NODE|16",
"NODE|18",
"PYTHON|3.6",
"PYTHON|3.7",
"PYTHON|3.8",
"PYTHON|3.9"
]
},
"appSettings": {
"type": "string",
"description": "App settings",
"ignoreCase": "key"
},
"deploymentMethod": {
"description": "Deployment method",
"ignoreCase": "all",
"enum": [
"auto",
"zipDeploy",
"runFromPackage"
]
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"appType",
"appName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure Functions\n\nUpdate a function app with .NET, Python, JavaScript, PowerShell, Java based web applications",
"ignoreCase": "value",
"pattern": "^AzureFunctionApp@1$"
},
"inputs": {
"description": "Azure Functions inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"appType": {
"description": "App type",
"ignoreCase": "all",
"enum": [
"functionApp",
"functionAppLinux"
]
},
"appName": {
"type": "string",
"description": "Azure Functions App name",
"ignoreCase": "key"
},
"deployToSlotOrASE": {
"type": "boolean",
"description": "Deploy to Slot or App Service Environment",
"ignoreCase": "key"
},
"resourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"slotName": {
"type": "string",
"description": "Slot",
"ignoreCase": "key"
},
"package": {
"type": "string",
"description": "Package or folder",
"ignoreCase": "key"
},
"runtimeStack": {
"description": "Runtime stack",
"ignoreCase": "all",
"enum": [
"DOTNET|2.2",
"DOTNET|3.1",
"DOTNET|6.0",
"JAVA|8",
"JAVA|11",
"NODE|8",
"NODE|10",
"NODE|12",
"NODE|14",
"NODE|16",
"PYTHON|3.6",
"PYTHON|3.7",
"PYTHON|3.8",
"PYTHON|3.9"
]
},
"startUpCommand": {
"type": "string",
"description": "Startup command ",
"ignoreCase": "key"
},
"customWebConfig": {
"type": "string",
"description": "Generate web.config parameters for Python, Node.js, Go and Java apps",
"ignoreCase": "key"
},
"appSettings": {
"type": "string",
"description": "App settings",
"ignoreCase": "key"
},
"configurationStrings": {
"type": "string",
"description": "Configuration settings",
"ignoreCase": "key"
},
"deploymentMethod": {
"description": "Deployment method",
"ignoreCase": "all",
"enum": [
"auto",
"zipDeploy",
"runFromPackage"
]
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"appType",
"appName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "npm authenticate (for task runners)\n\nDon't use this task if you're also using the npm task. Provides npm credentials to an .npmrc file in your repository for the scope of the build. This enables npm task runners like gulp and Grunt to authenticate with private registries.",
"ignoreCase": "value",
"pattern": "^npmAuthenticate@0$"
},
"inputs": {
"description": "npm authenticate (for task runners) inputs",
"properties": {
"workingFile": {
"type": "string",
"description": ".npmrc file to authenticate",
"ignoreCase": "key"
},
"customEndpoint": {
"type": "string",
"description": "Credentials for registries outside this organization/collection",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"workingFile"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "MSBuild\n\nBuild with MSBuild",
"ignoreCase": "value",
"pattern": "^MSBuild@1$"
},
"inputs": {
"description": "MSBuild inputs",
"properties": {
"solution": {
"type": "string",
"description": "Project",
"ignoreCase": "key"
},
"msbuildLocationMethod": {
"description": "MSBuild",
"ignoreCase": "all",
"enum": [
"version",
"location"
]
},
"msbuildVersion": {
"description": "MSBuild Version",
"ignoreCase": "all",
"enum": [
"latest",
"17.0",
"16.0",
"15.0",
"14.0",
"12.0",
"4.0"
]
},
"msbuildArchitecture": {
"description": "MSBuild Architecture",
"ignoreCase": "all",
"enum": [
"x86",
"x64"
]
},
"msbuildLocation": {
"type": "string",
"description": "Path to MSBuild",
"ignoreCase": "key"
},
"platform": {
"type": "string",
"description": "Platform",
"ignoreCase": "key"
},
"configuration": {
"type": "string",
"description": "Configuration",
"ignoreCase": "key"
},
"msbuildArguments": {
"type": "string",
"description": "MSBuild Arguments",
"ignoreCase": "key"
},
"clean": {
"type": "boolean",
"description": "Clean",
"ignoreCase": "key"
},
"maximumCpuCount": {
"type": "boolean",
"description": "Build in Parallel",
"ignoreCase": "key"
},
"restoreNugetPackages": {
"type": "boolean",
"description": "Restore NuGet Packages",
"ignoreCase": "key"
},
"logProjectEvents": {
"type": "boolean",
"description": "Record Project Details",
"ignoreCase": "key"
},
"createLogFile": {
"type": "boolean",
"description": "Create Log File",
"ignoreCase": "key"
},
"logFileVerbosity": {
"description": "Log File Verbosity",
"ignoreCase": "all",
"enum": [
"quiet",
"minimal",
"normal",
"detailed",
"diagnostic"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Build machine image\n\nBuild a machine image using Packer, which may be used for Azure Virtual machine scale set deployment",
"ignoreCase": "value",
"pattern": "^PackerBuild@0$"
},
"inputs": {
"description": "Build machine image inputs",
"properties": {
"templateType": {
"description": "Packer template",
"ignoreCase": "all",
"enum": [
"builtin",
"custom"
]
},
"customTemplateLocation": {
"type": "string",
"description": "Packer template location",
"ignoreCase": "key"
},
"customTemplateParameters": {
"type": "string",
"description": "Template parameters",
"ignoreCase": "key"
},
"ConnectedServiceName": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"location": {
"type": "string",
"description": "Storage location",
"ignoreCase": "key"
},
"storageAccountName": {
"type": "string",
"description": "Storage account",
"ignoreCase": "key"
},
"azureResourceGroup": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"baseImageSource": {
"description": "Base image source",
"ignoreCase": "all",
"enum": [
"default",
"customVhd"
]
},
"baseImage": {
"description": "Base image",
"ignoreCase": "all",
"enum": [
"MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:windows",
"MicrosoftWindowsServer:WindowsServer:2016-Datacenter:windows",
"MicrosoftWindowsServer:WindowsServer:2012-Datacenter:windows",
"MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:windows",
"Canonical:UbuntuServer:14.04.4-LTS:linux",
"Canonical:UbuntuServer:16.04-LTS:linux",
"RedHat:RHEL:7.2:linux",
"RedHat:RHEL:6.8:linux",
"OpenLogic:CentOS:7.2:linux",
"OpenLogic:CentOS:6.8:linux",
"credativ:Debian:8:linux",
"credativ:Debian:7:linux",
"SUSE:openSUSE-Leap:42.2:linux",
"SUSE:SLES:12-SP2:linux",
"SUSE:SLES:11-SP4:linux"
]
},
"customImageUrl": {
"type": "string",
"description": "Base image URL",
"ignoreCase": "key"
},
"customImageOSType": {
"description": "Base image OS",
"ignoreCase": "all",
"enum": [
"windows",
"linux"
]
},
"packagePath": {
"type": "string",
"description": "Deployment Package",
"ignoreCase": "key"
},
"deployScriptPath": {
"type": "string",
"description": "Deployment script",
"ignoreCase": "key"
},
"deployScriptArguments": {
"type": "string",
"description": "Deployment script arguments",
"ignoreCase": "key"
},
"additionalBuilderParameters": {
"type": "string",
"description": "Additional Builder parameters",
"ignoreCase": "key"
},
"skipTempFileCleanupDuringVMDeprovision": {
"type": "boolean",
"description": "Skip temporary file cleanup during deprovision",
"ignoreCase": "key"
},
"imageUri": {
"type": "string",
"description": "Image URL",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"ConnectedServiceName",
"location",
"storageAccountName",
"azureResourceGroup",
"packagePath",
"deployScriptPath"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Build machine image\n\nBuild a machine image using Packer, which may be used for Azure Virtual machine scale set deployment",
"ignoreCase": "value",
"pattern": "^PackerBuild@1$"
},
"inputs": {
"description": "Build machine image inputs",
"properties": {
"templateType": {
"description": "Packer template",
"ignoreCase": "all",
"enum": [
"builtin",
"custom"
]
},
"customTemplateLocation": {
"type": "string",
"description": "Packer template location",
"ignoreCase": "key"
},
"customTemplateParameters": {
"type": "string",
"description": "Template parameters",
"ignoreCase": "key"
},
"ConnectedServiceName": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"isManagedImage": {
"type": "boolean",
"description": "Managed VM disk image",
"ignoreCase": "key"
},
"managedImageName": {
"type": "string",
"description": "Managed VM Disk Image Name ",
"ignoreCase": "key"
},
"location": {
"type": "string",
"description": "Storage location",
"ignoreCase": "key"
},
"storageAccountName": {
"type": "string",
"description": "Storage account",
"ignoreCase": "key"
},
"azureResourceGroup": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"baseImageSource": {
"description": "Base image source",
"ignoreCase": "all",
"enum": [
"default",
"customVhd"
]
},
"baseImage": {
"description": "Base image",
"ignoreCase": "all",
"enum": [
"MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:windows",
"MicrosoftWindowsServer:WindowsServer:2016-Datacenter:windows",
"MicrosoftWindowsServer:WindowsServer:2012-Datacenter:windows",
"MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:windows",
"Canonical:UbuntuServer:14.04.4-LTS:linux",
"Canonical:UbuntuServer:16.04-LTS:linux",
"Canonical:UbuntuServer:18.04-LTS:linux",
"RedHat:RHEL:7.2:linux",
"RedHat:RHEL:6.8:linux",
"OpenLogic:CentOS:7.2:linux",
"OpenLogic:CentOS:6.8:linux",
"credativ:Debian:8:linux",
"credativ:Debian:7:linux",
"SUSE:openSUSE-Leap:42.2:linux",
"SUSE:SLES:12-SP2:linux",
"SUSE:SLES:11-SP4:linux"
]
},
"customImageUrl": {
"type": "string",
"description": "Base image URL",
"ignoreCase": "key"
},
"customImageOSType": {
"description": "Base image OS",
"ignoreCase": "all",
"enum": [
"windows",
"linux"
]
},
"packagePath": {
"type": "string",
"description": "Deployment Package",
"ignoreCase": "key"
},
"deployScriptPath": {
"type": "string",
"description": "Deployment script",
"ignoreCase": "key"
},
"deployScriptArguments": {
"type": "string",
"description": "Deployment script arguments",
"ignoreCase": "key"
},
"additionalBuilderParameters": {
"type": "string",
"description": "Additional Builder parameters",
"ignoreCase": "key"
},
"skipTempFileCleanupDuringVMDeprovision": {
"type": "boolean",
"description": "Skip temporary file cleanup during deprovision",
"ignoreCase": "key"
},
"packerVersion": {
"type": "string",
"description": "Packer Version",
"ignoreCase": "key"
},
"imageUri": {
"type": "string",
"description": "Image URL or Name",
"ignoreCase": "key"
},
"imageId": {
"type": "string",
"description": "Azure Resource Id",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"ConnectedServiceName",
"location",
"storageAccountName",
"azureResourceGroup",
"packagePath",
"deployScriptPath"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "NuGet packager\n\nDeprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.",
"ignoreCase": "value",
"pattern": "^NuGetPackager@0$"
},
"inputs": {
"description": "NuGet packager inputs",
"properties": {
"searchPattern": {
"type": "string",
"description": "Path to csproj or nuspec file(s) to pack",
"ignoreCase": "key"
},
"outputdir": {
"type": "string",
"description": "Package Folder",
"ignoreCase": "key"
},
"includeReferencedProjects": {
"type": "boolean",
"description": "Include referenced projects",
"ignoreCase": "key"
},
"versionByBuild": {
"description": "Automatic package versioning",
"ignoreCase": "all",
"enum": [
"false",
"byPrereleaseNumber",
"byEnvVar",
"true"
]
},
"versionEnvVar": {
"type": "string",
"description": "Environment variable",
"ignoreCase": "key"
},
"requestedMajorVersion": {
"type": "string",
"description": "Major",
"ignoreCase": "key"
},
"requestedMinorVersion": {
"type": "string",
"description": "Minor",
"ignoreCase": "key"
},
"requestedPatchVersion": {
"type": "string",
"description": "Patch",
"ignoreCase": "key"
},
"configurationToPack": {
"type": "string",
"description": "Configuration to Package",
"ignoreCase": "key"
},
"buildProperties": {
"type": "string",
"description": "Additional build properties",
"ignoreCase": "key"
},
"nuGetAdditionalArgs": {
"type": "string",
"description": "NuGet Arguments",
"ignoreCase": "key"
},
"nuGetPath": {
"type": "string",
"description": "Path to NuGet.exe",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"deprecationMessage": "NuGetPackager is deprecated - Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Duffle tool installer\n\nInstall a specified version of Duffle for installing and managing CNAB bundles",
"ignoreCase": "value",
"pattern": "^DuffleInstaller@0$"
},
"inputs": {
"description": "Duffle tool installer inputs",
"properties": {
"version": {
"type": "string",
"description": "Version",
"ignoreCase": "key"
},
"checkLatestVersion": {
"type": "boolean",
"description": "Check for latest version",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Update Service Fabric App Versions\n\nAutomatically updates the versions of a packaged Service Fabric application.",
"ignoreCase": "value",
"pattern": "^ServiceFabricUpdateAppVersions@1$"
},
"inputs": {
"description": "Update Service Fabric App Versions inputs",
"properties": {
"applicationPackagePath": {
"type": "string",
"description": "Application Package",
"ignoreCase": "key"
},
"versionSuffix": {
"type": "string",
"description": "Version Value",
"ignoreCase": "key"
},
"versionBehavior": {
"description": "Version Behavior",
"ignoreCase": "all",
"enum": [
"Append",
"Replace"
]
},
"updateOnlyChanged": {
"type": "boolean",
"description": "Update only if changed",
"ignoreCase": "key"
},
"pkgArtifactName": {
"type": "string",
"description": "Package Artifact Name",
"ignoreCase": "key"
},
"logAllChanges": {
"type": "boolean",
"description": "Log all changes",
"ignoreCase": "key"
},
"compareType": {
"description": "Compare against",
"ignoreCase": "all",
"enum": [
"LastSuccessful",
"Specific"
]
},
"buildNumber": {
"type": "string",
"description": "Build Number",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"applicationPackagePath"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Update Service Fabric manifests\n\nAutomatically update portions of application and service manifests in a packaged Azure Service Fabric application",
"ignoreCase": "value",
"pattern": "^ServiceFabricUpdateManifests@2$"
},
"inputs": {
"description": "Update Service Fabric manifests inputs",
"properties": {
"updateType": {
"description": "Update Type",
"ignoreCase": "all",
"enum": [
"Manifest versions",
"Docker image settings"
]
},
"applicationPackagePath": {
"type": "string",
"description": "Application Package",
"ignoreCase": "key"
},
"versionSuffix": {
"type": "string",
"description": "Version Value",
"ignoreCase": "key"
},
"versionBehavior": {
"description": "Version Behavior",
"ignoreCase": "all",
"enum": [
"Append",
"Replace"
]
},
"updateOnlyChanged": {
"type": "boolean",
"description": "Update only if changed",
"ignoreCase": "key"
},
"pkgArtifactName": {
"type": "string",
"description": "Package Artifact Name",
"ignoreCase": "key"
},
"logAllChanges": {
"type": "boolean",
"description": "Log all changes",
"ignoreCase": "key"
},
"compareType": {
"description": "Compare against",
"ignoreCase": "all",
"enum": [
"LastSuccessful",
"Specific"
]
},
"buildNumber": {
"type": "string",
"description": "Build Number",
"ignoreCase": "key"
},
"overwriteExistingPkgArtifact": {
"type": "boolean",
"description": "Overwrite Existing Package Artifact",
"ignoreCase": "key"
},
"imageNamesPath": {
"type": "string",
"description": "Image Names Path",
"ignoreCase": "key"
},
"imageDigestsPath": {
"type": "string",
"description": "Image Digests Path",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"applicationPackagePath"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Query Azure Monitor alerts\n\nObserve the configured Azure Monitor rules for active alerts",
"ignoreCase": "value",
"pattern": "^AzureMonitor@1$"
},
"inputs": {
"description": "Query Azure Monitor alerts inputs",
"properties": {
"connectedServiceNameARM": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"ResourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"filterType": {
"description": "Filter type",
"ignoreCase": "all",
"enum": [
"resource",
"alertrule",
"none"
]
},
"resource": {
"type": "string",
"description": "Resource",
"ignoreCase": "key"
},
"alertRule": {
"type": "string",
"description": "Alert rule",
"ignoreCase": "key"
},
"severity": {
"description": "Severity",
"ignoreCase": "all",
"enum": [
"Sev0",
"Sev1",
"Sev2",
"Sev3",
"Sev4"
]
},
"timeRange": {
"description": "Time range",
"ignoreCase": "all",
"enum": [
"1h",
"1d",
"7d",
"30d"
]
},
"alertState": {
"description": "Alert state",
"ignoreCase": "all",
"enum": [
"New",
"Acknowledged",
"Closed"
]
},
"monitorCondition": {
"description": "Monitor condition",
"ignoreCase": "all",
"enum": [
"Fired ",
"Resolved"
]
}
},
"additionalProperties": false,
"required": [
"connectedServiceNameARM",
"ResourceGroupName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Query Classic Azure Monitor alerts\n\nObserve the configured classic Azure Monitor rules for active alerts",
"ignoreCase": "value",
"pattern": "^AzureMonitor@0$"
},
"inputs": {
"description": "Query Classic Azure Monitor alerts inputs",
"properties": {
"connectedServiceNameARM": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"ResourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"ResourceType": {
"description": "Resource type",
"ignoreCase": "all",
"enum": [
"Microsoft.Insights/components",
"Microsoft.Web/sites",
"Microsoft.Storage/storageAccounts",
"Microsoft.Compute/virtualMachines"
]
},
"resourceName": {
"type": "string",
"description": "Resource name",
"ignoreCase": "key"
},
"alertRules": {
"type": "string",
"description": "Alert rules",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"connectedServiceNameARM",
"ResourceGroupName",
"resourceName",
"alertRules"
]
}
},
"deprecationMessage": "AzureMonitor is deprecated - Observe the configured classic Azure Monitor rules for active alerts",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure Network Load Balancer\n\nConnect or disconnect an Azure virtual machine's network interface to a Load Balancer's back end address pool",
"ignoreCase": "value",
"pattern": "^AzureNLBManagement@1$"
},
"inputs": {
"description": "Azure Network Load Balancer inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"ResourceGroupName": {
"type": "string",
"description": "Resource Group",
"ignoreCase": "key"
},
"LoadBalancer": {
"type": "string",
"description": "Load Balancer Name",
"ignoreCase": "key"
},
"Action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"Disconnect",
"Connect"
]
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"ResourceGroupName",
"LoadBalancer",
"Action"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Cloud-based Apache JMeter load test\n\nRun an Apache JMeter load test in the cloud",
"ignoreCase": "value",
"pattern": "^ApacheJMeterLoadTest@1$"
},
"inputs": {
"description": "Cloud-based Apache JMeter load test inputs",
"properties": {
"connectedServiceName": {
"type": "string",
"description": "Azure Pipelines Connection",
"ignoreCase": "key"
},
"TestDrop": {
"type": "string",
"description": "Apache JMeter test files folder",
"ignoreCase": "key"
},
"LoadTest": {
"type": "string",
"description": "Apache JMeter file",
"ignoreCase": "key"
},
"agentCount": {
"description": "Agent Count",
"ignoreCase": "all",
"enum": [
"1",
"2",
"3",
"4",
"5"
]
},
"runDuration": {
"description": "Run Duration (sec)",
"ignoreCase": "all",
"enum": [
"60",
"120",
"180",
"240",
"300"
]
},
"geoLocation": {
"description": "Load Location",
"ignoreCase": "all",
"enum": [
"Default",
"Australia East",
"Australia Southeast",
"Brazil South",
"Central India",
"Central US",
"East Asia",
"East US 2",
"East US",
"Japan East",
"Japan West",
"North Central US",
"North Europe",
"South Central US",
"South India",
"Southeast Asia",
"West Europe",
"West US"
]
},
"machineType": {
"description": "Run load test using",
"ignoreCase": "all",
"enum": [
"0",
"2"
]
}
},
"additionalProperties": false,
"required": [
"TestDrop"
]
}
},
"deprecationMessage": "ApacheJMeterLoadTest is deprecated - Run an Apache JMeter load test in the cloud",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Docker Compose\n\nBuild, push or run multi-container Docker applications. Task can be used with Docker or Azure Container registry.",
"ignoreCase": "value",
"pattern": "^DockerCompose@0$"
},
"inputs": {
"description": "Docker Compose inputs",
"properties": {
"containerregistrytype": {
"description": "Container Registry Type",
"ignoreCase": "all",
"enum": [
"Azure Container Registry",
"Container Registry"
]
},
"dockerRegistryEndpoint": {
"type": "string",
"description": "Docker Registry Service Connection",
"ignoreCase": "key"
},
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"azureSubscriptionEndpoint"
]
},
"azureContainerRegistry": {
"type": "string",
"description": "Azure Container Registry",
"ignoreCase": "key"
},
"dockerComposeFile": {
"type": "string",
"description": "Docker Compose File",
"ignoreCase": "key"
},
"additionalDockerComposeFiles": {
"type": "string",
"description": "Additional Docker Compose Files",
"ignoreCase": "key"
},
"dockerComposeFileArgs": {
"type": "string",
"description": "Environment Variables",
"ignoreCase": "key"
},
"projectName": {
"type": "string",
"description": "Project Name",
"ignoreCase": "key"
},
"qualifyImageNames": {
"type": "boolean",
"description": "Qualify Image Names",
"ignoreCase": "key"
},
"action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"Build services",
"Push services",
"Run services",
"Run a specific service",
"Lock services",
"Write service image digests",
"Combine configuration",
"Run a Docker Compose command"
]
},
"additionalImageTags": {
"type": "string",
"description": "Additional Image Tags",
"ignoreCase": "key"
},
"includeSourceTags": {
"type": "boolean",
"description": "Include Source Tags",
"ignoreCase": "key"
},
"includeLatestTag": {
"type": "boolean",
"description": "Include Latest Tag",
"ignoreCase": "key"
},
"buildImages": {
"type": "boolean",
"description": "Build Images",
"ignoreCase": "key"
},
"serviceName": {
"type": "string",
"description": "Service Name",
"ignoreCase": "key"
},
"containerName": {
"type": "string",
"description": "Container Name",
"ignoreCase": "key"
},
"ports": {
"type": "string",
"description": "Ports",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key",
"aliases": [
"workDir"
]
},
"entrypoint": {
"type": "string",
"description": "Entry Point Override",
"ignoreCase": "key"
},
"containerCommand": {
"type": "string",
"description": "Command",
"ignoreCase": "key"
},
"detached": {
"type": "boolean",
"description": "Run in Background",
"ignoreCase": "key"
},
"abortOnContainerExit": {
"type": "boolean",
"description": "Abort on Container Exit",
"ignoreCase": "key"
},
"imageDigestComposeFile": {
"type": "string",
"description": "Image Digest Compose File",
"ignoreCase": "key"
},
"removeBuildOptions": {
"type": "boolean",
"description": "Remove Build Options",
"ignoreCase": "key"
},
"baseResolveDirectory": {
"type": "string",
"description": "Base Resolve Directory",
"ignoreCase": "key"
},
"outputDockerComposeFile": {
"type": "string",
"description": "Output Docker Compose File",
"ignoreCase": "key"
},
"dockerComposeCommand": {
"type": "string",
"description": "Command",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"dockerHostEndpoint": {
"type": "string",
"description": "Docker Host Service Connection",
"ignoreCase": "key"
},
"nopIfNoDockerComposeFile": {
"type": "boolean",
"description": "No-op if no Docker Compose File",
"ignoreCase": "key"
},
"requireAdditionalDockerComposeFiles": {
"type": "boolean",
"description": "Require Additional Docker Compose Files",
"ignoreCase": "key"
},
"currentWorkingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"dockerComposePath": {
"type": "string",
"description": "Docker Compose executable Path",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Azure Monitor alerts (Deprecated)\n\nConfigure alerts on available metrics for an Azure resource (Deprecated)",
"ignoreCase": "value",
"pattern": "^AzureMonitorAlerts@0$"
},
"inputs": {
"description": "Azure Monitor alerts (Deprecated) inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"ResourceGroupName": {
"type": "string",
"description": "Resource Group",
"ignoreCase": "key"
},
"ResourceType": {
"description": "Resource Type",
"ignoreCase": "all",
"enum": [
"Microsoft.Insights/components",
"Microsoft.Web/sites",
"Microsoft.Storage/storageAccounts",
"Microsoft.Compute/virtualMachines"
]
},
"ResourceName": {
"type": "string",
"description": "Resource name",
"ignoreCase": "key"
},
"AlertRules": {
"type": "string",
"description": "Alert rules",
"ignoreCase": "key"
},
"NotifyServiceOwners": {
"type": "boolean",
"description": "Subscription owners, contributors and readers",
"ignoreCase": "key"
},
"NotifyEmails": {
"type": "string",
"description": "Additional administrator emails",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"ResourceGroupName",
"ResourceName",
"AlertRules"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Xamarin Test Cloud\n\n[Deprecated] Test mobile apps with Xamarin Test Cloud using Xamarin.UITest. Instead, use the 'App Center test' task.",
"ignoreCase": "value",
"pattern": "^XamarinTestCloud@1$"
},
"inputs": {
"description": "Xamarin Test Cloud inputs",
"properties": {
"appFile": {
"type": "string",
"description": "App file",
"ignoreCase": "key",
"aliases": [
"app"
]
},
"dsymFile": {
"type": "string",
"description": "dSYM file (iOS only)",
"ignoreCase": "key",
"aliases": [
"dsym"
]
},
"teamApiKey": {
"type": "string",
"description": "Team API key",
"ignoreCase": "key"
},
"email": {
"type": "string",
"description": "User email",
"ignoreCase": "key",
"aliases": [
"user"
]
},
"devices": {
"type": "string",
"description": "Devices",
"ignoreCase": "key"
},
"series": {
"type": "string",
"description": "Series",
"ignoreCase": "key"
},
"testAssemblyDirectory": {
"type": "string",
"description": "Test assembly directory",
"ignoreCase": "key",
"aliases": [
"testDir"
]
},
"parallelizationOption": {
"description": "Parallelization",
"ignoreCase": "all",
"enum": [
"none",
"--fixture-chunk",
"--test-chunk"
],
"aliases": [
"parallelization"
]
},
"localeOption": {
"description": "System language",
"ignoreCase": "all",
"enum": [
"da_DK",
"nl_NL",
"en_GB",
"en_US",
"fr_FR",
"de_DE",
"ja_JP",
"ru_RU",
"es_MX",
"es_ES",
"user"
],
"aliases": [
"locale"
]
},
"userDefinedLocale": {
"type": "string",
"description": "Other locale",
"ignoreCase": "key"
},
"testCloudFile": {
"type": "string",
"description": "test-cloud.exe location",
"ignoreCase": "key",
"aliases": [
"testCloudLocation"
]
},
"optionalArgs": {
"type": "string",
"description": "Optional arguments",
"ignoreCase": "key"
},
"publishNUnitResults": {
"type": "boolean",
"description": "Publish results to Azure Pipelines",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"appFile",
"teamApiKey",
"email",
"devices",
"testAssemblyDirectory"
]
}
},
"deprecationMessage": "XamarinTestCloud is deprecated - [Deprecated] Test mobile apps with Xamarin Test Cloud using Xamarin.UITest. Instead, use the 'App Center test' task.",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Service Fabric application deployment\n\nDeploy an Azure Service Fabric application to a cluster",
"ignoreCase": "value",
"pattern": "^ServiceFabricDeploy@1$"
},
"inputs": {
"description": "Service Fabric application deployment inputs",
"properties": {
"applicationPackagePath": {
"type": "string",
"description": "Application Package",
"ignoreCase": "key"
},
"serviceConnectionName": {
"type": "string",
"description": "Cluster Service Connection",
"ignoreCase": "key"
},
"publishProfilePath": {
"type": "string",
"description": "Publish Profile",
"ignoreCase": "key"
},
"applicationParameterPath": {
"type": "string",
"description": "Application Parameters",
"ignoreCase": "key"
},
"overrideApplicationParameter": {
"type": "boolean",
"description": "Override Application Parameters",
"ignoreCase": "key"
},
"compressPackage": {
"type": "boolean",
"description": "Compress Package",
"ignoreCase": "key"
},
"copyPackageTimeoutSec": {
"type": "string",
"description": "CopyPackageTimeoutSec",
"ignoreCase": "key"
},
"registerPackageTimeoutSec": {
"type": "string",
"description": "RegisterPackageTimeoutSec",
"ignoreCase": "key"
},
"overwriteBehavior": {
"description": "Overwrite Behavior",
"ignoreCase": "all",
"enum": [
"Always",
"Never",
"SameAppTypeAndVersion"
]
},
"skipUpgradeSameTypeAndVersion": {
"type": "boolean",
"description": "Skip upgrade for same Type and Version",
"ignoreCase": "key"
},
"skipPackageValidation": {
"type": "boolean",
"description": "Skip package validation",
"ignoreCase": "key"
},
"useDiffPackage": {
"type": "boolean",
"description": "Use Diff Package",
"ignoreCase": "key"
},
"overridePublishProfileSettings": {
"type": "boolean",
"description": "Override All Publish Profile Upgrade Settings",
"ignoreCase": "key"
},
"isUpgrade": {
"type": "boolean",
"description": "Upgrade the Application",
"ignoreCase": "key"
},
"unregisterUnusedVersions": {
"type": "boolean",
"description": "Unregister Unused Versions",
"ignoreCase": "key"
},
"upgradeMode": {
"description": "Upgrade Mode",
"ignoreCase": "all",
"enum": [
"Monitored",
"UnmonitoredAuto",
"UnmonitoredManual"
]
},
"FailureAction": {
"description": "FailureAction",
"ignoreCase": "all",
"enum": [
"Rollback",
"Manual"
]
},
"UpgradeReplicaSetCheckTimeoutSec": {
"type": "string",
"description": "UpgradeReplicaSetCheckTimeoutSec",
"ignoreCase": "key"
},
"TimeoutSec": {
"type": "string",
"description": "TimeoutSec",
"ignoreCase": "key"
},
"ForceRestart": {
"type": "boolean",
"description": "ForceRestart",
"ignoreCase": "key"
},
"HealthCheckRetryTimeoutSec": {
"type": "string",
"description": "HealthCheckRetryTimeoutSec",
"ignoreCase": "key"
},
"HealthCheckWaitDurationSec": {
"type": "string",
"description": "HealthCheckWaitDurationSec",
"ignoreCase": "key"
},
"HealthCheckStableDurationSec": {
"type": "string",
"description": "HealthCheckStableDurationSec",
"ignoreCase": "key"
},
"UpgradeDomainTimeoutSec": {
"type": "string",
"description": "UpgradeDomainTimeoutSec",
"ignoreCase": "key"
},
"ConsiderWarningAsError": {
"type": "boolean",
"description": "ConsiderWarningAsError",
"ignoreCase": "key"
},
"DefaultServiceTypeHealthPolicy": {
"type": "string",
"description": "DefaultServiceTypeHealthPolicy",
"ignoreCase": "key"
},
"MaxPercentUnhealthyDeployedApplications": {
"type": "string",
"description": "MaxPercentUnhealthyDeployedApplications",
"ignoreCase": "key"
},
"UpgradeTimeoutSec": {
"type": "string",
"description": "UpgradeTimeoutSec",
"ignoreCase": "key"
},
"ServiceTypeHealthPolicyMap": {
"type": "string",
"description": "ServiceTypeHealthPolicyMap",
"ignoreCase": "key"
},
"configureDockerSettings": {
"type": "boolean",
"description": "Configure Docker settings",
"ignoreCase": "key"
},
"registryCredentials": {
"description": "Registry Credentials Source",
"ignoreCase": "all",
"enum": [
"AzureResourceManagerEndpoint",
"ContainerRegistryEndpoint",
"UsernamePassword"
]
},
"dockerRegistryConnection": {
"type": "string",
"description": "Docker Registry Service Connection",
"ignoreCase": "key",
"aliases": [
"dockerRegistryEndpoint"
]
},
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"azureSubscriptionEndpoint"
]
},
"registryUserName": {
"type": "string",
"description": "Registry User Name",
"ignoreCase": "key"
},
"registryPassword": {
"type": "string",
"description": "Registry Password",
"ignoreCase": "key"
},
"passwordEncrypted": {
"type": "boolean",
"description": "Password Encrypted",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"applicationPackagePath",
"serviceConnectionName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Xcode\n\nBuild, test, or archive an Xcode workspace on macOS. Optionally package an app.",
"ignoreCase": "value",
"pattern": "^Xcode@5$"
},
"inputs": {
"description": "Xcode inputs",
"properties": {
"actions": {
"type": "string",
"description": "Actions",
"ignoreCase": "key"
},
"configuration": {
"type": "string",
"description": "Configuration",
"ignoreCase": "key"
},
"sdk": {
"type": "string",
"description": "SDK",
"ignoreCase": "key"
},
"xcWorkspacePath": {
"type": "string",
"description": "Workspace or project path",
"ignoreCase": "key"
},
"scheme": {
"type": "string",
"description": "Scheme",
"ignoreCase": "key"
},
"xcodeVersion": {
"description": "Xcode version",
"ignoreCase": "all",
"enum": [
"8",
"9",
"10",
"11",
"12",
"13",
"default",
"specifyPath"
]
},
"xcodeDeveloperDir": {
"type": "string",
"description": "Xcode developer path",
"ignoreCase": "key"
},
"packageApp": {
"type": "boolean",
"description": "Create app package",
"ignoreCase": "key"
},
"archivePath": {
"type": "string",
"description": "Archive path",
"ignoreCase": "key"
},
"exportPath": {
"type": "string",
"description": "Export path",
"ignoreCase": "key"
},
"exportOptions": {
"description": "Export options",
"ignoreCase": "all",
"enum": [
"auto",
"plist",
"specify"
]
},
"exportMethod": {
"type": "string",
"description": "Export method",
"ignoreCase": "key"
},
"exportTeamId": {
"type": "string",
"description": "Team ID",
"ignoreCase": "key"
},
"exportOptionsPlist": {
"type": "string",
"description": "Export options plist",
"ignoreCase": "key"
},
"exportArgs": {
"type": "string",
"description": "Export arguments",
"ignoreCase": "key"
},
"signingOption": {
"description": "Signing style",
"ignoreCase": "all",
"enum": [
"nosign",
"default",
"manual",
"auto"
]
},
"signingIdentity": {
"type": "string",
"description": "Signing identity",
"ignoreCase": "key"
},
"provisioningProfileUuid": {
"type": "string",
"description": "Provisioning profile UUID",
"ignoreCase": "key"
},
"provisioningProfileName": {
"type": "string",
"description": "Provisioning profile name",
"ignoreCase": "key"
},
"teamId": {
"type": "string",
"description": "Team ID",
"ignoreCase": "key"
},
"destinationPlatformOption": {
"description": "Destination platform",
"ignoreCase": "all",
"enum": [
"default",
"iOS",
"tvOS",
"macOS",
"custom"
]
},
"destinationPlatform": {
"type": "string",
"description": "Custom destination platform",
"ignoreCase": "key"
},
"destinationTypeOption": {
"description": "Destination type",
"ignoreCase": "all",
"enum": [
"simulators",
"devices"
]
},
"destinationSimulators": {
"type": "string",
"description": "Simulator",
"ignoreCase": "key"
},
"destinationDevices": {
"type": "string",
"description": "Device",
"ignoreCase": "key"
},
"args": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"useXcpretty": {
"type": "boolean",
"description": "Use xcpretty",
"ignoreCase": "key"
},
"xcprettyArgs": {
"type": "string",
"description": "Xcpretty arguments",
"ignoreCase": "key"
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish test results to Azure Pipelines",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test run title",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Xcode Build\n\nBuild an Xcode workspace on macOS",
"ignoreCase": "value",
"pattern": "^Xcode@3$"
},
"inputs": {
"description": "Xcode Build inputs",
"properties": {
"actions": {
"type": "string",
"description": "Actions",
"ignoreCase": "key"
},
"configuration": {
"type": "string",
"description": "Configuration",
"ignoreCase": "key"
},
"sdk": {
"type": "string",
"description": "SDK",
"ignoreCase": "key"
},
"xcWorkspacePath": {
"type": "string",
"description": "Workspace/Project Path",
"ignoreCase": "key"
},
"scheme": {
"type": "string",
"description": "Scheme",
"ignoreCase": "key"
},
"packageApp": {
"type": "boolean",
"description": "Create App Package",
"ignoreCase": "key"
},
"archivePath": {
"type": "string",
"description": "Archive Path",
"ignoreCase": "key"
},
"exportPath": {
"type": "string",
"description": "Export Path",
"ignoreCase": "key"
},
"exportOptions": {
"description": "Export Options",
"ignoreCase": "all",
"enum": [
"auto",
"plist",
"specify"
]
},
"exportMethod": {
"type": "string",
"description": "Export Method",
"ignoreCase": "key"
},
"exportTeamId": {
"type": "string",
"description": "Team ID",
"ignoreCase": "key"
},
"exportOptionsPlist": {
"type": "string",
"description": "Export Options Plist",
"ignoreCase": "key"
},
"exportArgs": {
"type": "string",
"description": "Export Arguments",
"ignoreCase": "key"
},
"xcode8AutomaticSigning": {
"type": "boolean",
"description": "Automatic Signing",
"ignoreCase": "key"
},
"teamId": {
"type": "string",
"description": "Team ID",
"ignoreCase": "key"
},
"signMethod": {
"description": "Override Using",
"ignoreCase": "all",
"enum": [
"file",
"id"
]
},
"iosSigningIdentity": {
"type": "string",
"description": "Signing Identity",
"ignoreCase": "key"
},
"unlockDefaultKeychain": {
"type": "boolean",
"description": "Unlock Default Keychain",
"ignoreCase": "key"
},
"defaultKeychainPassword": {
"type": "string",
"description": "Default Keychain Password",
"ignoreCase": "key"
},
"provProfileUuid": {
"type": "string",
"description": "Provisioning Profile UUID",
"ignoreCase": "key"
},
"p12": {
"type": "string",
"description": "P12 Certificate File",
"ignoreCase": "key"
},
"p12pwd": {
"type": "string",
"description": "P12 Password",
"ignoreCase": "key"
},
"provProfile": {
"type": "string",
"description": "Provisioning Profile File",
"ignoreCase": "key"
},
"removeProfile": {
"type": "boolean",
"description": "Remove Profile After Build",
"ignoreCase": "key"
},
"args": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"cwd": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key"
},
"outputPattern": {
"type": "string",
"description": "Output Directory",
"ignoreCase": "key"
},
"xcodeDeveloperDir": {
"type": "string",
"description": "Xcode Developer Path",
"ignoreCase": "key"
},
"useXcpretty": {
"type": "boolean",
"description": "Use xcpretty",
"ignoreCase": "key"
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish to VSTS/TFS",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Xcode\n\nBuild, test, or archive an Xcode workspace on macOS. Optionally package an app.",
"ignoreCase": "value",
"pattern": "^Xcode@4$"
},
"inputs": {
"description": "Xcode inputs",
"properties": {
"actions": {
"type": "string",
"description": "Actions",
"ignoreCase": "key"
},
"configuration": {
"type": "string",
"description": "Configuration",
"ignoreCase": "key"
},
"sdk": {
"type": "string",
"description": "SDK",
"ignoreCase": "key"
},
"xcWorkspacePath": {
"type": "string",
"description": "Workspace or project path",
"ignoreCase": "key"
},
"scheme": {
"type": "string",
"description": "Scheme",
"ignoreCase": "key"
},
"xcodeVersion": {
"description": "Xcode version",
"ignoreCase": "all",
"enum": [
"8",
"9",
"default",
"specifyPath"
]
},
"xcodeDeveloperDir": {
"type": "string",
"description": "Xcode developer path",
"ignoreCase": "key"
},
"packageApp": {
"type": "boolean",
"description": "Create app package",
"ignoreCase": "key"
},
"archivePath": {
"type": "string",
"description": "Archive path",
"ignoreCase": "key"
},
"exportPath": {
"type": "string",
"description": "Export path",
"ignoreCase": "key"
},
"exportOptions": {
"description": "Export options",
"ignoreCase": "all",
"enum": [
"auto",
"plist",
"specify"
]
},
"exportMethod": {
"type": "string",
"description": "Export method",
"ignoreCase": "key"
},
"exportTeamId": {
"type": "string",
"description": "Team ID",
"ignoreCase": "key"
},
"exportOptionsPlist": {
"type": "string",
"description": "Export options plist",
"ignoreCase": "key"
},
"exportArgs": {
"type": "string",
"description": "Export arguments",
"ignoreCase": "key"
},
"signingOption": {
"description": "Signing style",
"ignoreCase": "all",
"enum": [
"nosign",
"default",
"manual",
"auto"
]
},
"signingIdentity": {
"type": "string",
"description": "Signing identity",
"ignoreCase": "key"
},
"provisioningProfileUuid": {
"type": "string",
"description": "Provisioning profile UUID",
"ignoreCase": "key"
},
"teamId": {
"type": "string",
"description": "Team ID",
"ignoreCase": "key"
},
"destinationPlatformOption": {
"description": "Destination platform",
"ignoreCase": "all",
"enum": [
"default",
"iOS",
"tvOS",
"macOS",
"custom"
]
},
"destinationPlatform": {
"type": "string",
"description": "Custom destination platform",
"ignoreCase": "key"
},
"destinationTypeOption": {
"description": "Destination type",
"ignoreCase": "all",
"enum": [
"simulators",
"devices"
]
},
"destinationSimulators": {
"type": "string",
"description": "Simulator",
"ignoreCase": "key"
},
"destinationDevices": {
"type": "string",
"description": "Device",
"ignoreCase": "key"
},
"args": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"outputPattern": {
"type": "string",
"description": "Output directory",
"ignoreCase": "key"
},
"useXcpretty": {
"type": "boolean",
"description": "Use xcpretty",
"ignoreCase": "key"
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish test results to VSTS/TFS",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Xcode Build\n\nBuild an Xcode workspace on Mac OS",
"ignoreCase": "value",
"pattern": "^Xcode@2$"
},
"inputs": {
"description": "Xcode Build inputs",
"properties": {
"actions": {
"type": "string",
"description": "Actions",
"ignoreCase": "key"
},
"configuration": {
"type": "string",
"description": "Configuration",
"ignoreCase": "key"
},
"sdk": {
"type": "string",
"description": "SDK",
"ignoreCase": "key"
},
"xcWorkspacePath": {
"type": "string",
"description": "Workspace/Project Path",
"ignoreCase": "key"
},
"scheme": {
"type": "string",
"description": "Scheme",
"ignoreCase": "key"
},
"packageApp": {
"type": "boolean",
"description": "Create App Package",
"ignoreCase": "key"
},
"packageTool": {
"description": "Create Package (IPA) using",
"ignoreCase": "all",
"enum": [
"xcrun",
"xcodebuild"
]
},
"archivePath": {
"type": "string",
"description": "Archive Path",
"ignoreCase": "key"
},
"exportPath": {
"type": "string",
"description": "Export Path",
"ignoreCase": "key"
},
"exportOptions": {
"description": "Export Options",
"ignoreCase": "all",
"enum": [
"auto",
"plist",
"specify"
]
},
"exportMethod": {
"type": "string",
"description": "Export Method",
"ignoreCase": "key"
},
"exportTeamId": {
"type": "string",
"description": "Team ID",
"ignoreCase": "key"
},
"exportOptionsPlist": {
"type": "string",
"description": "Export Options Plist",
"ignoreCase": "key"
},
"xcode8AutomaticSigning": {
"type": "boolean",
"description": "Automatic Signing",
"ignoreCase": "key"
},
"teamId": {
"type": "string",
"description": "Team ID",
"ignoreCase": "key"
},
"signMethod": {
"description": "Override Using",
"ignoreCase": "all",
"enum": [
"file",
"id"
]
},
"iosSigningIdentity": {
"type": "string",
"description": "Signing Identity",
"ignoreCase": "key"
},
"unlockDefaultKeychain": {
"type": "boolean",
"description": "Unlock Default Keychain",
"ignoreCase": "key"
},
"defaultKeychainPassword": {
"type": "string",
"description": "Default Keychain Password",
"ignoreCase": "key"
},
"provProfileUuid": {
"type": "string",
"description": "Provisioning Profile UUID",
"ignoreCase": "key"
},
"p12": {
"type": "string",
"description": "P12 Certificate File",
"ignoreCase": "key"
},
"p12pwd": {
"type": "string",
"description": "P12 Password",
"ignoreCase": "key"
},
"provProfile": {
"type": "string",
"description": "Provisioning Profile File",
"ignoreCase": "key"
},
"removeProfile": {
"type": "boolean",
"description": "Remove Profile After Build",
"ignoreCase": "key"
},
"args": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"cwd": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key"
},
"outputPattern": {
"type": "string",
"description": "Output Directory",
"ignoreCase": "key"
},
"xcodeDeveloperDir": {
"type": "string",
"description": "Xcode Developer Path",
"ignoreCase": "key"
},
"useXcpretty": {
"type": "boolean",
"description": "Use xcpretty",
"ignoreCase": "key"
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish to VSTS/TFS",
"ignoreCase": "key"
},
"useXctool": {
"type": "boolean",
"description": "Use xctool",
"ignoreCase": "key"
},
"xctoolReporter": {
"type": "string",
"description": "xctool Test Reporter Format",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "NuGet publisher\n\nDeprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.",
"ignoreCase": "value",
"pattern": "^NuGetPublisher@0$"
},
"inputs": {
"description": "NuGet publisher inputs",
"properties": {
"searchPattern": {
"type": "string",
"description": "Path/Pattern to nupkg",
"ignoreCase": "key"
},
"nuGetFeedType": {
"description": "Feed type",
"ignoreCase": "all",
"enum": [
"external",
"internal"
]
},
"connectedServiceName": {
"type": "string",
"description": "NuGet Service Connection",
"ignoreCase": "key"
},
"feedName": {
"type": "string",
"description": "Internal Feed URL",
"ignoreCase": "key"
},
"nuGetAdditionalArgs": {
"type": "string",
"description": "NuGet Arguments",
"ignoreCase": "key"
},
"verbosity": {
"description": "Verbosity",
"ignoreCase": "all",
"enum": [
"-",
"Quiet",
"Normal",
"Detailed"
]
},
"nuGetVersion": {
"description": "NuGet Version",
"ignoreCase": "all",
"enum": [
"3.3.0",
"3.5.0.1829",
"4.0.0.2283",
"custom"
]
},
"nuGetPath": {
"type": "string",
"description": "Path to NuGet.exe",
"ignoreCase": "key"
},
"continueOnEmptyNupkgMatch": {
"type": "boolean",
"description": "Continue if no packages match the \"Path/Pattern to nupkg\"",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"deprecationMessage": "NuGetPublisher is deprecated - Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Query work items\n\nExecute a work item query and check the number of items returned",
"ignoreCase": "value",
"pattern": "^queryWorkItems@0$"
},
"inputs": {
"description": "Query work items inputs",
"properties": {
"queryId": {
"type": "string",
"description": "Query",
"ignoreCase": "key"
},
"maxThreshold": {
"type": "string",
"description": "Upper threshold",
"ignoreCase": "key"
},
"minThreshold": {
"type": "string",
"description": "Lower threshold",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"queryId"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure Web App for Containers\n\nDeploy containers to Azure App Service",
"ignoreCase": "value",
"pattern": "^AzureWebAppContainer@1$"
},
"inputs": {
"description": "Azure Web App for Containers inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"appName": {
"type": "string",
"description": "App name",
"ignoreCase": "key"
},
"deployToSlotOrASE": {
"type": "boolean",
"description": "Deploy to Slot or App Service Environment",
"ignoreCase": "key"
},
"resourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"slotName": {
"type": "string",
"description": "Slot",
"ignoreCase": "key"
},
"containers": {
"type": "string",
"description": "Image name",
"ignoreCase": "key",
"aliases": [
"imageName"
]
},
"multicontainerConfigFile": {
"type": "string",
"description": "Configuration File",
"ignoreCase": "key"
},
"containerCommand": {
"type": "string",
"description": "Startup command ",
"ignoreCase": "key"
},
"appSettings": {
"type": "string",
"description": "App settings",
"ignoreCase": "key"
},
"configurationStrings": {
"type": "string",
"description": "Configuration settings",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"appName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "SQL Server database deploy\n\nDeploy a SQL Server database using DACPAC or SQL scripts",
"ignoreCase": "value",
"pattern": "^SqlDacpacDeploymentOnMachineGroup@0$"
},
"inputs": {
"description": "SQL Server database deploy inputs",
"properties": {
"TaskType": {
"description": "Deploy SQL Using",
"ignoreCase": "all",
"enum": [
"dacpac",
"sqlQuery",
"sqlInline"
]
},
"DacpacFile": {
"type": "string",
"description": "DACPAC File",
"ignoreCase": "key"
},
"SqlFile": {
"type": "string",
"description": "Sql File",
"ignoreCase": "key"
},
"ExecuteInTransaction": {
"type": "boolean",
"description": "Execute within a transaction",
"ignoreCase": "key"
},
"ExclusiveLock": {
"type": "boolean",
"description": "Acquire an exclusive app lock while executing script(s)",
"ignoreCase": "key"
},
"AppLockName": {
"type": "string",
"description": "App lock name",
"ignoreCase": "key"
},
"InlineSql": {
"type": "string",
"description": "Inline Sql",
"ignoreCase": "key"
},
"TargetMethod": {
"description": "Specify SQL Using",
"ignoreCase": "all",
"enum": [
"server",
"connectionString",
"publishProfile"
]
},
"ServerName": {
"type": "string",
"description": "Server Name",
"ignoreCase": "key"
},
"DatabaseName": {
"type": "string",
"description": "Database Name",
"ignoreCase": "key"
},
"AuthScheme": {
"description": "Authentication",
"ignoreCase": "all",
"enum": [
"windowsAuthentication",
"sqlServerAuthentication"
]
},
"SqlUsername": {
"type": "string",
"description": "SQL User name",
"ignoreCase": "key"
},
"SqlPassword": {
"type": "string",
"description": "SQL Password",
"ignoreCase": "key"
},
"ConnectionString": {
"type": "string",
"description": "Connection String",
"ignoreCase": "key"
},
"PublishProfile": {
"type": "string",
"description": "Publish Profile",
"ignoreCase": "key"
},
"AdditionalArguments": {
"type": "string",
"description": "Additional Arguments",
"ignoreCase": "key"
},
"AdditionalArgumentsSql": {
"type": "string",
"description": "Additional Arguments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Cache (Beta)\n\nCache files between runs",
"ignoreCase": "value",
"pattern": "^CacheBeta@1$"
},
"inputs": {
"description": "Cache (Beta) inputs",
"properties": {
"key": {
"type": "string",
"description": "Key",
"ignoreCase": "key"
},
"path": {
"type": "string",
"description": "Path",
"ignoreCase": "key"
},
"cacheHitVar": {
"type": "string",
"description": "Cache hit variable",
"ignoreCase": "key"
},
"restoreKeys": {
"type": "string",
"description": "Additional restore key prefixes",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"key",
"path"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Cache\n\nCache files between runs",
"ignoreCase": "value",
"pattern": "^Cache@2$"
},
"inputs": {
"description": "Cache inputs",
"properties": {
"key": {
"type": "string",
"description": "Key",
"ignoreCase": "key"
},
"path": {
"type": "string",
"description": "Path",
"ignoreCase": "key"
},
"cacheHitVar": {
"type": "string",
"description": "Cache hit variable",
"ignoreCase": "key"
},
"restoreKeys": {
"type": "string",
"description": "Additional restore key prefixes",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"key",
"path"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Cache (Beta)\n\nCache files between runs",
"ignoreCase": "value",
"pattern": "^CacheBeta@0$"
},
"inputs": {
"description": "Cache (Beta) inputs",
"properties": {
"key": {
"type": "string",
"description": "Key",
"ignoreCase": "key"
},
"path": {
"type": "string",
"description": "Path",
"ignoreCase": "key"
},
"cacheHitVar": {
"type": "string",
"description": "Cache hit variable",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"key",
"path"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "CMake\n\nBuild with the CMake cross-platform build system",
"ignoreCase": "value",
"pattern": "^CMake@1$"
},
"inputs": {
"description": "CMake inputs",
"properties": {
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"cmakeArgs": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"runInsideShell": {
"type": "boolean",
"description": "Run cmake command inside shell",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Mobile Center Test\n\nTest mobile app packages with Visual Studio Mobile Center.",
"ignoreCase": "value",
"pattern": "^VSMobileCenterTest@0$"
},
"inputs": {
"description": "Mobile Center Test inputs",
"properties": {
"app": {
"type": "string",
"description": "Binary Application File Path",
"ignoreCase": "key"
},
"artifactsDir": {
"type": "string",
"description": "Artifacts Directory",
"ignoreCase": "key"
},
"enablePrepare": {
"type": "boolean",
"description": "Prepare Tests",
"ignoreCase": "key"
},
"framework": {
"description": "Test Framework",
"ignoreCase": "all",
"enum": [
"appium",
"espresso",
"calabash",
"uitest",
"xcuitest"
]
},
"appiumBuildDir": {
"type": "string",
"description": "Build Directory",
"ignoreCase": "key"
},
"espressoBuildDir": {
"type": "string",
"description": "Build Directory",
"ignoreCase": "key"
},
"espressoTestApkPath": {
"type": "string",
"description": "Test APK Path",
"ignoreCase": "key"
},
"calabashProjectDir": {
"type": "string",
"description": "Project Directory",
"ignoreCase": "key"
},
"calabashConfigFile": {
"type": "string",
"description": "Cucumber Config File",
"ignoreCase": "key"
},
"calabashProfile": {
"type": "string",
"description": "Profile to run",
"ignoreCase": "key"
},
"calabashSkipConfigCheck": {
"type": "boolean",
"description": "Skip Configuration Check",
"ignoreCase": "key"
},
"uitestBuildDir": {
"type": "string",
"description": "Build Directory",
"ignoreCase": "key"
},
"uitestStoreFile": {
"type": "string",
"description": "Store File",
"ignoreCase": "key"
},
"uitestStorePass": {
"type": "string",
"description": "Store Password",
"ignoreCase": "key"
},
"uitestKeyAlias": {
"type": "string",
"description": "Key Alias",
"ignoreCase": "key"
},
"uitestKeyPass": {
"type": "string",
"description": "Key Password",
"ignoreCase": "key"
},
"uitestToolsDir": {
"type": "string",
"description": "Test Tools Directory",
"ignoreCase": "key"
},
"signInfo": {
"type": "string",
"description": "Signing Information",
"ignoreCase": "key"
},
"xcuitestBuildDir": {
"type": "string",
"description": "Build Directory",
"ignoreCase": "key"
},
"xcuitestTestIpaPath": {
"type": "string",
"description": "Test IPA Path",
"ignoreCase": "key"
},
"prepareOpts": {
"type": "string",
"description": "Additional Options",
"ignoreCase": "key"
},
"enableRun": {
"type": "boolean",
"description": "Run Tests",
"ignoreCase": "key"
},
"credsType": {
"description": "Authentication Method",
"ignoreCase": "all",
"enum": [
"serviceEndpoint",
"inputs"
]
},
"serverEndpoint": {
"type": "string",
"description": "Mobile Center Connection",
"ignoreCase": "key"
},
"username": {
"type": "string",
"description": "Mobile Center Username",
"ignoreCase": "key"
},
"password": {
"type": "string",
"description": "Mobile Center Password",
"ignoreCase": "key"
},
"appSlug": {
"type": "string",
"description": "App Slug",
"ignoreCase": "key"
},
"devices": {
"type": "string",
"description": "Devices",
"ignoreCase": "key"
},
"series": {
"type": "string",
"description": "Test Series",
"ignoreCase": "key"
},
"dsymDir": {
"type": "string",
"description": "dSYM Directory",
"ignoreCase": "key"
},
"locale": {
"description": "System Language",
"ignoreCase": "all",
"enum": [
"da_DK",
"nl_NL",
"en_GB",
"en_US",
"fr_FR",
"de_DE",
"ja_JP",
"ru_RU",
"es_MX",
"es_ES",
"user"
]
},
"userDefinedLocale": {
"type": "string",
"description": "Other Locale",
"ignoreCase": "key"
},
"loginOpts": {
"type": "string",
"description": "Addtional Options for Login",
"ignoreCase": "key"
},
"runOpts": {
"type": "string",
"description": "Additional Options for Run",
"ignoreCase": "key"
},
"async": {
"type": "boolean",
"description": "Do not wait for test result",
"ignoreCase": "key"
},
"cliLocationOverride": {
"type": "string",
"description": "mobile-center CLI Location",
"ignoreCase": "key"
},
"debug": {
"type": "boolean",
"description": "Enable Debug Output",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"app"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "App Center test\n\nTest app packages with Visual Studio App Center",
"ignoreCase": "value",
"pattern": "^AppCenterTest@1$"
},
"inputs": {
"description": "App Center test inputs",
"properties": {
"appFile": {
"type": "string",
"description": "Binary application file path",
"ignoreCase": "key",
"aliases": [
"app"
]
},
"artifactsDirectory": {
"type": "string",
"description": "Artifacts directory",
"ignoreCase": "key",
"aliases": [
"artifactsDir"
]
},
"prepareTests": {
"type": "boolean",
"description": "Prepare tests",
"ignoreCase": "key",
"aliases": [
"enablePrepare"
]
},
"frameworkOption": {
"description": "Test framework",
"ignoreCase": "all",
"enum": [
"appium",
"espresso",
"calabash",
"uitest",
"xcuitest"
],
"aliases": [
"framework"
]
},
"appiumBuildDirectory": {
"type": "string",
"description": "Build directory",
"ignoreCase": "key",
"aliases": [
"appiumBuildDir"
]
},
"espressoBuildDirectory": {
"type": "string",
"description": "Build directory",
"ignoreCase": "key",
"aliases": [
"espressoBuildDir"
]
},
"espressoTestApkFile": {
"type": "string",
"description": "Test APK path",
"ignoreCase": "key",
"aliases": [
"espressoTestApkPath"
]
},
"calabashProjectDirectory": {
"type": "string",
"description": "Project directory",
"ignoreCase": "key",
"aliases": [
"calabashProjectDir"
]
},
"calabashConfigFile": {
"type": "string",
"description": "Cucumber config file",
"ignoreCase": "key"
},
"calabashProfile": {
"type": "string",
"description": "Profile to run",
"ignoreCase": "key"
},
"calabashSkipConfigCheck": {
"type": "boolean",
"description": "Skip Configuration Check",
"ignoreCase": "key"
},
"uiTestBuildDirectory": {
"type": "string",
"description": "Build directory",
"ignoreCase": "key",
"aliases": [
"uitestBuildDir"
]
},
"uitestStorePath": {
"type": "string",
"description": "Store file",
"ignoreCase": "key"
},
"uiTestStorePassword": {
"type": "string",
"description": "Store password",
"ignoreCase": "key",
"aliases": [
"uitestStorePass"
]
},
"uitestKeyAlias": {
"type": "string",
"description": "Key alias",
"ignoreCase": "key"
},
"uiTestKeyPassword": {
"type": "string",
"description": "Key password",
"ignoreCase": "key",
"aliases": [
"uitestKeyPass"
]
},
"uiTestToolsDirectory": {
"type": "string",
"description": "Test tools directory",
"ignoreCase": "key",
"aliases": [
"uitestToolsDir"
]
},
"signInfo": {
"type": "string",
"description": "Signing information",
"ignoreCase": "key"
},
"xcUITestBuildDirectory": {
"type": "string",
"description": "Build directory",
"ignoreCase": "key",
"aliases": [
"xcuitestBuildDir"
]
},
"xcUITestIpaFile": {
"type": "string",
"description": "Test IPA path",
"ignoreCase": "key",
"aliases": [
"xcuitestTestIpaPath"
]
},
"prepareOptions": {
"type": "string",
"description": "Additional options",
"ignoreCase": "key",
"aliases": [
"prepareOpts"
]
},
"runTests": {
"type": "boolean",
"description": "Run tests",
"ignoreCase": "key",
"aliases": [
"enableRun"
]
},
"credentialsOption": {
"description": "Authentication method",
"ignoreCase": "all",
"enum": [
"serviceEndpoint",
"inputs"
],
"aliases": [
"credsType"
]
},
"serverEndpoint": {
"type": "string",
"description": "App Center service connection",
"ignoreCase": "key"
},
"username": {
"type": "string",
"description": "App Center username",
"ignoreCase": "key"
},
"password": {
"type": "string",
"description": "App Center password",
"ignoreCase": "key"
},
"appSlug": {
"type": "string",
"description": "App slug",
"ignoreCase": "key"
},
"devices": {
"type": "string",
"description": "Devices",
"ignoreCase": "key"
},
"series": {
"type": "string",
"description": "Test series",
"ignoreCase": "key"
},
"dsymDirectory": {
"type": "string",
"description": "dSYM directory",
"ignoreCase": "key",
"aliases": [
"dsymDir"
]
},
"localeOption": {
"description": "System language",
"ignoreCase": "all",
"enum": [
"da_DK",
"nl_NL",
"en_GB",
"en_US",
"fr_FR",
"de_DE",
"ja_JP",
"ru_RU",
"es_MX",
"es_ES",
"user"
],
"aliases": [
"locale"
]
},
"userDefinedLocale": {
"type": "string",
"description": "Other locale",
"ignoreCase": "key"
},
"loginOptions": {
"type": "string",
"description": "Additional options for login",
"ignoreCase": "key",
"aliases": [
"loginOpts"
]
},
"runOptions": {
"type": "string",
"description": "Additional options for run",
"ignoreCase": "key",
"aliases": [
"runOpts"
]
},
"skipWaitingForResults": {
"type": "boolean",
"description": "Do not wait for test result",
"ignoreCase": "key",
"aliases": [
"async"
]
},
"cliFile": {
"type": "string",
"description": "App Center CLI location",
"ignoreCase": "key",
"aliases": [
"cliLocationOverride"
]
},
"showDebugOutput": {
"type": "boolean",
"description": "Enable debug output",
"ignoreCase": "key",
"aliases": [
"debug"
]
}
},
"additionalProperties": false,
"required": [
"appFile"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Download secure file\n\nDownload a secure file to the agent machine",
"ignoreCase": "value",
"pattern": "^DownloadSecureFile@1$"
},
"inputs": {
"description": "Download secure file inputs",
"properties": {
"secureFile": {
"type": "string",
"description": "Secure File",
"ignoreCase": "key"
},
"retryCount": {
"type": "string",
"description": "Retry Count",
"ignoreCase": "key"
},
"socketTimeout": {
"type": "string",
"description": "Socket Timeout",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"secureFile"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure Container Apps Deploy\n\nAn Azure DevOps Task to build and deploy Azure Container Apps.",
"ignoreCase": "value",
"pattern": "^AzureContainerApps@0$"
},
"inputs": {
"description": "Azure Container Apps Deploy inputs",
"properties": {
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"appSourcePath": {
"type": "string",
"description": "Application source path",
"ignoreCase": "key"
},
"azureSubscription": {
"type": "string",
"description": "Azure Resource Manager connection",
"ignoreCase": "key",
"aliases": [
"connectedServiceNameARM"
]
},
"acrName": {
"type": "string",
"description": "Azure Container Registry name",
"ignoreCase": "key"
},
"acrUsername": {
"type": "string",
"description": "Azure Container Registry username",
"ignoreCase": "key"
},
"acrPassword": {
"type": "string",
"description": "Azure Container Registry password",
"ignoreCase": "key"
},
"dockerfilePath": {
"type": "string",
"description": "Dockerfile path",
"ignoreCase": "key"
},
"imageToBuild": {
"type": "string",
"description": "Docker image to build",
"ignoreCase": "key"
},
"imageToDeploy": {
"type": "string",
"description": "Docker image to deploy",
"ignoreCase": "key"
},
"containerAppName": {
"type": "string",
"description": "Azure Container App name",
"ignoreCase": "key"
},
"resourceGroup": {
"type": "string",
"description": "Azure resource group name",
"ignoreCase": "key"
},
"containerAppEnvironment": {
"type": "string",
"description": "Azure Container App environment",
"ignoreCase": "key"
},
"runtimeStack": {
"type": "string",
"description": "Application runtime stack",
"ignoreCase": "key"
},
"targetPort": {
"type": "string",
"description": "Application target port",
"ignoreCase": "key"
},
"location": {
"type": "string",
"description": "Location of the Container App",
"ignoreCase": "key"
},
"environmentVariables": {
"type": "string",
"description": "Environment variables",
"ignoreCase": "key"
},
"disableTelemetry": {
"type": "boolean",
"description": "Disable telemetry",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Use Ruby version\n\nUse the specified version of Ruby from the tool cache, optionally adding it to the PATH",
"ignoreCase": "value",
"pattern": "^UseRubyVersion@0$"
},
"inputs": {
"description": "Use Ruby version inputs",
"properties": {
"versionSpec": {
"type": "string",
"description": "Version spec",
"ignoreCase": "key"
},
"addToPath": {
"type": "boolean",
"description": "Add to PATH",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Grunt\n\nRun the Grunt JavaScript task runner",
"ignoreCase": "value",
"pattern": "^Grunt@0$"
},
"inputs": {
"description": "Grunt inputs",
"properties": {
"gruntFile": {
"type": "string",
"description": "Grunt File Path",
"ignoreCase": "key"
},
"targets": {
"type": "string",
"description": "Grunt Task(s)",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"gruntCli": {
"type": "string",
"description": "grunt-cli location",
"ignoreCase": "key"
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish to Azure Pipelines",
"ignoreCase": "key"
},
"testResultsFiles": {
"type": "string",
"description": "Test Results Files",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test Run Title",
"ignoreCase": "key"
},
"enableCodeCoverage": {
"type": "boolean",
"description": "Enable Code Coverage",
"ignoreCase": "key"
},
"testFramework": {
"description": "Test Framework",
"ignoreCase": "all",
"enum": [
"Mocha",
"Jasmine"
]
},
"srcFiles": {
"type": "string",
"description": "Source Files",
"ignoreCase": "key"
},
"testFiles": {
"type": "string",
"description": "Test Script Files",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Azure SQL Database deployment\n\nDeploy an Azure SQL Database using DACPAC or run scripts using SQLCMD",
"ignoreCase": "value",
"pattern": "^SqlAzureDacpacDeployment@1$"
},
"inputs": {
"description": "Azure SQL Database deployment inputs",
"properties": {
"azureConnectionType": {
"description": "Azure Service Connection Type",
"ignoreCase": "all",
"enum": [
"ConnectedServiceName",
"ConnectedServiceNameARM"
],
"aliases": [
"ConnectedServiceNameSelector"
]
},
"azureClassicSubscription": {
"type": "string",
"description": "Azure Classic Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"azureSubscription": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceNameARM"
]
},
"AuthenticationType": {
"description": "Authentication Type",
"ignoreCase": "all",
"enum": [
"server",
"aadAuthenticationPassword",
"aadAuthenticationIntegrated",
"connectionString",
"servicePrincipal"
]
},
"ServerName": {
"type": "string",
"description": "Azure SQL Server",
"ignoreCase": "key"
},
"DatabaseName": {
"type": "string",
"description": "Database",
"ignoreCase": "key"
},
"SqlUsername": {
"type": "string",
"description": "Login",
"ignoreCase": "key"
},
"SqlPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"aadSqlUsername": {
"type": "string",
"description": "Login",
"ignoreCase": "key"
},
"aadSqlPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"ConnectionString": {
"type": "string",
"description": "Connection String",
"ignoreCase": "key"
},
"deployType": {
"description": "Deploy type",
"ignoreCase": "all",
"enum": [
"DacpacTask",
"SqlTask",
"InlineSqlTask"
],
"aliases": [
"TaskNameSelector"
]
},
"DeploymentAction": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"Publish",
"Extract",
"Export",
"Import",
"Script",
"DriftReport",
"DeployReport"
]
},
"DacpacFile": {
"type": "string",
"description": "DACPAC File",
"ignoreCase": "key"
},
"BacpacFile": {
"type": "string",
"description": "BACPAC File",
"ignoreCase": "key"
},
"SqlFile": {
"type": "string",
"description": "SQL Script",
"ignoreCase": "key"
},
"SqlInline": {
"type": "string",
"description": "Inline SQL Script",
"ignoreCase": "key"
},
"PublishProfile": {
"type": "string",
"description": "Publish Profile",
"ignoreCase": "key"
},
"AdditionalArguments": {
"type": "string",
"description": "Additional SqlPackage.exe Arguments",
"ignoreCase": "key"
},
"SqlAdditionalArguments": {
"type": "string",
"description": "Additional Invoke-Sqlcmd Arguments",
"ignoreCase": "key"
},
"InlineAdditionalArguments": {
"type": "string",
"description": "Additional Invoke-Sqlcmd Arguments",
"ignoreCase": "key"
},
"IpDetectionMethod": {
"description": "Specify Firewall Rules Using",
"ignoreCase": "all",
"enum": [
"AutoDetect",
"IPAddressRange"
]
},
"StartIpAddress": {
"type": "string",
"description": "Start IP Address",
"ignoreCase": "key"
},
"EndIpAddress": {
"type": "string",
"description": "End IP Address",
"ignoreCase": "key"
},
"DeleteFirewallRule": {
"type": "boolean",
"description": "Delete Rule After Task Ends",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Container Structure Test\n\nUses container-structure-test (https://github.com/GoogleContainerTools/container-structure-test) to validate the structure of an image based on four categories of tests - command tests, file existence tests, file content tests and metadata tests",
"ignoreCase": "value",
"pattern": "^ContainerStructureTest@0$"
},
"inputs": {
"description": "Container Structure Test inputs",
"properties": {
"dockerRegistryServiceConnection": {
"type": "string",
"description": "Docker registry service connection",
"ignoreCase": "key"
},
"repository": {
"type": "string",
"description": "Container repository",
"ignoreCase": "key"
},
"tag": {
"type": "string",
"description": "Tag",
"ignoreCase": "key"
},
"configFile": {
"type": "string",
"description": "Config file path",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test run title",
"ignoreCase": "key"
},
"failTaskOnFailedTests": {
"type": "boolean",
"description": "Fail task if there are test failures",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"dockerRegistryServiceConnection",
"repository",
"configFile"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "[Deprecated] IIS Web App deployment\n\nDeploy using MSDeploy, then create/update websites and app pools",
"ignoreCase": "value",
"pattern": "^IISWebAppDeployment@1$"
},
"inputs": {
"description": "[Deprecated] IIS Web App deployment inputs",
"properties": {
"EnvironmentName": {
"type": "string",
"description": "Machines",
"ignoreCase": "key"
},
"AdminUserName": {
"type": "string",
"description": "Admin Login",
"ignoreCase": "key"
},
"AdminPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"WinRMProtocol": {
"description": "Protocol",
"ignoreCase": "all",
"enum": [
"Http",
"Https"
]
},
"TestCertificate": {
"type": "boolean",
"description": "Test Certificate",
"ignoreCase": "key"
},
"WebDeployPackage": {
"type": "string",
"description": "Web Deploy Package",
"ignoreCase": "key"
},
"WebDeployParamFile": {
"type": "string",
"description": "Web Deploy Parameter File",
"ignoreCase": "key"
},
"OverRideParams": {
"type": "string",
"description": "Override Parameters",
"ignoreCase": "key"
},
"CreateWebSite": {
"type": "boolean",
"description": "Create or Update Website",
"ignoreCase": "key"
},
"WebSiteName": {
"type": "string",
"description": "Website Name",
"ignoreCase": "key"
},
"WebSitePhysicalPath": {
"type": "string",
"description": "Physical Path",
"ignoreCase": "key"
},
"WebSitePhysicalPathAuth": {
"description": "Physical Path Authentication",
"ignoreCase": "all",
"enum": [
"WebSiteUserPassThrough",
"WebSiteWindowsAuth"
]
},
"WebSiteAuthUserName": {
"type": "string",
"description": "User Name",
"ignoreCase": "key"
},
"WebSiteAuthUserPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"AddBinding": {
"type": "boolean",
"description": "Add Binding",
"ignoreCase": "key"
},
"AssignDuplicateBinding": {
"type": "boolean",
"description": "Assign Duplicate Binding",
"ignoreCase": "key"
},
"Protocol": {
"description": "Protocol",
"ignoreCase": "all",
"enum": [
"https",
"http"
]
},
"IPAddress": {
"type": "string",
"description": "IP Address",
"ignoreCase": "key"
},
"Port": {
"type": "string",
"description": "Port",
"ignoreCase": "key"
},
"ServerNameIndication": {
"type": "boolean",
"description": "Server Name Indication Required",
"ignoreCase": "key"
},
"HostNameWithOutSNI": {
"type": "string",
"description": "Host Name",
"ignoreCase": "key"
},
"HostNameWithHttp": {
"type": "string",
"description": "Host Name",
"ignoreCase": "key"
},
"HostNameWithSNI": {
"type": "string",
"description": "Host Name",
"ignoreCase": "key"
},
"SSLCertThumbPrint": {
"type": "string",
"description": "SSL Certificate Thumb Print",
"ignoreCase": "key"
},
"CreateAppPool": {
"type": "boolean",
"description": "Create or Update Application Pool",
"ignoreCase": "key"
},
"AppPoolName": {
"type": "string",
"description": "Name",
"ignoreCase": "key"
},
"DotNetVersion": {
"description": ".NET Version",
"ignoreCase": "all",
"enum": [
"v4.0",
"v2.0",
"No Managed Code"
]
},
"PipeLineMode": {
"description": "Managed Pipeline Mode",
"ignoreCase": "all",
"enum": [
"Integrated",
"Classic"
]
},
"AppPoolIdentity": {
"description": "Identity",
"ignoreCase": "all",
"enum": [
"ApplicationPoolIdentity",
"LocalService",
"LocalSystem",
"NetworkService",
"SpecificUser"
]
},
"AppPoolUsername": {
"type": "string",
"description": "Username",
"ignoreCase": "key"
},
"AppPoolPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"AppCmdCommands": {
"type": "string",
"description": "Additional AppCmd.exe Commands",
"ignoreCase": "key"
},
"DeployInParallel": {
"type": "boolean",
"description": "Deploy in Parallel",
"ignoreCase": "key"
},
"ResourceFilteringMethod": {
"description": "Select Machines By",
"ignoreCase": "all",
"enum": [
"machineNames",
"tags"
]
},
"MachineFilter": {
"type": "string",
"description": "Deploy to Machines",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"EnvironmentName",
"WebDeployPackage"
]
}
},
"deprecationMessage": "IISWebAppDeployment is deprecated - Deploy using MSDeploy, then create/update websites and app pools",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Cloud-based load test\n\nRun a load test in the cloud with Azure Pipelines",
"ignoreCase": "value",
"pattern": "^CloudLoadTest@1$"
},
"inputs": {
"description": "Cloud-based load test inputs",
"properties": {
"connectedServiceName": {
"type": "string",
"description": "Azure Pipelines Connection",
"ignoreCase": "key"
},
"TestDrop": {
"type": "string",
"description": "Load test files folder",
"ignoreCase": "key"
},
"LoadTest": {
"type": "string",
"description": "Load test file",
"ignoreCase": "key"
},
"activeRunSettings": {
"description": "Active Run Settings",
"ignoreCase": "all",
"enum": [
"useFile",
"changeActive"
]
},
"runSettingName": {
"type": "string",
"description": "Specify the name of the Run Settings",
"ignoreCase": "key"
},
"testContextParameters": {
"type": "string",
"description": "Override load test context parameters",
"ignoreCase": "key"
},
"TestSettings": {
"type": "string",
"description": "Test settings file",
"ignoreCase": "key"
},
"ThresholdLimit": {
"type": "string",
"description": "Number of permissible threshold violations",
"ignoreCase": "key"
},
"MachineType": {
"description": "Run load test using",
"ignoreCase": "all",
"enum": [
"0",
"2"
]
},
"resourceGroupName": {
"type": "string",
"description": "Resource group rig",
"ignoreCase": "key"
},
"numOfSelfProvisionedAgents": {
"type": "integer",
"description": "Number of agents to use",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"LoadTest"
]
}
},
"deprecationMessage": "CloudLoadTest is deprecated - Run a load test in the cloud with Azure Pipelines",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Kubectl tool installer\n\nInstall Kubectl on agent machine",
"ignoreCase": "value",
"pattern": "^KubectlInstaller@0$"
},
"inputs": {
"description": "Kubectl tool installer inputs",
"properties": {
"kubectlVersion": {
"type": "string",
"description": "Kubectl Version Spec",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Command Line\n\nRun a command line with arguments",
"ignoreCase": "value",
"pattern": "^CmdLine@1$"
},
"inputs": {
"description": "Command Line inputs",
"properties": {
"filename": {
"type": "string",
"description": "Tool",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"workingFolder": {
"type": "string",
"description": "Working folder",
"ignoreCase": "key"
},
"failOnStandardError": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"filename"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Command line\n\nRun a command line script using Bash on Linux and macOS and cmd.exe on Windows",
"ignoreCase": "value",
"pattern": "^CmdLine@2$"
},
"inputs": {
"description": "Command line inputs",
"properties": {
"script": {
"type": "string",
"description": "Script",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key"
},
"failOnStderr": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "NuGet command\n\nDeprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.",
"ignoreCase": "value",
"pattern": "^NuGet@0$"
},
"inputs": {
"description": "NuGet command inputs",
"properties": {
"command": {
"type": "string",
"description": "Command",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"command"
]
}
},
"deprecationMessage": "NuGet is deprecated - Deprecated: use the “NuGet” task instead. It works with the new Tool Installer framework so you can easily use new versions of NuGet without waiting for a task update, provides better support for authenticated feeds outside this organization/collection, and uses NuGet 4 by default.",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Container Build\n\nContainer Build Task",
"ignoreCase": "value",
"pattern": "^ContainerBuild@0$"
},
"inputs": {
"description": "Container Build inputs",
"properties": {
"dockerRegistryServiceConnection": {
"type": "string",
"description": "Docker registry service connection",
"ignoreCase": "key"
},
"repository": {
"type": "string",
"description": "Container repository",
"ignoreCase": "key"
},
"Dockerfile": {
"type": "string",
"description": "Dockerfile",
"ignoreCase": "key"
},
"buildContext": {
"type": "string",
"description": "Build context",
"ignoreCase": "key"
},
"tags": {
"type": "string",
"description": "Tags",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "NuGet\n\nRestore, pack, or push NuGet packages, or run a NuGet command. Supports NuGet.org and authenticated feeds like Azure Artifacts and MyGet. Uses NuGet.exe and works with .NET Framework apps. For .NET Core and .NET Standard apps, use the .NET Core task.",
"ignoreCase": "value",
"pattern": "^NuGetCommand@2$"
},
"inputs": {
"description": "NuGet inputs",
"properties": {
"command": {
"description": "Command",
"ignoreCase": "all",
"enum": [
"restore",
"pack",
"push",
"custom"
]
},
"restoreSolution": {
"type": "string",
"description": "Path to solution, packages.config, or project.json",
"ignoreCase": "key",
"aliases": [
"solution"
]
},
"feedsToUse": {
"description": "Feeds to use",
"ignoreCase": "all",
"enum": [
"select",
"config"
],
"aliases": [
"selectOrConfig"
]
},
"vstsFeed": {
"type": "string",
"description": "Use packages from this Azure Artifacts/TFS feed",
"ignoreCase": "key",
"aliases": [
"feedRestore"
]
},
"includeNuGetOrg": {
"type": "boolean",
"description": "Use packages from NuGet.org",
"ignoreCase": "key"
},
"nugetConfigPath": {
"type": "string",
"description": "Path to NuGet.config",
"ignoreCase": "key"
},
"externalFeedCredentials": {
"type": "string",
"description": "Credentials for feeds outside this organization/collection",
"ignoreCase": "key",
"aliases": [
"externalEndpoints"
]
},
"noCache": {
"type": "boolean",
"description": "Disable local cache",
"ignoreCase": "key"
},
"disableParallelProcessing": {
"type": "boolean",
"description": "Disable parallel processing",
"ignoreCase": "key"
},
"restoreDirectory": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key",
"aliases": [
"packagesDirectory"
]
},
"verbosityRestore": {
"description": "Verbosity",
"ignoreCase": "all",
"enum": [
"Quiet",
"Normal",
"Detailed"
]
},
"packagesToPush": {
"type": "string",
"description": "Path to NuGet package(s) to publish",
"ignoreCase": "key",
"aliases": [
"searchPatternPush"
]
},
"nuGetFeedType": {
"description": "Target feed location",
"ignoreCase": "all",
"enum": [
"internal",
"external"
]
},
"publishVstsFeed": {
"type": "string",
"description": "Target feed",
"ignoreCase": "key",
"aliases": [
"feedPublish"
]
},
"publishPackageMetadata": {
"type": "boolean",
"description": "Publish pipeline metadata",
"ignoreCase": "key"
},
"allowPackageConflicts": {
"type": "boolean",
"description": "Allow duplicates to be skipped",
"ignoreCase": "key"
},
"publishFeedCredentials": {
"type": "string",
"description": "NuGet server",
"ignoreCase": "key",
"aliases": [
"externalEndpoint"
]
},
"verbosityPush": {
"description": "Verbosity",
"ignoreCase": "all",
"enum": [
"Quiet",
"Normal",
"Detailed"
]
},
"packagesToPack": {
"type": "string",
"description": "Path to csproj or nuspec file(s) to pack",
"ignoreCase": "key",
"aliases": [
"searchPatternPack"
]
},
"configuration": {
"type": "string",
"description": "Configuration to package",
"ignoreCase": "key",
"aliases": [
"configurationToPack"
]
},
"packDestination": {
"type": "string",
"description": "Package folder",
"ignoreCase": "key",
"aliases": [
"outputDir"
]
},
"versioningScheme": {
"description": "Automatic package versioning",
"ignoreCase": "all",
"enum": [
"off",
"byPrereleaseNumber",
"byEnvVar",
"byBuildNumber"
]
},
"includeReferencedProjects": {
"type": "boolean",
"description": "Include referenced projects",
"ignoreCase": "key"
},
"versionEnvVar": {
"type": "string",
"description": "Environment variable",
"ignoreCase": "key"
},
"majorVersion": {
"type": "string",
"description": "Major",
"ignoreCase": "key",
"aliases": [
"requestedMajorVersion"
]
},
"minorVersion": {
"type": "string",
"description": "Minor",
"ignoreCase": "key",
"aliases": [
"requestedMinorVersion"
]
},
"patchVersion": {
"type": "string",
"description": "Patch",
"ignoreCase": "key",
"aliases": [
"requestedPatchVersion"
]
},
"packTimezone": {
"description": "Time zone",
"ignoreCase": "all",
"enum": [
"utc",
"local"
]
},
"includeSymbols": {
"type": "boolean",
"description": "Create symbols package",
"ignoreCase": "key"
},
"toolPackage": {
"type": "boolean",
"description": "Tool Package",
"ignoreCase": "key"
},
"buildProperties": {
"type": "string",
"description": "Additional build properties",
"ignoreCase": "key"
},
"basePath": {
"type": "string",
"description": "Base path",
"ignoreCase": "key"
},
"verbosityPack": {
"description": "Verbosity",
"ignoreCase": "all",
"enum": [
"Quiet",
"Normal",
"Detailed"
]
},
"arguments": {
"type": "string",
"description": "Command and arguments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "NuGet Installer\n\nInstalls or restores missing NuGet packages. Use NuGetAuthenticate@0 task for latest capabilities.",
"ignoreCase": "value",
"pattern": "^NuGetInstaller@0$"
},
"inputs": {
"description": "NuGet Installer inputs",
"properties": {
"solution": {
"type": "string",
"description": "Path to solution or packages.config",
"ignoreCase": "key"
},
"nugetConfigPath": {
"type": "string",
"description": "Path to NuGet.config",
"ignoreCase": "key"
},
"restoreMode": {
"description": "Installation type",
"ignoreCase": "all",
"enum": [
"restore",
"install"
]
},
"noCache": {
"type": "boolean",
"description": "Disable local cache",
"ignoreCase": "key"
},
"nuGetRestoreArgs": {
"type": "string",
"description": "NuGet arguments",
"ignoreCase": "key"
},
"verbosity": {
"description": "Verbosity",
"ignoreCase": "all",
"enum": [
"-",
"Quiet",
"Normal",
"Detailed"
]
},
"nuGetVersion": {
"description": "NuGet Version",
"ignoreCase": "all",
"enum": [
"3.3.0",
"3.5.0.1829",
"4.0.0.2283",
"custom"
]
},
"nuGetPath": {
"type": "string",
"description": "Path to NuGet.exe",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "NuGet Restore\n\nRestores NuGet packages in preparation for a Visual Studio Build step.",
"ignoreCase": "value",
"pattern": "^NuGetRestore@1$"
},
"inputs": {
"description": "NuGet Restore inputs",
"properties": {
"solution": {
"type": "string",
"description": "Path to solution, packages.config, or project.json",
"ignoreCase": "key"
},
"selectOrConfig": {
"description": "Feeds to use",
"ignoreCase": "all",
"enum": [
"select",
"config"
]
},
"feed": {
"type": "string",
"description": "Use packages from this VSTS feed",
"ignoreCase": "key"
},
"includeNuGetOrg": {
"type": "boolean",
"description": "Use packages from NuGet.org",
"ignoreCase": "key"
},
"nugetConfigPath": {
"type": "string",
"description": "Path to NuGet.config",
"ignoreCase": "key"
},
"noCache": {
"type": "boolean",
"description": "Disable local cache",
"ignoreCase": "key"
},
"packagesDirectory": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key"
},
"verbosity": {
"description": "Verbosity",
"ignoreCase": "all",
"enum": [
"-",
"Quiet",
"Normal",
"Detailed"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Delay\n\nDelay further execution of a workflow by a fixed time",
"ignoreCase": "value",
"pattern": "^Delay@1$"
},
"inputs": {
"description": "Delay inputs",
"properties": {
"delayForMinutes": {
"type": "string",
"description": "Delay Time (minutes)",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Xamarin.iOS\n\nBuild an iOS app with Xamarin on macOS",
"ignoreCase": "value",
"pattern": "^XamariniOS@2$"
},
"inputs": {
"description": "Xamarin.iOS inputs",
"properties": {
"solutionFile": {
"type": "string",
"description": "Solution",
"ignoreCase": "key",
"aliases": [
"solution"
]
},
"configuration": {
"type": "string",
"description": "Configuration",
"ignoreCase": "key"
},
"clean": {
"type": "boolean",
"description": "Clean",
"ignoreCase": "key"
},
"packageApp": {
"type": "boolean",
"description": "Create app package",
"ignoreCase": "key"
},
"buildForSimulator": {
"type": "boolean",
"description": "Build for iOS Simulator",
"ignoreCase": "key",
"aliases": [
"forSimulator"
]
},
"runNugetRestore": {
"type": "boolean",
"description": "Run NuGet restore",
"ignoreCase": "key"
},
"args": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"mdtoolFile": {
"type": "string",
"description": "Build tool path",
"ignoreCase": "key",
"aliases": [
"buildToolLocation",
"mdtoolLocation"
]
},
"signingIdentity": {
"type": "string",
"description": "Signing identity",
"ignoreCase": "key",
"aliases": [
"iosSigningIdentity"
]
},
"signingProvisioningProfileID": {
"type": "string",
"description": "Provisioning profile UUID",
"ignoreCase": "key",
"aliases": [
"provProfileUuid"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Xamarin.iOS\n\nBuild an iOS app with Xamarin on macOS",
"ignoreCase": "value",
"pattern": "^XamariniOS@1$"
},
"inputs": {
"description": "Xamarin.iOS inputs",
"properties": {
"solutionFile": {
"type": "string",
"description": "Solution",
"ignoreCase": "key",
"aliases": [
"solution"
]
},
"configuration": {
"type": "string",
"description": "Configuration",
"ignoreCase": "key"
},
"clean": {
"type": "boolean",
"description": "Clean",
"ignoreCase": "key"
},
"packageApp": {
"type": "boolean",
"description": "Create app package",
"ignoreCase": "key"
},
"buildForSimulator": {
"type": "boolean",
"description": "Build for iOS Simulator",
"ignoreCase": "key",
"aliases": [
"forSimulator"
]
},
"runNugetRestore": {
"type": "boolean",
"description": "Run NuGet restore",
"ignoreCase": "key"
},
"args": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"buildToolOption": {
"description": "Build tool",
"ignoreCase": "all",
"enum": [
"xbuild",
"msbuild"
],
"aliases": [
"buildTool"
]
},
"mdtoolFile": {
"type": "string",
"description": "Build tool path",
"ignoreCase": "key",
"aliases": [
"mdtoolLocation"
]
},
"signingOption": {
"description": "Override using",
"ignoreCase": "all",
"enum": [
"file",
"id"
],
"aliases": [
"signMethod"
]
},
"signingIdentity": {
"type": "string",
"description": "Signing identity",
"ignoreCase": "key",
"aliases": [
"iosSigningIdentity"
]
},
"signingUnlockDefaultKeychain": {
"type": "boolean",
"description": "Unlock default keychain",
"ignoreCase": "key",
"aliases": [
"unlockDefaultKeychain"
]
},
"signingDefaultKeychainPassword": {
"type": "string",
"description": "Default keychain password",
"ignoreCase": "key",
"aliases": [
"defaultKeychainPassword"
]
},
"signingProvisioningProfileID": {
"type": "string",
"description": "Provisioning profile UUID",
"ignoreCase": "key",
"aliases": [
"provProfileUuid"
]
},
"signingP12File": {
"type": "string",
"description": "P12 certificate file",
"ignoreCase": "key",
"aliases": [
"p12"
]
},
"signingP12Password": {
"type": "string",
"description": "P12 password",
"ignoreCase": "key",
"aliases": [
"p12pwd"
]
},
"signingProvisioningProfileFile": {
"type": "string",
"description": "Provisioning profile file",
"ignoreCase": "key",
"aliases": [
"provProfile"
]
},
"signingRemoveProfile": {
"type": "boolean",
"description": "Remove profile after build",
"ignoreCase": "key",
"aliases": [
"removeProfile"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Publish test results\n\nPublish test results to Azure Pipelines",
"ignoreCase": "value",
"pattern": "^PublishTestResults@1$"
},
"inputs": {
"description": "Publish test results inputs",
"properties": {
"testRunner": {
"description": "Test Result Format",
"ignoreCase": "all",
"enum": [
"JUnit",
"NUnit",
"VSTest",
"XUnit"
]
},
"testResultsFiles": {
"type": "string",
"description": "Test Results Files",
"ignoreCase": "key"
},
"mergeTestResults": {
"type": "boolean",
"description": "Merge Test Results",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test Run Title",
"ignoreCase": "key"
},
"platform": {
"type": "string",
"description": "Platform",
"ignoreCase": "key"
},
"configuration": {
"type": "string",
"description": "Configuration",
"ignoreCase": "key"
},
"publishRunAttachments": {
"type": "boolean",
"description": "Upload Test Attachments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Publish Test Results\n\nPublish test results to Azure Pipelines",
"ignoreCase": "value",
"pattern": "^PublishTestResults@2$"
},
"inputs": {
"description": "Publish Test Results inputs",
"properties": {
"testResultsFormat": {
"description": "Test result format",
"ignoreCase": "all",
"enum": [
"JUnit",
"NUnit",
"VSTest",
"XUnit",
"CTest"
],
"aliases": [
"testRunner"
]
},
"testResultsFiles": {
"type": "string",
"description": "Test results files",
"ignoreCase": "key"
},
"searchFolder": {
"type": "string",
"description": "Search folder",
"ignoreCase": "key"
},
"mergeTestResults": {
"type": "boolean",
"description": "Merge test results",
"ignoreCase": "key"
},
"failTaskOnFailedTests": {
"type": "boolean",
"description": "Fail if there are test failures",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test run title",
"ignoreCase": "key"
},
"buildPlatform": {
"type": "string",
"description": "Build Platform",
"ignoreCase": "key",
"aliases": [
"platform"
]
},
"buildConfiguration": {
"type": "string",
"description": "Build Configuration",
"ignoreCase": "key",
"aliases": [
"configuration"
]
},
"publishRunAttachments": {
"type": "boolean",
"description": "Upload test results files",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Azure file copy\n\nCopy files to Azure Blob Storage or virtual machines",
"ignoreCase": "value",
"pattern": "^AzureFileCopy@1$"
},
"inputs": {
"description": "Azure file copy inputs",
"properties": {
"SourcePath": {
"type": "string",
"description": "Source",
"ignoreCase": "key"
},
"azureConnectionType": {
"description": "Azure Connection Type",
"ignoreCase": "all",
"enum": [
"ConnectedServiceName",
"ConnectedServiceNameARM"
],
"aliases": [
"ConnectedServiceNameSelector"
]
},
"azureClassicSubscription": {
"type": "string",
"description": "Azure Classic Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"azureSubscription": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceNameARM"
]
},
"Destination": {
"description": "Destination Type",
"ignoreCase": "all",
"enum": [
"AzureBlob",
"AzureVMs"
]
},
"classicStorage": {
"type": "string",
"description": "Classic Storage Account",
"ignoreCase": "key",
"aliases": [
"StorageAccount"
]
},
"storage": {
"type": "string",
"description": "RM Storage Account",
"ignoreCase": "key",
"aliases": [
"StorageAccountRM"
]
},
"ContainerName": {
"type": "string",
"description": "Container Name",
"ignoreCase": "key"
},
"BlobPrefix": {
"type": "string",
"description": "Blob Prefix",
"ignoreCase": "key"
},
"cloudService": {
"type": "string",
"description": "Cloud Service",
"ignoreCase": "key",
"aliases": [
"EnvironmentName"
]
},
"resourceGroup": {
"type": "string",
"description": "Resource Group",
"ignoreCase": "key",
"aliases": [
"EnvironmentNameRM"
]
},
"ResourceFilteringMethod": {
"description": "Select Machines By",
"ignoreCase": "all",
"enum": [
"machineNames",
"tags"
]
},
"MachineNames": {
"type": "string",
"description": "Filter Criteria",
"ignoreCase": "key"
},
"vmsAdminUserName": {
"type": "string",
"description": "Admin Login",
"ignoreCase": "key"
},
"vmsAdminPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"TargetPath": {
"type": "string",
"description": "Destination Folder",
"ignoreCase": "key"
},
"AdditionalArguments": {
"type": "string",
"description": "Additional Arguments",
"ignoreCase": "key"
},
"enableCopyPrerequisites": {
"type": "boolean",
"description": "Enable Copy Prerequisites",
"ignoreCase": "key"
},
"CopyFilesInParallel": {
"type": "boolean",
"description": "Copy in Parallel",
"ignoreCase": "key"
},
"CleanTargetBeforeCopy": {
"type": "boolean",
"description": "Clean Target",
"ignoreCase": "key"
},
"skipCACheck": {
"type": "boolean",
"description": "Test Certificate",
"ignoreCase": "key"
},
"outputStorageUri": {
"type": "string",
"description": "Storage Container URI",
"ignoreCase": "key"
},
"outputStorageContainerSasToken": {
"type": "string",
"description": "Storage Container SAS Token",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"SourcePath",
"Destination"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure file copy\n\nCopy files to Azure Blob Storage or virtual machines",
"ignoreCase": "value",
"pattern": "^AzureFileCopy@4$"
},
"inputs": {
"description": "Azure file copy inputs",
"properties": {
"SourcePath": {
"type": "string",
"description": "Source",
"ignoreCase": "key"
},
"azureSubscription": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceNameARM"
]
},
"Destination": {
"description": "Destination Type",
"ignoreCase": "all",
"enum": [
"AzureBlob",
"AzureVMs"
]
},
"storage": {
"type": "string",
"description": "RM Storage Account",
"ignoreCase": "key",
"aliases": [
"StorageAccountRM"
]
},
"ContainerName": {
"type": "string",
"description": "Container Name",
"ignoreCase": "key"
},
"BlobPrefix": {
"type": "string",
"description": "Blob Prefix",
"ignoreCase": "key"
},
"resourceGroup": {
"type": "string",
"description": "Resource Group",
"ignoreCase": "key",
"aliases": [
"EnvironmentNameRM"
]
},
"ResourceFilteringMethod": {
"description": "Select Machines By",
"ignoreCase": "all",
"enum": [
"machineNames",
"tags"
]
},
"MachineNames": {
"type": "string",
"description": "Filter Criteria",
"ignoreCase": "key"
},
"vmsAdminUserName": {
"type": "string",
"description": "Admin Login",
"ignoreCase": "key"
},
"vmsAdminPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"TargetPath": {
"type": "string",
"description": "Destination Folder",
"ignoreCase": "key"
},
"AdditionalArgumentsForBlobCopy": {
"type": "string",
"description": "Optional Arguments (for uploading files to blob)",
"ignoreCase": "key"
},
"AdditionalArgumentsForVMCopy": {
"type": "string",
"description": "Optional Arguments (for downloading files to VM)",
"ignoreCase": "key"
},
"sasTokenTimeOutInMinutes": {
"type": "string",
"description": "SAS Token Expiration Period In Minutes",
"ignoreCase": "key"
},
"enableCopyPrerequisites": {
"type": "boolean",
"description": "Enable Copy Prerequisites",
"ignoreCase": "key"
},
"CopyFilesInParallel": {
"type": "boolean",
"description": "Copy in Parallel",
"ignoreCase": "key"
},
"CleanTargetBeforeCopy": {
"type": "boolean",
"description": "Clean Target",
"ignoreCase": "key"
},
"skipCACheck": {
"type": "boolean",
"description": "Test Certificate",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"SourcePath",
"azureSubscription",
"Destination",
"storage"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure file copy\n\nCopy files to Azure Blob Storage or virtual machines",
"ignoreCase": "value",
"pattern": "^AzureFileCopy@5$"
},
"inputs": {
"description": "Azure file copy inputs",
"properties": {
"SourcePath": {
"type": "string",
"description": "Source",
"ignoreCase": "key"
},
"azureSubscription": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceNameARM"
]
},
"Destination": {
"description": "Destination Type",
"ignoreCase": "all",
"enum": [
"AzureBlob",
"AzureVMs"
]
},
"storage": {
"type": "string",
"description": "RM Storage Account",
"ignoreCase": "key",
"aliases": [
"StorageAccountRM"
]
},
"ContainerName": {
"type": "string",
"description": "Container Name",
"ignoreCase": "key"
},
"BlobPrefix": {
"type": "string",
"description": "Blob Prefix",
"ignoreCase": "key"
},
"resourceGroup": {
"type": "string",
"description": "Resource Group",
"ignoreCase": "key",
"aliases": [
"EnvironmentNameRM"
]
},
"ResourceFilteringMethod": {
"description": "Select Machines By",
"ignoreCase": "all",
"enum": [
"machineNames",
"tags"
]
},
"MachineNames": {
"type": "string",
"description": "Filter Criteria",
"ignoreCase": "key"
},
"vmsAdminUserName": {
"type": "string",
"description": "Admin Login",
"ignoreCase": "key"
},
"vmsAdminPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"TargetPath": {
"type": "string",
"description": "Destination Folder",
"ignoreCase": "key"
},
"AdditionalArgumentsForBlobCopy": {
"type": "string",
"description": "Optional Arguments (for uploading files to blob)",
"ignoreCase": "key"
},
"AdditionalArgumentsForVMCopy": {
"type": "string",
"description": "Optional Arguments (for downloading files to VM)",
"ignoreCase": "key"
},
"sasTokenTimeOutInMinutes": {
"type": "string",
"description": "SAS Token Expiration Period In Minutes",
"ignoreCase": "key"
},
"enableCopyPrerequisites": {
"type": "boolean",
"description": "Enable Copy Prerequisites",
"ignoreCase": "key"
},
"CopyFilesInParallel": {
"type": "boolean",
"description": "Copy in Parallel",
"ignoreCase": "key"
},
"CleanTargetBeforeCopy": {
"type": "boolean",
"description": "Clean Target",
"ignoreCase": "key"
},
"skipCACheck": {
"type": "boolean",
"description": "Test Certificate",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"SourcePath",
"azureSubscription",
"Destination",
"storage"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure file copy\n\nCopy files to Azure Blob Storage or virtual machines",
"ignoreCase": "value",
"pattern": "^AzureFileCopy@2$"
},
"inputs": {
"description": "Azure file copy inputs",
"properties": {
"SourcePath": {
"type": "string",
"description": "Source",
"ignoreCase": "key"
},
"azureConnectionType": {
"description": "Azure Connection Type",
"ignoreCase": "all",
"enum": [
"ConnectedServiceName",
"ConnectedServiceNameARM"
],
"aliases": [
"ConnectedServiceNameSelector"
]
},
"azureClassicSubscription": {
"type": "string",
"description": "Azure Classic Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"azureSubscription": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceNameARM"
]
},
"Destination": {
"description": "Destination Type",
"ignoreCase": "all",
"enum": [
"AzureBlob",
"AzureVMs"
]
},
"classicStorage": {
"type": "string",
"description": "Classic Storage Account",
"ignoreCase": "key",
"aliases": [
"StorageAccount"
]
},
"storage": {
"type": "string",
"description": "RM Storage Account",
"ignoreCase": "key",
"aliases": [
"StorageAccountRM"
]
},
"ContainerName": {
"type": "string",
"description": "Container Name",
"ignoreCase": "key"
},
"BlobPrefix": {
"type": "string",
"description": "Blob Prefix",
"ignoreCase": "key"
},
"cloudService": {
"type": "string",
"description": "Cloud Service",
"ignoreCase": "key",
"aliases": [
"EnvironmentName"
]
},
"resourceGroup": {
"type": "string",
"description": "Resource Group",
"ignoreCase": "key",
"aliases": [
"EnvironmentNameRM"
]
},
"ResourceFilteringMethod": {
"description": "Select Machines By",
"ignoreCase": "all",
"enum": [
"machineNames",
"tags"
]
},
"MachineNames": {
"type": "string",
"description": "Filter Criteria",
"ignoreCase": "key"
},
"vmsAdminUserName": {
"type": "string",
"description": "Admin Login",
"ignoreCase": "key"
},
"vmsAdminPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"TargetPath": {
"type": "string",
"description": "Destination Folder",
"ignoreCase": "key"
},
"AdditionalArgumentsForBlobCopy": {
"type": "string",
"description": "Optional Arguments (for uploading files to blob)",
"ignoreCase": "key"
},
"AdditionalArgumentsForVMCopy": {
"type": "string",
"description": "Optional Arguments (for downloading files to VM)",
"ignoreCase": "key"
},
"enableCopyPrerequisites": {
"type": "boolean",
"description": "Enable Copy Prerequisites",
"ignoreCase": "key"
},
"CopyFilesInParallel": {
"type": "boolean",
"description": "Copy in Parallel",
"ignoreCase": "key"
},
"CleanTargetBeforeCopy": {
"type": "boolean",
"description": "Clean Target",
"ignoreCase": "key"
},
"skipCACheck": {
"type": "boolean",
"description": "Test Certificate",
"ignoreCase": "key"
},
"outputStorageUri": {
"type": "string",
"description": "Storage Container URI",
"ignoreCase": "key"
},
"outputStorageContainerSasToken": {
"type": "string",
"description": "Storage Container SAS Token",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"SourcePath",
"Destination"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure file copy\n\nCopy files to Azure Blob Storage or virtual machines",
"ignoreCase": "value",
"pattern": "^AzureFileCopy@3$"
},
"inputs": {
"description": "Azure file copy inputs",
"properties": {
"SourcePath": {
"type": "string",
"description": "Source",
"ignoreCase": "key"
},
"azureSubscription": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceNameARM"
]
},
"Destination": {
"description": "Destination Type",
"ignoreCase": "all",
"enum": [
"AzureBlob",
"AzureVMs"
]
},
"storage": {
"type": "string",
"description": "RM Storage Account",
"ignoreCase": "key",
"aliases": [
"StorageAccountRM"
]
},
"ContainerName": {
"type": "string",
"description": "Container Name",
"ignoreCase": "key"
},
"BlobPrefix": {
"type": "string",
"description": "Blob Prefix",
"ignoreCase": "key"
},
"resourceGroup": {
"type": "string",
"description": "Resource Group",
"ignoreCase": "key",
"aliases": [
"EnvironmentNameRM"
]
},
"ResourceFilteringMethod": {
"description": "Select Machines By",
"ignoreCase": "all",
"enum": [
"machineNames",
"tags"
]
},
"MachineNames": {
"type": "string",
"description": "Filter Criteria",
"ignoreCase": "key"
},
"vmsAdminUserName": {
"type": "string",
"description": "Admin Login",
"ignoreCase": "key"
},
"vmsAdminPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"TargetPath": {
"type": "string",
"description": "Destination Folder",
"ignoreCase": "key"
},
"AdditionalArgumentsForBlobCopy": {
"type": "string",
"description": "Optional Arguments (for uploading files to blob)",
"ignoreCase": "key"
},
"AdditionalArgumentsForVMCopy": {
"type": "string",
"description": "Optional Arguments (for downloading files to VM)",
"ignoreCase": "key"
},
"enableCopyPrerequisites": {
"type": "boolean",
"description": "Enable Copy Prerequisites",
"ignoreCase": "key"
},
"CopyFilesInParallel": {
"type": "boolean",
"description": "Copy in Parallel",
"ignoreCase": "key"
},
"CleanTargetBeforeCopy": {
"type": "boolean",
"description": "Clean Target",
"ignoreCase": "key"
},
"skipCACheck": {
"type": "boolean",
"description": "Test Certificate",
"ignoreCase": "key"
},
"outputStorageUri": {
"type": "string",
"description": "Storage Container URI",
"ignoreCase": "key"
},
"outputStorageContainerSasToken": {
"type": "string",
"description": "Storage Container SAS Token",
"ignoreCase": "key"
},
"sasTokenTimeOutInMinutes": {
"type": "string",
"description": "SAS Token Expiration Period In Minutes",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"SourcePath",
"azureSubscription",
"Destination",
"storage"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Index sources and publish symbols\n\nIndex your source code and publish symbols to a file share or Azure Artifacts symbol server",
"ignoreCase": "value",
"pattern": "^PublishSymbols@2$"
},
"inputs": {
"description": "Index sources and publish symbols inputs",
"properties": {
"SymbolsFolder": {
"type": "string",
"description": "Path to symbols folder",
"ignoreCase": "key"
},
"SearchPattern": {
"type": "string",
"description": "Search pattern",
"ignoreCase": "key"
},
"IndexSources": {
"type": "boolean",
"description": "Index sources",
"ignoreCase": "key"
},
"PublishSymbols": {
"type": "boolean",
"description": "Publish symbols",
"ignoreCase": "key"
},
"SymbolServerType": {
"description": "Symbol server type",
"ignoreCase": "all",
"enum": [
" ",
"TeamServices",
"FileShare"
]
},
"SymbolsPath": {
"type": "string",
"description": "Path to publish symbols",
"ignoreCase": "key"
},
"CompressSymbols": {
"type": "boolean",
"description": "Compress symbols",
"ignoreCase": "key"
},
"SymbolExpirationInDays": {
"type": "string",
"description": "Symbol Expiration (in days)",
"ignoreCase": "key"
},
"IndexableFileFormats": {
"description": "Symbol file formats to publish",
"ignoreCase": "all",
"enum": [
"Default",
"Pdb",
"SourceMap",
"All"
]
},
"DetailedLog": {
"type": "boolean",
"description": "Verbose logging",
"ignoreCase": "key"
},
"TreatNotIndexedAsWarning": {
"type": "boolean",
"description": "Warn if not indexed",
"ignoreCase": "key"
},
"UseNetCoreClientTool": {
"type": "boolean",
"description": "Use NetCore client tool",
"ignoreCase": "key"
},
"SymbolsMaximumWaitTime": {
"type": "string",
"description": "Max wait time (min)",
"ignoreCase": "key"
},
"SymbolsProduct": {
"type": "string",
"description": "Product",
"ignoreCase": "key"
},
"SymbolsVersion": {
"type": "string",
"description": "Version",
"ignoreCase": "key"
},
"SymbolsArtifactName": {
"type": "string",
"description": "Artifact name",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Index Sources & Publish Symbols\n\nIndex your source code and publish symbols to a file share",
"ignoreCase": "value",
"pattern": "^PublishSymbols@1$"
},
"inputs": {
"description": "Index Sources & Publish Symbols inputs",
"properties": {
"SymbolsPath": {
"type": "string",
"description": "Path to publish symbols",
"ignoreCase": "key"
},
"SearchPattern": {
"type": "string",
"description": "Search pattern",
"ignoreCase": "key"
},
"SymbolsFolder": {
"type": "string",
"description": "Path to symbols folder",
"ignoreCase": "key"
},
"SkipIndexing": {
"type": "boolean",
"description": "Skip indexing",
"ignoreCase": "key"
},
"TreatNotIndexedAsWarning": {
"type": "boolean",
"description": "Warn if not indexed",
"ignoreCase": "key"
},
"SymbolsMaximumWaitTime": {
"type": "string",
"description": "Max wait time (min)",
"ignoreCase": "key"
},
"SymbolsProduct": {
"type": "string",
"description": "Product",
"ignoreCase": "key"
},
"SymbolsVersion": {
"type": "string",
"description": "Version",
"ignoreCase": "key"
},
"SymbolsArtifactName": {
"type": "string",
"description": "Artifact name",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Copy files over SSH\n\nCopy files or build artifacts to a remote machine over SSH",
"ignoreCase": "value",
"pattern": "^CopyFilesOverSSH@0$"
},
"inputs": {
"description": "Copy files over SSH inputs",
"properties": {
"sshEndpoint": {
"type": "string",
"description": "SSH service connection",
"ignoreCase": "key"
},
"sourceFolder": {
"type": "string",
"description": "Source folder",
"ignoreCase": "key"
},
"contents": {
"type": "string",
"description": "Contents",
"ignoreCase": "key"
},
"targetFolder": {
"type": "string",
"description": "Target folder",
"ignoreCase": "key"
},
"isWindowsOnTarget": {
"type": "boolean",
"description": "Target machine running Windows",
"ignoreCase": "key"
},
"cleanTargetFolder": {
"type": "boolean",
"description": "Clean target folder",
"ignoreCase": "key"
},
"cleanHiddenFilesInTarget": {
"type": "boolean",
"description": "Remove hidden files in target folder",
"ignoreCase": "key"
},
"readyTimeout": {
"type": "string",
"description": "SSH handshake timeout",
"ignoreCase": "key"
},
"overwrite": {
"type": "boolean",
"description": "Overwrite",
"ignoreCase": "key"
},
"failOnEmptySource": {
"type": "boolean",
"description": "Fail if no files found to copy",
"ignoreCase": "key"
},
"flattenFolders": {
"type": "boolean",
"description": "Flatten folders",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"sshEndpoint"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Gradle\n\nBuild using a Gradle wrapper script",
"ignoreCase": "value",
"pattern": "^Gradle@2$"
},
"inputs": {
"description": "Gradle inputs",
"properties": {
"gradleWrapperFile": {
"type": "string",
"description": "Gradle wrapper",
"ignoreCase": "key",
"aliases": [
"wrapperScript"
]
},
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"options": {
"type": "string",
"description": "Options",
"ignoreCase": "key"
},
"tasks": {
"type": "string",
"description": "Tasks",
"ignoreCase": "key"
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish to Azure Pipelines",
"ignoreCase": "key"
},
"testResultsFiles": {
"type": "string",
"description": "Test results files",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test run title",
"ignoreCase": "key"
},
"codeCoverageToolOption": {
"description": "Code coverage tool",
"ignoreCase": "all",
"enum": [
"None",
"Cobertura",
"JaCoCo"
],
"aliases": [
"codeCoverageTool"
]
},
"codeCoverageClassFilesDirectories": {
"type": "string",
"description": "Class files directories",
"ignoreCase": "key",
"aliases": [
"classFilesDirectories"
]
},
"codeCoverageClassFilter": {
"type": "string",
"description": "Class inclusion/exclusion filters",
"ignoreCase": "key",
"aliases": [
"classFilter"
]
},
"codeCoverageFailIfEmpty": {
"type": "boolean",
"description": "Fail when code coverage results are missing",
"ignoreCase": "key",
"aliases": [
"failIfCoverageEmpty"
]
},
"codeCoverageGradle5xOrHigher": {
"type": "boolean",
"description": "Gradle version >= 5.x",
"ignoreCase": "key",
"aliases": [
"gradle5xOrHigher"
]
},
"javaHomeOption": {
"description": "Set JAVA_HOME by",
"ignoreCase": "all",
"enum": [
"JDKVersion",
"Path"
],
"aliases": [
"javaHomeSelection"
]
},
"jdkVersionOption": {
"description": "JDK version",
"ignoreCase": "all",
"enum": [
"default",
"1.17",
"1.11",
"1.10",
"1.9",
"1.8",
"1.7",
"1.6"
],
"aliases": [
"jdkVersion"
]
},
"jdkDirectory": {
"type": "string",
"description": "JDK path",
"ignoreCase": "key",
"aliases": [
"jdkUserInputPath"
]
},
"jdkArchitectureOption": {
"description": "JDK architecture",
"ignoreCase": "all",
"enum": [
"x86",
"x64"
],
"aliases": [
"jdkArchitecture"
]
},
"gradleOptions": {
"type": "string",
"description": "Set GRADLE_OPTS",
"ignoreCase": "key",
"aliases": [
"gradleOpts"
]
},
"sonarQubeRunAnalysis": {
"type": "boolean",
"description": "Run SonarQube or SonarCloud Analysis",
"ignoreCase": "key",
"aliases": [
"sqAnalysisEnabled"
]
},
"sqGradlePluginVersionChoice": {
"description": "SonarQube scanner for Gradle version",
"ignoreCase": "all",
"enum": [
"specify",
"build"
]
},
"sonarQubeGradlePluginVersion": {
"type": "string",
"description": "SonarQube scanner for Gradle plugin version",
"ignoreCase": "key",
"aliases": [
"sqGradlePluginVersion"
]
},
"checkStyleRunAnalysis": {
"type": "boolean",
"description": "Run Checkstyle",
"ignoreCase": "key",
"aliases": [
"checkstyleAnalysisEnabled"
]
},
"findBugsRunAnalysis": {
"type": "boolean",
"description": "Run FindBugs",
"ignoreCase": "key",
"aliases": [
"findbugsAnalysisEnabled"
]
},
"pmdRunAnalysis": {
"type": "boolean",
"description": "Run PMD",
"ignoreCase": "key",
"aliases": [
"pmdAnalysisEnabled"
]
},
"spotBugsAnalysis": {
"type": "boolean",
"description": "Run SpotBugs",
"ignoreCase": "key",
"aliases": [
"spotBugsAnalysisEnabled"
]
},
"spotBugsGradlePluginVersionChoice": {
"description": "Spotbugs plugin version",
"ignoreCase": "all",
"enum": [
"specify",
"build"
]
},
"spotbugsGradlePluginVersion": {
"type": "string",
"description": "Version number",
"ignoreCase": "key",
"aliases": [
"spotbugsGradlePluginVersion"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Gradle\n\nBuild using a Gradle wrapper script",
"ignoreCase": "value",
"pattern": "^Gradle@3$"
},
"inputs": {
"description": "Gradle inputs",
"properties": {
"gradleWrapperFile": {
"type": "string",
"description": "Gradle wrapper",
"ignoreCase": "key",
"aliases": [
"wrapperScript"
]
},
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"options": {
"type": "string",
"description": "Options",
"ignoreCase": "key"
},
"tasks": {
"type": "string",
"description": "Tasks",
"ignoreCase": "key"
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish to Azure Pipelines",
"ignoreCase": "key"
},
"testResultsFiles": {
"type": "string",
"description": "Test results files",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test run title",
"ignoreCase": "key"
},
"codeCoverageToolOption": {
"description": "Code coverage tool",
"ignoreCase": "all",
"enum": [
"None",
"Cobertura",
"JaCoCo"
],
"aliases": [
"codeCoverageTool"
]
},
"codeCoverageClassFilesDirectories": {
"type": "string",
"description": "Class files directories",
"ignoreCase": "key",
"aliases": [
"classFilesDirectories"
]
},
"codeCoverageClassFilter": {
"type": "string",
"description": "Class inclusion/exclusion filters",
"ignoreCase": "key",
"aliases": [
"classFilter"
]
},
"codeCoverageFailIfEmpty": {
"type": "boolean",
"description": "Fail when code coverage results are missing",
"ignoreCase": "key",
"aliases": [
"failIfCoverageEmpty"
]
},
"codeCoverageGradle5xOrHigher": {
"type": "boolean",
"description": "Gradle version >= 5.x",
"ignoreCase": "key",
"aliases": [
"gradle5xOrHigher"
]
},
"javaHomeOption": {
"description": "Set JAVA_HOME by",
"ignoreCase": "all",
"enum": [
"JDKVersion",
"Path"
],
"aliases": [
"javaHomeSelection"
]
},
"jdkVersionOption": {
"description": "JDK version",
"ignoreCase": "all",
"enum": [
"default",
"1.17",
"1.11",
"1.10",
"1.9",
"1.8",
"1.7",
"1.6"
],
"aliases": [
"jdkVersion"
]
},
"jdkDirectory": {
"type": "string",
"description": "JDK path",
"ignoreCase": "key",
"aliases": [
"jdkUserInputPath"
]
},
"jdkArchitectureOption": {
"description": "JDK architecture",
"ignoreCase": "all",
"enum": [
"x86",
"x64"
],
"aliases": [
"jdkArchitecture"
]
},
"gradleOptions": {
"type": "string",
"description": "Set GRADLE_OPTS",
"ignoreCase": "key",
"aliases": [
"gradleOpts"
]
},
"sonarQubeRunAnalysis": {
"type": "boolean",
"description": "Run SonarQube or SonarCloud Analysis",
"ignoreCase": "key",
"aliases": [
"sqAnalysisEnabled"
]
},
"sqGradlePluginVersionChoice": {
"description": "SonarQube scanner for Gradle version",
"ignoreCase": "all",
"enum": [
"specify",
"build"
]
},
"sonarQubeGradlePluginVersion": {
"type": "string",
"description": "SonarQube scanner for Gradle plugin version",
"ignoreCase": "key",
"aliases": [
"sqGradlePluginVersion"
]
},
"checkStyleRunAnalysis": {
"type": "boolean",
"description": "Run Checkstyle",
"ignoreCase": "key",
"aliases": [
"checkstyleAnalysisEnabled"
]
},
"findBugsRunAnalysis": {
"type": "boolean",
"description": "Run FindBugs",
"ignoreCase": "key",
"aliases": [
"findbugsAnalysisEnabled"
]
},
"pmdRunAnalysis": {
"type": "boolean",
"description": "Run PMD",
"ignoreCase": "key",
"aliases": [
"pmdAnalysisEnabled"
]
},
"spotBugsAnalysis": {
"type": "boolean",
"description": "Run SpotBugs",
"ignoreCase": "key",
"aliases": [
"spotBugsAnalysisEnabled"
]
},
"spotBugsGradlePluginVersionChoice": {
"description": "Spotbugs plugin version",
"ignoreCase": "all",
"enum": [
"specify",
"build"
]
},
"spotbugsGradlePluginVersion": {
"type": "string",
"description": "Version number",
"ignoreCase": "key",
"aliases": [
"spotbugsGradlePluginVersion"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Gradle\n\nBuild using a Gradle wrapper script",
"ignoreCase": "value",
"pattern": "^Gradle@1$"
},
"inputs": {
"description": "Gradle inputs",
"properties": {
"gradleWrapperFile": {
"type": "string",
"description": "Gradle Wrapper",
"ignoreCase": "key",
"aliases": [
"wrapperScript"
]
},
"options": {
"type": "string",
"description": "Options",
"ignoreCase": "key"
},
"tasks": {
"type": "string",
"description": "Tasks",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish to TFS/Team Services",
"ignoreCase": "key"
},
"testResultsFiles": {
"type": "string",
"description": "Test Results Files",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test Run Title",
"ignoreCase": "key"
},
"codeCoverageToolOption": {
"description": "Code Coverage Tool",
"ignoreCase": "all",
"enum": [
"None",
"Cobertura",
"JaCoCo"
],
"aliases": [
"codeCoverageTool"
]
},
"codeCoverageClassFilesDirectories": {
"type": "string",
"description": "Class Files Directories",
"ignoreCase": "key",
"aliases": [
"classFilesDirectories"
]
},
"codeCoverageClassFilter": {
"type": "string",
"description": "Class Inclusion/Exclusion Filters",
"ignoreCase": "key",
"aliases": [
"classFilter"
]
},
"codeCoverageFailIfEmpty": {
"type": "boolean",
"description": "Fail When Code Coverage Results Are Missing",
"ignoreCase": "key",
"aliases": [
"failIfCoverageEmpty"
]
},
"javaHomeOption": {
"description": "Set JAVA_HOME by",
"ignoreCase": "all",
"enum": [
"JDKVersion",
"Path"
],
"aliases": [
"javaHomeSelection"
]
},
"jdkVersionOption": {
"description": "JDK Version",
"ignoreCase": "all",
"enum": [
"default",
"1.9",
"1.8",
"1.7",
"1.6"
],
"aliases": [
"jdkVersion"
]
},
"jdkDirectory": {
"type": "string",
"description": "JDK Path",
"ignoreCase": "key",
"aliases": [
"jdkUserInputPath"
]
},
"jdkArchitectureOption": {
"description": "JDK Architecture",
"ignoreCase": "all",
"enum": [
"x86",
"x64"
],
"aliases": [
"jdkArchitecture"
]
},
"gradleOptions": {
"type": "string",
"description": "Set GRADLE_OPTS",
"ignoreCase": "key",
"aliases": [
"gradleOpts"
]
},
"sonarQubeRunAnalysis": {
"type": "boolean",
"description": "Run SonarQube Analysis",
"ignoreCase": "key",
"aliases": [
"sqAnalysisEnabled"
]
},
"sonarQubeServiceEndpoint": {
"type": "string",
"description": "SonarQube Endpoint",
"ignoreCase": "key",
"aliases": [
"sqConnectedServiceName"
]
},
"sonarQubeProjectName": {
"type": "string",
"description": "SonarQube Project Name",
"ignoreCase": "key",
"aliases": [
"sqProjectName"
]
},
"sonarQubeProjectKey": {
"type": "string",
"description": "SonarQube Project Key",
"ignoreCase": "key",
"aliases": [
"sqProjectKey"
]
},
"sonarQubeProjectVersion": {
"type": "string",
"description": "SonarQube Project Version",
"ignoreCase": "key",
"aliases": [
"sqProjectVersion"
]
},
"sonarQubeGradlePluginVersion": {
"type": "string",
"description": "SonarQube Gradle Plugin Version",
"ignoreCase": "key",
"aliases": [
"sqGradlePluginVersion"
]
},
"sonarQubeSpecifyDB": {
"type": "boolean",
"description": "The SonarQube server version is lower than 5.2",
"ignoreCase": "key",
"aliases": [
"sqDbDetailsRequired"
]
},
"sonarQubeDBUrl": {
"type": "string",
"description": "Db Connection String",
"ignoreCase": "key",
"aliases": [
"sqDbUrl"
]
},
"sonarQubeDBUsername": {
"type": "string",
"description": "Db Username",
"ignoreCase": "key",
"aliases": [
"sqDbUsername"
]
},
"sonarQubeDBPassword": {
"type": "string",
"description": "Db User Password",
"ignoreCase": "key",
"aliases": [
"sqDbPassword"
]
},
"sonarQubeIncludeFullReport": {
"type": "boolean",
"description": "Include full analysis report in the build summary (SQ 5.3+)",
"ignoreCase": "key",
"aliases": [
"sqAnalysisIncludeFullReport"
]
},
"sonarQubeFailWhenQualityGateFails": {
"type": "boolean",
"description": "Fail the build on quality gate failure (SQ 5.3+)",
"ignoreCase": "key",
"aliases": [
"sqAnalysisBreakBuildIfQualityGateFailed"
]
},
"checkStyleRunAnalysis": {
"type": "boolean",
"description": "Run Checkstyle",
"ignoreCase": "key",
"aliases": [
"checkstyleAnalysisEnabled"
]
},
"findBugsRunAnalysis": {
"type": "boolean",
"description": "Run FindBugs",
"ignoreCase": "key",
"aliases": [
"findbugsAnalysisEnabled"
]
},
"pmdRunAnalysis": {
"type": "boolean",
"description": "Run PMD",
"ignoreCase": "key",
"aliases": [
"pmdAnalysisEnabled"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "App Center distribute\n\nDistribute app builds to testers and users via Visual Studio App Center",
"ignoreCase": "value",
"pattern": "^AppCenterDistribute@2$"
},
"inputs": {
"description": "App Center distribute inputs",
"properties": {
"serverEndpoint": {
"type": "string",
"description": "App Center service connection",
"ignoreCase": "key"
},
"appSlug": {
"type": "string",
"description": "App slug",
"ignoreCase": "key"
},
"appFile": {
"type": "string",
"description": "Binary file path",
"ignoreCase": "key",
"aliases": [
"app"
]
},
"symbolsOption": {
"description": "Symbols type",
"ignoreCase": "all",
"enum": [
"Apple"
],
"aliases": [
"symbolsType"
]
},
"symbolsPath": {
"type": "string",
"description": "Symbols path",
"ignoreCase": "key"
},
"symbolsPdbFiles": {
"type": "string",
"description": "Symbols path (*.pdb)",
"ignoreCase": "key",
"aliases": [
"pdbPath"
]
},
"symbolsDsymFiles": {
"type": "string",
"description": "dSYM path",
"ignoreCase": "key",
"aliases": [
"dsymPath"
]
},
"symbolsMappingTxtFile": {
"type": "string",
"description": "Mapping file",
"ignoreCase": "key",
"aliases": [
"mappingTxtPath"
]
},
"symbolsIncludeParentDirectory": {
"type": "boolean",
"description": "Include all items in parent folder",
"ignoreCase": "key",
"aliases": [
"packParentFolder"
]
},
"releaseNotesOption": {
"description": "Create release notes",
"ignoreCase": "all",
"enum": [
"input",
"file"
],
"aliases": [
"releaseNotesSelection"
]
},
"releaseNotesInput": {
"type": "string",
"description": "Release notes",
"ignoreCase": "key"
},
"releaseNotesFile": {
"type": "string",
"description": "Release notes file",
"ignoreCase": "key"
},
"isMandatory": {
"type": "boolean",
"description": "Require users to update to this release",
"ignoreCase": "key"
},
"distributionGroupId": {
"type": "string",
"description": "Destination IDs",
"ignoreCase": "key",
"aliases": [
"destinationIds",
"destinationId"
]
}
},
"additionalProperties": false,
"required": [
"serverEndpoint",
"appSlug",
"appFile"
]
}
},
"deprecationMessage": "AppCenterDistribute is deprecated - Distribute app builds to testers and users via Visual Studio App Center",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "App Center distribute\n\nDistribute app builds to testers and users via Visual Studio App Center",
"ignoreCase": "value",
"pattern": "^AppCenterDistribute@1$"
},
"inputs": {
"description": "App Center distribute inputs",
"properties": {
"serverEndpoint": {
"type": "string",
"description": "App Center service connection",
"ignoreCase": "key"
},
"appSlug": {
"type": "string",
"description": "App slug",
"ignoreCase": "key"
},
"appFile": {
"type": "string",
"description": "Binary file path",
"ignoreCase": "key",
"aliases": [
"app"
]
},
"symbolsOption": {
"description": "Symbols type",
"ignoreCase": "all",
"enum": [
"Apple"
],
"aliases": [
"symbolsType"
]
},
"symbolsPath": {
"type": "string",
"description": "Symbols path",
"ignoreCase": "key"
},
"symbolsPdbFiles": {
"type": "string",
"description": "Symbols path (*.pdb)",
"ignoreCase": "key",
"aliases": [
"pdbPath"
]
},
"symbolsDsymFiles": {
"type": "string",
"description": "dSYM path",
"ignoreCase": "key",
"aliases": [
"dsymPath"
]
},
"symbolsMappingTxtFile": {
"type": "string",
"description": "Mapping file",
"ignoreCase": "key",
"aliases": [
"mappingTxtPath"
]
},
"symbolsIncludeParentDirectory": {
"type": "boolean",
"description": "Include all items in parent folder",
"ignoreCase": "key",
"aliases": [
"packParentFolder"
]
},
"releaseNotesOption": {
"description": "Create release notes",
"ignoreCase": "all",
"enum": [
"input",
"file"
],
"aliases": [
"releaseNotesSelection"
]
},
"releaseNotesInput": {
"type": "string",
"description": "Release notes",
"ignoreCase": "key"
},
"releaseNotesFile": {
"type": "string",
"description": "Release notes file",
"ignoreCase": "key"
},
"isMandatory": {
"type": "boolean",
"description": "Require users to update to this release",
"ignoreCase": "key"
},
"distributionGroupId": {
"type": "string",
"description": "Destination ID",
"ignoreCase": "key",
"aliases": [
"destinationId"
]
}
},
"additionalProperties": false,
"required": [
"serverEndpoint",
"appSlug",
"appFile"
]
}
},
"deprecationMessage": "AppCenterDistribute is deprecated - Distribute app builds to testers and users via Visual Studio App Center",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "App Center distribute\n\nDistribute app builds to testers and users via Visual Studio App Center",
"ignoreCase": "value",
"pattern": "^AppCenterDistribute@3$"
},
"inputs": {
"description": "App Center distribute inputs",
"properties": {
"serverEndpoint": {
"type": "string",
"description": "App Center service connection",
"ignoreCase": "key"
},
"appSlug": {
"type": "string",
"description": "App slug",
"ignoreCase": "key"
},
"appFile": {
"type": "string",
"description": "Binary file path",
"ignoreCase": "key",
"aliases": [
"app"
]
},
"buildVersion": {
"type": "string",
"description": "Build version",
"ignoreCase": "key"
},
"symbolsOption": {
"description": "Symbols type",
"ignoreCase": "all",
"enum": [
"Apple",
"Android",
"UWP"
],
"aliases": [
"symbolsType"
]
},
"symbolsPath": {
"type": "string",
"description": "Symbols path",
"ignoreCase": "key"
},
"appxsymPath": {
"type": "string",
"description": "Symbols path (*.appxsym)",
"ignoreCase": "key"
},
"symbolsDsymFiles": {
"type": "string",
"description": "dSYM path",
"ignoreCase": "key",
"aliases": [
"dsymPath"
]
},
"symbolsMappingTxtFile": {
"type": "string",
"description": "Mapping file",
"ignoreCase": "key",
"aliases": [
"mappingTxtPath"
]
},
"nativeLibrariesPath": {
"type": "string",
"description": "Native Library File Path",
"ignoreCase": "key"
},
"symbolsIncludeParentDirectory": {
"type": "boolean",
"description": "Include all items in parent folder",
"ignoreCase": "key",
"aliases": [
"packParentFolder"
]
},
"releaseNotesOption": {
"description": "Create release notes",
"ignoreCase": "all",
"enum": [
"input",
"file"
],
"aliases": [
"releaseNotesSelection"
]
},
"releaseNotesInput": {
"type": "string",
"description": "Release notes",
"ignoreCase": "key"
},
"releaseNotesFile": {
"type": "string",
"description": "Release notes file",
"ignoreCase": "key"
},
"isMandatory": {
"type": "boolean",
"description": "Require users to update to this release",
"ignoreCase": "key"
},
"destinationType": {
"description": "Release destination",
"ignoreCase": "all",
"enum": [
"groups",
"store"
]
},
"distributionGroupId": {
"type": "string",
"description": "Destination IDs",
"ignoreCase": "key",
"aliases": [
"destinationGroupIds"
]
},
"destinationStoreId": {
"type": "string",
"description": "Destination ID",
"ignoreCase": "key"
},
"isSilent": {
"type": "boolean",
"description": "Do not notify testers. Release will still be available to install.",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"serverEndpoint",
"appSlug",
"appFile"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "App Center Distribute\n\nDistribute app builds to testers and users via App Center",
"ignoreCase": "value",
"pattern": "^AppCenterDistribute@0$"
},
"inputs": {
"description": "App Center Distribute inputs",
"properties": {
"serverEndpoint": {
"type": "string",
"description": "App Center connection",
"ignoreCase": "key"
},
"appSlug": {
"type": "string",
"description": "App slug",
"ignoreCase": "key"
},
"appFile": {
"type": "string",
"description": "Binary file path",
"ignoreCase": "key",
"aliases": [
"app"
]
},
"symbolsOption": {
"description": "Symbols type",
"ignoreCase": "all",
"enum": [
"Apple"
],
"aliases": [
"symbolsType"
]
},
"symbolsPath": {
"type": "string",
"description": "Symbols path",
"ignoreCase": "key"
},
"symbolsPdbFiles": {
"type": "string",
"description": "Symbols path (*.pdb)",
"ignoreCase": "key",
"aliases": [
"pdbPath"
]
},
"symbolsDsymFiles": {
"type": "string",
"description": "dSYM path",
"ignoreCase": "key",
"aliases": [
"dsymPath"
]
},
"symbolsMappingTxtFile": {
"type": "string",
"description": "Mapping file",
"ignoreCase": "key",
"aliases": [
"mappingTxtPath"
]
},
"symbolsIncludeParentDirectory": {
"type": "boolean",
"description": "Include all items in parent folder",
"ignoreCase": "key",
"aliases": [
"packParentFolder"
]
},
"releaseNotesOption": {
"description": "Create release notes",
"ignoreCase": "all",
"enum": [
"input",
"file"
],
"aliases": [
"releaseNotesSelection"
]
},
"releaseNotesInput": {
"type": "string",
"description": "Release notes",
"ignoreCase": "key"
},
"releaseNotesFile": {
"type": "string",
"description": "Release notes file",
"ignoreCase": "key"
},
"distributionGroupId": {
"type": "string",
"description": "Distribution group ID",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"serverEndpoint",
"appSlug",
"appFile"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "NuGet tool installer\n\nAcquires a specific version of NuGet from the internet or the tools cache and adds it to the PATH. Use this task to change the version of NuGet used in the NuGet tasks.",
"ignoreCase": "value",
"pattern": "^NuGetToolInstaller@0$"
},
"inputs": {
"description": "NuGet tool installer inputs",
"properties": {
"versionSpec": {
"type": "string",
"description": "Version of NuGet.exe to install",
"ignoreCase": "key"
},
"checkLatest": {
"type": "boolean",
"description": "Always download the latest matching version",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "NuGet tool installer\n\nAcquires a specific version of NuGet from the internet or the tools cache and adds it to the PATH. Use this task to change the version of NuGet used in the NuGet tasks.",
"ignoreCase": "value",
"pattern": "^NuGetToolInstaller@1$"
},
"inputs": {
"description": "NuGet tool installer inputs",
"properties": {
"versionSpec": {
"type": "string",
"description": "Version of NuGet.exe to install",
"ignoreCase": "key"
},
"checkLatest": {
"type": "boolean",
"description": "Always check for new versions",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Jenkins download artifacts\n\nDownload artifacts produced by a Jenkins job",
"ignoreCase": "value",
"pattern": "^JenkinsDownloadArtifacts@1$"
},
"inputs": {
"description": "Jenkins download artifacts inputs",
"properties": {
"jenkinsServerConnection": {
"type": "string",
"description": "Jenkins service connection",
"ignoreCase": "key",
"aliases": [
"serverEndpoint"
]
},
"jobName": {
"type": "string",
"description": "Job name",
"ignoreCase": "key"
},
"jenkinsJobType": {
"type": "string",
"description": "Jenkins job type",
"ignoreCase": "key"
},
"saveTo": {
"type": "string",
"description": "Save to",
"ignoreCase": "key"
},
"jenkinsBuild": {
"description": "Download artifacts produced by",
"ignoreCase": "all",
"enum": [
"LastSuccessfulBuild",
"BuildNumber"
]
},
"jenkinsBuildNumber": {
"type": "string",
"description": "Jenkins build number",
"ignoreCase": "key"
},
"itemPattern": {
"type": "string",
"description": "Item Pattern",
"ignoreCase": "key"
},
"downloadCommitsAndWorkItems": {
"type": "boolean",
"description": "Download Commits and WorkItems",
"ignoreCase": "key"
},
"startJenkinsBuildNumber": {
"type": "string",
"description": "Download commits and work items from",
"ignoreCase": "key"
},
"artifactDetailsFileNameSuffix": {
"type": "string",
"description": "Commit and WorkItem FileName",
"ignoreCase": "key"
},
"propagatedArtifacts": {
"type": "boolean",
"description": "Artifacts are propagated to Azure",
"ignoreCase": "key"
},
"artifactProvider": {
"description": "Artifact Provider",
"ignoreCase": "all",
"enum": [
"azureStorage"
]
},
"ConnectedServiceNameARM": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key"
},
"storageAccountName": {
"type": "string",
"description": "Storage Account Name",
"ignoreCase": "key"
},
"containerName": {
"type": "string",
"description": "Container Name",
"ignoreCase": "key"
},
"commonVirtualPath": {
"type": "string",
"description": "Common Virtual Path",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"jenkinsServerConnection",
"jobName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure Functions for container\n\nUpdate a function app with a Docker container",
"ignoreCase": "value",
"pattern": "^AzureFunctionAppContainer@1$"
},
"inputs": {
"description": "Azure Functions for container inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"appName": {
"type": "string",
"description": "App name",
"ignoreCase": "key"
},
"deployToSlotOrASE": {
"type": "boolean",
"description": "Deploy to Slot or App Service Environment",
"ignoreCase": "key"
},
"resourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"slotName": {
"type": "string",
"description": "Slot",
"ignoreCase": "key"
},
"imageName": {
"type": "string",
"description": "Image name",
"ignoreCase": "key"
},
"containerCommand": {
"type": "string",
"description": "Startup command ",
"ignoreCase": "key"
},
"appSettings": {
"type": "string",
"description": "App settings",
"ignoreCase": "key"
},
"configurationStrings": {
"type": "string",
"description": "Configuration settings",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"appName",
"imageName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Java tool installer test vuln 2\n\nAcquire a specific version of Java from a user-supplied Azure blob or the tool cache and sets JAVA_HOME",
"ignoreCase": "value",
"pattern": "^JavaToolInstallerTestVuln2@0$"
},
"inputs": {
"description": "Java tool installer test vuln 2 inputs",
"properties": {
"versionSpec": {
"type": "string",
"description": "JDK version",
"ignoreCase": "key"
},
"jdkArchitectureOption": {
"description": "JDK architecture",
"ignoreCase": "all",
"enum": [
"x64",
"x86"
]
},
"jdkSourceOption": {
"description": "JDK source",
"ignoreCase": "all",
"enum": [
"AzureStorage",
"LocalDirectory",
"PreInstalled"
]
},
"jdkFile": {
"type": "string",
"description": "JDK file",
"ignoreCase": "key"
},
"azureResourceManagerEndpoint": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"azureStorageAccountName": {
"type": "string",
"description": "Storage account name",
"ignoreCase": "key"
},
"azureContainerName": {
"type": "string",
"description": "Container name",
"ignoreCase": "key"
},
"azureCommonVirtualFile": {
"type": "string",
"description": "Common virtual path",
"ignoreCase": "key"
},
"jdkDestinationDirectory": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key"
},
"cleanDestinationDirectory": {
"type": "boolean",
"description": "Clean destination directory",
"ignoreCase": "key"
},
"createExtractDirectory": {
"type": "boolean",
"description": "Create directory for extracting",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"jdkArchitectureOption",
"jdkSourceOption"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Decrypt file (OpenSSL)\n\nDecrypt a file using OpenSSL",
"ignoreCase": "value",
"pattern": "^DecryptFile@1$"
},
"inputs": {
"description": "Decrypt file (OpenSSL) inputs",
"properties": {
"cipher": {
"type": "string",
"description": "Cypher",
"ignoreCase": "key"
},
"inFile": {
"type": "string",
"description": "Encrypted file",
"ignoreCase": "key"
},
"passphrase": {
"type": "string",
"description": "Passphrase",
"ignoreCase": "key"
},
"outFile": {
"type": "string",
"description": "Decrypted file path",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
}
},
"additionalProperties": false,
"required": [
"inFile",
"passphrase"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Package and deploy Helm charts\n\nDeploy, configure, update a Kubernetes cluster in Azure Container Service by running helm commands",
"ignoreCase": "value",
"pattern": "^HelmDeploy@0$"
},
"inputs": {
"description": "Package and deploy Helm charts inputs",
"properties": {
"connectionType": {
"description": "Connection Type",
"ignoreCase": "all",
"enum": [
"Azure Resource Manager",
"Kubernetes Service Connection",
"None"
]
},
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"azureSubscriptionEndpoint"
]
},
"azureResourceGroup": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"kubernetesCluster": {
"type": "string",
"description": "Kubernetes cluster",
"ignoreCase": "key"
},
"useClusterAdmin": {
"type": "boolean",
"description": "Use cluster admin credentials",
"ignoreCase": "key"
},
"kubernetesServiceConnection": {
"type": "string",
"description": "Kubernetes Service Connection",
"ignoreCase": "key",
"aliases": [
"kubernetesServiceEndpoint"
]
},
"namespace": {
"type": "string",
"description": "Namespace",
"ignoreCase": "key"
},
"azureSubscriptionForACR": {
"type": "string",
"description": "Azure subscription for Container Registry",
"ignoreCase": "key",
"aliases": [
"azureSubscriptionEndpointForACR"
]
},
"azureResourceGroupForACR": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"azureContainerRegistry": {
"type": "string",
"description": "Azure Container Registry",
"ignoreCase": "key"
},
"command": {
"description": "Command",
"ignoreCase": "all",
"enum": [
"create",
"delete",
"expose",
"get",
"init",
"install",
"login",
"logout",
"ls",
"package",
"rollback",
"save",
"upgrade",
"uninstall"
]
},
"chartType": {
"description": "Chart Type",
"ignoreCase": "all",
"enum": [
"Name",
"FilePath"
]
},
"chartName": {
"type": "string",
"description": "Chart Name",
"ignoreCase": "key"
},
"chartPath": {
"type": "string",
"description": "Chart Path",
"ignoreCase": "key"
},
"chartVersion": {
"type": "string",
"description": "Version",
"ignoreCase": "key",
"aliases": [
"version"
]
},
"releaseName": {
"type": "string",
"description": "Release Name",
"ignoreCase": "key"
},
"overrideValues": {
"type": "string",
"description": "Set Values",
"ignoreCase": "key"
},
"valueFile": {
"type": "string",
"description": "Value File",
"ignoreCase": "key"
},
"destination": {
"type": "string",
"description": "Destination",
"ignoreCase": "key"
},
"canaryImage": {
"type": "boolean",
"description": "Use canary image version.",
"ignoreCase": "key",
"aliases": [
"canaryimage"
]
},
"upgradeTiller": {
"type": "boolean",
"description": "Upgrade Tiller",
"ignoreCase": "key",
"aliases": [
"upgradetiller"
]
},
"updateDependency": {
"type": "boolean",
"description": "Update Dependency",
"ignoreCase": "key",
"aliases": [
"updatedependency"
]
},
"save": {
"type": "boolean",
"description": "Save",
"ignoreCase": "key"
},
"install": {
"type": "boolean",
"description": "Install if release not present.",
"ignoreCase": "key"
},
"recreate": {
"type": "boolean",
"description": "Recreate Pods.",
"ignoreCase": "key"
},
"resetValues": {
"type": "boolean",
"description": "Reset Values.",
"ignoreCase": "key"
},
"force": {
"type": "boolean",
"description": "Force",
"ignoreCase": "key"
},
"waitForExecution": {
"type": "boolean",
"description": "Wait",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"enableTls": {
"type": "boolean",
"description": "Enable TLS",
"ignoreCase": "key"
},
"caCert": {
"type": "string",
"description": "CA certificate",
"ignoreCase": "key"
},
"certificate": {
"type": "string",
"description": "Certificate",
"ignoreCase": "key"
},
"privatekey": {
"type": "string",
"description": "Key",
"ignoreCase": "key"
},
"tillerNamespace": {
"type": "string",
"description": "Tiller namespace",
"ignoreCase": "key",
"aliases": [
"tillernamespace"
]
},
"failOnStderr": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
},
"publishPipelineMetadata": {
"type": "boolean",
"description": "Publish pipeline metadata",
"ignoreCase": "key"
},
"chartNameForACR": {
"type": "string",
"description": "Chart Name For Azure Container Registry",
"ignoreCase": "key"
},
"chartPathForACR": {
"type": "string",
"description": "Chart Path for Azure Container Registry",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscriptionForACR",
"azureResourceGroupForACR",
"azureContainerRegistry"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Install Apple certificate\n\nInstall an Apple certificate required to build on a macOS agent machine",
"ignoreCase": "value",
"pattern": "^InstallAppleCertificate@2$"
},
"inputs": {
"description": "Install Apple certificate inputs",
"properties": {
"certSecureFile": {
"type": "string",
"description": "Certificate (P12)",
"ignoreCase": "key"
},
"certPwd": {
"type": "string",
"description": "Certificate (P12) password",
"ignoreCase": "key"
},
"keychain": {
"description": "Keychain",
"ignoreCase": "all",
"enum": [
"default",
"temp",
"custom"
]
},
"keychainPassword": {
"type": "string",
"description": "Keychain password",
"ignoreCase": "key"
},
"customKeychainPath": {
"type": "string",
"description": "Custom keychain path",
"ignoreCase": "key"
},
"deleteCert": {
"type": "boolean",
"description": "Delete certificate from keychain",
"ignoreCase": "key"
},
"deleteCustomKeychain": {
"type": "boolean",
"description": "Delete custom keychain",
"ignoreCase": "key"
},
"signingIdentity": {
"type": "string",
"description": "Certificate signing identity",
"ignoreCase": "key"
},
"setUpPartitionIdACLForPrivateKey": {
"type": "boolean",
"description": "Set up partition_id ACL for the imported private key",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"certSecureFile"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Install Apple Certificate\n\nInstall an Apple certificate required to build on a macOS agent",
"ignoreCase": "value",
"pattern": "^InstallAppleCertificate@1$"
},
"inputs": {
"description": "Install Apple Certificate inputs",
"properties": {
"certSecureFile": {
"type": "string",
"description": "Certificate (P12)",
"ignoreCase": "key"
},
"certPwd": {
"type": "string",
"description": "Certificate (P12) password",
"ignoreCase": "key"
},
"keychain": {
"description": "Keychain",
"ignoreCase": "all",
"enum": [
"default",
"temp",
"custom"
]
},
"keychainPassword": {
"type": "string",
"description": "Keychain password",
"ignoreCase": "key"
},
"customKeychainPath": {
"type": "string",
"description": "Custom keychain path",
"ignoreCase": "key"
},
"deleteCert": {
"type": "boolean",
"description": "Delete certificate from keychain",
"ignoreCase": "key"
},
"deleteCustomKeychain": {
"type": "boolean",
"description": "Delete custom keychain",
"ignoreCase": "key"
},
"signingIdentity": {
"type": "string",
"description": "Certificate signing identity",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"certSecureFile"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Install Apple Certificate\n\nInstall an Apple certificate required to build on a macOS agent",
"ignoreCase": "value",
"pattern": "^InstallAppleCertificate@0$"
},
"inputs": {
"description": "Install Apple Certificate inputs",
"properties": {
"certSecureFile": {
"type": "string",
"description": "Certificate (P12)",
"ignoreCase": "key"
},
"certPwd": {
"type": "string",
"description": "Certificate (P12) Password",
"ignoreCase": "key"
},
"keychain": {
"description": "Keychain",
"ignoreCase": "all",
"enum": [
"default",
"temp",
"custom"
]
},
"keychainPassword": {
"type": "string",
"description": "Keychain Password",
"ignoreCase": "key"
},
"customKeychainPath": {
"type": "string",
"description": "Custom Keychain Path",
"ignoreCase": "key"
},
"deleteCert": {
"type": "boolean",
"description": "Delete Certificate from Keychain",
"ignoreCase": "key"
},
"deleteCustomKeychain": {
"type": "boolean",
"description": "Delete Custom Keychain",
"ignoreCase": "key"
},
"signingIdentity": {
"type": "string",
"description": "Certificate Signing Identity",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"certSecureFile"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Invoke Azure Function\n\nInvoke an Azure Function",
"ignoreCase": "value",
"pattern": "^AzureFunction@1$"
},
"inputs": {
"description": "Invoke Azure Function inputs",
"properties": {
"function": {
"type": "string",
"description": "Azure function URL",
"ignoreCase": "key"
},
"key": {
"type": "string",
"description": "Function key",
"ignoreCase": "key"
},
"method": {
"description": "Method",
"ignoreCase": "all",
"enum": [
"OPTIONS",
"GET",
"HEAD",
"POST",
"PUT",
"DELETE",
"TRACE",
"PATCH"
]
},
"headers": {
"type": "string",
"description": "Headers",
"ignoreCase": "key"
},
"queryParameters": {
"type": "string",
"description": "Query parameters",
"ignoreCase": "key"
},
"body": {
"type": "string",
"description": "Body",
"ignoreCase": "key"
},
"waitForCompletion": {
"description": "Completion event",
"ignoreCase": "all",
"enum": [
"true",
"false"
]
},
"successCriteria": {
"type": "string",
"description": "Success criteria",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"function",
"key"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Invoke Azure Function\n\nInvoke Azure function as a part of your process.",
"ignoreCase": "value",
"pattern": "^AzureFunction@0$"
},
"inputs": {
"description": "Invoke Azure Function inputs",
"properties": {
"function": {
"type": "string",
"description": "Azure function url",
"ignoreCase": "key"
},
"key": {
"type": "string",
"description": "Function key",
"ignoreCase": "key"
},
"method": {
"description": "Method",
"ignoreCase": "all",
"enum": [
"OPTIONS",
"GET",
"HEAD",
"POST",
"PUT",
"DELETE",
"TRACE",
"PATCH"
]
},
"headers": {
"type": "string",
"description": "Headers",
"ignoreCase": "key"
},
"queryParameters": {
"type": "string",
"description": "Query parameters",
"ignoreCase": "key"
},
"body": {
"type": "string",
"description": "Body",
"ignoreCase": "key"
},
"waitForCompletion": {
"description": "Complete based on",
"ignoreCase": "all",
"enum": [
"true",
"false"
]
},
"successCriteria": {
"type": "string",
"description": "Success criteria",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"function",
"key"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Download GitHub Release\n\nDownloads a GitHub Release from a repository",
"ignoreCase": "value",
"pattern": "^DownloadGitHubRelease@0$"
},
"inputs": {
"description": "Download GitHub Release inputs",
"properties": {
"connection": {
"type": "string",
"description": "GitHub Connection",
"ignoreCase": "key"
},
"userRepository": {
"type": "string",
"description": "Repository",
"ignoreCase": "key"
},
"defaultVersionType": {
"description": "Default version",
"ignoreCase": "all",
"enum": [
"latest",
"specificVersion",
"specificTag"
]
},
"version": {
"type": "string",
"description": "Release",
"ignoreCase": "key"
},
"itemPattern": {
"type": "string",
"description": "Item Pattern",
"ignoreCase": "key"
},
"downloadPath": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"connection",
"userRepository"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "SSH\n\nRun shell commands or a script on a remote machine using SSH",
"ignoreCase": "value",
"pattern": "^SSH@0$"
},
"inputs": {
"description": "SSH inputs",
"properties": {
"sshEndpoint": {
"type": "string",
"description": "SSH service connection",
"ignoreCase": "key"
},
"runOptions": {
"description": "Run",
"ignoreCase": "all",
"enum": [
"commands",
"script",
"inline"
]
},
"commands": {
"type": "string",
"description": "Commands",
"ignoreCase": "key"
},
"scriptPath": {
"type": "string",
"description": "Shell script path",
"ignoreCase": "key"
},
"inline": {
"type": "string",
"description": "Inline Script",
"ignoreCase": "key"
},
"interpreterCommand": {
"type": "string",
"description": "Interpreter command",
"ignoreCase": "key"
},
"args": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"failOnStdErr": {
"type": "boolean",
"description": "Fail on STDERR",
"ignoreCase": "key"
},
"interactiveSession": {
"type": "boolean",
"description": "Enable interactive session",
"ignoreCase": "key"
},
"readyTimeout": {
"type": "string",
"description": "SSH handshake timeout",
"ignoreCase": "key"
},
"interactiveKeyboardAuthentication": {
"type": "boolean",
"description": "Use interactive-keyboard authentication",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"sshEndpoint"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Publish pipeline artifact\n\nPublish a local directory or file as a named artifact for the current pipeline",
"ignoreCase": "value",
"pattern": "^PublishPipelineArtifact@0$"
},
"inputs": {
"description": "Publish pipeline artifact inputs",
"properties": {
"artifactName": {
"type": "string",
"description": "The name of this artifact",
"ignoreCase": "key"
},
"targetPath": {
"type": "string",
"description": "Path to publish",
"ignoreCase": "key"
},
"properties": {
"type": "string",
"description": "Custom properties",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"targetPath"
]
}
},
"deprecationMessage": "PublishPipelineArtifact is deprecated - Publish a local directory or file as a named artifact for the current pipeline",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Publish Pipeline Artifacts\n\nPublish (upload) a file or directory as a named artifact for the current run",
"ignoreCase": "value",
"pattern": "^PublishPipelineArtifact@1$"
},
"inputs": {
"description": "Publish Pipeline Artifacts inputs",
"properties": {
"targetPath": {
"type": "string",
"description": "File or directory path",
"ignoreCase": "key",
"aliases": [
"path"
]
},
"artifact": {
"type": "string",
"description": "Artifact name",
"ignoreCase": "key",
"aliases": [
"artifactName"
]
},
"publishLocation": {
"description": "Artifact publish location",
"ignoreCase": "all",
"enum": [
"pipeline",
"filepath"
],
"aliases": [
"artifactType"
]
},
"fileSharePath": {
"type": "string",
"description": "File share path",
"ignoreCase": "key"
},
"parallel": {
"type": "boolean",
"description": "Parallel copy",
"ignoreCase": "key"
},
"parallelCount": {
"type": "integer",
"description": "Parallel count",
"ignoreCase": "key"
},
"properties": {
"type": "string",
"description": "Custom properties",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "SonarQube for MSBuild - Begin Analysis\n\n[DEPRECATED] Fetch the Quality Profile from SonarQube to configure the analysis",
"ignoreCase": "value",
"pattern": "^SonarQubePreBuild@1$"
},
"inputs": {
"description": "SonarQube for MSBuild - Begin Analysis inputs",
"properties": {
"projectKey": {
"type": "string",
"description": "Project Key",
"ignoreCase": "key"
},
"projectName": {
"type": "string",
"description": "Project Name",
"ignoreCase": "key"
},
"projectVersion": {
"type": "string",
"description": "Project Version",
"ignoreCase": "key"
},
"connectedServiceName": {
"type": "string",
"description": "SonarQube Endpoint",
"ignoreCase": "key"
},
"dbUrl": {
"type": "string",
"description": "Db Connection String",
"ignoreCase": "key"
},
"dbUsername": {
"type": "string",
"description": "Db UserName",
"ignoreCase": "key"
},
"dbPassword": {
"type": "string",
"description": "Db User Password",
"ignoreCase": "key"
},
"cmdLineArgs": {
"type": "string",
"description": "Additional Settings",
"ignoreCase": "key"
},
"configFile": {
"type": "string",
"description": "Settings File",
"ignoreCase": "key"
},
"includeFullReport": {
"type": "boolean",
"description": "Include full analysis report in the build summary (SQ 5.3+)",
"ignoreCase": "key"
},
"breakBuild": {
"type": "boolean",
"description": "Fail the build on quality gate failure (SQ 5.3+)",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"projectKey",
"projectName",
"connectedServiceName"
]
}
},
"deprecationMessage": "SonarQubePreBuild is deprecated - [DEPRECATED] Fetch the Quality Profile from SonarQube to configure the analysis",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Download artifacts from file share\n\nDownload artifacts from a file share, like \\\\share\\drop",
"ignoreCase": "value",
"pattern": "^DownloadFileshareArtifacts@1$"
},
"inputs": {
"description": "Download artifacts from file share inputs",
"properties": {
"filesharePath": {
"type": "string",
"description": "File share path",
"ignoreCase": "key"
},
"artifactName": {
"type": "string",
"description": "Artifact name",
"ignoreCase": "key"
},
"itemPattern": {
"type": "string",
"description": "Matching pattern",
"ignoreCase": "key"
},
"downloadPath": {
"type": "string",
"description": "Download path",
"ignoreCase": "key"
},
"parallelizationLimit": {
"type": "string",
"description": "Parallelization limit",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"filesharePath",
"artifactName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Kubectl\n\nDeploy, configure, update a Kubernetes cluster in Azure Container Service by running kubectl commands",
"ignoreCase": "value",
"pattern": "^Kubernetes@0$"
},
"inputs": {
"description": "Kubectl inputs",
"properties": {
"kubernetesServiceConnection": {
"type": "string",
"description": "Kubernetes service connection",
"ignoreCase": "key",
"aliases": [
"kubernetesServiceEndpoint"
]
},
"namespace": {
"type": "string",
"description": "Namespace",
"ignoreCase": "key"
},
"command": {
"description": "Command",
"ignoreCase": "all",
"enum": [
"apply",
"create",
"delete",
"exec",
"expose",
"get",
"logs",
"run",
"set",
"top"
]
},
"useConfigurationFile": {
"type": "boolean",
"description": "Use Configuration files",
"ignoreCase": "key"
},
"configuration": {
"type": "string",
"description": "Configuration file",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"secretType": {
"description": "Type of secret",
"ignoreCase": "all",
"enum": [
"dockerRegistry",
"generic"
]
},
"secretArguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"containerRegistryType": {
"description": "Container Registry type",
"ignoreCase": "all",
"enum": [
"Azure Container Registry",
"Container Registry"
]
},
"dockerRegistryConnection": {
"type": "string",
"description": "Docker Registry service connection",
"ignoreCase": "key",
"aliases": [
"dockerRegistryEndpoint"
]
},
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"azureSubscriptionEndpoint"
]
},
"azureContainerRegistry": {
"type": "string",
"description": "Azure Container Registry",
"ignoreCase": "key"
},
"secretName": {
"type": "string",
"description": "Secret name",
"ignoreCase": "key"
},
"forceUpdate": {
"type": "boolean",
"description": "Force update secret",
"ignoreCase": "key"
},
"configMapName": {
"type": "string",
"description": "ConfigMap name",
"ignoreCase": "key"
},
"forceUpdateConfigMap": {
"type": "boolean",
"description": "Force update configmap",
"ignoreCase": "key"
},
"useConfigMapFile": {
"type": "boolean",
"description": "Use file",
"ignoreCase": "key"
},
"configMapFile": {
"type": "string",
"description": "ConfigMap file",
"ignoreCase": "key"
},
"configMapArguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"versionOrLocation": {
"description": "Kubectl",
"ignoreCase": "all",
"enum": [
"version",
"location"
]
},
"versionSpec": {
"type": "string",
"description": "Version spec",
"ignoreCase": "key"
},
"checkLatest": {
"type": "boolean",
"description": "Check for latest version",
"ignoreCase": "key"
},
"specifyLocation": {
"type": "string",
"description": "Path to Kubectl",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"outputFormat": {
"description": "Output format",
"ignoreCase": "all",
"enum": [
"json",
"yaml"
]
},
"kubectlOutput": {
"type": "string",
"description": "Output variable name",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Kubectl\n\nDeploy, configure, update a Kubernetes cluster in Azure Container Service by running kubectl commands",
"ignoreCase": "value",
"pattern": "^Kubernetes@1$"
},
"inputs": {
"description": "Kubectl inputs",
"properties": {
"connectionType": {
"description": "Service connection type",
"ignoreCase": "all",
"enum": [
"Azure Resource Manager",
"Kubernetes Service Connection",
"None"
]
},
"kubernetesServiceEndpoint": {
"type": "string",
"description": "Kubernetes service connection",
"ignoreCase": "key"
},
"azureSubscriptionEndpoint": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"azureResourceGroup": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"kubernetesCluster": {
"type": "string",
"description": "Kubernetes cluster",
"ignoreCase": "key"
},
"useClusterAdmin": {
"type": "boolean",
"description": "Use cluster admin credentials",
"ignoreCase": "key"
},
"namespace": {
"type": "string",
"description": "Namespace",
"ignoreCase": "key"
},
"command": {
"description": "Command",
"ignoreCase": "all",
"enum": [
"apply",
"create",
"delete",
"exec",
"expose",
"get",
"login",
"logout",
"logs",
"run",
"set",
"top"
]
},
"useConfigurationFile": {
"type": "boolean",
"description": "Use configuration",
"ignoreCase": "key"
},
"configurationType": {
"description": "Configuration type",
"ignoreCase": "all",
"enum": [
"configuration",
"inline"
]
},
"configuration": {
"type": "string",
"description": "File path",
"ignoreCase": "key"
},
"inline": {
"type": "string",
"description": "Inline configuration",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"secretType": {
"description": "Type of secret",
"ignoreCase": "all",
"enum": [
"dockerRegistry",
"generic"
]
},
"secretArguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"containerRegistryType": {
"description": "Container registry type",
"ignoreCase": "all",
"enum": [
"Azure Container Registry",
"Container Registry"
]
},
"dockerRegistryEndpoint": {
"type": "string",
"description": "Docker registry service connection",
"ignoreCase": "key"
},
"azureSubscriptionEndpointForSecrets": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"azureContainerRegistry": {
"type": "string",
"description": "Azure container registry",
"ignoreCase": "key"
},
"secretName": {
"type": "string",
"description": "Secret name",
"ignoreCase": "key"
},
"forceUpdate": {
"type": "boolean",
"description": "Force update secret",
"ignoreCase": "key"
},
"configMapName": {
"type": "string",
"description": "ConfigMap name",
"ignoreCase": "key"
},
"forceUpdateConfigMap": {
"type": "boolean",
"description": "Force update configmap",
"ignoreCase": "key"
},
"useConfigMapFile": {
"type": "boolean",
"description": "Use file",
"ignoreCase": "key"
},
"configMapFile": {
"type": "string",
"description": "ConfigMap file",
"ignoreCase": "key"
},
"configMapArguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"versionOrLocation": {
"description": "Kubectl",
"ignoreCase": "all",
"enum": [
"version",
"location"
]
},
"versionSpec": {
"type": "string",
"description": "Version spec",
"ignoreCase": "key"
},
"checkLatest": {
"type": "boolean",
"description": "Check for latest version",
"ignoreCase": "key"
},
"specifyLocation": {
"type": "string",
"description": "Path to kubectl",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"outputFormat": {
"description": "Output format",
"ignoreCase": "all",
"enum": [
"json",
"yaml",
"none"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Azure IoT Edge\n\nBuild and deploy an Azure IoT Edge image",
"ignoreCase": "value",
"pattern": "^AzureIoTEdge@2$"
},
"inputs": {
"description": "Azure IoT Edge inputs",
"properties": {
"action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"Build module images",
"Push module images",
"Generate deployment manifest",
"Deploy to IoT Edge devices"
]
},
"deploymentFilePath": {
"type": "string",
"description": "Deployment file",
"ignoreCase": "key"
},
"azureSubscription": {
"type": "string",
"description": "Azure subscription contains IoT Hub",
"ignoreCase": "key",
"aliases": [
"connectedServiceNameARM"
]
},
"iothubname": {
"type": "string",
"description": "IoT Hub name",
"ignoreCase": "key"
},
"deploymentid": {
"type": "string",
"description": "IoT Edge deployment ID",
"ignoreCase": "key"
},
"priority": {
"type": "string",
"description": "IoT Edge deployment priority",
"ignoreCase": "key"
},
"deviceOption": {
"description": "Choose single/multiple device",
"ignoreCase": "all",
"enum": [
"Single Device",
"Multiple Devices"
]
},
"deviceId": {
"type": "string",
"description": "IoT Edge device ID",
"ignoreCase": "key"
},
"targetcondition": {
"type": "string",
"description": "IoT Edge device target condition",
"ignoreCase": "key"
},
"containerregistrytype": {
"description": "Container registry type",
"ignoreCase": "all",
"enum": [
"Azure Container Registry",
"Generic Container Registry"
]
},
"dockerRegistryConnection": {
"type": "string",
"description": "Docker Registry Connection",
"ignoreCase": "key",
"aliases": [
"dockerRegistryEndpoint"
]
},
"azureSubscriptionEndpoint": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"azureContainerRegistry": {
"type": "string",
"description": "Azure Container Registry",
"ignoreCase": "key"
},
"templateFilePath": {
"type": "string",
"description": ".template.json file",
"ignoreCase": "key"
},
"defaultPlatform": {
"description": "Default platform",
"ignoreCase": "all",
"enum": [
"amd64",
"windows-amd64",
"arm32v7",
"arm64v8"
]
},
"fillRegistryCredential": {
"description": "Add registry credential to deployment manifest",
"ignoreCase": "all",
"enum": [
"true",
"false"
]
},
"deploymentManifestOutputPath": {
"type": "string",
"description": "Output path",
"ignoreCase": "key"
},
"validateGeneratedDeploymentManifest": {
"description": "Validate the schema of generated deployment manifest",
"ignoreCase": "all",
"enum": [
"true",
"false"
]
},
"bypassModules": {
"type": "string",
"description": "Bypass module(s)",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Service Fabric Compose deploy\n\nDeploy a Docker Compose application to an Azure Service Fabric cluster",
"ignoreCase": "value",
"pattern": "^ServiceFabricComposeDeploy@0$"
},
"inputs": {
"description": "Service Fabric Compose deploy inputs",
"properties": {
"clusterConnection": {
"type": "string",
"description": "Cluster Service Connection",
"ignoreCase": "key",
"aliases": [
"serviceConnectionName"
]
},
"composeFilePath": {
"type": "string",
"description": "Compose File Path",
"ignoreCase": "key"
},
"applicationName": {
"type": "string",
"description": "Application Name",
"ignoreCase": "key"
},
"registryCredentials": {
"description": "Registry Credentials Source",
"ignoreCase": "all",
"enum": [
"AzureResourceManagerEndpoint",
"ContainerRegistryEndpoint",
"UsernamePassword",
"None"
]
},
"dockerRegistryConnection": {
"type": "string",
"description": "Docker Registry Service Connection",
"ignoreCase": "key",
"aliases": [
"dockerRegistryEndpointName"
]
},
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"azureSubscriptionEndpoint"
]
},
"registryUserName": {
"type": "string",
"description": "Registry User Name",
"ignoreCase": "key"
},
"registryPassword": {
"type": "string",
"description": "Registry Password",
"ignoreCase": "key"
},
"passwordEncrypted": {
"type": "boolean",
"description": "Password Encrypted",
"ignoreCase": "key"
},
"upgrade": {
"type": "boolean",
"description": "Upgrade",
"ignoreCase": "key"
},
"deployTimeoutSec": {
"type": "string",
"description": "Deploy Timeout (s)",
"ignoreCase": "key"
},
"removeTimeoutSec": {
"type": "string",
"description": "Remove Timeout (s)",
"ignoreCase": "key"
},
"getStatusTimeoutSec": {
"type": "string",
"description": "Get Status Timeout (s)",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"clusterConnection"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Android signing\n\nSign and align Android APK files",
"ignoreCase": "value",
"pattern": "^AndroidSigning@2$"
},
"inputs": {
"description": "Android signing inputs",
"properties": {
"apkFiles": {
"type": "string",
"description": "APK files",
"ignoreCase": "key",
"aliases": [
"files"
]
},
"jarsign": {
"type": "boolean",
"description": "Sign the APK",
"ignoreCase": "key"
},
"jarsignerKeystoreFile": {
"type": "string",
"description": "Keystore file",
"ignoreCase": "key",
"aliases": [
"keystoreFile"
]
},
"jarsignerKeystorePassword": {
"type": "string",
"description": "Keystore password",
"ignoreCase": "key",
"aliases": [
"keystorePass"
]
},
"jarsignerKeystoreAlias": {
"type": "string",
"description": "Alias",
"ignoreCase": "key",
"aliases": [
"keystoreAlias"
]
},
"jarsignerKeyPassword": {
"type": "string",
"description": "Key password",
"ignoreCase": "key",
"aliases": [
"keyPass"
]
},
"jarsignerArguments": {
"type": "string",
"description": "Jarsigner arguments",
"ignoreCase": "key"
},
"zipalign": {
"type": "boolean",
"description": "Zipalign",
"ignoreCase": "key"
},
"zipalignFile": {
"type": "string",
"description": "Zipalign location",
"ignoreCase": "key",
"aliases": [
"zipalignLocation"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Android signing\n\nSign and align Android APK files",
"ignoreCase": "value",
"pattern": "^AndroidSigning@3$"
},
"inputs": {
"description": "Android signing inputs",
"properties": {
"apkFiles": {
"type": "string",
"description": "APK files",
"ignoreCase": "key",
"aliases": [
"files"
]
},
"apksign": {
"type": "boolean",
"description": "Sign the APK",
"ignoreCase": "key"
},
"apksignerKeystoreFile": {
"type": "string",
"description": "Keystore file",
"ignoreCase": "key",
"aliases": [
"keystoreFile"
]
},
"apksignerKeystorePassword": {
"type": "string",
"description": "Keystore password",
"ignoreCase": "key",
"aliases": [
"keystorePass"
]
},
"apksignerKeystoreAlias": {
"type": "string",
"description": "Alias",
"ignoreCase": "key",
"aliases": [
"keystoreAlias"
]
},
"apksignerKeyPassword": {
"type": "string",
"description": "Key password",
"ignoreCase": "key",
"aliases": [
"keyPass"
]
},
"apksignerVersion": {
"type": "string",
"description": "apksigner version",
"ignoreCase": "key"
},
"apksignerArguments": {
"type": "string",
"description": "apksigner arguments",
"ignoreCase": "key"
},
"apksignerFile": {
"type": "string",
"description": "apksigner location",
"ignoreCase": "key",
"aliases": [
"apksignerLocation"
]
},
"zipalign": {
"type": "boolean",
"description": "Zipalign",
"ignoreCase": "key"
},
"zipalignVersion": {
"type": "string",
"description": "Zipalign version",
"ignoreCase": "key"
},
"zipalignFile": {
"type": "string",
"description": "Zipalign location",
"ignoreCase": "key",
"aliases": [
"zipalignLocation"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Android Signing\n\nSign and align Android APK files",
"ignoreCase": "value",
"pattern": "^AndroidSigning@1$"
},
"inputs": {
"description": "Android Signing inputs",
"properties": {
"files": {
"type": "string",
"description": "APK Files",
"ignoreCase": "key"
},
"jarsign": {
"type": "boolean",
"description": "Sign the APK",
"ignoreCase": "key"
},
"keystoreFile": {
"type": "string",
"description": "Keystore File",
"ignoreCase": "key"
},
"keystorePass": {
"type": "string",
"description": "Keystore Password",
"ignoreCase": "key"
},
"keystoreAlias": {
"type": "string",
"description": "Alias",
"ignoreCase": "key"
},
"keyPass": {
"type": "string",
"description": "Key Password",
"ignoreCase": "key"
},
"jarsignerArguments": {
"type": "string",
"description": "Jarsigner Arguments",
"ignoreCase": "key"
},
"zipalign": {
"type": "boolean",
"description": "Zipalign",
"ignoreCase": "key"
},
"zipalignLocation": {
"type": "string",
"description": "Zipalign Location",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"files"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Download pipeline artifact\n\nDownload a named artifact from a pipeline to a local path",
"ignoreCase": "value",
"pattern": "^DownloadPipelineArtifact@1$"
},
"inputs": {
"description": "Download pipeline artifact inputs",
"properties": {
"buildType": {
"description": "Download artifacts produced by",
"ignoreCase": "all",
"enum": [
"current",
"specific"
]
},
"project": {
"type": "string",
"description": "Project",
"ignoreCase": "key"
},
"pipeline": {
"type": "string",
"description": "Build pipeline",
"ignoreCase": "key",
"aliases": [
"definition"
]
},
"specificBuildWithTriggering": {
"type": "boolean",
"description": "When appropriate, download artifacts from the triggering build.",
"ignoreCase": "key"
},
"buildVersionToDownload": {
"description": "Build version to download",
"ignoreCase": "all",
"enum": [
"latest",
"latestFromBranch",
"specific"
]
},
"branchName": {
"type": "string",
"description": "Branch name",
"ignoreCase": "key"
},
"pipelineId": {
"type": "string",
"description": "Build",
"ignoreCase": "key",
"aliases": [
"buildId"
]
},
"tags": {
"type": "string",
"description": "Build Tags",
"ignoreCase": "key"
},
"artifactName": {
"type": "string",
"description": "Artifact name",
"ignoreCase": "key"
},
"itemPattern": {
"type": "string",
"description": "Matching pattern",
"ignoreCase": "key"
},
"targetPath": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key",
"aliases": [
"downloadPath"
]
}
},
"additionalProperties": false,
"required": []
}
},
"deprecationMessage": "DownloadPipelineArtifact is deprecated - Download a named artifact from a pipeline to a local path",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Download pipeline artifact\n\nDownloads an artifact associated with a pipeline",
"ignoreCase": "value",
"pattern": "^DownloadPipelineArtifact@0$"
},
"inputs": {
"description": "Download pipeline artifact inputs",
"properties": {
"pipelineId": {
"type": "string",
"description": "The specific pipeline to download from",
"ignoreCase": "key"
},
"artifactName": {
"type": "string",
"description": "The name of artifact to download.",
"ignoreCase": "key"
},
"targetPath": {
"type": "string",
"description": "Path to download to",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"targetPath"
]
}
},
"deprecationMessage": "DownloadPipelineArtifact is deprecated - Downloads an artifact associated with a pipeline",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Download Pipeline Artifacts\n\nDownload build and pipeline artifacts",
"ignoreCase": "value",
"pattern": "^DownloadPipelineArtifact@2$"
},
"inputs": {
"description": "Download Pipeline Artifacts inputs",
"properties": {
"buildType": {
"description": "Download artifacts produced by",
"ignoreCase": "all",
"enum": [
"current",
"specific"
],
"aliases": [
"source"
]
},
"project": {
"type": "string",
"description": "Project",
"ignoreCase": "key"
},
"definition": {
"type": "string",
"description": "Build pipeline",
"ignoreCase": "key",
"aliases": [
"pipeline"
]
},
"specificBuildWithTriggering": {
"type": "boolean",
"description": "When appropriate, download artifacts from the triggering build.",
"ignoreCase": "key",
"aliases": [
"preferTriggeringPipeline"
]
},
"buildVersionToDownload": {
"description": "Build version to download",
"ignoreCase": "all",
"enum": [
"latest",
"latestFromBranch",
"specific"
],
"aliases": [
"runVersion"
]
},
"branchName": {
"type": "string",
"description": "Branch name",
"ignoreCase": "key",
"aliases": [
"runBranch"
]
},
"pipelineId": {
"type": "string",
"description": "Build",
"ignoreCase": "key",
"aliases": [
"runId",
"buildId"
]
},
"tags": {
"type": "string",
"description": "Build Tags",
"ignoreCase": "key"
},
"allowPartiallySucceededBuilds": {
"type": "boolean",
"description": "Download artifacts from partially succeeded builds.",
"ignoreCase": "key"
},
"allowFailedBuilds": {
"type": "boolean",
"description": "Download artifacts from failed builds.",
"ignoreCase": "key"
},
"artifactName": {
"type": "string",
"description": "Artifact name",
"ignoreCase": "key",
"aliases": [
"artifact"
]
},
"itemPattern": {
"type": "string",
"description": "Matching patterns",
"ignoreCase": "key",
"aliases": [
"patterns"
]
},
"targetPath": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key",
"aliases": [
"path",
"downloadPath"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Use Python version\n\nUse the specified version of Python from the tool cache, optionally adding it to the PATH",
"ignoreCase": "value",
"pattern": "^UsePythonVersion@0$"
},
"inputs": {
"description": "Use Python version inputs",
"properties": {
"versionSpec": {
"type": "string",
"description": "Version spec",
"ignoreCase": "key"
},
"disableDownloadFromRegistry": {
"type": "boolean",
"description": "Disable downloading releases from the GitHub registry",
"ignoreCase": "key"
},
"allowUnstable": {
"type": "boolean",
"description": "Allow downloading unstable releases",
"ignoreCase": "key"
},
"githubToken": {
"type": "string",
"description": "GitHub token for GitHub Actions python registry",
"ignoreCase": "key"
},
"addToPath": {
"type": "boolean",
"description": "Add to PATH",
"ignoreCase": "key"
},
"architecture": {
"description": "Architecture",
"ignoreCase": "all",
"enum": [
"x86",
"x64"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Service Fabric PowerShell\n\nRun a PowerShell script in the context of an Azure Service Fabric cluster connection",
"ignoreCase": "value",
"pattern": "^ServiceFabricPowerShell@1$"
},
"inputs": {
"description": "Service Fabric PowerShell inputs",
"properties": {
"clusterConnection": {
"type": "string",
"description": "Cluster Service Connection",
"ignoreCase": "key",
"aliases": [
"serviceConnectionName"
]
},
"ScriptType": {
"description": "Script Type",
"ignoreCase": "all",
"enum": [
"FilePath",
"InlineScript"
]
},
"ScriptPath": {
"type": "string",
"description": "Script Path",
"ignoreCase": "key"
},
"Inline": {
"type": "string",
"description": "Inline Script",
"ignoreCase": "key"
},
"ScriptArguments": {
"type": "string",
"description": "Script Arguments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"clusterConnection"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Visual Studio Test\n\nRun tests with Visual Studio test runner",
"ignoreCase": "value",
"pattern": "^VSTest@1$"
},
"inputs": {
"description": "Visual Studio Test inputs",
"properties": {
"testAssembly": {
"type": "string",
"description": "Test Assembly",
"ignoreCase": "key"
},
"testFiltercriteria": {
"type": "string",
"description": "Test Filter criteria",
"ignoreCase": "key"
},
"runSettingsFile": {
"type": "string",
"description": "Run Settings File",
"ignoreCase": "key"
},
"overrideTestrunParameters": {
"type": "string",
"description": "Override TestRun Parameters",
"ignoreCase": "key"
},
"codeCoverageEnabled": {
"type": "boolean",
"description": "Code Coverage Enabled",
"ignoreCase": "key"
},
"runInParallel": {
"type": "boolean",
"description": "Run In Parallel",
"ignoreCase": "key"
},
"vstestLocationMethod": {
"description": "VSTest",
"ignoreCase": "all",
"enum": [
"version",
"location"
]
},
"vsTestVersion": {
"description": "VSTest version",
"ignoreCase": "all",
"enum": [
"latest",
"14.0",
"12.0"
]
},
"vstestLocation": {
"type": "string",
"description": "Path to vstest.console.exe",
"ignoreCase": "key"
},
"pathtoCustomTestAdapters": {
"type": "string",
"description": "Path to Custom Test Adapters",
"ignoreCase": "key"
},
"otherConsoleOptions": {
"type": "string",
"description": "Other console options",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test Run Title",
"ignoreCase": "key"
},
"platform": {
"type": "string",
"description": "Platform",
"ignoreCase": "key"
},
"configuration": {
"type": "string",
"description": "Configuration",
"ignoreCase": "key"
},
"publishRunAttachments": {
"type": "boolean",
"description": "Upload Test Attachments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Visual Studio Test\n\nRun unit and functional tests (Selenium, Appium, Coded UI test, etc.) using the Visual Studio Test (VsTest) runner. Test frameworks that have a Visual Studio test adapter such as MsTest, xUnit, NUnit, Chutzpah (for JavaScript tests using QUnit, Mocha and Jasmine), etc. can be run. Tests can be distributed on multiple agents using this task (version 2).",
"ignoreCase": "value",
"pattern": "^VSTest@2$"
},
"inputs": {
"description": "Visual Studio Test inputs",
"properties": {
"testSelector": {
"description": "Select tests using",
"ignoreCase": "all",
"enum": [
"testAssemblies",
"testPlan",
"testRun"
]
},
"testAssemblyVer2": {
"type": "string",
"description": "Test files",
"ignoreCase": "key"
},
"testPlan": {
"type": "string",
"description": "Test plan",
"ignoreCase": "key"
},
"testSuite": {
"type": "string",
"description": "Test suite",
"ignoreCase": "key"
},
"testConfiguration": {
"type": "string",
"description": "Test configuration",
"ignoreCase": "key"
},
"tcmTestRun": {
"type": "string",
"description": "Test Run",
"ignoreCase": "key"
},
"searchFolder": {
"type": "string",
"description": "Search folder",
"ignoreCase": "key"
},
"resultsFolder": {
"type": "string",
"description": "Test results folder",
"ignoreCase": "key"
},
"testFiltercriteria": {
"type": "string",
"description": "Test filter criteria",
"ignoreCase": "key"
},
"runOnlyImpactedTests": {
"type": "boolean",
"description": "Run only impacted tests",
"ignoreCase": "key"
},
"runAllTestsAfterXBuilds": {
"type": "string",
"description": "Number of builds after which all tests should be run",
"ignoreCase": "key"
},
"uiTests": {
"type": "boolean",
"description": "Test mix contains UI tests",
"ignoreCase": "key"
},
"vstestLocationMethod": {
"description": "Select test platform using",
"ignoreCase": "all",
"enum": [
"version",
"location"
]
},
"vsTestVersion": {
"description": "Test platform version",
"ignoreCase": "all",
"enum": [
"latest",
"17.0",
"16.0",
"15.0",
"14.0",
"toolsInstaller"
]
},
"vstestLocation": {
"type": "string",
"description": "Path to vstest.console.exe",
"ignoreCase": "key"
},
"runSettingsFile": {
"type": "string",
"description": "Settings file",
"ignoreCase": "key"
},
"overrideTestrunParameters": {
"type": "string",
"description": "Override test run parameters",
"ignoreCase": "key"
},
"pathtoCustomTestAdapters": {
"type": "string",
"description": "Path to custom test adapters",
"ignoreCase": "key"
},
"runInParallel": {
"type": "boolean",
"description": "Run tests in parallel on multi-core machines",
"ignoreCase": "key"
},
"runTestsInIsolation": {
"type": "boolean",
"description": "Run tests in isolation",
"ignoreCase": "key"
},
"codeCoverageEnabled": {
"type": "boolean",
"description": "Code coverage enabled",
"ignoreCase": "key"
},
"otherConsoleOptions": {
"type": "string",
"description": "Other console options",
"ignoreCase": "key"
},
"distributionBatchType": {
"description": "Batch tests",
"ignoreCase": "all",
"enum": [
"basedOnTestCases",
"basedOnExecutionTime",
"basedOnAssembly"
]
},
"batchingBasedOnAgentsOption": {
"description": "Batch options",
"ignoreCase": "all",
"enum": [
"autoBatchSize",
"customBatchSize"
]
},
"customBatchSizeValue": {
"type": "string",
"description": "Number of tests per batch",
"ignoreCase": "key"
},
"batchingBasedOnExecutionTimeOption": {
"description": "Batch options",
"ignoreCase": "all",
"enum": [
"autoBatchSize",
"customTimeBatchSize"
]
},
"customRunTimePerBatchValue": {
"type": "string",
"description": "Running time (sec) per batch",
"ignoreCase": "key"
},
"dontDistribute": {
"type": "boolean",
"description": "Replicate tests instead of distributing when multiple agents are used in the job",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test run title",
"ignoreCase": "key"
},
"platform": {
"type": "string",
"description": "Build platform",
"ignoreCase": "key"
},
"configuration": {
"type": "string",
"description": "Build configuration",
"ignoreCase": "key"
},
"publishRunAttachments": {
"type": "boolean",
"description": "Upload test attachments",
"ignoreCase": "key"
},
"failOnMinTestsNotRun": {
"type": "boolean",
"description": "Fail the task if a minimum number of tests are not run.",
"ignoreCase": "key"
},
"minimumExpectedTests": {
"type": "string",
"description": "Minimum # of tests",
"ignoreCase": "key"
},
"diagnosticsEnabled": {
"type": "boolean",
"description": "Collect advanced diagnostics in case of catastrophic failures",
"ignoreCase": "key"
},
"collectDumpOn": {
"description": "Collect process dump and attach to test run report",
"ignoreCase": "all",
"enum": [
"onAbortOnly",
"always",
"never"
]
},
"rerunFailedTests": {
"type": "boolean",
"description": "Rerun failed tests",
"ignoreCase": "key"
},
"rerunType": {
"description": "Do not rerun if test failures exceed specified threshold",
"ignoreCase": "all",
"enum": [
"basedOnTestFailurePercentage",
"basedOnTestFailureCount"
]
},
"rerunFailedThreshold": {
"type": "string",
"description": "% failure",
"ignoreCase": "key"
},
"rerunFailedTestCasesMaxLimit": {
"type": "string",
"description": "# of failed tests",
"ignoreCase": "key"
},
"rerunMaxAttempts": {
"type": "string",
"description": "Maximum # of attempts",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Manual validation\n\n[PREVIEW] Pause a pipeline run to wait for manual interaction. Works only with YAML pipelines.",
"ignoreCase": "value",
"pattern": "^ManualValidation@0$"
},
"inputs": {
"description": "Manual validation inputs",
"properties": {
"notifyUsers": {
"type": "string",
"description": "Notify users",
"ignoreCase": "key"
},
"instructions": {
"type": "string",
"description": "Instructions",
"ignoreCase": "key"
},
"onTimeout": {
"description": "On timeout",
"ignoreCase": "all",
"enum": [
"reject",
"resume"
]
}
},
"additionalProperties": false,
"required": [
"notifyUsers"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Ant\n\nBuild with Apache Ant",
"ignoreCase": "value",
"pattern": "^Ant@1$"
},
"inputs": {
"description": "Ant inputs",
"properties": {
"buildFile": {
"type": "string",
"description": "Ant build file",
"ignoreCase": "key",
"aliases": [
"antBuildFile"
]
},
"options": {
"type": "string",
"description": "Options",
"ignoreCase": "key"
},
"targets": {
"type": "string",
"description": "Target(s)",
"ignoreCase": "key"
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish to Azure Pipelines",
"ignoreCase": "key"
},
"testResultsFiles": {
"type": "string",
"description": "Test results files",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test run title",
"ignoreCase": "key"
},
"codeCoverageToolOptions": {
"description": "Code coverage tool",
"ignoreCase": "all",
"enum": [
"None",
"Cobertura",
"JaCoCo"
],
"aliases": [
"codeCoverageTool"
]
},
"codeCoverageClassFilesDirectories": {
"type": "string",
"description": "Class files directories",
"ignoreCase": "key",
"aliases": [
"classFilesDirectories"
]
},
"codeCoverageClassFilter": {
"type": "string",
"description": "Class inclusion/exclusion filters",
"ignoreCase": "key",
"aliases": [
"classFilter"
]
},
"codeCoverageSourceDirectories": {
"type": "string",
"description": "Source files directories",
"ignoreCase": "key",
"aliases": [
"srcDirectories"
]
},
"codeCoverageFailIfEmpty": {
"type": "boolean",
"description": "Fail when code coverage results are missing",
"ignoreCase": "key",
"aliases": [
"failIfCoverageEmpty"
]
},
"antHomeDirectory": {
"type": "string",
"description": "Set ANT_HOME path",
"ignoreCase": "key",
"aliases": [
"antHomeUserInputPath"
]
},
"javaHomeOption": {
"description": "Set JAVA_HOME by",
"ignoreCase": "all",
"enum": [
"JDKVersion",
"Path"
],
"aliases": [
"javaHomeSelection"
]
},
"jdkVersionOption": {
"description": "JDK version",
"ignoreCase": "all",
"enum": [
"default",
"1.11",
"1.10",
"1.9",
"1.8",
"1.7",
"1.6"
],
"aliases": [
"jdkVersion"
]
},
"jdkUserInputDirectory": {
"type": "string",
"description": "JDK path",
"ignoreCase": "key",
"aliases": [
"jdkUserInputPath"
]
},
"jdkArchitectureOption": {
"description": "JDK architecture",
"ignoreCase": "all",
"enum": [
"x86",
"x64"
],
"aliases": [
"jdkArchitecture"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Visual Studio test agent deployment\n\nDeprecated: Instead, use the 'Visual Studio Test' task to run unit and functional tests",
"ignoreCase": "value",
"pattern": "^DeployVisualStudioTestAgent@2$"
},
"inputs": {
"description": "Visual Studio test agent deployment inputs",
"properties": {
"testMachines": {
"type": "string",
"description": "Machines",
"ignoreCase": "key"
},
"adminUserName": {
"type": "string",
"description": "Admin login",
"ignoreCase": "key"
},
"adminPassword": {
"type": "string",
"description": "Admin password",
"ignoreCase": "key"
},
"winRmProtocol": {
"description": "Protocol",
"ignoreCase": "all",
"enum": [
"Http",
"Https"
]
},
"testCertificate": {
"type": "boolean",
"description": "Test Certificate",
"ignoreCase": "key"
},
"machineUserName": {
"type": "string",
"description": "Username",
"ignoreCase": "key"
},
"machinePassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"runAsProcess": {
"type": "boolean",
"description": "Run UI tests",
"ignoreCase": "key"
},
"isDataCollectionOnly": {
"type": "boolean",
"description": "Enable data collection only",
"ignoreCase": "key"
},
"testPlatform": {
"description": "Test agent version",
"ignoreCase": "all",
"enum": [
"15.0",
"14.0"
]
},
"agentLocation": {
"type": "string",
"description": "Test agent location",
"ignoreCase": "key"
},
"updateTestAgent": {
"type": "boolean",
"description": "Update test agent",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"testMachines",
"adminUserName",
"adminPassword",
"machineUserName",
"machinePassword"
]
}
},
"deprecationMessage": "DeployVisualStudioTestAgent is deprecated - Deprecated: Instead, use the 'Visual Studio Test' task to run unit and functional tests",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Visual Studio Test Agent Deployment\n\nDeploy and configure Test Agent to run tests on a set of machines",
"ignoreCase": "value",
"pattern": "^DeployVisualStudioTestAgent@1$"
},
"inputs": {
"description": "Visual Studio Test Agent Deployment inputs",
"properties": {
"testMachineGroup": {
"type": "string",
"description": "Machines",
"ignoreCase": "key"
},
"adminUserName": {
"type": "string",
"description": "Admin Login",
"ignoreCase": "key"
},
"adminPassword": {
"type": "string",
"description": "Admin Password",
"ignoreCase": "key"
},
"winRmProtocol": {
"description": "Protocol",
"ignoreCase": "all",
"enum": [
"Http",
"Https"
]
},
"testCertificate": {
"type": "boolean",
"description": "Test Certificate",
"ignoreCase": "key"
},
"resourceFilteringMethod": {
"description": "Select Machines By",
"ignoreCase": "all",
"enum": [
"machineNames",
"tags"
]
},
"testMachines": {
"type": "string",
"description": "Filter Criteria",
"ignoreCase": "key"
},
"machineUserName": {
"type": "string",
"description": "Username",
"ignoreCase": "key"
},
"machinePassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"runAsProcess": {
"type": "boolean",
"description": "Interactive Process",
"ignoreCase": "key"
},
"agentLocation": {
"type": "string",
"description": "Test Agent Location",
"ignoreCase": "key"
},
"updateTestAgent": {
"type": "boolean",
"description": "Update Test Agent",
"ignoreCase": "key"
},
"isDataCollectionOnly": {
"type": "boolean",
"description": "Enable Data Collection Only",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"testMachineGroup",
"machineUserName",
"machinePassword"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Conda environment\n\nCreate and activate a Conda environment",
"ignoreCase": "value",
"pattern": "^CondaEnvironment@0$"
},
"inputs": {
"description": "Conda environment inputs",
"properties": {
"environmentName": {
"type": "string",
"description": "Environment name",
"ignoreCase": "key"
},
"packageSpecs": {
"type": "string",
"description": "Package specs",
"ignoreCase": "key"
},
"updateConda": {
"type": "boolean",
"description": "Update to the latest Conda",
"ignoreCase": "key"
},
"createOptions": {
"type": "string",
"description": "Environment creation options",
"ignoreCase": "key"
},
"cleanEnvironment": {
"type": "boolean",
"description": "Clean the environment",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"environmentName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Conda environment\n\nThis task is deprecated. Use `conda` directly in script to work with Anaconda environments.",
"ignoreCase": "value",
"pattern": "^CondaEnvironment@1$"
},
"inputs": {
"description": "Conda environment inputs",
"properties": {
"createCustomEnvironment": {
"type": "boolean",
"description": "Create a custom environment",
"ignoreCase": "key"
},
"environmentName": {
"type": "string",
"description": "Environment name",
"ignoreCase": "key"
},
"packageSpecs": {
"type": "string",
"description": "Package specs",
"ignoreCase": "key"
},
"updateConda": {
"type": "boolean",
"description": "Update to the latest Conda",
"ignoreCase": "key"
},
"installOptions": {
"type": "string",
"description": "Other options for `conda install`",
"ignoreCase": "key"
},
"createOptions": {
"type": "string",
"description": "Other options for `conda create`",
"ignoreCase": "key"
},
"cleanEnvironment": {
"type": "boolean",
"description": "Clean the environment",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"deprecationMessage": "CondaEnvironment is deprecated - This task is deprecated. Use `conda` directly in script to work with Anaconda environments.",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Batch script\n\nRun a Windows command or batch script and optionally allow it to change the environment",
"ignoreCase": "value",
"pattern": "^BatchScript@1$"
},
"inputs": {
"description": "Batch script inputs",
"properties": {
"filename": {
"type": "string",
"description": "Path",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"modifyEnvironment": {
"type": "boolean",
"description": "Modify Environment",
"ignoreCase": "key"
},
"workingFolder": {
"type": "string",
"description": "Working folder",
"ignoreCase": "key"
},
"failOnStandardError": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"filename"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Download Github Npm Package\n\nInstall npm packages from GitHub.",
"ignoreCase": "value",
"pattern": "^DownloadGithubNpmPackage@1$"
},
"inputs": {
"description": "Download Github Npm Package inputs",
"properties": {
"packageName": {
"type": "string",
"description": "Package Name",
"ignoreCase": "key"
},
"version": {
"type": "string",
"description": "Package Version",
"ignoreCase": "key"
},
"externalRegistryCredentials": {
"type": "string",
"description": "Credentials for registry from GitHub",
"ignoreCase": "key",
"aliases": [
"externalEndpoints"
]
},
"installDirectory": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key",
"aliases": [
"packagesDirectory"
]
}
},
"additionalProperties": false,
"required": [
"packageName",
"version",
"externalRegistryCredentials"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Visual Studio build\n\nBuild with MSBuild and set the Visual Studio version property",
"ignoreCase": "value",
"pattern": "^VSBuild@1$"
},
"inputs": {
"description": "Visual Studio build inputs",
"properties": {
"solution": {
"type": "string",
"description": "Solution",
"ignoreCase": "key"
},
"vsVersion": {
"description": "Visual Studio Version",
"ignoreCase": "all",
"enum": [
"latest",
"17.0",
"16.0",
"15.0",
"14.0",
"12.0",
"11.0"
]
},
"msbuildArgs": {
"type": "string",
"description": "MSBuild Arguments",
"ignoreCase": "key"
},
"platform": {
"type": "string",
"description": "Platform",
"ignoreCase": "key"
},
"configuration": {
"type": "string",
"description": "Configuration",
"ignoreCase": "key"
},
"clean": {
"type": "boolean",
"description": "Clean",
"ignoreCase": "key"
},
"maximumCpuCount": {
"type": "boolean",
"description": "Build in Parallel",
"ignoreCase": "key"
},
"restoreNugetPackages": {
"type": "boolean",
"description": "Restore NuGet Packages",
"ignoreCase": "key"
},
"msbuildArchitecture": {
"description": "MSBuild Architecture",
"ignoreCase": "all",
"enum": [
"x86",
"x64"
]
},
"logProjectEvents": {
"type": "boolean",
"description": "Record Project Details",
"ignoreCase": "key"
},
"createLogFile": {
"type": "boolean",
"description": "Create Log File",
"ignoreCase": "key"
},
"logFileVerbosity": {
"description": "Log File Verbosity",
"ignoreCase": "all",
"enum": [
"quiet",
"minimal",
"normal",
"detailed",
"diagnostic"
]
},
"enableDefaultLogger": {
"type": "boolean",
"description": "Enable Default Logger",
"ignoreCase": "key"
},
"customVersion": {
"type": "string",
"description": "Custom Version",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Azure Key Vault\n\nDownload Azure Key Vault secrets",
"ignoreCase": "value",
"pattern": "^AzureKeyVault@2$"
},
"inputs": {
"description": "Azure Key Vault inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"KeyVaultName": {
"type": "string",
"description": "Key vault",
"ignoreCase": "key"
},
"SecretsFilter": {
"type": "string",
"description": "Secrets filter",
"ignoreCase": "key"
},
"RunAsPreJob": {
"type": "boolean",
"description": "Make secrets available to whole job",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"KeyVaultName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure Key Vault\n\nDownload Azure Key Vault secrets",
"ignoreCase": "value",
"pattern": "^AzureKeyVault@1$"
},
"inputs": {
"description": "Azure Key Vault inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"KeyVaultName": {
"type": "string",
"description": "Key vault",
"ignoreCase": "key"
},
"SecretsFilter": {
"type": "string",
"description": "Secrets filter",
"ignoreCase": "key"
},
"RunAsPreJob": {
"type": "boolean",
"description": "Make secrets available to whole job",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"KeyVaultName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Use .NET Core\n\nAcquires a specific version of the .NET Core SDK from the internet or the local cache and adds it to the PATH. Use this task to change the version of .NET Core used in subsequent tasks. Additionally provides proxy support.",
"ignoreCase": "value",
"pattern": "^UseDotNet@2$"
},
"inputs": {
"description": "Use .NET Core inputs",
"properties": {
"packageType": {
"description": "Package to install",
"ignoreCase": "all",
"enum": [
"runtime",
"sdk"
]
},
"useGlobalJson": {
"type": "boolean",
"description": "Use global json",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key"
},
"version": {
"type": "string",
"description": "Version",
"ignoreCase": "key"
},
"vsVersion": {
"type": "string",
"description": "Compatible Visual Studio version",
"ignoreCase": "key"
},
"includePreviewVersions": {
"type": "boolean",
"description": "Include Preview Versions",
"ignoreCase": "key"
},
"installationPath": {
"type": "string",
"description": "Path To Install .Net Core",
"ignoreCase": "key"
},
"performMultiLevelLookup": {
"type": "boolean",
"description": "Perform Multi Level Lookup",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": ".NET Core SDK/runtime installer\n\nAcquire a specific version of the .NET Core SDK from the internet or local cache and add it to the PATH",
"ignoreCase": "value",
"pattern": "^DotNetCoreInstaller@0$"
},
"inputs": {
"description": ".NET Core SDK/runtime installer inputs",
"properties": {
"packageType": {
"description": "Package to install",
"ignoreCase": "all",
"enum": [
"runtime",
"sdk"
]
},
"version": {
"type": "string",
"description": "Version",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": ".NET Core sdk/runtime installer\n\nAcquire a specific version of the .NET Core SDK from the internet or local cache and add it to the PATH",
"ignoreCase": "value",
"pattern": "^DotNetCoreInstaller@1$"
},
"inputs": {
"description": ".NET Core sdk/runtime installer inputs",
"properties": {
"packageType": {
"description": "Package to install",
"ignoreCase": "all",
"enum": [
"runtime",
"sdk"
]
},
"version": {
"type": "string",
"description": "Version",
"ignoreCase": "key"
},
"includePreviewVersions": {
"type": "boolean",
"description": "Include Preview Versions",
"ignoreCase": "key"
},
"installationPath": {
"type": "string",
"description": "Path To Install .Net Core",
"ignoreCase": "key"
},
"performMultiLevelLookup": {
"type": "boolean",
"description": "Perform Multi Level Lookup",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"deprecationMessage": "DotNetCoreInstaller is deprecated - Acquire a specific version of the .NET Core SDK from the internet or local cache and add it to the PATH",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Azure App Service manage\n\nStart, stop, restart, slot swap, slot delete, install site extensions or enable continuous monitoring for an Azure App Service",
"ignoreCase": "value",
"pattern": "^AzureAppServiceManage@0$"
},
"inputs": {
"description": "Azure App Service manage inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"Action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"Swap Slots",
"Start Azure App Service",
"Stop Azure App Service",
"Restart Azure App Service",
"Start Swap With Preview",
"Complete Swap",
"Cancel Swap",
"Delete Slot",
"Install Extensions",
"Enable Continuous Monitoring",
"Start all continuous webjobs",
"Stop all continuous webjobs"
]
},
"WebAppName": {
"type": "string",
"description": "App Service name",
"ignoreCase": "key"
},
"SpecifySlotOrASE": {
"type": "boolean",
"description": "Specify Slot or App Service Environment",
"ignoreCase": "key",
"aliases": [
"SpecifySlot"
]
},
"ResourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"SourceSlot": {
"type": "string",
"description": "Source Slot",
"ignoreCase": "key"
},
"SwapWithProduction": {
"type": "boolean",
"description": "Swap with Production",
"ignoreCase": "key"
},
"TargetSlot": {
"type": "string",
"description": "Target Slot",
"ignoreCase": "key"
},
"PreserveVnet": {
"type": "boolean",
"description": "Preserve Vnet",
"ignoreCase": "key"
},
"Slot": {
"type": "string",
"description": "Slot",
"ignoreCase": "key"
},
"ExtensionsList": {
"type": "string",
"description": "Install Extensions",
"ignoreCase": "key"
},
"OutputVariable": {
"type": "string",
"description": "Output variable",
"ignoreCase": "key"
},
"AppInsightsResourceGroupName": {
"type": "string",
"description": "Resource Group name for Application Insights",
"ignoreCase": "key"
},
"ApplicationInsightsResourceName": {
"type": "string",
"description": "Application Insights resource name",
"ignoreCase": "key"
},
"ApplicationInsightsWebTestName": {
"type": "string",
"description": "Application Insights web test name",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"WebAppName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Install Azure Func Core Tools\n\nInstall Azure Func Core Tools",
"ignoreCase": "value",
"pattern": "^FuncToolsInstaller@0$"
},
"inputs": {
"description": "Install Azure Func Core Tools inputs",
"properties": {
"version": {
"type": "string",
"description": "Version",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "File transform\n\nReplace tokens with variable values in XML or JSON configuration files",
"ignoreCase": "value",
"pattern": "^FileTransform@2$"
},
"inputs": {
"description": "File transform inputs",
"properties": {
"folderPath": {
"type": "string",
"description": "Package or folder",
"ignoreCase": "key"
},
"xmlTransformationRules": {
"type": "string",
"description": "XML Transformation rules",
"ignoreCase": "key"
},
"jsonTargetFiles": {
"type": "string",
"description": "JSON target files",
"ignoreCase": "key"
},
"xmlTargetFiles": {
"type": "string",
"description": "XML target files",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "File transform\n\nReplace tokens with variable values in XML or JSON configuration files",
"ignoreCase": "value",
"pattern": "^FileTransform@1$"
},
"inputs": {
"description": "File transform inputs",
"properties": {
"folderPath": {
"type": "string",
"description": "Package or folder",
"ignoreCase": "key"
},
"enableXmlTransform": {
"type": "boolean",
"description": "XML transformation",
"ignoreCase": "key"
},
"xmlTransformationRules": {
"type": "string",
"description": "Transformation rules",
"ignoreCase": "key"
},
"fileType": {
"description": "File format",
"ignoreCase": "all",
"enum": [
"xml",
"json"
]
},
"targetFiles": {
"type": "string",
"description": "Target files",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Extract files\n\nExtract a variety of archive and compression files such as .7z, .rar, .tar.gz, and .zip",
"ignoreCase": "value",
"pattern": "^ExtractFiles@1$"
},
"inputs": {
"description": "Extract files inputs",
"properties": {
"archiveFilePatterns": {
"type": "string",
"description": "Archive file patterns",
"ignoreCase": "key"
},
"destinationFolder": {
"type": "string",
"description": "Destination folder",
"ignoreCase": "key"
},
"cleanDestinationFolder": {
"type": "boolean",
"description": "Clean destination folder before extracting",
"ignoreCase": "key"
},
"overwriteExistingFiles": {
"type": "boolean",
"description": "Overwrite existing files",
"ignoreCase": "key"
},
"pathToSevenZipTool": {
"type": "string",
"description": "Path to 7z utility",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"destinationFolder"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Xamarin.Android\n\nBuild an Android app with Xamarin",
"ignoreCase": "value",
"pattern": "^XamarinAndroid@1$"
},
"inputs": {
"description": "Xamarin.Android inputs",
"properties": {
"projectFile": {
"type": "string",
"description": "Project",
"ignoreCase": "key",
"aliases": [
"project"
]
},
"target": {
"type": "string",
"description": "Target",
"ignoreCase": "key"
},
"outputDirectory": {
"type": "string",
"description": "Output directory",
"ignoreCase": "key",
"aliases": [
"outputDir"
]
},
"configuration": {
"type": "string",
"description": "Configuration",
"ignoreCase": "key"
},
"createAppPackage": {
"type": "boolean",
"description": "Create app package",
"ignoreCase": "key"
},
"clean": {
"type": "boolean",
"description": "Clean",
"ignoreCase": "key"
},
"msbuildLocationOption": {
"description": "MSBuild",
"ignoreCase": "all",
"enum": [
"version",
"location"
],
"aliases": [
"msbuildLocationMethod"
]
},
"msbuildVersionOption": {
"description": "MSBuild version",
"ignoreCase": "all",
"enum": [
"latest",
"17.0",
"16.0",
"15.0",
"14.0",
"12.0",
"4.0"
],
"aliases": [
"msbuildVersion"
]
},
"msbuildFile": {
"type": "string",
"description": "MSBuild location",
"ignoreCase": "key",
"aliases": [
"msbuildLocation"
]
},
"msbuildArchitectureOption": {
"description": "MSBuild architecture",
"ignoreCase": "all",
"enum": [
"x86",
"x64"
],
"aliases": [
"msbuildArchitecture"
]
},
"msbuildArguments": {
"type": "string",
"description": "Additional arguments",
"ignoreCase": "key"
},
"jdkOption": {
"description": "Select JDK to use for the build",
"ignoreCase": "all",
"enum": [
"JDKVersion",
"Path"
],
"aliases": [
"jdkSelection"
]
},
"jdkVersionOption": {
"description": "JDK version",
"ignoreCase": "all",
"enum": [
"default",
"1.11",
"1.10",
"1.9",
"1.8",
"1.7",
"1.6"
],
"aliases": [
"jdkVersion"
]
},
"jdkDirectory": {
"type": "string",
"description": "JDK path",
"ignoreCase": "key",
"aliases": [
"jdkUserInputPath"
]
},
"jdkArchitectureOption": {
"description": "JDK architecture",
"ignoreCase": "all",
"enum": [
"x86",
"x64"
],
"aliases": [
"jdkArchitecture"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Copy and Publish Build Artifacts\n\n[DEPRECATED] Use the Copy Files task and the Publish Build Artifacts task instead",
"ignoreCase": "value",
"pattern": "^CopyPublishBuildArtifacts@1$"
},
"inputs": {
"description": "Copy and Publish Build Artifacts inputs",
"properties": {
"CopyRoot": {
"type": "string",
"description": "Copy Root",
"ignoreCase": "key"
},
"Contents": {
"type": "string",
"description": "Contents",
"ignoreCase": "key"
},
"ArtifactName": {
"type": "string",
"description": "Artifact Name",
"ignoreCase": "key"
},
"ArtifactType": {
"description": "Artifact Type",
"ignoreCase": "all",
"enum": [
"Container",
"FilePath"
]
},
"TargetPath": {
"type": "string",
"description": "Path",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"Contents",
"ArtifactName",
"ArtifactType"
]
}
},
"deprecationMessage": "CopyPublishBuildArtifacts is deprecated - [DEPRECATED] Use the Copy Files task and the Publish Build Artifacts task instead",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Download package\n\nDownload a package from a package management feed in Azure Artifacts",
"ignoreCase": "value",
"pattern": "^DownloadPackage@0$"
},
"inputs": {
"description": "Download package inputs",
"properties": {
"feed": {
"type": "string",
"description": "Feed",
"ignoreCase": "key"
},
"definition": {
"type": "string",
"description": "Package",
"ignoreCase": "key"
},
"version": {
"type": "string",
"description": "Version",
"ignoreCase": "key"
},
"downloadPath": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"feed",
"definition",
"version"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Download package\n\nDownload a package from a package management feed in Azure Artifacts",
"ignoreCase": "value",
"pattern": "^DownloadPackage@1$"
},
"inputs": {
"description": "Download package inputs",
"properties": {
"packageType": {
"description": "Package Type",
"ignoreCase": "all",
"enum": [
"maven",
"npm",
"nuget",
"pypi",
"upack",
"cargo"
]
},
"feed": {
"type": "string",
"description": "Feed",
"ignoreCase": "key"
},
"view": {
"type": "string",
"description": "View",
"ignoreCase": "key"
},
"definition": {
"type": "string",
"description": "Package",
"ignoreCase": "key"
},
"version": {
"type": "string",
"description": "Version",
"ignoreCase": "key"
},
"files": {
"type": "string",
"description": "Files",
"ignoreCase": "key"
},
"extract": {
"type": "boolean",
"description": "Extract package contents",
"ignoreCase": "key"
},
"downloadPath": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"feed",
"definition",
"version"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "ARM template deployment\n\nDeploy an Azure Resource Manager (ARM) template to all the deployment scopes",
"ignoreCase": "value",
"pattern": "^AzureResourceManagerTemplateDeployment@3$"
},
"inputs": {
"description": "ARM template deployment inputs",
"properties": {
"deploymentScope": {
"description": "Deployment scope",
"ignoreCase": "all",
"enum": [
"Management Group",
"Subscription",
"Resource Group"
]
},
"azureResourceManagerConnection": {
"type": "string",
"description": "Azure Resource Manager connection",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"subscriptionId": {
"type": "string",
"description": "Subscription",
"ignoreCase": "key",
"aliases": [
"subscriptionName"
]
},
"action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"Create Or Update Resource Group",
"DeleteRG"
]
},
"resourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"location": {
"type": "string",
"description": "Location",
"ignoreCase": "key"
},
"templateLocation": {
"description": "Template location",
"ignoreCase": "all",
"enum": [
"Linked artifact",
"URL of the file"
]
},
"csmFileLink": {
"type": "string",
"description": "Template link",
"ignoreCase": "key"
},
"csmParametersFileLink": {
"type": "string",
"description": "Template parameters link",
"ignoreCase": "key"
},
"csmFile": {
"type": "string",
"description": "Template",
"ignoreCase": "key"
},
"csmParametersFile": {
"type": "string",
"description": "Template parameters",
"ignoreCase": "key"
},
"overrideParameters": {
"type": "string",
"description": "Override template parameters",
"ignoreCase": "key"
},
"deploymentMode": {
"description": "Deployment mode",
"ignoreCase": "all",
"enum": [
"Incremental",
"Complete",
"Validation"
]
},
"deploymentName": {
"type": "string",
"description": "Deployment name",
"ignoreCase": "key"
},
"deploymentOutputs": {
"type": "string",
"description": "Deployment outputs",
"ignoreCase": "key"
},
"addSpnToEnvironment": {
"type": "boolean",
"description": "Access service principal details in override parameters",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureResourceManagerConnection"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure Resource Group Deployment\n\nDeploy, start, stop, delete Azure Resource Groups",
"ignoreCase": "value",
"pattern": "^AzureResourceGroupDeployment@1$"
},
"inputs": {
"description": "Azure Resource Group Deployment inputs",
"properties": {
"ConnectedServiceNameSelector": {
"description": "Azure Connection Type",
"ignoreCase": "all",
"enum": [
"ConnectedServiceName",
"ConnectedServiceNameClassic"
]
},
"ConnectedServiceName": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key"
},
"ConnectedServiceNameClassic": {
"type": "string",
"description": "Azure Classic Subscription",
"ignoreCase": "key"
},
"action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"Create Or Update Resource Group",
"Select Resource Group",
"Start",
"Stop",
"Restart",
"Delete",
"DeleteRG"
]
},
"actionClassic": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"Select Resource Group"
]
},
"resourceGroupName": {
"type": "string",
"description": "Resource Group",
"ignoreCase": "key"
},
"cloudService": {
"type": "string",
"description": "Cloud Service",
"ignoreCase": "key"
},
"location": {
"description": "Location",
"ignoreCase": "all",
"enum": [
"Australia East",
"Australia Southeast",
"Brazil South",
"Canada Central",
"Canada East",
"Central India",
"Central US",
"East Asia",
"East US",
"East US 2 ",
"Japan East",
"Japan West",
"North Central US",
"North Europe",
"South Central US",
"South India",
"Southeast Asia",
"UK South",
"UK West",
"West Central US",
"West Europe",
"West India",
"West US",
"West US 2"
]
},
"csmFile": {
"type": "string",
"description": "Template",
"ignoreCase": "key"
},
"csmParametersFile": {
"type": "string",
"description": "Template Parameters",
"ignoreCase": "key"
},
"overrideParameters": {
"type": "string",
"description": "Override Template Parameters",
"ignoreCase": "key"
},
"deploymentMode": {
"description": "Deployment Mode",
"ignoreCase": "all",
"enum": [
"Validation",
"Incremental",
"Complete"
]
},
"enableDeploymentPrerequisitesForCreate": {
"type": "boolean",
"description": "Enable Deployment Prerequisites",
"ignoreCase": "key"
},
"enableDeploymentPrerequisitesForSelect": {
"type": "boolean",
"description": "Enable Deployment Prerequisites",
"ignoreCase": "key"
},
"outputVariable": {
"type": "string",
"description": "Resource Group",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"deprecationMessage": "AzureResourceGroupDeployment is deprecated - Deploy, start, stop, delete Azure Resource Groups",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Azure resource group deployment\n\nDeploy an Azure Resource Manager (ARM) template to a resource group and manage virtual machines",
"ignoreCase": "value",
"pattern": "^AzureResourceGroupDeployment@2$"
},
"inputs": {
"description": "Azure resource group deployment inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"Create Or Update Resource Group",
"Select Resource Group",
"Start",
"Stop",
"StopWithDeallocate",
"Restart",
"Delete",
"DeleteRG"
]
},
"resourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"location": {
"type": "string",
"description": "Location",
"ignoreCase": "key"
},
"templateLocation": {
"description": "Template location",
"ignoreCase": "all",
"enum": [
"Linked artifact",
"URL of the file"
]
},
"csmFileLink": {
"type": "string",
"description": "Template link",
"ignoreCase": "key"
},
"csmParametersFileLink": {
"type": "string",
"description": "Template parameters link",
"ignoreCase": "key"
},
"csmFile": {
"type": "string",
"description": "Template",
"ignoreCase": "key"
},
"csmParametersFile": {
"type": "string",
"description": "Template parameters",
"ignoreCase": "key"
},
"overrideParameters": {
"type": "string",
"description": "Override template parameters",
"ignoreCase": "key"
},
"deploymentMode": {
"description": "Deployment mode",
"ignoreCase": "all",
"enum": [
"Incremental",
"Complete",
"Validation"
]
},
"enableDeploymentPrerequisites": {
"description": "Enable prerequisites",
"ignoreCase": "all",
"enum": [
"None",
"ConfigureVMwithWinRM",
"ConfigureVMWithDGAgent"
]
},
"teamServicesConnection": {
"type": "string",
"description": "Azure Pipelines service connection",
"ignoreCase": "key",
"aliases": [
"deploymentGroupEndpoint"
]
},
"teamProject": {
"type": "string",
"description": "Team project",
"ignoreCase": "key",
"aliases": [
"project"
]
},
"deploymentGroupName": {
"type": "string",
"description": "Deployment Group",
"ignoreCase": "key"
},
"copyAzureVMTags": {
"type": "boolean",
"description": "Copy Azure VM tags to agents",
"ignoreCase": "key"
},
"runAgentServiceAsUser": {
"type": "boolean",
"description": "Run agent service as a user",
"ignoreCase": "key"
},
"userName": {
"type": "string",
"description": "User name",
"ignoreCase": "key"
},
"password": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"outputVariable": {
"type": "string",
"description": "VM details for WinRM",
"ignoreCase": "key"
},
"deploymentName": {
"type": "string",
"description": "Deployment name",
"ignoreCase": "key"
},
"deploymentOutputs": {
"type": "string",
"description": "Deployment outputs",
"ignoreCase": "key"
},
"addSpnToEnvironment": {
"type": "boolean",
"description": "Access service principal details in override parameters",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"resourceGroupName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Invoke REST API\n\nInvoke REST API as a part of your process.",
"ignoreCase": "value",
"pattern": "^InvokeRESTAPI@0$"
},
"inputs": {
"description": "Invoke REST API inputs",
"properties": {
"serviceConnection": {
"type": "string",
"description": "Generic endpoint",
"ignoreCase": "key",
"aliases": [
"connectedServiceName"
]
},
"method": {
"description": "Method",
"ignoreCase": "all",
"enum": [
"OPTIONS",
"GET",
"HEAD",
"POST",
"PUT",
"DELETE",
"TRACE",
"PATCH"
]
},
"headers": {
"type": "string",
"description": "Headers",
"ignoreCase": "key"
},
"body": {
"type": "string",
"description": "Body",
"ignoreCase": "key"
},
"urlSuffix": {
"type": "string",
"description": "Url suffix string",
"ignoreCase": "key"
},
"waitForCompletion": {
"description": "Complete based on",
"ignoreCase": "all",
"enum": [
"true",
"false"
]
},
"successCriteria": {
"type": "string",
"description": "Success criteria",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"serviceConnection"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Invoke REST API\n\nInvoke a REST API as a part of your pipeline.",
"ignoreCase": "value",
"pattern": "^InvokeRESTAPI@1$"
},
"inputs": {
"description": "Invoke REST API inputs",
"properties": {
"connectionType": {
"description": "Connection type",
"ignoreCase": "all",
"enum": [
"connectedServiceName",
"connectedServiceNameARM"
],
"aliases": [
"connectedServiceNameSelector"
]
},
"serviceConnection": {
"type": "string",
"description": "Generic service connection",
"ignoreCase": "key",
"aliases": [
"connectedServiceName",
"genericService"
]
},
"azureServiceConnection": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"connectedServiceNameARM",
"azureSubscription"
]
},
"method": {
"description": "Method",
"ignoreCase": "all",
"enum": [
"OPTIONS",
"GET",
"HEAD",
"POST",
"PUT",
"DELETE",
"TRACE",
"PATCH"
]
},
"headers": {
"type": "string",
"description": "Headers",
"ignoreCase": "key"
},
"body": {
"type": "string",
"description": "Body",
"ignoreCase": "key"
},
"urlSuffix": {
"type": "string",
"description": "URL suffix and parameters",
"ignoreCase": "key"
},
"waitForCompletion": {
"description": "Completion event",
"ignoreCase": "all",
"enum": [
"true",
"false"
]
},
"successCriteria": {
"type": "string",
"description": "Success criteria",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Archive Files\n\nArchive files using compression formats such as .7z, .rar, .tar.gz, and .zip.",
"ignoreCase": "value",
"pattern": "^ArchiveFiles@1$"
},
"inputs": {
"description": "Archive Files inputs",
"properties": {
"rootFolder": {
"type": "string",
"description": "Root folder (or file) to archive",
"ignoreCase": "key"
},
"includeRootFolder": {
"type": "boolean",
"description": "Prefix root folder name to archive paths",
"ignoreCase": "key"
},
"archiveType": {
"description": "Archive type",
"ignoreCase": "all",
"enum": [
"default",
"7z",
"tar",
"wim"
]
},
"tarCompression": {
"description": "Tar compression",
"ignoreCase": "all",
"enum": [
"gz",
"bz2",
"xz",
"none"
]
},
"archiveFile": {
"type": "string",
"description": "Archive file to create",
"ignoreCase": "key"
},
"replaceExistingArchive": {
"type": "boolean",
"description": "Replace existing archive",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Archive files\n\nCompress files into .7z, .tar.gz, or .zip",
"ignoreCase": "value",
"pattern": "^ArchiveFiles@2$"
},
"inputs": {
"description": "Archive files inputs",
"properties": {
"rootFolderOrFile": {
"type": "string",
"description": "Root folder or file to archive",
"ignoreCase": "key"
},
"includeRootFolder": {
"type": "boolean",
"description": "Prepend root folder name to archive paths",
"ignoreCase": "key"
},
"archiveType": {
"description": "Archive type",
"ignoreCase": "all",
"enum": [
"zip",
"7z",
"tar",
"wim"
]
},
"sevenZipCompression": {
"description": "7z compression",
"ignoreCase": "all",
"enum": [
"ultra",
"maximum",
"normal",
"fast",
"fastest",
"none"
]
},
"tarCompression": {
"description": "Tar compression",
"ignoreCase": "all",
"enum": [
"gz",
"bz2",
"xz",
"none"
]
},
"archiveFile": {
"type": "string",
"description": "Archive file to create",
"ignoreCase": "key"
},
"replaceExistingArchive": {
"type": "boolean",
"description": "Replace existing archive",
"ignoreCase": "key"
},
"verbose": {
"type": "boolean",
"description": "Force verbose output",
"ignoreCase": "key"
},
"quiet": {
"type": "boolean",
"description": "Force quiet output",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "GitHub Comment\n\nWrite a comment to your Github entity i.e. issue or a Pull Request (PR)",
"ignoreCase": "value",
"pattern": "^GitHubComment@0$"
},
"inputs": {
"description": "GitHub Comment inputs",
"properties": {
"gitHubConnection": {
"type": "string",
"description": "GitHub connection (OAuth or PAT)",
"ignoreCase": "key"
},
"repositoryName": {
"type": "string",
"description": "Repository",
"ignoreCase": "key"
},
"id": {
"type": "string",
"description": "ID of the github pr/issue",
"ignoreCase": "key"
},
"comment": {
"type": "string",
"description": "Comment",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"gitHubConnection"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Copy Files\n\nCopy files from source folder to target folder using minimatch patterns (The minimatch patterns will only match file paths, not folder paths)",
"ignoreCase": "value",
"pattern": "^CopyFiles@1$"
},
"inputs": {
"description": "Copy Files inputs",
"properties": {
"SourceFolder": {
"type": "string",
"description": "Source Folder",
"ignoreCase": "key"
},
"Contents": {
"type": "string",
"description": "Contents",
"ignoreCase": "key"
},
"TargetFolder": {
"type": "string",
"description": "Target Folder",
"ignoreCase": "key"
},
"CleanTargetFolder": {
"type": "boolean",
"description": "Clean Target Folder",
"ignoreCase": "key"
},
"OverWrite": {
"type": "boolean",
"description": "Overwrite",
"ignoreCase": "key"
},
"flattenFolders": {
"type": "boolean",
"description": "Flatten Folders",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"TargetFolder"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Copy files\n\nCopy files from a source folder to a target folder using patterns matching file paths (not folder paths)",
"ignoreCase": "value",
"pattern": "^CopyFiles@2$"
},
"inputs": {
"description": "Copy files inputs",
"properties": {
"SourceFolder": {
"type": "string",
"description": "Source Folder",
"ignoreCase": "key"
},
"Contents": {
"type": "string",
"description": "Contents",
"ignoreCase": "key"
},
"TargetFolder": {
"type": "string",
"description": "Target Folder",
"ignoreCase": "key"
},
"CleanTargetFolder": {
"type": "boolean",
"description": "Clean Target Folder",
"ignoreCase": "key"
},
"OverWrite": {
"type": "boolean",
"description": "Overwrite",
"ignoreCase": "key"
},
"flattenFolders": {
"type": "boolean",
"description": "Flatten Folders",
"ignoreCase": "key"
},
"preserveTimestamp": {
"type": "boolean",
"description": "Preserve Target Timestamp",
"ignoreCase": "key"
},
"retryCount": {
"type": "string",
"description": "Retry count to copy the file",
"ignoreCase": "key"
},
"delayBetweenRetries": {
"type": "string",
"description": "Delay between two retries.",
"ignoreCase": "key"
},
"ignoreMakeDirErrors": {
"type": "boolean",
"description": "Ignore errors during creation of target folder.",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"TargetFolder"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure Database for MySQL deployment\n\nRun your scripts and make changes to your Azure Database for MySQL",
"ignoreCase": "value",
"pattern": "^AzureMysqlDeployment@1$"
},
"inputs": {
"description": "Azure Database for MySQL deployment inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure Subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"ServerName": {
"type": "string",
"description": "Host Name",
"ignoreCase": "key"
},
"DatabaseName": {
"type": "string",
"description": "Database Name",
"ignoreCase": "key"
},
"SqlUsername": {
"type": "string",
"description": "Server Admin Login",
"ignoreCase": "key"
},
"SqlPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"TaskNameSelector": {
"description": "Type",
"ignoreCase": "all",
"enum": [
"SqlTaskFile",
"InlineSqlTask"
]
},
"SqlFile": {
"type": "string",
"description": "MySQL Script",
"ignoreCase": "key"
},
"SqlInline": {
"type": "string",
"description": "Inline MySQL Script",
"ignoreCase": "key"
},
"SqlAdditionalArguments": {
"type": "string",
"description": "Additional MySQL Arguments",
"ignoreCase": "key"
},
"IpDetectionMethod": {
"description": "Specify Firewall Rules Using",
"ignoreCase": "all",
"enum": [
"AutoDetect",
"IPAddressRange"
]
},
"StartIpAddress": {
"type": "string",
"description": "Start IP Address",
"ignoreCase": "key"
},
"EndIpAddress": {
"type": "string",
"description": "End IP Address",
"ignoreCase": "key"
},
"DeleteFirewallRule": {
"type": "boolean",
"description": "Delete Rule After Task Ends",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"ServerName",
"SqlUsername",
"SqlPassword"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "npm\n\nRun an npm command. Use NpmAuthenticate@0 task for latest capabilities.",
"ignoreCase": "value",
"pattern": "^Npm@0$"
},
"inputs": {
"description": "npm inputs",
"properties": {
"cwd": {
"type": "string",
"description": "working folder",
"ignoreCase": "key"
},
"command": {
"type": "string",
"description": "npm command",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "arguments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "npm\n\nInstall and publish npm packages, or run an npm command. Supports npmjs.com and authenticated registries like Azure Artifacts.",
"ignoreCase": "value",
"pattern": "^Npm@1$"
},
"inputs": {
"description": "npm inputs",
"properties": {
"command": {
"description": "Command",
"ignoreCase": "all",
"enum": [
"ci",
"install",
"publish",
"custom"
]
},
"workingDir": {
"type": "string",
"description": "Working folder that contains package.json",
"ignoreCase": "key"
},
"verbose": {
"type": "boolean",
"description": "Verbose logging",
"ignoreCase": "key"
},
"customCommand": {
"type": "string",
"description": "Command and arguments",
"ignoreCase": "key"
},
"customRegistry": {
"description": "Registries to use",
"ignoreCase": "all",
"enum": [
"useNpmrc",
"useFeed"
]
},
"customFeed": {
"type": "string",
"description": "Use packages from this Azure Artifacts/TFS registry",
"ignoreCase": "key"
},
"customEndpoint": {
"type": "string",
"description": "Credentials for registries outside this organization/collection",
"ignoreCase": "key"
},
"publishRegistry": {
"description": "Registry location",
"ignoreCase": "all",
"enum": [
"useExternalRegistry",
"useFeed"
]
},
"publishFeed": {
"type": "string",
"description": "Target registry",
"ignoreCase": "key"
},
"publishPackageMetadata": {
"type": "boolean",
"description": "Publish pipeline metadata",
"ignoreCase": "key"
},
"publishEndpoint": {
"type": "string",
"description": "External Registry",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Deploy Azure Static Web App\n\n[PREVIEW] Build and deploy an Azure Static Web App",
"ignoreCase": "value",
"pattern": "^AzureStaticWebApp@0$"
},
"inputs": {
"description": "Deploy Azure Static Web App inputs",
"properties": {
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key",
"aliases": [
"cwd",
"rootDirectory"
]
},
"app_location": {
"type": "string",
"description": "App location",
"ignoreCase": "key"
},
"app_build_command": {
"type": "string",
"description": "App build command",
"ignoreCase": "key"
},
"output_location": {
"type": "string",
"description": "Output location",
"ignoreCase": "key"
},
"api_location": {
"type": "string",
"description": "Api location",
"ignoreCase": "key"
},
"api_build_command": {
"type": "string",
"description": "Api build command",
"ignoreCase": "key"
},
"routes_location": {
"type": "string",
"description": "Routes location",
"ignoreCase": "key"
},
"config_file_location": {
"type": "string",
"description": "Config file location",
"ignoreCase": "key"
},
"skip_app_build": {
"type": "boolean",
"description": "Skip app build",
"ignoreCase": "key"
},
"skip_api_build": {
"type": "boolean",
"description": "Skip api build",
"ignoreCase": "key"
},
"is_static_export": {
"type": "boolean",
"description": "Set static export",
"ignoreCase": "key"
},
"verbose": {
"type": "boolean",
"description": "Verbose",
"ignoreCase": "key"
},
"build_timeout_in_minutes": {
"type": "integer",
"description": "Build timeout in minutes",
"ignoreCase": "key"
},
"azure_static_web_apps_api_token": {
"type": "string",
"description": "Azure Static Web Apps api token",
"ignoreCase": "key"
},
"deployment_environment": {
"type": "string",
"description": "Deployment Environment",
"ignoreCase": "key"
},
"production_branch": {
"type": "string",
"description": "Production Branch",
"ignoreCase": "key"
},
"data_api_location": {
"type": "string",
"description": "Data api location",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Node.js tool installer\n\nFinds or downloads and caches the specified version spec of Node.js and adds it to the PATH",
"ignoreCase": "value",
"pattern": "^NodeTool@0$"
},
"inputs": {
"description": "Node.js tool installer inputs",
"properties": {
"versionSource": {
"description": "Source of version",
"ignoreCase": "all",
"enum": [
"spec",
"fromFile"
]
},
"versionSpec": {
"type": "string",
"description": "Version Spec",
"ignoreCase": "key"
},
"versionFilePath": {
"type": "string",
"description": "Path to the .nvmrc file",
"ignoreCase": "key"
},
"checkLatest": {
"type": "boolean",
"description": "Check for Latest Version",
"ignoreCase": "key"
},
"force32bit": {
"type": "boolean",
"description": "Use 32 bit version on x64 agents",
"ignoreCase": "key"
},
"nodejsMirror": {
"type": "string",
"description": "Set source for Node.js binaries",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Use Node.js ecosystem\n\nSet up a Node.js environment and add it to the PATH, additionally providing proxy support",
"ignoreCase": "value",
"pattern": "^UseNode@1$"
},
"inputs": {
"description": "Use Node.js ecosystem inputs",
"properties": {
"version": {
"type": "string",
"description": "Version",
"ignoreCase": "key"
},
"checkLatest": {
"type": "boolean",
"description": "Check for Latest Version",
"ignoreCase": "key"
},
"force32bit": {
"type": "boolean",
"description": "Use 32 bit version on x64 agents",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "[Deprecated] SQL Server database deploy\n\nDeploy a SQL Server database using DACPAC",
"ignoreCase": "value",
"pattern": "^SqlServerDacpacDeployment@1$"
},
"inputs": {
"description": "[Deprecated] SQL Server database deploy inputs",
"properties": {
"EnvironmentName": {
"type": "string",
"description": "Machines",
"ignoreCase": "key"
},
"AdminUserName": {
"type": "string",
"description": "Admin Login",
"ignoreCase": "key"
},
"AdminPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"Protocol": {
"description": "Protocol",
"ignoreCase": "all",
"enum": [
"Http",
"Https"
]
},
"TestCertificate": {
"type": "boolean",
"description": "Test Certificate",
"ignoreCase": "key"
},
"DacpacFile": {
"type": "string",
"description": "DACPAC File",
"ignoreCase": "key"
},
"TargetMethod": {
"description": "Specify SQL Using",
"ignoreCase": "all",
"enum": [
"server",
"connectionString",
"publishProfile"
]
},
"ServerName": {
"type": "string",
"description": "Server Name",
"ignoreCase": "key"
},
"DatabaseName": {
"type": "string",
"description": "Database Name",
"ignoreCase": "key"
},
"SqlUsername": {
"type": "string",
"description": "SQL Username",
"ignoreCase": "key"
},
"SqlPassword": {
"type": "string",
"description": "SQL Password",
"ignoreCase": "key"
},
"ConnectionString": {
"type": "string",
"description": "Connection String",
"ignoreCase": "key"
},
"PublishProfile": {
"type": "string",
"description": "Publish Profile",
"ignoreCase": "key"
},
"AdditionalArguments": {
"type": "string",
"description": "Additional Arguments",
"ignoreCase": "key"
},
"DeployInParallel": {
"type": "boolean",
"description": "Deploy in Parallel",
"ignoreCase": "key"
},
"ResourceFilteringMethod": {
"description": "Select Machines By",
"ignoreCase": "all",
"enum": [
"machineNames",
"tags"
]
},
"MachineFilter": {
"type": "string",
"description": "Deploy to Machines",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"EnvironmentName",
"DacpacFile"
]
}
},
"deprecationMessage": "SqlServerDacpacDeployment is deprecated - Deploy a SQL Server database using DACPAC",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Visual Studio test platform installer\n\nAcquire the test platform from nuget.org or the tool cache. Satisfies the ‘vstest’ demand and can be used for running tests and collecting diagnostic data using the Visual Studio Test task.",
"ignoreCase": "value",
"pattern": "^VisualStudioTestPlatformInstaller@1$"
},
"inputs": {
"description": "Visual Studio test platform installer inputs",
"properties": {
"packageFeedSelector": {
"description": "Package Feed",
"ignoreCase": "all",
"enum": [
"nugetOrg",
"customFeed",
"netShare"
]
},
"versionSelector": {
"description": "Version",
"ignoreCase": "all",
"enum": [
"latestPreRelease",
"latestStable",
"specificVersion"
]
},
"testPlatformVersion": {
"type": "string",
"description": "Test Platform Version",
"ignoreCase": "key"
},
"customFeed": {
"type": "string",
"description": "Package Source",
"ignoreCase": "key"
},
"username": {
"type": "string",
"description": "User Name",
"ignoreCase": "key"
},
"password": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"netShare": {
"type": "string",
"description": "UNC Path",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Publish To Azure Service Bus\n\nSends a message to Azure Service Bus using a service connection (no agent is required)",
"ignoreCase": "value",
"pattern": "^PublishToAzureServiceBus@1$"
},
"inputs": {
"description": "Publish To Azure Service Bus inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure Service Bus service connection",
"ignoreCase": "key",
"aliases": [
"connectedServiceName"
]
},
"messageBody": {
"type": "string",
"description": "Message body",
"ignoreCase": "key"
},
"sessionId": {
"type": "string",
"description": "Session Id",
"ignoreCase": "key"
},
"signPayload": {
"type": "boolean",
"description": "Sign the Message",
"ignoreCase": "key"
},
"certificateString": {
"type": "string",
"description": "Certificate Variable",
"ignoreCase": "key"
},
"signatureKey": {
"type": "string",
"description": "Signature Property Key",
"ignoreCase": "key"
},
"waitForCompletion": {
"type": "boolean",
"description": "Wait for task completion",
"ignoreCase": "key"
},
"useDataContractSerializer": {
"type": "boolean",
"description": "Use .NET data contract serailizer",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Publish To Azure Service Bus\n\nSends a message to azure service bus using a service connection (no agent required).",
"ignoreCase": "value",
"pattern": "^PublishToAzureServiceBus@0$"
},
"inputs": {
"description": "Publish To Azure Service Bus inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure service bus connection",
"ignoreCase": "key",
"aliases": [
"connectedServiceName"
]
},
"messageBody": {
"type": "string",
"description": "Message body",
"ignoreCase": "key"
},
"waitForCompletion": {
"type": "boolean",
"description": "Wait for task completion",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Deploy to Kubernetes\n\nUse Kubernetes manifest files to deploy to clusters or even bake the manifest files to be used for deployments using Helm charts",
"ignoreCase": "value",
"pattern": "^KubernetesManifest@0$"
},
"inputs": {
"description": "Deploy to Kubernetes inputs",
"properties": {
"action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"bake",
"createSecret",
"delete",
"deploy",
"patch",
"promote",
"scale",
"reject"
]
},
"kubernetesServiceConnection": {
"type": "string",
"description": "Kubernetes service connection",
"ignoreCase": "key"
},
"namespace": {
"type": "string",
"description": "Namespace",
"ignoreCase": "key"
},
"strategy": {
"description": "Strategy",
"ignoreCase": "all",
"enum": [
"canary",
"none"
]
},
"trafficSplitMethod": {
"description": "Traffic split method",
"ignoreCase": "all",
"enum": [
"pod",
"smi"
]
},
"percentage": {
"type": "string",
"description": "Percentage",
"ignoreCase": "key"
},
"baselineAndCanaryReplicas": {
"type": "string",
"description": "Baseline and canary replicas",
"ignoreCase": "key"
},
"manifests": {
"type": "string",
"description": "Manifests",
"ignoreCase": "key"
},
"containers": {
"type": "string",
"description": "Containers",
"ignoreCase": "key"
},
"imagePullSecrets": {
"type": "string",
"description": "ImagePullSecrets",
"ignoreCase": "key"
},
"renderType": {
"description": "Render Engine",
"ignoreCase": "all",
"enum": [
"helm",
"kompose",
"kustomize"
]
},
"dockerComposeFile": {
"type": "string",
"description": "Path to docker compose file",
"ignoreCase": "key"
},
"helmChart": {
"type": "string",
"description": "Helm Chart",
"ignoreCase": "key"
},
"releaseName": {
"type": "string",
"description": "Helm Release Name",
"ignoreCase": "key"
},
"overrideFiles": {
"type": "string",
"description": "Override Files",
"ignoreCase": "key"
},
"overrides": {
"type": "string",
"description": "Overrides",
"ignoreCase": "key"
},
"kustomizationPath": {
"type": "string",
"description": "Kustomization Path",
"ignoreCase": "key"
},
"resourceToPatch": {
"description": "Resource to patch",
"ignoreCase": "all",
"enum": [
"file",
"name"
]
},
"resourceFileToPatch": {
"type": "string",
"description": "File path",
"ignoreCase": "key"
},
"kind": {
"description": "Kind",
"ignoreCase": "all",
"enum": [
"deployment",
"replicaset",
"statefulset"
]
},
"name": {
"type": "string",
"description": "Name",
"ignoreCase": "key"
},
"replicas": {
"type": "string",
"description": "Replica count",
"ignoreCase": "key"
},
"mergeStrategy": {
"description": "Merge Strategy",
"ignoreCase": "all",
"enum": [
"json",
"merge",
"strategic"
]
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"patch": {
"type": "string",
"description": "Patch",
"ignoreCase": "key"
},
"secretType": {
"description": "Type of secret",
"ignoreCase": "all",
"enum": [
"dockerRegistry",
"generic"
]
},
"secretName": {
"type": "string",
"description": "Secret name",
"ignoreCase": "key"
},
"secretArguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"dockerRegistryEndpoint": {
"type": "string",
"description": "Docker registry service connection",
"ignoreCase": "key"
},
"rolloutStatusTimeout": {
"type": "string",
"description": "Timeout for rollout status",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Deploy to Kubernetes\n\nUse Kubernetes manifest files to deploy to clusters or even bake the manifest files to be used for deployments using Helm charts",
"ignoreCase": "value",
"pattern": "^KubernetesManifest@1$"
},
"inputs": {
"description": "Deploy to Kubernetes inputs",
"properties": {
"action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"bake",
"createSecret",
"delete",
"deploy",
"patch",
"promote",
"scale",
"reject"
]
},
"connectionType": {
"description": "Service connection type",
"ignoreCase": "all",
"enum": [
"azureResourceManager",
"kubernetesServiceConnection"
]
},
"kubernetesServiceConnection": {
"type": "string",
"description": "Kubernetes service connection",
"ignoreCase": "key",
"aliases": [
"kubernetesServiceEndpoint"
]
},
"azureSubscriptionConnection": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"azureSubscriptionEndpoint"
]
},
"azureResourceGroup": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"kubernetesCluster": {
"type": "string",
"description": "Kubernetes cluster",
"ignoreCase": "key"
},
"namespace": {
"type": "string",
"description": "Namespace",
"ignoreCase": "key"
},
"strategy": {
"description": "Strategy",
"ignoreCase": "all",
"enum": [
"canary",
"none"
]
},
"trafficSplitMethod": {
"description": "Traffic split method",
"ignoreCase": "all",
"enum": [
"pod",
"smi"
]
},
"percentage": {
"type": "string",
"description": "Percentage",
"ignoreCase": "key"
},
"baselineAndCanaryReplicas": {
"type": "string",
"description": "Baseline and canary replicas",
"ignoreCase": "key"
},
"manifests": {
"type": "string",
"description": "Manifests",
"ignoreCase": "key"
},
"containers": {
"type": "string",
"description": "Containers",
"ignoreCase": "key"
},
"imagePullSecrets": {
"type": "string",
"description": "ImagePullSecrets",
"ignoreCase": "key"
},
"renderType": {
"description": "Render Engine",
"ignoreCase": "all",
"enum": [
"helm",
"kompose",
"kustomize"
]
},
"dockerComposeFile": {
"type": "string",
"description": "Path to docker compose file",
"ignoreCase": "key"
},
"helmChart": {
"type": "string",
"description": "Helm Chart",
"ignoreCase": "key"
},
"releaseName": {
"type": "string",
"description": "Helm Release Name",
"ignoreCase": "key"
},
"overrideFiles": {
"type": "string",
"description": "Override Files",
"ignoreCase": "key"
},
"overrides": {
"type": "string",
"description": "Overrides",
"ignoreCase": "key"
},
"kustomizationPath": {
"type": "string",
"description": "Kustomization Path",
"ignoreCase": "key"
},
"resourceToPatch": {
"description": "Resource to patch",
"ignoreCase": "all",
"enum": [
"file",
"name"
]
},
"resourceFileToPatch": {
"type": "string",
"description": "File path",
"ignoreCase": "key"
},
"kind": {
"description": "Kind",
"ignoreCase": "all",
"enum": [
"deployment",
"replicaset",
"statefulset"
]
},
"name": {
"type": "string",
"description": "Name",
"ignoreCase": "key"
},
"replicas": {
"type": "string",
"description": "Replica count",
"ignoreCase": "key"
},
"mergeStrategy": {
"description": "Merge Strategy",
"ignoreCase": "all",
"enum": [
"json",
"merge",
"strategic"
]
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"patch": {
"type": "string",
"description": "Patch",
"ignoreCase": "key"
},
"secretType": {
"description": "Type of secret",
"ignoreCase": "all",
"enum": [
"dockerRegistry",
"generic"
]
},
"secretName": {
"type": "string",
"description": "Secret name",
"ignoreCase": "key"
},
"secretArguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"dockerRegistryEndpoint": {
"type": "string",
"description": "Docker registry service connection",
"ignoreCase": "key"
},
"rolloutStatusTimeout": {
"type": "string",
"description": "Timeout for rollout status",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Download build artifacts\n\nDownload files that were saved as artifacts of a completed build",
"ignoreCase": "value",
"pattern": "^DownloadBuildArtifacts@0$"
},
"inputs": {
"description": "Download build artifacts inputs",
"properties": {
"buildType": {
"description": "Download artifacts produced by",
"ignoreCase": "all",
"enum": [
"current",
"specific"
]
},
"project": {
"type": "string",
"description": "Project",
"ignoreCase": "key"
},
"pipeline": {
"type": "string",
"description": "Build pipeline",
"ignoreCase": "key",
"aliases": [
"definition"
]
},
"specificBuildWithTriggering": {
"type": "boolean",
"description": "When appropriate, download artifacts from the triggering build.",
"ignoreCase": "key"
},
"buildVersionToDownload": {
"description": "Build version to download",
"ignoreCase": "all",
"enum": [
"latest",
"latestFromBranch",
"specific"
]
},
"allowPartiallySucceededBuilds": {
"type": "boolean",
"description": "Download artifacts even from partially succeeded builds.",
"ignoreCase": "key"
},
"branchName": {
"type": "string",
"description": "Branch name",
"ignoreCase": "key"
},
"buildId": {
"type": "string",
"description": "Build",
"ignoreCase": "key"
},
"tags": {
"type": "string",
"description": "Build Tags",
"ignoreCase": "key"
},
"downloadType": {
"description": "Download type",
"ignoreCase": "all",
"enum": [
"single",
"specific"
]
},
"artifactName": {
"type": "string",
"description": "Artifact name",
"ignoreCase": "key"
},
"itemPattern": {
"type": "string",
"description": "Matching pattern",
"ignoreCase": "key"
},
"downloadPath": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key"
},
"cleanDestinationFolder": {
"type": "boolean",
"description": "Clean destination folder",
"ignoreCase": "key"
},
"parallelizationLimit": {
"type": "string",
"description": "Parallelization limit",
"ignoreCase": "key"
},
"checkDownloadedFiles": {
"type": "boolean",
"description": "Check downloaded files",
"ignoreCase": "key"
},
"retryDownloadCount": {
"type": "string",
"description": "Retry count",
"ignoreCase": "key"
},
"extractTars": {
"type": "boolean",
"description": "Extract all files that are stored inside tar archives",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Download build artifacts\n\nDownload files that were saved as artifacts of a completed build",
"ignoreCase": "value",
"pattern": "^DownloadBuildArtifacts@1$"
},
"inputs": {
"description": "Download build artifacts inputs",
"properties": {
"buildType": {
"description": "Download artifacts produced by",
"ignoreCase": "all",
"enum": [
"current",
"specific"
]
},
"project": {
"type": "string",
"description": "Project",
"ignoreCase": "key"
},
"pipeline": {
"type": "string",
"description": "Build pipeline",
"ignoreCase": "key",
"aliases": [
"definition"
]
},
"specificBuildWithTriggering": {
"type": "boolean",
"description": "When appropriate, download artifacts from the triggering build.",
"ignoreCase": "key"
},
"buildVersionToDownload": {
"description": "Build version to download",
"ignoreCase": "all",
"enum": [
"latest",
"latestFromBranch",
"specific"
]
},
"allowPartiallySucceededBuilds": {
"type": "boolean",
"description": "Download artifacts even from partially succeeded builds.",
"ignoreCase": "key"
},
"branchName": {
"type": "string",
"description": "Branch name",
"ignoreCase": "key"
},
"buildId": {
"type": "string",
"description": "Build",
"ignoreCase": "key"
},
"tags": {
"type": "string",
"description": "Build Tags",
"ignoreCase": "key"
},
"downloadType": {
"description": "Download type",
"ignoreCase": "all",
"enum": [
"single",
"specific"
]
},
"artifactName": {
"type": "string",
"description": "Artifact name",
"ignoreCase": "key"
},
"itemPattern": {
"type": "string",
"description": "Matching pattern",
"ignoreCase": "key"
},
"downloadPath": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key"
},
"cleanDestinationFolder": {
"type": "boolean",
"description": "Clean destination folder",
"ignoreCase": "key"
},
"parallelizationLimit": {
"type": "string",
"description": "Parallelization limit",
"ignoreCase": "key"
},
"checkDownloadedFiles": {
"type": "boolean",
"description": "Check downloaded files",
"ignoreCase": "key"
},
"retryDownloadCount": {
"type": "string",
"description": "Retry count",
"ignoreCase": "key"
},
"extractTars": {
"type": "boolean",
"description": "Extract all files that are stored inside tar archives",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "CocoaPods\n\nInstall CocoaPods dependencies for Swift and Objective-C Cocoa projects",
"ignoreCase": "value",
"pattern": "^CocoaPods@0$"
},
"inputs": {
"description": "CocoaPods inputs",
"properties": {
"workingDirectory": {
"type": "string",
"description": "Working directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"forceRepoUpdate": {
"type": "boolean",
"description": "Force repo update",
"ignoreCase": "key"
},
"projectDirectory": {
"type": "string",
"description": "Project directory",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Azure Spring Cloud\n\nDeploy applications to Azure Spring Cloud and manage deployments.",
"ignoreCase": "value",
"pattern": "^AzureSpringCloud@0$"
},
"inputs": {
"description": "Azure Spring Cloud inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"Action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"Deploy",
"Set Production",
"Delete Staging Deployment"
]
},
"AzureSpringCloud": {
"type": "string",
"description": "Azure Spring Cloud Name",
"ignoreCase": "key"
},
"AppName": {
"type": "string",
"description": "App",
"ignoreCase": "key"
},
"DeploymentType": {
"description": "Deployment Type",
"ignoreCase": "all",
"enum": [
"Artifacts",
"CustomContainer"
]
},
"UseStagingDeployment": {
"type": "boolean",
"description": "Use Staging Deployment",
"ignoreCase": "key"
},
"CreateNewDeployment": {
"type": "boolean",
"description": "Create a new staging deployment if one does not exist.",
"ignoreCase": "key"
},
"DeploymentName": {
"type": "string",
"description": "Deployment",
"ignoreCase": "key"
},
"Package": {
"type": "string",
"description": "Package or folder",
"ignoreCase": "key"
},
"Builder": {
"type": "string",
"description": "Builder",
"ignoreCase": "key"
},
"RegistryServer": {
"type": "string",
"description": "Registry Server",
"ignoreCase": "key"
},
"RegistryUsername": {
"type": "string",
"description": "Registry Username",
"ignoreCase": "key"
},
"RegistryPassword": {
"type": "string",
"description": "Registry Password",
"ignoreCase": "key"
},
"ImageName": {
"type": "string",
"description": "Image Name and Tag",
"ignoreCase": "key"
},
"ImageCommand": {
"type": "string",
"description": "Image Command",
"ignoreCase": "key"
},
"ImageArgs": {
"type": "string",
"description": "Image Arguments",
"ignoreCase": "key"
},
"ImageLanguageFramework": {
"description": "Language Framework",
"ignoreCase": "all",
"enum": [
"springboot",
""
]
},
"EnvironmentVariables": {
"type": "string",
"description": "Environment Variables",
"ignoreCase": "key"
},
"JvmOptions": {
"type": "string",
"description": "JVM Options",
"ignoreCase": "key"
},
"RuntimeVersion": {
"description": "Runtime Version",
"ignoreCase": "all",
"enum": [
"Java_8",
"Java_11",
"NetCore_31"
]
},
"DotNetCoreMainEntryPath": {
"type": "string",
"description": "Main Entry Path",
"ignoreCase": "key"
},
"Version": {
"type": "string",
"description": "Version",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"AzureSpringCloud",
"AppName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure Web App\n\nDeploy an Azure Web App for Linux or Windows",
"ignoreCase": "value",
"pattern": "^AzureWebApp@1$"
},
"inputs": {
"description": "Azure Web App inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key"
},
"appType": {
"description": "App type",
"ignoreCase": "all",
"enum": [
"webApp",
"webAppLinux"
]
},
"appName": {
"type": "string",
"description": "App name",
"ignoreCase": "key"
},
"deployToSlotOrASE": {
"type": "boolean",
"description": "Deploy to Slot or App Service Environment",
"ignoreCase": "key"
},
"resourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"slotName": {
"type": "string",
"description": "Slot",
"ignoreCase": "key"
},
"package": {
"type": "string",
"description": "Package or folder",
"ignoreCase": "key"
},
"customDeployFolder": {
"type": "string",
"description": "Custom Deploy Folder",
"ignoreCase": "key"
},
"runtimeStack": {
"type": "string",
"description": "Runtime stack",
"ignoreCase": "key"
},
"startUpCommand": {
"type": "string",
"description": "Startup command ",
"ignoreCase": "key"
},
"customWebConfig": {
"type": "string",
"description": "Generate web.config parameters for Python, Node.js, Go and Java apps",
"ignoreCase": "key"
},
"appSettings": {
"type": "string",
"description": "App settings",
"ignoreCase": "key"
},
"configurationStrings": {
"type": "string",
"description": "Configuration settings",
"ignoreCase": "key"
},
"deploymentMethod": {
"description": "Deployment method",
"ignoreCase": "all",
"enum": [
"auto",
"zipDeploy",
"runFromPackage"
]
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"appType",
"appName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure CLI\n\nRun Azure CLI commands against an Azure subscription in a Shell script when running on Linux agent or Batch script when running on Windows agent.",
"ignoreCase": "value",
"pattern": "^AzureCLI@1$"
},
"inputs": {
"description": "Azure CLI inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"connectedServiceNameARM"
]
},
"scriptLocation": {
"description": "Script Location",
"ignoreCase": "all",
"enum": [
"inlineScript",
"scriptPath"
]
},
"scriptPath": {
"type": "string",
"description": "Script Path",
"ignoreCase": "key"
},
"inlineScript": {
"type": "string",
"description": "Inline Script",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key",
"aliases": [
"args"
]
},
"addSpnToEnvironment": {
"type": "boolean",
"description": "Access service principal details in script",
"ignoreCase": "key"
},
"useGlobalConfig": {
"type": "boolean",
"description": "Use global Azure CLI configuration",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"failOnStandardError": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure CLI Preview\n\nRun a Shell or Batch script with Azure CLI commands against an azure subscription",
"ignoreCase": "value",
"pattern": "^AzureCLI@0$"
},
"inputs": {
"description": "Azure CLI Preview inputs",
"properties": {
"connectedServiceNameSelector": {
"description": "Azure Connection Type",
"ignoreCase": "all",
"enum": [
"connectedServiceName",
"connectedServiceNameARM"
]
},
"connectedServiceNameARM": {
"type": "string",
"description": "AzureRM Subscription",
"ignoreCase": "key"
},
"connectedServiceName": {
"type": "string",
"description": "Azure Classic Subscription",
"ignoreCase": "key"
},
"scriptLocation": {
"description": "Script Location",
"ignoreCase": "all",
"enum": [
"inlineScript",
"scriptPath"
]
},
"scriptPath": {
"type": "string",
"description": "Script Path",
"ignoreCase": "key"
},
"inlineScript": {
"type": "string",
"description": "Inline Script",
"ignoreCase": "key"
},
"args": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"cwd": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key"
},
"failOnStandardError": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Azure CLI\n\nRun Azure CLI commands against an Azure subscription in a PowerShell Core/Shell script when running on Linux agent or PowerShell/PowerShell Core/Batch script when running on Windows agent.",
"ignoreCase": "value",
"pattern": "^AzureCLI@2$"
},
"inputs": {
"description": "Azure CLI inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure Resource Manager connection",
"ignoreCase": "key",
"aliases": [
"connectedServiceNameARM"
]
},
"scriptType": {
"description": "Script Type",
"ignoreCase": "all",
"enum": [
"ps",
"pscore",
"batch",
"bash"
]
},
"scriptLocation": {
"description": "Script Location",
"ignoreCase": "all",
"enum": [
"inlineScript",
"scriptPath"
]
},
"scriptPath": {
"type": "string",
"description": "Script Path",
"ignoreCase": "key"
},
"inlineScript": {
"type": "string",
"description": "Inline Script",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Script Arguments",
"ignoreCase": "key",
"aliases": [
"scriptArguments"
]
},
"powerShellErrorActionPreference": {
"description": "ErrorActionPreference",
"ignoreCase": "all",
"enum": [
"stop",
"continue",
"silentlyContinue"
]
},
"addSpnToEnvironment": {
"type": "boolean",
"description": "Access service principal details in script",
"ignoreCase": "key"
},
"useGlobalConfig": {
"type": "boolean",
"description": "Use global Azure CLI configuration",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"failOnStandardError": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
},
"powerShellIgnoreLASTEXITCODE": {
"type": "boolean",
"description": "Ignore $LASTEXITCODE",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"scriptType"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "GitHub Release\n\nCreate, edit, or delete a GitHub release",
"ignoreCase": "value",
"pattern": "^GitHubRelease@1$"
},
"inputs": {
"description": "GitHub Release inputs",
"properties": {
"gitHubConnection": {
"type": "string",
"description": "GitHub connection (OAuth or PAT)",
"ignoreCase": "key"
},
"repositoryName": {
"type": "string",
"description": "Repository",
"ignoreCase": "key"
},
"action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"create",
"edit",
"delete"
]
},
"target": {
"type": "string",
"description": "Target",
"ignoreCase": "key"
},
"tagSource": {
"description": "Tag source",
"ignoreCase": "all",
"enum": [
"gitTag",
"userSpecifiedTag"
]
},
"tagPattern": {
"type": "string",
"description": "Tag Pattern",
"ignoreCase": "key"
},
"tag": {
"type": "string",
"description": "Tag",
"ignoreCase": "key"
},
"title": {
"type": "string",
"description": "Release title",
"ignoreCase": "key"
},
"releaseNotesSource": {
"description": "Release notes source",
"ignoreCase": "all",
"enum": [
"filePath",
"inline"
]
},
"releaseNotesFilePath": {
"type": "string",
"description": "Release notes file path",
"ignoreCase": "key"
},
"releaseNotesInline": {
"type": "string",
"description": "Release notes",
"ignoreCase": "key"
},
"assets": {
"type": "string",
"description": "Assets",
"ignoreCase": "key"
},
"assetUploadMode": {
"description": "Asset upload mode",
"ignoreCase": "all",
"enum": [
"delete",
"replace"
]
},
"isDraft": {
"type": "boolean",
"description": "Draft release",
"ignoreCase": "key"
},
"isPreRelease": {
"type": "boolean",
"description": "Pre-release",
"ignoreCase": "key"
},
"addChangeLog": {
"type": "boolean",
"description": "Add changelog",
"ignoreCase": "key"
},
"changeLogCompareToRelease": {
"description": "Compare to",
"ignoreCase": "all",
"enum": [
"lastFullRelease",
"lastNonDraftRelease",
"lastNonDraftReleaseByTag"
]
},
"changeLogCompareToReleaseTag": {
"type": "string",
"description": "Release Tag",
"ignoreCase": "key"
},
"changeLogType": {
"description": "Changelog type",
"ignoreCase": "all",
"enum": [
"commitBased",
"issueBased"
]
},
"changeLogLabels": {
"type": "string",
"description": "Categories",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"gitHubConnection"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "GitHub Release\n\nCreate, edit, or delete a GitHub release",
"ignoreCase": "value",
"pattern": "^GitHubRelease@0$"
},
"inputs": {
"description": "GitHub Release inputs",
"properties": {
"gitHubConnection": {
"type": "string",
"description": "GitHub connection (OAuth or PAT)",
"ignoreCase": "key"
},
"repositoryName": {
"type": "string",
"description": "Repository",
"ignoreCase": "key"
},
"action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"create",
"edit",
"delete"
]
},
"target": {
"type": "string",
"description": "Target",
"ignoreCase": "key"
},
"tagSource": {
"description": "Tag source",
"ignoreCase": "all",
"enum": [
"auto",
"manual"
]
},
"tagPattern": {
"type": "string",
"description": "Tag Pattern",
"ignoreCase": "key"
},
"tag": {
"type": "string",
"description": "Tag",
"ignoreCase": "key"
},
"title": {
"type": "string",
"description": "Release title",
"ignoreCase": "key"
},
"releaseNotesSource": {
"description": "Release notes source",
"ignoreCase": "all",
"enum": [
"file",
"input"
]
},
"releaseNotesFile": {
"type": "string",
"description": "Release notes file path",
"ignoreCase": "key"
},
"releaseNotes": {
"type": "string",
"description": "Release notes",
"ignoreCase": "key"
},
"assets": {
"type": "string",
"description": "Assets",
"ignoreCase": "key"
},
"assetUploadMode": {
"description": "Asset upload mode",
"ignoreCase": "all",
"enum": [
"delete",
"replace"
]
},
"isDraft": {
"type": "boolean",
"description": "Draft release",
"ignoreCase": "key"
},
"isPreRelease": {
"type": "boolean",
"description": "Pre-release",
"ignoreCase": "key"
},
"addChangeLog": {
"type": "boolean",
"description": "Add changelog",
"ignoreCase": "key"
},
"changeLogCompareToRelease": {
"description": "Compare to",
"ignoreCase": "all",
"enum": [
"lastFullRelease",
"lastNonDraftRelease",
"lastNonDraftReleaseByTag"
]
},
"changeLogCompareToReleaseTag": {
"type": "string",
"description": "Release Tag",
"ignoreCase": "key"
},
"changeLogType": {
"description": "Changelog type",
"ignoreCase": "all",
"enum": [
"commitBased",
"issueBased"
]
},
"changeLogLabels": {
"type": "string",
"description": "Categories",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"gitHubConnection"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "cURL Upload Files\n\nUse cURL to upload files with FTP, FTPS, SFTP, HTTP, and more.",
"ignoreCase": "value",
"pattern": "^cURLUploader@1$"
},
"inputs": {
"description": "cURL Upload Files inputs",
"properties": {
"files": {
"type": "string",
"description": "Files",
"ignoreCase": "key"
},
"username": {
"type": "string",
"description": "Username",
"ignoreCase": "key"
},
"password": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"url": {
"type": "string",
"description": "URL",
"ignoreCase": "key"
},
"options": {
"type": "string",
"description": "Optional Arguments",
"ignoreCase": "key"
},
"redirectStderr": {
"type": "boolean",
"description": "Redirect Standard Error to Standard Out",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"files",
"url"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "cURL upload files\n\nUse cURL's supported protocols to upload files",
"ignoreCase": "value",
"pattern": "^cURLUploader@2$"
},
"inputs": {
"description": "cURL upload files inputs",
"properties": {
"files": {
"type": "string",
"description": "Files",
"ignoreCase": "key"
},
"authType": {
"description": "Authentication Method",
"ignoreCase": "all",
"enum": [
"ServiceEndpoint",
"UserAndPass"
]
},
"serviceEndpoint": {
"type": "string",
"description": "Service Connection",
"ignoreCase": "key"
},
"username": {
"type": "string",
"description": "Username",
"ignoreCase": "key"
},
"password": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"url": {
"type": "string",
"description": "URL",
"ignoreCase": "key"
},
"remotePath": {
"type": "string",
"description": "Remote Directory",
"ignoreCase": "key"
},
"options": {
"type": "string",
"description": "Optional Arguments",
"ignoreCase": "key"
},
"redirectStderr": {
"type": "boolean",
"description": "Redirect Standard Error to Standard Out",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"files"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure App Service Settings\n\nUpdate/Add App settings an Azure Web App for Linux or Windows",
"ignoreCase": "value",
"pattern": "^AzureAppServiceSettings@1$"
},
"inputs": {
"description": "Azure App Service Settings inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"appName": {
"type": "string",
"description": "App Service name",
"ignoreCase": "key"
},
"resourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"slotName": {
"type": "string",
"description": "Slot",
"ignoreCase": "key"
},
"appSettings": {
"type": "string",
"description": "App settings",
"ignoreCase": "key"
},
"generalSettings": {
"type": "string",
"description": "General settings",
"ignoreCase": "key"
},
"connectionStrings": {
"type": "string",
"description": "Connection Strings",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"appName",
"resourceGroupName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Universal packages\n\nDownload or publish Universal Packages",
"ignoreCase": "value",
"pattern": "^UniversalPackages@0$"
},
"inputs": {
"description": "Universal packages inputs",
"properties": {
"command": {
"description": "Command",
"ignoreCase": "all",
"enum": [
"download",
"publish"
]
},
"downloadDirectory": {
"type": "string",
"description": "Destination directory",
"ignoreCase": "key",
"aliases": [
"downloadDirectory"
]
},
"feedsToUse": {
"description": "Feed location",
"ignoreCase": "all",
"enum": [
"internal",
"external"
],
"aliases": [
"internalOrExternalDownload"
]
},
"externalFeedCredentials": {
"type": "string",
"description": "organization/collection connection",
"ignoreCase": "key",
"aliases": [
"externalEndpoint"
]
},
"vstsFeed": {
"type": "string",
"description": "Feed",
"ignoreCase": "key",
"aliases": [
"feedListDownload"
]
},
"vstsFeedPackage": {
"type": "string",
"description": "Package name",
"ignoreCase": "key",
"aliases": [
"packageListDownload"
]
},
"vstsPackageVersion": {
"type": "string",
"description": "Version",
"ignoreCase": "key",
"aliases": [
"versionListDownload"
]
},
"feedDownloadExternal": {
"type": "string",
"description": "Feed (or Project/Feed if the feed was created in a project)",
"ignoreCase": "key"
},
"packageDownloadExternal": {
"type": "string",
"description": "Package name",
"ignoreCase": "key"
},
"versionDownloadExternal": {
"type": "string",
"description": "Version",
"ignoreCase": "key"
},
"publishDirectory": {
"type": "string",
"description": "Path to file(s) to publish",
"ignoreCase": "key",
"aliases": [
"publishDirectory"
]
},
"feedsToUsePublish": {
"description": "Feed location",
"ignoreCase": "all",
"enum": [
"internal",
"external"
],
"aliases": [
"internalOrExternalPublish"
]
},
"publishFeedCredentials": {
"type": "string",
"description": "organization/collection connection",
"ignoreCase": "key",
"aliases": [
"externalEndpoints"
]
},
"vstsFeedPublish": {
"type": "string",
"description": "Destination Feed",
"ignoreCase": "key",
"aliases": [
"feedListPublish"
]
},
"publishPackageMetadata": {
"type": "boolean",
"description": "Publish pipeline metadata",
"ignoreCase": "key"
},
"vstsFeedPackagePublish": {
"type": "string",
"description": "Package name",
"ignoreCase": "key",
"aliases": [
"packageListPublish"
]
},
"feedPublishExternal": {
"type": "string",
"description": "Feed (or Project/Feed if the feed was created in a project)",
"ignoreCase": "key"
},
"packagePublishExternal": {
"type": "string",
"description": "Package name",
"ignoreCase": "key"
},
"versionOption": {
"description": "Version",
"ignoreCase": "all",
"enum": [
"major",
"minor",
"patch",
"custom"
],
"aliases": [
"versionPublishSelector"
]
},
"versionPublish": {
"type": "string",
"description": "Custom version",
"ignoreCase": "key"
},
"packagePublishDescription": {
"type": "string",
"description": "Description",
"ignoreCase": "key"
},
"verbosity": {
"description": "Verbosity",
"ignoreCase": "all",
"enum": [
"None",
"Trace",
"Debug",
"Information",
"Warning",
"Error",
"Critical"
]
},
"publishedPackageVar": {
"type": "string",
"description": "Package Output Variable",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Check Azure Policy compliance\n\nSecurity and compliance assessment for Azure Policy",
"ignoreCase": "value",
"pattern": "^AzurePolicyCheckGate@0$"
},
"inputs": {
"description": "Check Azure Policy compliance inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"ResourceGroupName": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"Resources": {
"type": "string",
"description": "Resource name",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure Function on Kubernetes\n\nDeploy Azure function to Kubernetes cluster.",
"ignoreCase": "value",
"pattern": "^AzureFunctionOnKubernetes@0$"
},
"inputs": {
"description": "Azure Function on Kubernetes inputs",
"properties": {
"dockerRegistryServiceConnection": {
"type": "string",
"description": "Docker registry service connection",
"ignoreCase": "key"
},
"kubernetesServiceConnection": {
"type": "string",
"description": "Kubernetes service connection",
"ignoreCase": "key"
},
"namespace": {
"type": "string",
"description": "Kubernetes namespace",
"ignoreCase": "key"
},
"secretName": {
"type": "string",
"description": "Secret Name",
"ignoreCase": "key"
},
"dockerHubNamespace": {
"type": "string",
"description": "Docker Hub namespace",
"ignoreCase": "key"
},
"appName": {
"type": "string",
"description": "Application Name",
"ignoreCase": "key"
},
"functionRootDirectory": {
"type": "string",
"description": "Function root directory",
"ignoreCase": "key"
},
"waitForStability": {
"type": "boolean",
"description": "Wait for stability",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"dockerRegistryServiceConnection",
"kubernetesServiceConnection",
"appName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure Function on Kubernetes\n\nDeploy Azure function to Kubernetes cluster.",
"ignoreCase": "value",
"pattern": "^AzureFunctionOnKubernetes@1$"
},
"inputs": {
"description": "Azure Function on Kubernetes inputs",
"properties": {
"connectionType": {
"description": "Service connection type",
"ignoreCase": "all",
"enum": [
"Azure Resource Manager",
"Kubernetes Service Connection"
]
},
"dockerRegistryServiceConnection": {
"type": "string",
"description": "Docker registry service connection",
"ignoreCase": "key"
},
"kubernetesServiceConnection": {
"type": "string",
"description": "Kubernetes service connection",
"ignoreCase": "key",
"aliases": [
"kubernetesServiceEndpoint"
]
},
"azureSubscriptionConnection": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"azureSubscriptionEndpoint"
]
},
"azureResourceGroup": {
"type": "string",
"description": "Resource group",
"ignoreCase": "key"
},
"kubernetesCluster": {
"type": "string",
"description": "Kubernetes cluster",
"ignoreCase": "key"
},
"namespace": {
"type": "string",
"description": "Kubernetes namespace",
"ignoreCase": "key"
},
"secretName": {
"type": "string",
"description": "Secret Name",
"ignoreCase": "key"
},
"dockerHubNamespace": {
"type": "string",
"description": "Docker Hub namespace",
"ignoreCase": "key"
},
"appName": {
"type": "string",
"description": "Application Name",
"ignoreCase": "key"
},
"functionRootDirectory": {
"type": "string",
"description": "Function root directory",
"ignoreCase": "key"
},
"waitForStability": {
"type": "boolean",
"description": "Wait for stability",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"dockerRegistryServiceConnection",
"appName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Bash\n\nRun a Bash script on macOS, Linux, or Windows",
"ignoreCase": "value",
"pattern": "^Bash@3$"
},
"inputs": {
"description": "Bash inputs",
"properties": {
"targetType": {
"description": "Type",
"ignoreCase": "all",
"enum": [
"filePath",
"inline"
]
},
"filePath": {
"type": "string",
"description": "Script Path",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"script": {
"type": "string",
"description": "Script",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key"
},
"failOnStderr": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
},
"bashEnvValue": {
"type": "string",
"description": "Set value for BASH_ENV environment variable",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Shell script\n\nRun a shell script using Bash",
"ignoreCase": "value",
"pattern": "^ShellScript@2$"
},
"inputs": {
"description": "Shell script inputs",
"properties": {
"scriptPath": {
"type": "string",
"description": "Script Path",
"ignoreCase": "key"
},
"args": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"disableAutoCwd": {
"type": "boolean",
"description": "Specify Working Directory",
"ignoreCase": "key"
},
"cwd": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key"
},
"failOnStandardError": {
"type": "boolean",
"description": "Fail on Standard Error",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"scriptPath"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Publish build artifacts\n\nPublish build artifacts to Azure Pipelines or a Windows file share",
"ignoreCase": "value",
"pattern": "^PublishBuildArtifacts@1$"
},
"inputs": {
"description": "Publish build artifacts inputs",
"properties": {
"PathtoPublish": {
"type": "string",
"description": "Path to publish",
"ignoreCase": "key"
},
"ArtifactName": {
"type": "string",
"description": "Artifact name",
"ignoreCase": "key"
},
"publishLocation": {
"description": "Artifact publish location",
"ignoreCase": "all",
"enum": [
"Container",
"FilePath"
],
"aliases": [
"ArtifactType"
]
},
"TargetPath": {
"type": "string",
"description": "File share path",
"ignoreCase": "key"
},
"Parallel": {
"type": "boolean",
"description": "Parallel copy",
"ignoreCase": "key"
},
"ParallelCount": {
"type": "integer",
"description": "Parallel count",
"ignoreCase": "key"
},
"FileCopyOptions": {
"type": "string",
"description": "File copy options",
"ignoreCase": "key"
},
"StoreAsTar": {
"type": "boolean",
"description": "Tar the artifact before uploading",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Install SSH key\n\nInstall an SSH key prior to a build or deployment",
"ignoreCase": "value",
"pattern": "^InstallSSHKey@0$"
},
"inputs": {
"description": "Install SSH key inputs",
"properties": {
"knownHostsEntry": {
"type": "string",
"description": "Known Hosts Entry",
"ignoreCase": "key",
"aliases": [
"hostName"
]
},
"sshPublicKey": {
"type": "string",
"description": "SSH Public Key",
"ignoreCase": "key"
},
"sshPassphrase": {
"type": "string",
"description": "SSH Passphrase",
"ignoreCase": "key"
},
"sshKeySecureFile": {
"type": "string",
"description": "SSH Key",
"ignoreCase": "key"
},
"addEntryToConfig": {
"type": "boolean",
"description": "Add entry to SSH config",
"ignoreCase": "key"
},
"configHostAlias": {
"type": "string",
"description": "Alias",
"ignoreCase": "key"
},
"configHostname": {
"type": "string",
"description": "Host name",
"ignoreCase": "key"
},
"configUser": {
"type": "string",
"description": "User",
"ignoreCase": "key"
},
"configPort": {
"type": "string",
"description": "Port",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"knownHostsEntry",
"sshKeySecureFile"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure VM scale set deployment\n\nDeploy a virtual machine scale set image",
"ignoreCase": "value",
"pattern": "^AzureVmssDeployment@0$"
},
"inputs": {
"description": "Azure VM scale set deployment inputs",
"properties": {
"azureSubscription": {
"type": "string",
"description": "Azure subscription",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"action": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"Update image",
"Configure application startup"
]
},
"vmssName": {
"type": "string",
"description": "Virtual Machine scale set name",
"ignoreCase": "key"
},
"vmssOsType": {
"description": "OS type",
"ignoreCase": "all",
"enum": [
"Windows",
"Linux"
]
},
"imageUrl": {
"type": "string",
"description": "Image URL",
"ignoreCase": "key"
},
"customScriptsDirectory": {
"type": "string",
"description": "Custom script directory",
"ignoreCase": "key"
},
"customScript": {
"type": "string",
"description": "Command",
"ignoreCase": "key"
},
"customScriptArguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"customScriptsStorageAccount": {
"type": "string",
"description": "Azure storage account where custom scripts will be uploaded",
"ignoreCase": "key"
},
"skipArchivingCustomScripts": {
"type": "boolean",
"description": "Skip Archiving custom scripts",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureSubscription",
"vmssName",
"vmssOsType",
"imageUrl"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure App Service: Classic (Deprecated)\n\nCreate or update Azure App Service using Azure PowerShell",
"ignoreCase": "value",
"pattern": "^AzureWebPowerShellDeployment@1$"
},
"inputs": {
"description": "Azure App Service: Classic (Deprecated) inputs",
"properties": {
"ConnectedServiceName": {
"type": "string",
"description": "Azure Subscription (Classic)",
"ignoreCase": "key"
},
"WebSiteLocation": {
"type": "string",
"description": "Web App Location",
"ignoreCase": "key"
},
"WebSiteName": {
"type": "string",
"description": "Web App Name",
"ignoreCase": "key"
},
"Slot": {
"type": "string",
"description": "Slot",
"ignoreCase": "key"
},
"Package": {
"type": "string",
"description": "Web Deploy Package",
"ignoreCase": "key"
},
"doNotDelete": {
"type": "boolean",
"description": "Set DoNotDelete flag",
"ignoreCase": "key"
},
"AdditionalArguments": {
"type": "string",
"description": "Additional Arguments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"ConnectedServiceName",
"WebSiteLocation",
"WebSiteName",
"Package"
]
}
},
"deprecationMessage": "AzureWebPowerShellDeployment is deprecated - Create or update Azure App Service using Azure PowerShell",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Azure Cloud Service deployment\n\nDeploy an Azure Cloud Service",
"ignoreCase": "value",
"pattern": "^AzureCloudPowerShellDeployment@1$"
},
"inputs": {
"description": "Azure Cloud Service deployment inputs",
"properties": {
"azureClassicSubscription": {
"type": "string",
"description": "Azure subscription (Classic)",
"ignoreCase": "key",
"aliases": [
"ConnectedServiceName"
]
},
"EnableAdvancedStorageOptions": {
"type": "boolean",
"description": "Enable ARM storage support",
"ignoreCase": "key"
},
"StorageAccount": {
"type": "string",
"description": "Storage account (Classic)",
"ignoreCase": "key"
},
"ARMConnectedServiceName": {
"type": "string",
"description": "Azure subscription (ARM)",
"ignoreCase": "key"
},
"ARMStorageAccount": {
"type": "string",
"description": "Storage account (ARM)",
"ignoreCase": "key"
},
"ServiceName": {
"type": "string",
"description": "Service name",
"ignoreCase": "key"
},
"ServiceLocation": {
"type": "string",
"description": "Service location",
"ignoreCase": "key"
},
"CsPkg": {
"type": "string",
"description": "CsPkg",
"ignoreCase": "key"
},
"CsCfg": {
"type": "string",
"description": "CsCfg",
"ignoreCase": "key"
},
"slotName": {
"type": "string",
"description": "Environment (Slot)",
"ignoreCase": "key",
"aliases": [
"Slot"
]
},
"DeploymentLabel": {
"type": "string",
"description": "Deployment label",
"ignoreCase": "key"
},
"AppendDateTimeToLabel": {
"type": "boolean",
"description": "Append current date and time",
"ignoreCase": "key"
},
"AllowUpgrade": {
"type": "boolean",
"description": "Allow upgrade",
"ignoreCase": "key"
},
"SimultaneousUpgrade": {
"type": "boolean",
"description": "Simultaneous upgrade",
"ignoreCase": "key"
},
"ForceUpgrade": {
"type": "boolean",
"description": "Force upgrade",
"ignoreCase": "key"
},
"VerifyRoleInstanceStatus": {
"type": "boolean",
"description": "Verify role instance status",
"ignoreCase": "key"
},
"DiagnosticStorageAccountKeys": {
"type": "string",
"description": "Diagnostic storage account keys",
"ignoreCase": "key"
},
"NewServiceCustomCertificates": {
"type": "string",
"description": "Custom certificates to import",
"ignoreCase": "key"
},
"NewServiceAdditionalArguments": {
"type": "string",
"description": "Additional arguments",
"ignoreCase": "key"
},
"NewServiceAffinityGroup": {
"type": "string",
"description": "Affinity group",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"azureClassicSubscription",
"ServiceName",
"ServiceLocation",
"CsPkg",
"CsCfg"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Cargo authenticate (for task runners)\n\nAuthentication task for the cargo client used for installing Cargo crates distribution",
"ignoreCase": "value",
"pattern": "^CargoAuthenticate@0$"
},
"inputs": {
"description": "Cargo authenticate (for task runners) inputs",
"properties": {
"configFile": {
"type": "string",
"description": "config.toml file to authenticate",
"ignoreCase": "key"
},
"cargoServiceConnections": {
"type": "string",
"description": "Credentials for registries outside this organization/collection",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"configFile"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Delete files\n\nDelete folders, or files matching a pattern",
"ignoreCase": "value",
"pattern": "^DeleteFiles@1$"
},
"inputs": {
"description": "Delete files inputs",
"properties": {
"SourceFolder": {
"type": "string",
"description": "Source Folder",
"ignoreCase": "key"
},
"Contents": {
"type": "string",
"description": "Contents",
"ignoreCase": "key"
},
"RemoveSourceFolder": {
"type": "boolean",
"description": "Remove SourceFolder",
"ignoreCase": "key"
},
"RemoveDotFiles": {
"type": "boolean",
"description": "Remove files starting with a dot",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "gulp\n\nRun the gulp Node.js streaming task-based build system",
"ignoreCase": "value",
"pattern": "^gulp@0$"
},
"inputs": {
"description": "gulp inputs",
"properties": {
"gulpFile": {
"type": "string",
"description": "gulp File Path",
"ignoreCase": "key"
},
"targets": {
"type": "string",
"description": "gulp Task(s)",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"gulpjs": {
"type": "string",
"description": "gulp.js location",
"ignoreCase": "key"
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish to Azure Pipelines",
"ignoreCase": "key"
},
"testResultsFiles": {
"type": "string",
"description": "Test Results Files",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test Run Title",
"ignoreCase": "key"
},
"enableCodeCoverage": {
"type": "boolean",
"description": "Enable code Coverage",
"ignoreCase": "key"
},
"testFramework": {
"description": "Test Framework",
"ignoreCase": "all",
"enum": [
"Mocha",
"Jasmine"
]
},
"srcFiles": {
"type": "string",
"description": "Source Files",
"ignoreCase": "key"
},
"testFiles": {
"type": "string",
"description": "Test Script Files",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "gulp\n\nRun the gulp Node.js streaming task-based build system",
"ignoreCase": "value",
"pattern": "^gulp@1$"
},
"inputs": {
"description": "gulp inputs",
"properties": {
"gulpFile": {
"type": "string",
"description": "gulp File Path",
"ignoreCase": "key"
},
"targets": {
"type": "string",
"description": "gulp Task(s)",
"ignoreCase": "key"
},
"arguments": {
"type": "string",
"description": "Arguments",
"ignoreCase": "key"
},
"workingDirectory": {
"type": "string",
"description": "Working Directory",
"ignoreCase": "key",
"aliases": [
"cwd"
]
},
"gulpjs": {
"type": "string",
"description": "gulp.js location",
"ignoreCase": "key"
},
"publishJUnitResults": {
"type": "boolean",
"description": "Publish to Azure Pipelines",
"ignoreCase": "key"
},
"testResultsFiles": {
"type": "string",
"description": "Test Results Files",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test Run Title",
"ignoreCase": "key"
},
"enableCodeCoverage": {
"type": "boolean",
"description": "Enable code Coverage",
"ignoreCase": "key"
},
"testFramework": {
"description": "Test Framework",
"ignoreCase": "all",
"enum": [
"Mocha",
"Jasmine"
]
},
"srcFiles": {
"type": "string",
"description": "Source Files",
"ignoreCase": "key"
},
"testFiles": {
"type": "string",
"description": "Test Script Files",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
"description": "Cloud-based web performance test\n\nRun a quick web performance test in the cloud with Azure Pipelines",
"ignoreCase": "value",
"pattern": "^QuickPerfTest@1$"
},
"inputs": {
"description": "Cloud-based web performance test inputs",
"properties": {
"connectedServiceName": {
"type": "string",
"description": "Azure Pipelines Connection",
"ignoreCase": "key"
},
"websiteUrl": {
"type": "string",
"description": "Website URL",
"ignoreCase": "key"
},
"testName": {
"type": "string",
"description": "Test Name",
"ignoreCase": "key"
},
"vuLoad": {
"description": "User Load",
"ignoreCase": "all",
"enum": [
"25",
"50",
"100",
"250"
]
},
"runDuration": {
"description": "Run Duration (sec)",
"ignoreCase": "all",
"enum": [
"60",
"120",
"180",
"240",
"300"
]
},
"geoLocation": {
"description": "Load Location",
"ignoreCase": "all",
"enum": [
"Default",
"Australia East",
"Australia Southeast",
"Brazil South",
"Central India",
"Central US",
"East Asia",
"East US 2",
"East US",
"Japan East",
"Japan West",
"North Central US",
"North Europe",
"South Central US",
"South India",
"Southeast Asia",
"West Europe",
"West US"
]
},
"machineType": {
"description": "Run load test using",
"ignoreCase": "all",
"enum": [
"0",
"2"
]
},
"resourceGroupName": {
"type": "string",
"description": "Resource group rig",
"ignoreCase": "key"
},
"numOfSelfProvisionedAgents": {
"type": "integer",
"description": "No. of agents to use",
"ignoreCase": "key"
},
"avgResponseTimeThreshold": {
"type": "string",
"description": "Fail test if Avg.Response Time(ms) exceeds",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"websiteUrl",
"testName"
]
}
},
"deprecationMessage": "QuickPerfTest is deprecated - Run a quick web performance test in the cloud with Azure Pipelines",
"doNotSuggest": true,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "IIS web app manage\n\nCreate or update websites, web apps, virtual directories, or application pools",
"ignoreCase": "value",
"pattern": "^IISWebAppManagementOnMachineGroup@0$"
},
"inputs": {
"description": "IIS web app manage inputs",
"properties": {
"EnableIIS": {
"type": "boolean",
"description": "Enable IIS",
"ignoreCase": "key"
},
"IISDeploymentType": {
"description": "Configuration type",
"ignoreCase": "all",
"enum": [
"IISWebsite",
"IISWebApplication",
"IISVirtualDirectory",
"IISApplicationPool"
]
},
"ActionIISWebsite": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"CreateOrUpdateWebsite",
"StartWebsite",
"StopWebsite"
]
},
"ActionIISApplicationPool": {
"description": "Action",
"ignoreCase": "all",
"enum": [
"CreateOrUpdateAppPool",
"StartAppPool",
"StopAppPool",
"RecycleAppPool"
]
},
"StartStopWebsiteName": {
"type": "string",
"description": "Website name",
"ignoreCase": "key"
},
"WebsiteName": {
"type": "string",
"description": "Website name",
"ignoreCase": "key"
},
"WebsitePhysicalPath": {
"type": "string",
"description": "Physical path",
"ignoreCase": "key"
},
"WebsitePhysicalPathAuth": {
"description": "Physical path authentication",
"ignoreCase": "all",
"enum": [
"WebsiteUserPassThrough",
"WebsiteWindowsAuth"
]
},
"WebsiteAuthUserName": {
"type": "string",
"description": "Username",
"ignoreCase": "key"
},
"WebsiteAuthUserPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"AddBinding": {
"type": "boolean",
"description": "Add binding",
"ignoreCase": "key"
},
"Protocol": {
"description": "Protocol",
"ignoreCase": "all",
"enum": [
"https",
"http"
]
},
"IPAddress": {
"type": "string",
"description": "IP address",
"ignoreCase": "key"
},
"Port": {
"type": "string",
"description": "Port",
"ignoreCase": "key"
},
"ServerNameIndication": {
"type": "boolean",
"description": "Server Name Indication required",
"ignoreCase": "key"
},
"HostNameWithOutSNI": {
"type": "string",
"description": "Host name",
"ignoreCase": "key"
},
"HostNameWithHttp": {
"type": "string",
"description": "Host name",
"ignoreCase": "key"
},
"HostNameWithSNI": {
"type": "string",
"description": "Host name",
"ignoreCase": "key"
},
"SSLCertThumbPrint": {
"type": "string",
"description": "SSL certificate thumbprint",
"ignoreCase": "key"
},
"Bindings": {
"type": "string",
"description": "Add bindings",
"ignoreCase": "key"
},
"CreateOrUpdateAppPoolForWebsite": {
"type": "boolean",
"description": "Create or update app pool",
"ignoreCase": "key"
},
"ConfigureAuthenticationForWebsite": {
"type": "boolean",
"description": "Configure authentication",
"ignoreCase": "key"
},
"AppPoolNameForWebsite": {
"type": "string",
"description": "Name",
"ignoreCase": "key"
},
"DotNetVersionForWebsite": {
"description": ".NET version",
"ignoreCase": "all",
"enum": [
"v4.0",
"v2.0",
"No Managed Code"
]
},
"PipeLineModeForWebsite": {
"description": "Managed pipeline mode",
"ignoreCase": "all",
"enum": [
"Integrated",
"Classic"
]
},
"AppPoolIdentityForWebsite": {
"description": "Identity",
"ignoreCase": "all",
"enum": [
"ApplicationPoolIdentity",
"LocalService",
"LocalSystem",
"NetworkService",
"SpecificUser"
]
},
"AppPoolUsernameForWebsite": {
"type": "string",
"description": "Username",
"ignoreCase": "key"
},
"AppPoolPasswordForWebsite": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"AnonymousAuthenticationForWebsite": {
"type": "boolean",
"description": "Anonymous authentication",
"ignoreCase": "key"
},
"BasicAuthenticationForWebsite": {
"type": "boolean",
"description": "Basic authentication",
"ignoreCase": "key"
},
"WindowsAuthenticationForWebsite": {
"type": "boolean",
"description": "Windows authentication",
"ignoreCase": "key"
},
"ParentWebsiteNameForVD": {
"type": "string",
"description": "Parent website name",
"ignoreCase": "key"
},
"VirtualPathForVD": {
"type": "string",
"description": "Virtual path",
"ignoreCase": "key"
},
"PhysicalPathForVD": {
"type": "string",
"description": "Physical path",
"ignoreCase": "key"
},
"VDPhysicalPathAuth": {
"description": "Physical path authentication",
"ignoreCase": "all",
"enum": [
"VDUserPassThrough",
"VDWindowsAuth"
]
},
"VDAuthUserName": {
"type": "string",
"description": "Username",
"ignoreCase": "key"
},
"VDAuthUserPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"ParentWebsiteNameForApplication": {
"type": "string",
"description": "Parent website name",
"ignoreCase": "key"
},
"VirtualPathForApplication": {
"type": "string",
"description": "Virtual path",
"ignoreCase": "key"
},
"PhysicalPathForApplication": {
"type": "string",
"description": "Physical path",
"ignoreCase": "key"
},
"ApplicationPhysicalPathAuth": {
"description": "Physical path authentication",
"ignoreCase": "all",
"enum": [
"ApplicationUserPassThrough",
"ApplicationWindowsAuth"
]
},
"ApplicationAuthUserName": {
"type": "string",
"description": "Username",
"ignoreCase": "key"
},
"ApplicationAuthUserPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"CreateOrUpdateAppPoolForApplication": {
"type": "boolean",
"description": "Create or update app pool",
"ignoreCase": "key"
},
"AppPoolNameForApplication": {
"type": "string",
"description": "Name",
"ignoreCase": "key"
},
"DotNetVersionForApplication": {
"description": ".NET version",
"ignoreCase": "all",
"enum": [
"v4.0",
"v2.0",
"No Managed Code"
]
},
"PipeLineModeForApplication": {
"description": "Managed pipeline mode",
"ignoreCase": "all",
"enum": [
"Integrated",
"Classic"
]
},
"AppPoolIdentityForApplication": {
"description": "Identity",
"ignoreCase": "all",
"enum": [
"ApplicationPoolIdentity",
"LocalService",
"LocalSystem",
"NetworkService",
"SpecificUser"
]
},
"AppPoolUsernameForApplication": {
"type": "string",
"description": "Username",
"ignoreCase": "key"
},
"AppPoolPasswordForApplication": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"AppPoolName": {
"type": "string",
"description": "Name",
"ignoreCase": "key"
},
"DotNetVersion": {
"description": ".NET version",
"ignoreCase": "all",
"enum": [
"v4.0",
"v2.0",
"No Managed Code"
]
},
"PipeLineMode": {
"description": "Managed pipeline mode",
"ignoreCase": "all",
"enum": [
"Integrated",
"Classic"
]
},
"AppPoolIdentity": {
"description": "Identity",
"ignoreCase": "all",
"enum": [
"ApplicationPoolIdentity",
"LocalService",
"LocalSystem",
"NetworkService",
"SpecificUser"
]
},
"AppPoolUsername": {
"type": "string",
"description": "Username",
"ignoreCase": "key"
},
"AppPoolPassword": {
"type": "string",
"description": "Password",
"ignoreCase": "key"
},
"StartStopRecycleAppPoolName": {
"type": "string",
"description": "Application pool name",
"ignoreCase": "key"
},
"AppCmdCommands": {
"type": "string",
"description": "Additional appcmd.exe commands",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": [
"WebsiteName",
"Bindings",
"AppPoolNameForWebsite",
"ParentWebsiteNameForVD",
"VirtualPathForVD",
"ParentWebsiteNameForApplication",
"VirtualPathForApplication",
"AppPoolNameForApplication",
"AppPoolName"
]
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task",
"inputs"
]
},
{
"properties": {
"task": {
"description": "Docker CLI installer\n\nInstall Docker CLI on agent machine.",
"ignoreCase": "value",
"pattern": "^DockerInstaller@0$"
},
"inputs": {
"description": "Docker CLI installer inputs",
"properties": {
"dockerVersion": {
"type": "string",
"description": "Docker Version",
"ignoreCase": "key"
},
"releaseType": {
"description": "Release type",
"ignoreCase": "all",
"enum": [
"stable",
"edge",
"test",
"nightly"
]
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
}
]
}
}
} | service-schema |
{
"description": "A request for Order status information.",
"properties": {
"buyerId": {
"description": "The ID of the Service Provider (Buyer) organization placing the order.",
"maxLength": 25,
"type": "string"
},
"buyerPurchaseOrderNumber": {
"description": "A number that uniquely identifies a order within the buyer's enterprise.",
"maxLength": 16,
"type": "string"
},
"objectType": {
"description": "The type of the object, orderStatusRequest.",
"enum": [
"orderStatusRequest"
],
"type": "string"
},
"orderId": {
"description": "Unique identifier for the order for which status information is being requested (if known, otherwise the buyerPurchaseOrderNumber is reauired).",
"maxLength": 45,
"type": "string"
},
"sellerId": {
"description": "The ID of the Partner/Access Provider (Seller) organization receiving the order.",
"maxLength": 25,
"type": "string"
}
},
"required": [
"objectType",
"orderId",
"buyerPurchaseOrderNumber",
"buyerId",
"sellerId"
],
"title": "orderStatusRequest",
"type": "object"
} | o28203 |
{
"$id": "https://example.com/restapi/HasReadOnlyEtc.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "HasReadOnlyEtc",
"type": "object",
"definitions": {
"MyDateTime": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"MyUtcMillisec": {
"type": "number",
"format": "utc-millisec",
"readOnly": true
}
},
"properties": {
"TheDateAndTime_ReadOnly": {
"$ref": "#/definitions/MyDateTime"
},
"TheTimestamp_ReadOnly": {
"$ref": "#/definitions/MyUtcMillisec"
},
"TheDateAndTime_NotReadOnly": {
"$ref": "#/definitions/MyDateTime",
"readOnly": false
},
"TheTimestamp_NotReadOnly": {
"$ref": "#/definitions/MyUtcMillisec",
"readOnly": false
},
"StringValue_ReadOnly": {
"type": "string",
"readOnly": true
},
"IntegerValue_ReadOnly": {
"type": "integer",
"readOnly": true
},
"String_WriteOnly": {
"type": "string",
"writeOnly": true
},
"Integer_WriteOnly": {
"type": "integer",
"writeOnly": true
},
"NoAdditional": {
"type": "object",
"properties": {
"foo": {
"type": "string"
}
},
"readOnly": true,
"additionalProperties": false
},
"NoAdditionalPlusPatternProperties": {
"type": "object",
"properties": {
"foo": {
"type": "string"
}
},
"readOnly": true,
"patternProperties": {
"^S_": {
"type": "string"
},
"^I_": {
"type": "integer"
}
},
"additionalProperties": false
}
}
} | o58622 |
{
"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",
"null"
]
},
"gmsaCredentialSpecName": {
"description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
"type": [
"string",
"null"
]
},
"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",
"null"
]
}
},
"type": "object"
} | kb_1160_Normalized |
{
"description": "AllowedFlexVolume represents a single Flexvolume that is allowed to be used. Deprecated: use AllowedFlexVolume from policy API Group instead.",
"properties": {
"driver": {
"description": "driver is the name of the Flexvolume driver.",
"type": [
"string",
"null"
]
}
},
"required": [
"driver"
],
"type": "object"
} | kb_10_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequest": {
"description": "Describes a certificate signing request",
"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": [
"CertificateSigningRequest"
],
"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_certificates_v1beta1_CertificateSigningRequestSpec",
"description": "The certificate request itself and any additional information."
},
"status": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequestStatus",
"description": "Derived information about the request."
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "certificates.k8s.io",
"kind": "CertificateSigningRequest",
"version": "v1beta1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequestCondition": {
"properties": {
"lastUpdateTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "timestamp for the last update to this condition"
},
"message": {
"description": "human readable message with details about the request state",
"type": "string"
},
"reason": {
"description": "brief reason for the request state",
"type": "string"
},
"type": {
"description": "request approval state, currently Approved or Denied.",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequestSpec": {
"description": "This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.",
"properties": {
"extra": {
"additionalProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"description": "Extra information about the requesting user. See user.Info interface for details.",
"type": "object"
},
"groups": {
"description": "Group information about the requesting user. See user.Info interface for details.",
"items": {
"type": "string"
},
"type": "array"
},
"request": {
"_format": "byte",
"description": "Base64-encoded PKCS#10 CSR data",
"type": "string"
},
"signerName": {
"description": "Requested signer for the request. It is a qualified name in the form: `scope-hostname.io/name`. If empty, it will be defaulted:\n 1. If it's a kubelet client certificate, it is assigned\n \"kubernetes.io/kube-apiserver-client-kubelet\".\n 2. If it's a kubelet serving certificate, it is assigned\n \"kubernetes.io/kubelet-serving\".\n 3. Otherwise, it is assigned \"kubernetes.io/legacy-unknown\".\nDistribution of trust for signers happens out of band. You can select on this field using `spec.signerName`.",
"type": "string"
},
"uid": {
"description": "UID information about the requesting user. See user.Info interface for details.",
"type": "string"
},
"usages": {
"description": "allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3\n https://tools.ietf.org/html/rfc5280#section-4.2.1.12",
"items": {
"type": "string"
},
"type": "array"
},
"username": {
"description": "Information about the requesting user. See user.Info interface for details.",
"type": "string"
}
},
"required": [
"request"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequestStatus": {
"properties": {
"certificate": {
"_format": "byte",
"description": "If request was approved, the controller will place the issued certificate here.",
"type": "string"
},
"conditions": {
"description": "Conditions applied to the request, such as approval or denial.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequestCondition"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": {
"description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
"properties": {
"continue": {
"description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
"type": "string"
},
"remainingItemCount": {
"_format": "int64",
"description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
"type": "integer"
},
"resourceVersion": {
"description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"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": {
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequest"
},
"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": [
"CertificateSigningRequestList"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta"
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "certificates.k8s.io",
"kind": "CertificateSigningRequestList",
"version": "v1beta1"
}
]
} | kb_72_Normalized |
{
"properties": {
"kafka": {
"description": "Rest proxy kafka service configuration",
"properties": {
"client_sasl_kerberos_service_name": {
"default": "kafka",
"description": "The Kerberos principal name that Kafka runs as. This can be defined either in Kafka's JAAS config or in Kafka's config.",
"title": "Kafka client sasl kerberos service name",
"type": "string"
},
"client_sasl_mechanism": {
"default": "GSSAPI",
"description": "SASL mechanism used for client connections. This may be any mechanism for which a security provider is available. GSSAPI is the default mechanism.",
"title": "Kafka client sasl mechanism",
"type": "string"
},
"client_security_protocol": {
"default": "PLAINTEXT",
"description": "Protocol used to communicate with brokers. Valid values are: PLAINTEXT, SSL, SASL_PLAINTEXT, SASL_SSL",
"title": "Kafka client security protocol",
"type": "string"
},
"kerberos_enabled": {
"default": false,
"description": "Enable kerberos",
"type": "boolean"
},
"kerberos_jaas_secret": {
"default": "jaas",
"description": "Kerberos jaas secret containing jaas config",
"title": "Kerberos jaas secret",
"type": "string"
},
"kerberos_keytab_secret": {
"default": "__dcos_base64___keytab",
"description": "Kerberos keytab secret containing keytab",
"title": "Kerberos keytab secret",
"type": "string"
},
"kerberos_krb5_secret": {
"default": "krb5",
"description": "Kerberos krb5 secret containing krb5 config",
"title": "Kerberos krb5 secret",
"type": "string"
},
"zookeeper_connect": {
"default": "master.mesos:2181/dcos-service-confluent-kafka",
"description": "... . Note slahes in a kafka service name have to be removed, all excpet the first get replaced by two underscores.",
"title": "Zookeeper connect",
"type": "string"
}
},
"type": "object"
},
"registry": {
"properties": {
"access-control-allow-methods": {
"default": "",
"description": "Set value to Jetty Access-Control-Allow-Origin header for specified methods",
"type": "string"
},
"access-control-allow-origin": {
"default": "",
"description": "Set value for Jetty Access-Control-Allow-Origin header",
"type": "string"
},
"ciphers": {
"default": "TLS_RSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_128_CBC_SHA256,TLS_RSA_WITH_AES_256_GCM_SHA384,TLS_RSA_WITH_AES_256_CBC_SHA256,TLS_DHE_RSA_WITH_AES_128_GCM_SHA256,TLS_DHE_RSA_WITH_AES_128_CBC_SHA256,TLS_DHE_RSA_WITH_AES_256_GCM_SHA384,TLS_DHE_RSA_WITH_AES_256_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384",
"description": "Comma-separated list of JSSE Cipher Suite Names",
"type": "string"
},
"cpus": {
"default": 1,
"description": "CPU shares to allocate to each schema-registry instance.",
"minimum": 1,
"type": "number"
},
"heap": {
"default": 256,
"description": "JVM heap allocation (in MB) for connect worker task; should be no greater than ~64MB less than total memory for the instance.",
"minimum": 256,
"type": "number"
},
"instances": {
"default": 1,
"description": "Number of instances to run (currently limited to 1).",
"maximum": 1,
"minimum": 1,
"type": "integer"
},
"keystore_secret": {
"default": "",
"description": "Keystore secret.",
"title": "Keystore secret",
"type": "string"
},
"listener_protocol": {
"default": "http",
"description": "Registry listener protocol, http or https.",
"title": "Registry listener protocol",
"type": "string"
},
"mem": {
"default": 512,
"description": "Memory (MB) to allocate to each schema-registry instance.",
"minimum": 320,
"type": "number"
},
"name": {
"default": "schema-registry",
"description": "Service name for the schema-registry instance(s)",
"type": "string"
},
"role": {
"default": "*",
"description": "Deploy schema-registry only on nodes with this role.",
"type": "string"
},
"ssl_client_auth": {
"default": false,
"description": "Used for HTTPS. Whether or not to require the HTTPS client to authenticate via the server's trust store.",
"type": "boolean"
},
"virtual_network_enabled": {
"default": false,
"description": "Enable virtual networking",
"type": "boolean"
},
"virtual_network_name": {
"default": "dcos",
"description": "The name of the virtual network to join",
"type": "string"
},
"zookeeper_namespace": {
"default": "dcos-service-confluent-kafka/schema-registry",
"description": "Zookeeper namespace for storing registry.",
"type": "string"
}
},
"required": [
"cpus",
"mem",
"instances",
"name"
],
"type": "object"
}
},
"type": "object"
} | o60299 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"discount": {
"description": "The discount percentage",
"type": "number"
},
"items": {
"description": "The items purchased",
"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_642b2103 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"title": "Loot Table",
"description": "Schema for loot tables in Minecraf Add-Ons",
"definitions": {
"conditions": {
"type": "array",
"title": "Conditions",
"description": "Types of conditions that cause loot tables to activate",
"items": {
"type": "object",
"properties": {
"condition": {
"type": "string",
"title": "Condition",
"description": "Condition that triggers loot"
},
"default_chance": {
"type": "number",
"title": "Default Chance",
"description": "Chance of loot in default difficulty"
},
"peaceful": {
"type": "number",
"title": "Peaceful Chance",
"description": "Chance of loot in peaceful difficulty"
},
"hard": {
"type": "number",
"title": "Hard Chance",
"description": "Chance of loot in hard difficulty"
}
},
"required": [
"condition",
"default_chance",
"peaceful",
"hard"
]
}
},
"rolls": {
"type": [
"array",
"integer"
],
"title": "Rolls",
"description": "Unkown/either one number or array of 'min' and 'max'"
},
"pools": {
"type": "array",
"title": "Pools",
"items": {
"type": "object",
"properties": {
"rolls": {
"$ref": "#/definitions/rolls"
},
"entries": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"title": "Type",
"description": "Type of loot"
},
"name": {
"type": "string",
"title": "Name",
"description": "Name of loot in 'minecraft:x' format"
},
"weight": {
"type": "integer",
"title": "Weight",
"description": "Weight of loot"
},
"pools": {
"$ref": "#/definitions/pools"
},
"functions": {
"type": "array",
"title": "Functions",
"description": "Holds functions for loot",
"items": {
"type": "object",
"properties": {
"function": {
"type": "string",
"title": "Function",
"description": "Name of function used"
},
"count": {
"type": "object",
"title": "Count",
"properties": {
"min": {
"type": "integer",
"title": "Minimum"
},
"max": {
"type": "integer",
"title": "Maximum"
}
},
"required": [
"min",
"max"
]
}
},
"required": [
"function",
"count"
]
}
}
},
"required": [
"type",
"name"
]
}
}
},
"conditions": {
"$ref": "#/definitions/conditions"
},
"required": [
"rolls"
]
}
}
},
"properties": {
"pools": {
"$ref": "#/definitions/pools"
}
}
} | o34351 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"linguist_details": {
"type": "object",
"description": "Details of Linguist run on one file",
"properties": {
"path": {
"type": "string"
},
"output": {
"oneOf": [
{
"$ref": "#/definitions/linguist_output"
},
{
"type": "null"
}
]
},
"type": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"path",
"output",
"type"
],
"additionalProperties": false
},
"linguist_output": {
"type": "object",
"description": "Linguist output for one file",
"properties": {
"lines": {
"type": "integer"
},
"sloc": {
"type": "integer"
},
"type": {
"type": "string"
},
"language": {
"type": "string"
},
"mime": {
"type": "string"
}
},
"required": [
"lines",
"sloc",
"type",
"language",
"mime"
],
"additionalProperties": false
}
},
"type": "object",
"description": "Result of Linguist worker",
"properties": {
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the schema",
"pattern": "^[a-zA-Z0-9_]+$"
},
"version": {
"type": "string",
"description": "Version of the schema",
"pattern": "^[0-9]+-[0-9]+-[0-9]+$"
},
"url": {
"type": "string",
"description": "Full URL of the schema",
"format": "uri"
}
},
"required": [
"name",
"version"
],
"additionalProperties": false
},
"_release": {
"type": "string",
"description": "Unique release id in form of \"ecosystem:package:version\""
},
"status": {
"type": "string",
"enum": [
"success",
"error"
]
},
"details": {
"type": "array",
"items": {
"$ref": "#/definitions/linguist_details"
}
},
"summary": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"status",
"details",
"summary"
],
"additionalProperties": false,
"title": "languages-v1-0-0"
} | o42041 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.EiffelSourceChangeSubmittedEvent",
"extendsJavaClass": "com.ericsson.eiffel.semantics.events.Event",
"properties": {
"meta": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.EiffelSourceChangeSubmittedEventMeta",
"javaInterfaces": [
"com.ericsson.eiffel.semantics.events.Meta"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
},
"type": {
"type": "string",
"enum": [
"EiffelSourceChangeSubmittedEvent"
]
},
"version": {
"type": "string",
"enum": [
"1.1.0"
],
"default": "1.1.0"
},
"time": {
"type": "integer",
"format": "utc-millisec"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"source": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Source",
"properties": {
"domainId": {
"type": "string"
},
"host": {
"type": "string"
},
"name": {
"type": "string"
},
"serializer": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Serializer",
"properties": {
"groupId": {
"type": "string"
},
"artifactId": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"groupId",
"artifactId",
"version"
],
"additionalProperties": false
},
"uri": {
"type": "string"
}
},
"additionalProperties": false
},
"security": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Security",
"properties": {
"sdm": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Sdm",
"properties": {
"authorIdentity": {
"type": "string"
},
"encryptedDigest": {
"type": "string"
}
},
"required": [
"authorIdentity",
"encryptedDigest"
],
"additionalProperties": false
}
},
"additionalProperties": false
}
},
"required": [
"id",
"type",
"version",
"time"
],
"additionalProperties": false
},
"data": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.EiffelSourceChangeSubmittedEventData",
"properties": {
"submitter": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Submitter",
"properties": {
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"id": {
"type": "string"
},
"group": {
"type": "string"
}
},
"additionalProperties": false
},
"gitIdentifier": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.GitIdentifier",
"properties": {
"commitId": {
"type": "string"
},
"branch": {
"type": "string"
},
"repoName": {
"type": "string"
},
"repoUri": {
"type": "string"
}
},
"required": [
"commitId",
"repoUri"
],
"additionalProperties": false
},
"svnIdentifier": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.SvnIdentifier",
"properties": {
"revision": {
"type": "integer"
},
"directory": {
"type": "string"
},
"repoName": {
"type": "string"
},
"repoUri": {
"type": "string"
}
},
"required": [
"revision",
"directory",
"repoUri"
],
"additionalProperties": false
},
"ccCompositeIdentifier": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.CcCompositeIdentifier",
"properties": {
"vobs": {
"type": "array",
"items": {
"type": "string"
}
},
"branch": {
"type": "string"
},
"configSpec": {
"type": "string"
}
},
"required": [
"vobs",
"branch",
"configSpec"
],
"additionalProperties": false
},
"hgIdentifier": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.HgIdentifier",
"properties": {
"commitId": {
"type": "string"
},
"branch": {
"type": "string"
},
"repoName": {
"type": "string"
},
"repoUri": {
"type": "string"
}
},
"required": [
"commitId",
"repoUri"
],
"additionalProperties": false
},
"customData": {
"type": "array",
"items": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.CustomData",
"properties": {
"key": {
"type": "string"
},
"value": {
"anyOf": [
{
"type": "object"
},
{
"type": "string"
},
{
"type": "array"
},
{
"type": "number"
}
]
}
},
"required": [
"key",
"value"
],
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"links": {
"type": "array",
"items": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Link",
"properties": {
"type": {
"type": "string"
},
"target": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
}
},
"required": [
"type",
"target"
],
"additionalProperties": false
}
}
},
"required": [
"meta",
"data",
"links"
],
"additionalProperties": false
} | o89741 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$",
"type": "string"
},
"analytics_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations."
},
"change_history": {
"items": {
"additionalProperties": false,
"properties": {
"note": {
"description": "A summary of the change",
"type": "string"
},
"public_timestamp": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"public_timestamp",
"note"
],
"type": "object"
},
"type": "array"
},
"description": {
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"additionalProperties": false,
"properties": {
"change_history": {
"$ref": "#/definitions/change_history"
},
"internal_name": {
"$ref": "#/definitions/taxonomy_internal_name"
},
"notes_for_editors": {
"description": "Usage notes for editors when tagging content to a taxon.",
"type": "string"
},
"visible_to_departmental_editors": {
"description": "Should this taxon be made visible to Content Editors in publishing apps? It's currently only a consideration for Root Taxons in a draft state.",
"type": "boolean"
}
},
"type": "object"
},
"first_published_at": {
"_format": "date-time",
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"frontend_links": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"frontend_links_with_base_path": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"guid": {
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$",
"type": "string"
},
"locale": {
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
],
"type": "string"
},
"public_updated_at": {
"_format": "date-time",
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"publishing_app_name": {
"description": "The application that published this item.",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
],
"type": "string"
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"publishing_scheduled_at": {
"_format": "date-time",
"description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.",
"type": "string"
},
"rendering_app": {
"description": "The application that renders this item.",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
],
"type": "string"
},
"scheduled_publishing_delay_seconds": {
"description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.",
"type": "integer"
},
"taxonomy_internal_name": {
"description": "An internal name for taxonomy admin interfaces. Includes parent.",
"type": "string"
},
"title": {
"type": "string"
},
"withdrawn_notice": {
"additionalProperties": false,
"properties": {
"explanation": {
"type": "string"
},
"withdrawn_at": {
"format": "date-time"
}
},
"type": "object"
}
},
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"enum": [
"taxon"
],
"type": "string"
},
"first_published_at": {
"anyOf": [
{
"$ref": "#/definitions/first_published_at"
},
{
"type": "null"
}
]
},
"links": {
"additionalProperties": false,
"properties": {
"associated_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "A list of associated taxons whose children should be included as children of this taxon"
},
"available_translations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"child_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"children": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"document_collections": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"facet_groups": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers links from content back to finders the content is surfaced on"
},
"lead_organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"legacy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Prior taxons (such as mainstream_browse_page, topic, policy_area, policy) before the single site-wide Topic Taxonomy was introduced"
},
"level_one_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"mainstream_browse_pages": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The user needs this piece of content meets."
},
"ministers": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The parent content item.",
"maxItems": 1
},
"parent_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The list of taxon parents."
},
"part_of_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policies": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policy_areas": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"related_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"role_appointments": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"root_taxon": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Set to the root taxon (homepage) if this is a level one taxon."
},
"secondary_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Prototype-stage taxonomy label for this content item"
},
"topic_taxonomy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"topics": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"need_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"enum": [
"alpha",
"beta",
"live"
],
"type": "string"
},
"public_updated_at": {
"anyOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"publishing_request_id": {
"$ref": "#/definitions/publishing_request_id"
},
"publishing_scheduled_at": {
"anyOf": [
{
"$ref": "#/definitions/publishing_scheduled_at"
},
{
"type": "null"
}
]
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"scheduled_publishing_delay_seconds": {
"anyOf": [
{
"$ref": "#/definitions/scheduled_publishing_delay_seconds"
},
{
"type": "null"
}
]
},
"schema_name": {
"enum": [
"taxon"
],
"type": "string"
},
"title": {
"$ref": "#/definitions/title"
},
"updated_at": {
"_format": "date-time",
"type": "string"
},
"withdrawn_notice": {
"$ref": "#/definitions/withdrawn_notice"
}
},
"required": [
"base_path",
"content_id",
"description",
"details",
"document_type",
"links",
"locale",
"public_updated_at",
"schema_name",
"title",
"updated_at"
],
"type": "object"
} | o21399 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1beta1_TokenReviewSpec": {
"description": "TokenReviewSpec is a description of the token authentication request.",
"properties": {
"audiences": {
"description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.",
"items": {
"type": "string"
},
"type": "array"
},
"token": {
"description": "Token is the opaque bearer token.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1beta1_TokenReviewStatus": {
"description": "TokenReviewStatus is the result of the token authentication request.",
"properties": {
"audiences": {
"description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.",
"items": {
"type": "string"
},
"type": "array"
},
"authenticated": {
"description": "Authenticated indicates that the token was associated with a known user.",
"type": "boolean"
},
"error": {
"description": "Error indicates that the token couldn't be checked",
"type": "string"
},
"user": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1beta1_UserInfo",
"description": "User is the UserInfo associated with the provided token."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1beta1_UserInfo": {
"description": "UserInfo holds the information about the user needed to implement the user.Info interface.",
"properties": {
"extra": {
"additionalProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"description": "Any additional information provided by the authenticator.",
"type": "object"
},
"groups": {
"description": "The names of groups this user is a part of.",
"items": {
"type": "string"
},
"type": "array"
},
"uid": {
"description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.",
"type": "string"
},
"username": {
"description": "The name that uniquely identifies this user among all active users.",
"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_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": "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": [
"string",
"null"
]
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"TokenReview"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1beta1_TokenReviewSpec",
"description": "Spec holds information about the request being evaluated"
},
"status": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authentication_v1beta1_TokenReviewStatus",
"description": "Status is filled in by the server and indicates whether the request can be authenticated."
}
},
"required": [
"spec"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "authentication.k8s.io",
"kind": "TokenReview",
"version": "v1beta1"
}
]
} | kb_1072_Normalized |
{
"properties": {
"advancedepa": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"analyticsprofile": {
"readonly": true,
"type": "string"
},
"appflowlog": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"authentication": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"authnprofile": {
"type": "string"
},
"backupvserver": {
"readonly": true,
"type": "string"
},
"bindpoint": {
"enum": [
"REQUEST",
"RESPONSE",
"ICA_REQUEST",
"OTHERTCP_REQUEST"
],
"readonly": true,
"type": "string"
},
"cachetype": {
"enum": [
"TRANSPARENT",
"REVERSE",
"FORWARD"
],
"readonly": true,
"type": "string"
},
"cachevserver": {
"readonly": true,
"type": "string"
},
"certkeynames": {
"type": "string"
},
"cginfrahomepageredirect": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"clttimeout": {
"readonly": true,
"type": "integer"
},
"comment": {
"type": "string"
},
"csvserver": {
"readonly": true,
"type": "string"
},
"curaaausers": {
"readonly": true,
"type": "integer"
},
"curstate": {
"enum": [
"UP",
"DOWN",
"UNKNOWN",
"BUSY",
"OUT OF SERVICE",
"GOING OUT OF SERVICE",
"DOWN WHEN GOING OUT OF SERVICE",
"NS_EMPTY_STR",
"Unknown",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"curtotalusers": {
"readonly": true,
"type": "integer"
},
"deploymenttype": {
"enum": [
"NONE",
"ICA_WEBINTERFACE",
"ICA_STOREFRONT",
"MOBILITY",
"WIONNS"
],
"type": "string"
},
"devicecert": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"disableprimaryondown": {
"enum": [
"ENABLED",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"domain": {
"readonly": true,
"type": "string"
},
"doublehop": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"downstateflush": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"dtls": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"epaprofileoptional": {
"readonly": true,
"type": "boolean"
},
"failedlogintimeout": {
"type": "integer"
},
"groupextraction": {
"readonly": true,
"type": "boolean"
},
"httpprofilename": {
"type": "string"
},
"icaonly": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"icaproxysessionmigration": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"icmpvsrresponse": {
"enum": [
"PASSIVE",
"ACTIVE"
],
"type": "string"
},
"ip": {
"readonly": true,
"type": "string"
},
"ipset": {
"type": "string"
},
"ipv46": {
"type": "string"
},
"l2conn": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"linuxepapluginupgrade": {
"enum": [
"Always",
"Essential",
"Never"
],
"type": "string"
},
"listenpolicy": {
"type": "string"
},
"listenpriority": {
"type": "integer"
},
"loginonce": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"logoutonsmartcardremoval": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"macepapluginupgrade": {
"enum": [
"Always",
"Essential",
"Never"
],
"type": "string"
},
"map": {
"enum": [
"ON",
"OFF"
],
"readonly": true,
"type": "string"
},
"maxaaausers": {
"type": "integer"
},
"maxloginattempts": {
"type": "integer"
},
"name": {
"type": "string"
},
"netprofile": {
"type": "string"
},
"newname": {
"type": "string"
},
"ngname": {
"readonly": true,
"type": "string"
},
"nodefaultbindings": {
"enum": [
"YES",
"NO"
],
"readonly": true,
"type": "string"
},
"pcoipvserverprofilename": {
"type": "string"
},
"port": {
"type": "integer"
},
"precedence": {
"enum": [
"RULE",
"URL"
],
"readonly": true,
"type": "string"
},
"range": {
"type": "integer"
},
"rdpserverprofilename": {
"type": "string"
},
"redirect": {
"enum": [
"CACHE",
"POLICY",
"ORIGIN"
],
"readonly": true,
"type": "string"
},
"redirecturl": {
"readonly": true,
"type": "string"
},
"response": {
"readonly": true,
"type": "string"
},
"rhistate": {
"enum": [
"PASSIVE",
"ACTIVE"
],
"type": "string"
},
"rule": {
"readonly": true,
"type": "string"
},
"secondary": {
"readonly": true,
"type": "boolean"
},
"servicename": {
"readonly": true,
"type": "string"
},
"servicetype": {
"enum": [
"SSL"
],
"type": "string"
},
"somethod": {
"enum": [
"CONNECTION",
"DYNAMICCONNECTION",
"BANDWIDTH",
"HEALTH",
"NONE"
],
"readonly": true,
"type": "string"
},
"sopersistence": {
"enum": [
"ENABLED",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"sopersistencetimeout": {
"readonly": true,
"type": "integer"
},
"sothreshold": {
"readonly": true,
"type": "integer"
},
"state": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"status": {
"readonly": true,
"type": "integer"
},
"tcpprofilename": {
"type": "string"
},
"type": {
"enum": [
"CONTENT",
"ADDRESS"
],
"readonly": true,
"type": "string"
},
"usemip": {
"enum": [
"ENABLED",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"userdomains": {
"type": "string"
},
"value": {
"enum": [
"Certkey not bound",
"SSL feature disabled"
],
"readonly": true,
"type": "string"
},
"vserverfqdn": {
"type": "string"
},
"weight": {
"readonly": true,
"type": "integer"
},
"windowsepapluginupgrade": {
"enum": [
"Always",
"Essential",
"Never"
],
"type": "string"
}
},
"title": "vpnvserver",
"type": "object"
} | o31201 |
{
"properties": {
"effect": {
"default": true,
"description": "When false use the EntityDataModuleWithoutEffects module instead of EntityDataModule.",
"type": "boolean"
},
"entityConfig": {
"default": true,
"description": "Create the Entity config file",
"type": "boolean"
},
"migrateNgrxData": {
"alias": "migrate",
"default": false,
"description": "Migrate from ngrx-data, will rename modules.",
"type": "boolean"
},
"module": {
"alias": "m",
"default": "app",
"description": "Allows specification of the declaring module.",
"subtype": "filepath",
"type": "string"
},
"path": {
"description": "The path to the module.",
"format": "path",
"type": "string",
"visible": false
},
"project": {
"aliases": [
"p"
],
"description": "The name of the project.",
"type": "string"
},
"skipPackageJson": {
"default": false,
"description": "Do not add @ngrx/data as dependency to package.json (e.g., --skipPackageJson).",
"type": "boolean"
}
},
"required": [],
"title": "NgRx Data Schema",
"type": "object"
} | o63314 |
{
"$id": "https://json.schemastore.org/vtestunit-schema.json",
"$ref": "#/definitions/636d/full",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"636d": {
"full": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Json schema for test unit configuration files",
"type": "object",
"required": ["version"],
"oneOf": [
{
"allOf": [
{
"properties": {
"version": {
"const": "1.0.0"
}
}
},
{
"$ref": "#/definitions/e4dd/full"
}
]
}
]
}
},
"e4dd": {
"full": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Json schema for test unit configuration files",
"type": "object",
"additionalProperties": false,
"required": ["version"],
"properties": {
"version": {
"$ref": "#/definitions/b807/full"
},
"includes": {
"$ref": "#/definitions/6c39/full"
},
"test-unit-information": {
"$ref": "#/definitions/52a0/full"
},
"test-unit-implementation": {
"$ref": "#/definitions/d6e3/full"
}
}
}
},
"b807": {
"full": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Version",
"description": "Json schema version for the test unit configuration file. Acceptance criteria: equal major version, less/equal minor and patch version.",
"pattern": "^1.0.0$",
"type": "string",
"examples": ["1.0.0"]
}
},
"6c39": {
"local": {
"one": {
"type": "string",
"pattern": "\\.([Yy][Aa][Mm][Ll]|[Jj][Ss][Oo][Nn])$"
}
},
"full": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Include files",
"description": "Include a different file (similar to #include of the c preprocessor). The order of includes does not matter. Circular / multiple includes are resolved correctly.",
"oneOf": [
{
"$ref": "#/definitions/6c39/local/one"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/6c39/local/one"
}
}
],
"examples": [
"my_include.yaml",
["my_include.yaml", "my_other_include.json"]
]
}
},
"52a0": {
"full": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Test Unit Information",
"description": "Miscellaneous test unit information can be defined. After the execution they are available in the test report.",
"type": "object",
"additionalProperties": false,
"properties": {
"caption": {
"description": "Caption of the test unit.",
"type": "string",
"examples": ["My caption"]
},
"description": {
"description": "Description of the test unit.",
"type": "string",
"examples": ["My description"]
},
"version": {
"description": "Version of the test unit.",
"type": "string",
"examples": ["v1.0"]
},
"test-designer": {
"description": "Information on the test developer(s). A sequence of key-value pairs that can be freely selected.",
"type": "array",
"items": {
"type": "object"
},
"examples": [
[
{
"prename": "Max",
"surname": "S.",
"department": "Department A"
},
{
"prename": "Linda",
"department": "Department B"
}
]
]
},
"additional-information": {
"description": "Additional key-value pairs. One key 'name' is required, the other keys can be freely selected.",
"type": "array",
"items": {
"type": "object",
"required": ["name"],
"properties": {
"name": {
"type": "string",
"examples": ["A descriptive name"]
}
}
},
"examples": [
[
{
"name": "SUT",
"customerName": "Customer A"
}
]
]
}
},
"examples": [
{
"caption": "This is a caption",
"description": "This is a description",
"version": "v1.0.0",
"test-designers": [
{
"name": "Max",
"department": "PND123"
},
{
"name": "Lisa",
"department": "PND345"
}
],
"additional-information": [
{
"name": "Software Under Test",
"CustomerName": "My customer",
"SpareNumber": " 012345",
"SRSBasleine": "4.1"
}
]
}
]
}
},
"d6e3": {
"full": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Test Unit Implementation",
"description": "Source artifacts of the test unit. Absolute and relative paths are allowed. Relative path specifications are resolved relative to the vtestunit.yaml file.",
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"additionalProperties": false,
"properties": {
"source-file-path": {
"type": "string",
"title": "Source File Path",
"description": "Path to a source file (.can/.canencr/.vtesttree.yaml).",
"anyOf": [
{
"pattern": "^.*\\.[Cc][Aa][Nn]$"
},
{
"pattern": "^.*\\.[Cc][Aa][Nn][Ee][Nn][Cc][Rr]$"
},
{
"pattern": "^.*\\.vtesttree.[yY][aA][mM][lL]$"
}
],
"examples": [
"Source1.can",
"Source2.canencr",
"path/to/my/Source3.vtesttree.yaml"
]
}
}
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"capl-library-path": {
"title": "CAPL Library Path",
"description": "Path to a CAPL library file (.dll).",
"$ref": "#/definitions/5342/full",
"examples": ["path/to/my.dll"]
}
}
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"modeling-library-path": {
"type": "string",
"title": "Modeling Library Path",
"description": "Path to a modeling library file (.vmodule).",
"pattern": "^.*\\.[vV][mM][oO][dD][uU][lL][eE]$",
"examples": ["path/to/my.vmodule"]
}
}
}
]
}
}
},
"5342": {
"full": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "string",
"pattern": "^.*\\.[dD][lL][lL]$"
}
}
},
"title": "Json schema for test unit configuration files",
"type": "object"
}
| vtestunit-schema |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"side_length": {
"description": "The side length of the square",
"type": "number"
}
},
"required": [
"radius",
"side_length",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The shape type (e.g. circle, square, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_e4e98a6f |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the shape (for triangle)",
"type": "number"
},
"height": {
"description": "The height of the shape",
"type": "number"
},
"height_triangle": {
"description": "The height of the triangle (for triangle)",
"type": "number"
},
"radius": {
"description": "The radius of the shape (for circle)",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"width",
"height"
],
"type": "object"
},
"shape": {
"description": "The shape for which to calculate the area (rectangle, circle, triangle)",
"enum": [
"rectangle",
"circle",
"triangle"
],
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_90427cdb |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"gameAudioChannels": {
"type": "array",
"items": {
"type": "object",
"properties": {
"sd": {
"type": [
"integer",
"null"
]
},
"hd": {
"type": [
"integer",
"null"
]
}
}
},
"minItems": 4,
"maxItems": 4
}
}
} | o63991 |
{
"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 for which to calculate the area",
"enum": [
"circle",
"rectangle",
"triangle"
],
"type": "string"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"shape"
],
"type": "object"
} | calculate_area_a4f34b1b |
{
"description": "Creates a new generic component definition in the given or default project.",
"properties": {
"changeDetection": {
"alias": "c",
"default": "Default",
"description": "The change detection strategy to use in the new component.",
"enum": [
"Default",
"OnPush"
],
"type": "string"
},
"displayBlock": {
"alias": "b",
"default": false,
"description": "Specifies if the style will contain `:host { display: block; }`.",
"type": "boolean"
},
"entryComponent": {
"default": false,
"description": "When true, the new component is the entry component of the declaring NgModule.",
"type": "boolean",
"x-deprecated": "Since version 9.0.0 with Ivy, entryComponents is no longer necessary."
},
"export": {
"default": false,
"description": "When true, the declaring NgModule exports this component.",
"type": "boolean",
"x-user-analytics": 19
},
"flat": {
"default": false,
"description": "When true, creates the new files at the top level of the current project.",
"type": "boolean"
},
"inlineStyle": {
"alias": "s",
"default": false,
"description": "When true, includes styles inline in the component.ts file. Only CSS styles can be included inline. By default, an external styles file is created and referenced in the component.ts file.",
"type": "boolean",
"x-user-analytics": 9
},
"inlineTemplate": {
"alias": "t",
"default": false,
"description": "When true, includes template inline in the component.ts file. By default, an external template file is created and referenced in the component.ts file.",
"type": "boolean",
"x-user-analytics": 10
},
"lintFix": {
"default": false,
"description": "When true, applies lint fixes after generating the component.",
"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 component.",
"type": "string",
"x-prompt": "What name would you like to use for the component?"
},
"path": {
"description": "The path at which to create the component file, relative to the current workspace. Default is a folder with the same name as the component in the project root.",
"format": "path",
"type": "string",
"visible": false
},
"prefix": {
"alias": "p",
"description": "The prefix to apply to the generated component selector.",
"oneOf": [
{
"maxLength": 0
},
{
"format": "html-selector",
"minLength": 1
}
],
"type": "string"
},
"project": {
"$default": {
"$source": "projectName"
},
"description": "The name of the project.",
"type": "string"
},
"selector": {
"description": "The HTML selector to use for this component.",
"format": "html-selector",
"type": "string"
},
"skipImport": {
"default": false,
"description": "When true, does not import this component into the owning NgModule.",
"type": "boolean",
"x-user-analytics": 18
},
"skipSelector": {
"default": false,
"description": "Specifies if the component should have a selector or not.",
"type": "boolean"
},
"skipTests": {
"default": false,
"description": "When true, does not create \"spec.ts\" test files for the new component.",
"type": "boolean",
"x-user-analytics": 12
},
"style": {
"default": "css",
"description": "The file extension or preprocessor to use for style files.",
"enum": [
"css",
"scss",
"sass",
"less",
"styl"
],
"type": "string",
"x-user-analytics": 5
},
"type": {
"default": "Component",
"description": "Adds a developer-defined type to the filename, in the format \"name.type.ts\".",
"type": "string"
},
"viewEncapsulation": {
"alias": "v",
"description": "The view encapsulation strategy to use in the new component.",
"enum": [
"Emulated",
"Native",
"None",
"ShadowDom"
],
"type": "string",
"x-user-analytics": 11
}
},
"required": [
"name"
],
"title": "Angular Component Options Schema",
"type": "object"
} | o58458 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"exception": {
"description": "Exception schema",
"properties": {
"cause": {
"type": "string"
},
"id": {
"maxLength": 16,
"minLength": 16,
"type": "string"
},
"message": {
"type": "string"
},
"remote": {
"type": "boolean"
},
"skipped": {
"type": "integer"
},
"stack": {
"items": {
"$ref": "#/definitions/stackFrame"
},
"type": "array"
},
"truncated": {
"type": "integer"
},
"type": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"stackFrame": {
"description": "Stack frame schema",
"properties": {
"label": {
"type": "string"
},
"line": {
"type": "integer"
},
"path": {
"type": "string"
}
},
"type": "object"
},
"subsegment": {
"description": "Subsegment document schema",
"properties": {
"annotations": {
"additionalProperties": false,
"patternProperties": {
"^[a-zA-Z0-9_]{1,500}$": {
"maxLength": 1000,
"type": [
"string",
"number",
"boolean"
]
}
},
"type": "object"
},
"aws": {
"properties": {
"account_id": {
"type": "string"
},
"operation": {
"type": "string"
},
"queue_url": {
"type": "string"
},
"region": {
"type": "string"
},
"request_id": {
"type": "string"
},
"table_name": {
"type": "string"
}
},
"type": "object"
},
"cause": {
"oneOf": [
{
"maxLength": 16,
"minLength": 16,
"type": "string"
},
{
"properties": {
"exceptions": {
"items": {
"$ref": "#/definitions/exception"
},
"type": "array"
},
"paths": {
"items": {
"type": "string"
},
"type": "array"
},
"working_directory": {
"type": "string"
}
},
"type": "object"
}
]
},
"end_time": {
"type": "number"
},
"error": {
"type": "boolean"
},
"fault": {
"type": "boolean"
},
"http": {
"properties": {
"request": {
"properties": {
"client_ip": {
"maxLength": 250,
"type": "string"
},
"method": {
"maxLength": 250,
"type": "string"
},
"url": {
"maxLength": 250,
"type": "string"
},
"user_agent": {
"maxLength": 250,
"type": "string"
}
},
"type": "object"
},
"response": {
"properties": {
"content_length": {
"type": "number"
},
"status": {
"type": "number"
}
},
"type": "object"
}
},
"type": "object"
},
"in_progress": {
"type": "boolean"
},
"metadata": {
"additionalProperties": {
"type": "object"
},
"type": "object"
},
"name": {
"minLength": 1,
"type": "string"
},
"namespace": {
"type": "string"
},
"parent_id": {
"type": "string"
},
"precursor_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"sql": {
"properties": {
"connection_string": {
"type": "string"
},
"database_type": {
"type": "string"
},
"database_version": {
"type": "string"
},
"driver_version": {
"type": "string"
},
"preparation": {
"type": "string"
},
"sanitized_query": {
"type": "string"
},
"url": {
"type": "string"
},
"user": {
"maxLength": 250,
"type": "string"
}
},
"type": "object"
},
"start_time": {
"type": "number"
},
"subsegments": {
"items": {
"$ref": "#/definitions/subsegment"
},
"type": "array"
},
"throttle": {
"type": "boolean"
},
"traced": {
"type": "boolean"
},
"type": {
"type": "string"
}
},
"required": [
"name",
"id",
"start_time"
],
"type": "object"
}
},
"description": "Segment document schema",
"properties": {
"annotations": {
"additionalProperties": false,
"patternProperties": {
"^[a-zA-Z0-9_]{1,500}$": {
"maxLength": 1000,
"type": [
"string",
"number",
"boolean"
]
}
},
"type": "object"
},
"aws": {
"properties": {
"account_id": {
"type": "string"
},
"ec2": {
"properties": {
"availability_zone": {
"type": "string"
},
"instance_id": {
"type": "string"
}
},
"type": "object"
},
"ecs": {
"properties": {
"container": {
"type": "string"
}
},
"type": "object"
},
"elastic_beanstalk": {
"properties": {
"deployment_id": {
"type": "number"
},
"environment_name": {
"type": "string"
},
"version_label": {
"type": "string"
}
},
"type": "object"
},
"tracing": {
"properties": {
"sdk": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"cause": {
"oneOf": [
{
"maxLength": 16,
"minLength": 16,
"type": "string"
},
{
"properties": {
"exceptions": {
"items": {
"$ref": "#/definitions/exception"
},
"type": "array"
},
"paths": {
"items": {
"type": "string"
},
"type": "array"
},
"working_directory": {
"type": "string"
}
},
"type": "object"
}
]
},
"end_time": {
"type": "number"
},
"error": {
"type": "boolean"
},
"fault": {
"type": "boolean"
},
"http": {
"properties": {
"request": {
"properties": {
"client_ip": {
"maxLength": 250,
"type": "string"
},
"method": {
"maxLength": 250,
"type": "string"
},
"url": {
"maxLength": 250,
"type": "string"
},
"user_agent": {
"maxLength": 250,
"type": "string"
},
"x_forwarded_for": {
"type": "boolean"
}
},
"type": "object"
},
"response": {
"properties": {
"content_length": {
"type": "number"
},
"status": {
"type": "number"
}
},
"type": "object"
}
},
"type": "object"
},
"id": {
"maxLength": 16,
"minLength": 16,
"type": "string"
},
"in_progress": {
"type": "boolean"
},
"metadata": {
"additionalProperties": {
"type": "object"
},
"type": "object"
},
"name": {
"java_pattern": "([\\p{L}\\p{Z}\\p{N}_.:/%&#=+\\-@]*)$",
"pattern": "^[A-Za-z\\u00aa\\u00b5\\u00ba\\u00c0-\\u00d6\\u00d8-\\u00f6\\u00f8-\\u02c1\\u02c6-\\u02d1\\u02e0-\\u02e4\\u02ec\\u02ee\\u0370-\\u0374\\u0376\\u0377\\u037a-\\u037d\\u037f\\u0386\\u0388-\\u038a\\u038c\\u038e-\\u03a1\\u03a3-\\u03f5\\u03f7-\\u0481\\u048a-\\u052f\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05d0-\\u05ea\\u05f0-\\u05f2\\u0620-\\u064a\\u066e\\u066f\\u0671-\\u06d3\\u06d5\\u06e5\\u06e6\\u06ee\\u06ef\\u06fa-\\u06fc\\u06ff\\u0710\\u0712-\\u072f\\u074d-\\u07a5\\u07b1\\u07ca-\\u07ea\\u07f4\\u07f5\\u07fa\\u0800-\\u0815\\u081a\\u0824\\u0828\\u0840-\\u0858\\u08a0-\\u08b4\\u0904-\\u0939\\u093d\\u0950\\u0958-\\u0961\\u0971-\\u0980\\u0985-\\u098c\\u098f\\u0990\\u0993-\\u09a8\\u09aa-\\u09b0\\u09b2\\u09b6-\\u09b9\\u09bd\\u09ce\\u09dc\\u09dd\\u09df-\\u09e1\\u09f0\\u09f1\\u0a05-\\u0a0a\\u0a0f\\u0a10\\u0a13-\\u0a28\\u0a2a-\\u0a30\\u0a32\\u0a33\\u0a35\\u0a36\\u0a38\\u0a39\\u0a59-\\u0a5c\\u0a5e\\u0a72-\\u0a74\\u0a85-\\u0a8d\\u0a8f-\\u0a91\\u0a93-\\u0aa8\\u0aaa-\\u0ab0\\u0ab2\\u0ab3\\u0ab5-\\u0ab9\\u0abd\\u0ad0\\u0ae0\\u0ae1\\u0af9\\u0b05-\\u0b0c\\u0b0f\\u0b10\\u0b13-\\u0b28\\u0b2a-\\u0b30\\u0b32\\u0b33\\u0b35-\\u0b39\\u0b3d\\u0b5c\\u0b5d\\u0b5f-\\u0b61\\u0b71\\u0b83\\u0b85-\\u0b8a\\u0b8e-\\u0b90\\u0b92-\\u0b95\\u0b99\\u0b9a\\u0b9c\\u0b9e\\u0b9f\\u0ba3\\u0ba4\\u0ba8-\\u0baa\\u0bae-\\u0bb9\\u0bd0\\u0c05-\\u0c0c\\u0c0e-\\u0c10\\u0c12-\\u0c28\\u0c2a-\\u0c39\\u0c3d\\u0c58-\\u0c5a\\u0c60\\u0c61\\u0c85-\\u0c8c\\u0c8e-\\u0c90\\u0c92-\\u0ca8\\u0caa-\\u0cb3\\u0cb5-\\u0cb9\\u0cbd\\u0cde\\u0ce0\\u0ce1\\u0cf1\\u0cf2\\u0d05-\\u0d0c\\u0d0e-\\u0d10\\u0d12-\\u0d3a\\u0d3d\\u0d4e\\u0d5f-\\u0d61\\u0d7a-\\u0d7f\\u0d85-\\u0d96\\u0d9a-\\u0db1\\u0db3-\\u0dbb\\u0dbd\\u0dc0-\\u0dc6\\u0e01-\\u0e30\\u0e32\\u0e33\\u0e40-\\u0e46\\u0e81\\u0e82\\u0e84\\u0e87\\u0e88\\u0e8a\\u0e8d\\u0e94-\\u0e97\\u0e99-\\u0e9f\\u0ea1-\\u0ea3\\u0ea5\\u0ea7\\u0eaa\\u0eab\\u0ead-\\u0eb0\\u0eb2\\u0eb3\\u0ebd\\u0ec0-\\u0ec4\\u0ec6\\u0edc-\\u0edf\\u0f00\\u0f40-\\u0f47\\u0f49-\\u0f6c\\u0f88-\\u0f8c\\u1000-\\u102a\\u103f\\u1050-\\u1055\\u105a-\\u105d\\u1061\\u1065\\u1066\\u106e-\\u1070\\u1075-\\u1081\\u108e\\u10a0-\\u10c5\\u10c7\\u10cd\\u10d0-\\u10fa\\u10fc-\\u1248\\u124a-\\u124d\\u1250-\\u1256\\u1258\\u125a-\\u125d\\u1260-\\u1288\\u128a-\\u128d\\u1290-\\u12b0\\u12b2-\\u12b5\\u12b8-\\u12be\\u12c0\\u12c2-\\u12c5\\u12c8-\\u12d6\\u12d8-\\u1310\\u1312-\\u1315\\u1318-\\u135a\\u1380-\\u138f\\u13a0-\\u13f5\\u13f8-\\u13fd\\u1401-\\u166c\\u166f-\\u167f\\u1681-\\u169a\\u16a0-\\u16ea\\u16f1-\\u16f8\\u1700-\\u170c\\u170e-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176c\\u176e-\\u1770\\u1780-\\u17b3\\u17d7\\u17dc\\u1820-\\u1877\\u1880-\\u18a8\\u18aa\\u18b0-\\u18f5\\u1900-\\u191e\\u1950-\\u196d\\u1970-\\u1974\\u1980-\\u19ab\\u19b0-\\u19c9\\u1a00-\\u1a16\\u1a20-\\u1a54\\u1aa7\\u1b05-\\u1b33\\u1b45-\\u1b4b\\u1b83-\\u1ba0\\u1bae\\u1baf\\u1bba-\\u1be5\\u1c00-\\u1c23\\u1c4d-\\u1c4f\\u1c5a-\\u1c7d\\u1ce9-\\u1cec\\u1cee-\\u1cf1\\u1cf5\\u1cf6\\u1d00-\\u1dbf\\u1e00-\\u1f15\\u1f18-\\u1f1d\\u1f20-\\u1f45\\u1f48-\\u1f4d\\u1f50-\\u1f57\\u1f59\\u1f5b\\u1f5d\\u1f5f-\\u1f7d\\u1f80-\\u1fb4\\u1fb6-\\u1fbc\\u1fbe\\u1fc2-\\u1fc4\\u1fc6-\\u1fcc\\u1fd0-\\u1fd3\\u1fd6-\\u1fdb\\u1fe0-\\u1fec\\u1ff2-\\u1ff4\\u1ff6-\\u1ffc\\u2071\\u207f\\u2090-\\u209c\\u2102\\u2107\\u210a-\\u2113\\u2115\\u2119-\\u211d\\u2124\\u2126\\u2128\\u212a-\\u212d\\u212f-\\u2139\\u213c-\\u213f\\u2145-\\u2149\\u214e\\u2183\\u2184\\u2c00-\\u2c2e\\u2c30-\\u2c5e\\u2c60-\\u2ce4\\u2ceb-\\u2cee\\u2cf2\\u2cf3\\u2d00-\\u2d25\\u2d27\\u2d2d\\u2d30-\\u2d67\\u2d6f\\u2d80-\\u2d96\\u2da0-\\u2da6\\u2da8-\\u2dae\\u2db0-\\u2db6\\u2db8-\\u2dbe\\u2dc0-\\u2dc6\\u2dc8-\\u2dce\\u2dd0-\\u2dd6\\u2dd8-\\u2dde\\u2e2f\\u3005\\u3006\\u3031-\\u3035\\u303b\\u303c\\u3041-\\u3096\\u309d-\\u309f\\u30a1-\\u30fa\\u30fc-\\u30ff\\u3105-\\u312d\\u3131-\\u318e\\u31a0-\\u31ba\\u31f0-\\u31ff\\u3400-\\u4db5\\u4e00-\\u9fd5\\ua000-\\ua48c\\ua4d0-\\ua4fd\\ua500-\\ua60c\\ua610-\\ua61f\\ua62a\\ua62b\\ua640-\\ua66e\\ua67f-\\ua69d\\ua6a0-\\ua6e5\\ua717-\\ua71f\\ua722-\\ua788\\ua78b-\\ua7ad\\ua7b0-\\ua7b7\\ua7f7-\\ua801\\ua803-\\ua805\\ua807-\\ua80a\\ua80c-\\ua822\\ua840-\\ua873\\ua882-\\ua8b3\\ua8f2-\\ua8f7\\ua8fb\\ua8fd\\ua90a-\\ua925\\ua930-\\ua946\\ua960-\\ua97c\\ua984-\\ua9b2\\ua9cf\\ua9e0-\\ua9e4\\ua9e6-\\ua9ef\\ua9fa-\\ua9fe\\uaa00-\\uaa28\\uaa40-\\uaa42\\uaa44-\\uaa4b\\uaa60-\\uaa76\\uaa7a\\uaa7e-\\uaaaf\\uaab1\\uaab5\\uaab6\\uaab9-\\uaabd\\uaac0\\uaac2\\uaadb-\\uaadd\\uaae0-\\uaaea\\uaaf2-\\uaaf4\\uab01-\\uab06\\uab09-\\uab0e\\uab11-\\uab16\\uab20-\\uab26\\uab28-\\uab2e\\uab30-\\uab5a\\uab5c-\\uab65\\uab70-\\uabe2\\uac00-\\ud7a3\\ud7b0-\\ud7c6\\ud7cb-\\ud7fb\\uf900-\\ufa6d\\ufa70-\\ufad9\\ufb00-\\ufb06\\ufb13-\\ufb17\\ufb1d\\ufb1f-\\ufb28\\ufb2a-\\ufb36\\ufb38-\\ufb3c\\ufb3e\\ufb40\\ufb41\\ufb43\\ufb44\\ufb46-\\ufbb1\\ufbd3-\\ufd3d\\ufd50-\\ufd8f\\ufd92-\\ufdc7\\ufdf0-\\ufdfb\\ufe70-\\ufe74\\ufe76-\\ufefc\\uff21-\\uff3a\\uff41-\\uff5a\\uff66-\\uffbe\\uffc2-\\uffc7\\uffca-\\uffcf\\uffd2-\\uffd7\\uffda-\\uffdc \\u00a0\\u1680\\u2000-\\u200a\\u2028\\u2029\\u202f\\u205f\\u30000-9\\u00b2\\u00b3\\u00b9\\u00bc-\\u00be\\u0660-\\u0669\\u06f0-\\u06f9\\u07c0-\\u07c9\\u0966-\\u096f\\u09e6-\\u09ef\\u09f4-\\u09f9\\u0a66-\\u0a6f\\u0ae6-\\u0aef\\u0b66-\\u0b6f\\u0b72-\\u0b77\\u0be6-\\u0bf2\\u0c66-\\u0c6f\\u0c78-\\u0c7e\\u0ce6-\\u0cef\\u0d66-\\u0d75\\u0de6-\\u0def\\u0e50-\\u0e59\\u0ed0-\\u0ed9\\u0f20-\\u0f33\\u1040-\\u1049\\u1090-\\u1099\\u1369-\\u137c\\u16ee-\\u16f0\\u17e0-\\u17e9\\u17f0-\\u17f9\\u1810-\\u1819\\u1946-\\u194f\\u19d0-\\u19da\\u1a80-\\u1a89\\u1a90-\\u1a99\\u1b50-\\u1b59\\u1bb0-\\u1bb9\\u1c40-\\u1c49\\u1c50-\\u1c59\\u2070\\u2074-\\u2079\\u2080-\\u2089\\u2150-\\u2182\\u2185-\\u2189\\u2460-\\u249b\\u24ea-\\u24ff\\u2776-\\u2793\\u2cfd\\u3007\\u3021-\\u3029\\u3038-\\u303a\\u3192-\\u3195\\u3220-\\u3229\\u3248-\\u324f\\u3251-\\u325f\\u3280-\\u3289\\u32b1-\\u32bf\\ua620-\\ua629\\ua6e6-\\ua6ef\\ua830-\\ua835\\ua8d0-\\ua8d9\\ua900-\\ua909\\ua9d0-\\ua9d9\\ua9f0-\\ua9f9\\uaa50-\\uaa59\\uabf0-\\uabf9\\uff10-\\uff19_.:/%&#=+\\-@]{1,200}$",
"type": "string"
},
"origin": {
"type": "string"
},
"parent_id": {
"maxLength": 16,
"minLength": 16,
"type": "string"
},
"resource_arn": {
"type": "string"
},
"service": {
"properties": {
"version": {
"type": "string"
}
},
"type": "object"
},
"start_time": {
"type": "number"
},
"subsegments": {
"items": {
"$ref": "#/definitions/subsegment"
},
"type": "array"
},
"throttle": {
"type": "boolean"
},
"trace_id": {
"minLength": 35,
"pattern": "\\d+-[A-Fa-f0-9]*-[A-Fa-f0-9]{24}",
"type": "string"
},
"user": {
"maxLength": 250,
"type": "string"
}
},
"required": [
"name",
"id",
"start_time",
"trace_id"
],
"type": "object",
"version": "1.0.0"
} | o79409 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"autoStartCooldown": {
"descriptopn": "Whether or not to autmatically start the cooldown when a passenger is added to the train.",
"type": "boolean",
"default": false
},
"resetAfterThreshold": {
"descriptopn": "Whether or not to reset the number of passengers on the train when the threshold is reached.",
"type": "boolean",
"default": false
},
"disableThresholdEditing": {
"descriptopn": "If true, prevents the user from editing the threshold. Good for graphics that depend on a fixed threshold.",
"type": "boolean",
"default": false
}
}
} | o14741 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"properties": {
"carrier": {
"description": "acronym of the carrier you want to use",
"enum": [
"ups",
"dpd",
"hermes",
"gls"
],
"type": "string"
},
"pickup_address": {
"additionalProperties": false,
"description": "address where the carrier should pick up shipments",
"properties": {
"care_of": {
"type": "string"
},
"city": {
"type": "string"
},
"company": {
"type": "string"
},
"country": {
"description": "Country as uppercase ISO 3166-1 alpha-2 code",
"type": "string"
},
"first_name": {
"type": "string"
},
"id": {
"description": "identifier of a previously created address",
"type": "string"
},
"last_name": {
"type": "string"
},
"phone": {
"description": "telephone number (mandatory when using UPS and the following terms apply: service is one_day or one_day_early or ship to country is different than ship from country)",
"type": "string"
},
"state": {
"type": "string"
},
"street": {
"type": "string"
},
"street_no": {
"type": "string"
},
"zip_code": {
"type": "string"
}
},
"required": [
"last_name",
"street",
"street_no",
"city",
"zip_code",
"country"
],
"type": "object"
},
"pickup_date": {
"description": "deprecated: please use pickup_time instead.",
"pattern": "^[0-9]{4}/[0-9]{2}/[0-9]{2}$",
"type": "string"
},
"pickup_time": {
"additionalProperties": false,
"description": "defines a time window in which the carrier should pickup shipments",
"properties": {
"earliest": {
"_format": "date-time",
"type": "string"
},
"latest": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"earliest",
"latest"
],
"type": "object"
}
},
"required": [
"carrier",
"pickup_time"
],
"type": "object"
} | o75561 |
{
"description": "Schema for an array of recovery scenarios",
"items": {
"anyOf": [
{
"additionalProperties": false,
"properties": {
"error": {
"description": "Error filter used to discriminate the bad rows that will be affected by this recovery scenario",
"type": "string"
},
"name": {
"description": "The PassThrough recovery scenario doesn't modify the payload",
"enum": [
"PassThrough"
]
}
},
"required": [
"name",
"error"
]
},
{
"additionalProperties": false,
"properties": {
"error": {
"description": "Error filter used to discriminate the bad rows that will be affected by this recovery scenario",
"type": "string"
},
"name": {
"description": "The RemoveFrom{Body,QueryString} will remove part of the payload",
"enum": [
"RemoveFromQueryString",
"RemoveFromBody"
]
},
"toRemove": {
"description": "String or regex to remove from the {body, query string}",
"type": "string"
}
},
"required": [
"name",
"error",
"toRemove"
]
},
{
"additionalProperties": false,
"properties": {
"error": {
"description": "Error filter used to discriminate the bad rows that will be affected by this recovery scenario",
"type": "string"
},
"name": {
"description": "The ReplaceIn{Body,QueryString} will replace part of the payload",
"enum": [
"ReplaceInQueryString",
"ReplaceInBody"
]
},
"replacement": {
"description": "Replacement for the {body, query string}",
"type": "string"
},
"toReplace": {
"description": "String or regex to replace in the {body, query string}",
"type": "string"
}
},
"required": [
"name",
"error",
"toReplace",
"replacement"
]
},
{
"additionalProperties": false,
"properties": {
"base64Field": {
"description": "Name of the base64-encoded field to decoded and do a replacement in",
"enum": [
"ue_px",
"cx"
]
},
"error": {
"description": "Error filter used to discriminate the bad rows that will be affected by this recovery scenario",
"type": "string"
},
"name": {
"description": "The ReplaceInBase64FieldIn{Body,QueryString} will replace part of a base64-encoded field",
"enum": [
"ReplaceInBase64FieldInQueryString",
"ReplaceInBase64FieldInBody"
]
},
"replacement": {
"description": "Replacement in the specified base64-encoded field in the {body, query string}",
"type": "string"
},
"toReplace": {
"description": "String or regex to replace in the specified base64-encoded field in the {body, query string}",
"type": "string"
}
},
"required": [
"name",
"error",
"toReplace",
"replacement"
]
},
{
"additionalProperties": true,
"properties": {
"error": {
"description": "Error filter used to discriminate the bad rows that will be affected by this recovery scenario",
"type": "string"
},
"name": {
"description": "Fallback for a custom recovery scenario",
"type": "string"
}
},
"required": [
"name",
"error"
]
}
],
"description": "Recovery scenario sum type",
"type": "object"
},
"self": {
"format": "jsonschema",
"name": "recoveries",
"vendor": "com.snowplowanalytics.snowplow",
"version": "1-0-0"
},
"type": "array"
} | sp_308_Normalized |
{
"properties": {
"general": {
"description": "Storage configuration properties",
"properties": {
"auth": {
"default": false,
"description": "Run with security",
"type": "boolean"
},
"httpinterface": {
"default": false,
"description": "Enable http interface",
"type": "boolean"
},
"jsonp": {
"default": false,
"description": "Allow JSONP access via http (has security implications)",
"type": "boolean"
},
"maxConns": {
"default": 1000000,
"description": "Max number of simultaneous connections",
"type": "number"
},
"noIndexBuildRetry": {
"default": false,
"description": "Do not retry any index builds that were interrupted by shutdown",
"type": "boolean"
},
"noscripting": {
"default": false,
"description": "Disable scripting engine",
"type": "boolean"
},
"notablescan": {
"default": false,
"description": "Do not allow table scans",
"type": "boolean"
},
"rest": {
"default": false,
"description": "Turn on simple rest api",
"type": "boolean"
}
},
"required": [
"maxConns"
],
"type": "object"
},
"replica-set": {
"description": "Replica set configuration properties",
"properties": {
"enable": {
"default": false,
"description": "Enable Replica set properties",
"type": "boolean"
},
"enableMajorityReadConcern": {
"default": false,
"description": "Enables majority readConcern",
"type": "boolean"
},
"replIndexPrefetch": {
"default": "all",
"description": "Specify index prefetching behavior (if secondary) [none|_id_only|all]",
"type": "string"
},
"replSet": {
"default": "rs1",
"description": "<setname>[/<optionalseedhostlist>]",
"type": "string"
}
},
"type": "object"
},
"service": {
"description": "Service configuration properties",
"properties": {
"bridge": {
"description": "Bridge configuration properties",
"properties": {
"enable": {
"default": false,
"description": "Whether to use BRIDGE networking mode for Docker container. By default, this is false and HOST mode networking is used.",
"type": "boolean"
},
"http_port": {
"default": 0,
"description": "HTTP Port if general.httpinterface is enabled",
"type": "integer"
},
"mongodb_port": {
"default": 0,
"description": "MongoDB Port",
"type": "integer"
}
},
"type": "object"
},
"cpus": {
"default": 1,
"description": "CPU shares to allocate to each MongoDB instance",
"minimum": 0.1,
"type": "number"
},
"disk": {
"default": 0,
"description": "Disk (MB) to allocate to each MongoDB instance",
"minimum": 0,
"type": "number"
},
"host_volume": {
"description": "Host volume configuration properties",
"properties": {
"enable": {
"default": true,
"description": "Enable the host volume properties",
"type": "boolean"
},
"location": {
"default": "/tmp",
"description": "The location of a volume on the host to be used for persisting MongoDB data. The final location will be derived from this value plus the name set in `name` (e.g. `/mnt/host_volume/mongodb`). Note that this path must be the same on all DCOS agents",
"type": "string"
}
},
"type": "object"
},
"instances": {
"default": 1,
"description": "Number of MongoDB instances to run",
"minimum": 1,
"type": "integer"
},
"marathon-uri": {
"default": "http://master.mesos:8080",
"description": "URI of Marathon instance",
"type": "string"
},
"mem": {
"default": 1024.0,
"description": "Memory (MB) to allocate to each MongoDB task",
"minimum": 256.0,
"type": "number"
},
"name": {
"default": "mongodb",
"description": "Name for this MongoDB instance",
"type": "string"
},
"role": {
"default": "*",
"description": "Deploy MongoDB only on nodes with this role",
"type": "string"
}
},
"required": [
"name",
"instances",
"cpus",
"mem",
"disk",
"role",
"marathon-uri"
],
"type": "object"
},
"storage": {
"description": "Storage configuration properties",
"properties": {
"directoryperdb": {
"default": false,
"description": "Each database will be stored in a separate directory",
"type": "boolean"
},
"nojournal": {
"default": false,
"description": "disable journaling (journaling is on by default for 64 bit)",
"type": "boolean"
},
"smallfiles": {
"default": false,
"description": "Use a smaller default file size",
"type": "boolean"
},
"storageEngine": {
"default": "wiredTiger",
"description": "What storage engine to use",
"type": "string"
}
},
"required": [
"storageEngine"
],
"type": "object"
}
},
"type": "object"
} | o53129 |
{
"properties": {
"AppLayerVPNMapping": {
"description": "An array of mapping dictionaries.",
"items": {
"description": "Bundle ID to VPN UUID mapping",
"properties": {
"Identifier": {
"description": "The app bundle ID.",
"type": "string"
},
"VPNUUID": {
"description": "The VPNUUID of the Per-App VPN defined in a Per-App VPN payload.",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"PayloadDescription": {
"default": "Per-App VPN Payload",
"description": "Description of the payload",
"type": "string"
},
"PayloadDisplayName": {
"default": "Per-App VPN Payload",
"description": "Name of the payload",
"type": "string"
},
"PayloadIdentifier": {
"default": "com.apple.vpn.managed.appmapping",
"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.vpn.managed.appmapping",
"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.vpn.managed.appmapping",
"type": "object"
} | o61646 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"webhookId": {
"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
},
"token": {
"type": "string",
"minLength": 1
},
"responseCode": {
"type": "integer",
"minimum": 100,
"maximum": 599
},
"verificationType": {
"type": "string",
"enum": [
"facebook",
"fitbit",
"none",
"twilio",
"alexa"
]
},
"verificationCode": {
"type": "string",
"maxLength": 32767
},
"waitForReply": {
"type": "boolean"
},
"basicAuthUsername": {
"type": "string",
"maxLength": 255
},
"basicAuthPassword": {
"type": "string",
"maxLength": 255
}
}
} | o9965 |
{
"$id": "https://json.schemastore.org/bxci.schema-2.x.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"branchPattern": {
"description": "Regular expression for validating branch names",
"type": "string"
},
"timeout": {
"description": "Timeout in seconds",
"type": "integer"
},
"credentials": {
"description": "Jenkins credentials ID",
"type": "string"
},
"binaryRepository": {
"type": "object",
"description": "Binary repository details",
"properties": {
"address": {
"type": "string",
"format": "uri",
"description": "Repository URL"
},
"credentials": {
"$ref": "#/definitions/credentials",
"description": "Jenkins credentials ID for connecting to this repository"
}
},
"additionalProperties": false,
"required": ["address", "credentials"]
},
"checkmarx": {
"type": "object",
"title": "CheckMarx",
"properties": {
"enabled": {
"type": "boolean",
"default": false,
"description": "Sets whether the scan should be run"
},
"branch_pattern": {
"$ref": "#/definitions/branchPattern",
"description": "Specifies in which branches this stage will be executed",
"default": "^master$|^release/.*$"
},
"groupId": {
"type": "string",
"default": "55",
"description": "Fully qualified team name for the project"
},
"preset": {
"type": "string",
"default": "36",
"description": "Scan preset for the project"
},
"sourceEncoding": {
"type": "string",
"default": "5",
"description": "Language encoding ID associated to the source code character encoding (5: Multi-Language Scan)"
},
"serverUrl": {
"type": "string",
"default": "http://cxpbgmgmtserver/",
"description": "Checkmarx Server URL or IP address"
},
"credentialsId": {
"type": "string",
"default": "BB-Checkmarx",
"description": "Jenkins credentials ID"
},
"isProxy": {
"type": "boolean",
"default": false
},
"useOwnServerCredentials": {
"type": "boolean",
"default": true,
"description": "Enables the use of the default server credentials or disables and provides server and credentials that override the defaults"
},
"projectName": {
"type": "string",
"description": "Unique project name. Will be inferred from the repository name if not provided"
},
"exclusionsSetting": {
"enum": ["job", "global"],
"default": "job",
"description": "Specifies which exclusions settings to use: global (Jenkins global settings) or job (current pipeline)"
},
"excludeFolders": {
"type": "string",
"description": "Comma separated list of folders to be excluded from the CxSAST scan",
"examples": ["folder-1, folder-2, folder-3"]
},
"filterPattern": {
"type": "string",
"description": "Defines the include/exclude wildcard patterns. Does not have effect when \"exclusionsSetting\" is set to \"global\"",
"examples": [
"\"!**/_cvs/**/*, !**/.svn/**/*, !**/.hg/**/*, !**/.git/**/*\""
]
},
"hideDebugLogs": {
"type": "boolean",
"default": true,
"description": "Sets whether debug logs are visible in the job output"
},
"waitForResultsEnabled": {
"type": "boolean",
"default": true,
"description": "Sets whether the scan should be executed synchronously (default). The Synchronous mode allows viewing scan results in Jenkins"
},
"vulnerabilityThresholdEnabled": {
"type": "boolean",
"default": true,
"description": "Sets whether the scan should fail if the number of vulnerabilities is above the configured thresholds. This option is only available if the waitForResultsEnabled parameter is enabled"
},
"highThreshold": {
"type": "integer",
"default": 0,
"description": "Sets the maximum number of High vulnerabilities allowed"
},
"mediumThreshold": {
"type": "integer",
"default": 10,
"description": "Sets the maximum number of Medium vulnerabilities allowed"
},
"lowThreshold": {
"type": "integer",
"default": null,
"description": "Sets the maximum number of Low vulnerabilities allowed"
}
},
"additionalProperties": false
},
"sonar": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"default": true
},
"breaks_build": {
"type": "boolean",
"description": "Waits for analysis result and breaks the build when the project fails for some quality gates",
"default": false
},
"branch_analysis": {
"type": "boolean",
"description": "Indicates whether sonnar server supports branch analysis, to provide dedicated parameters.",
"default": true
},
"branch_pattern": {
"type": "string",
"description": "Indicates what branches static analysis will be performed.",
"examples": ["^master$|^release/.+$", "master"]
},
"image": {
"type": "string",
"description": "Prebuilt Docker image for running scan into it. If not specified, it will use the same image used for main build.",
"examples": ["myrepo:port/my-awesome-image:1.2.3"]
},
"timeout": {
"$ref": "#/definitions/timeout",
"description": "Seconds to wait for the result of the quality gate. Only applies when breaks_build is set to true",
"default": 120
},
"exclusions": {
"type": "string",
"description": "Comma separated list of wildcard patterns defining files to be excluded from the SonarQube scan",
"examples": ["**/excluded-folder/**, **/example/*.html"]
}
},
"additionalProperties": false
},
"when": {
"type": "object",
"title": "When",
"description": "Condition that should be met to run this step",
"properties": {
"branch": {
"title": "Branch",
"$ref": "#/definitions/branchPattern"
}
}
},
"steps": {
"type": "array",
"description": "List of steps to run",
"title": "Steps"
},
"singleStage": {
"type": "object",
"title": "Stage",
"properties": {
"steps": {
"$ref": "#/definitions/steps"
},
"when": {
"$ref": "#/definitions/when"
}
},
"required": ["steps"],
"additionalProperties": false
},
"failFast": {
"type": "boolean",
"title": "Fail Fast",
"default": false,
"description": "Forces parallel stages to all be aborted when one of them fails"
},
"parallelStage": {
"type": "object",
"title": "Parallel Stage",
"properties": {
"when": {
"$ref": "#/definitions/when"
},
"fail_fast": {
"$ref": "#/definitions/failFast"
},
"parallel": {
"type": "object",
"description": "List of stages to be executed in parallel",
"patternProperties": {
"^\\w+( \\w+)*$": {
"$ref": "#/definitions/singleStage",
"description": "Stage name in the Jenkins pipeline"
}
}
}
},
"required": ["parallel"],
"additionalProperties": false
},
"stage": {
"type": "object",
"properties": {
"when": {
"$ref": "#/definitions/when"
},
"steps": {
"$ref": "#/definitions/steps"
},
"fail_fast": {
"$ref": "#/definitions/failFast"
},
"parallel": {
"title": "Parallel",
"patternProperties": {
"^\\w+( \\w+)*$": {
"$ref": "#/definitions/singleStage"
}
}
}
},
"anyOf": [
{
"$ref": "#/definitions/singleStage"
},
{
"$ref": "#/definitions/parallelStage"
}
],
"additionalProperties": false
},
"releaseChannel": {
"type": "string",
"description": "Release channel name"
},
"releaseChannelBranch": {
"$ref": "#/definitions/branchPattern",
"description": "Indicates on which branches the artifact will be published"
},
"dockerfile": {
"description": "Dockerfile path",
"type": "string"
},
"outputDocker": {
"type": "object",
"properties": {
"dockerfile": {
"$ref": "#/definitions/dockerfile",
"description": "Path to Dockerfile used to generate the docker image"
},
"image_name": {
"type": "string",
"description": "Image name for the generated docker image. Cannot include tag. Tag will be automatically generated based on project version."
},
"publish": {
"$ref": "#/definitions/outputDockerPublish",
"description": "Docker publishing information. If not present, no images will be published"
},
"vulnerability_scan": {
"type": "object",
"description": "Configuration for running vulnerability scans on published Docker images",
"title": "Vulnerability scan",
"properties": {
"enabled": {
"type": "boolean",
"default": true,
"description": "Whether the vulnerability scan step should be run"
}
},
"additionalProperties": false
},
"args": {
"type": "array",
"description": "List of build args (--build-arg) to pass in docker build",
"title": "Docker build args",
"items": {
"$ref": "#/definitions/outputDockerBuildArgs"
}
}
},
"required": ["dockerfile", "image_name"],
"additionalProperties": false
},
"outputDockerPublish": {
"type": "array",
"items": {
"$ref": "#/definitions/dockerReleaseChannel"
}
},
"outputDockerBuildArgs": {
"type": "object",
"additionalProperties": false,
"properties": {
"key": {
"type": "string",
"description": "ARG name"
},
"env": {
"type": "string",
"pattern": "^[A-Za-z_][A-Za-z0-9_]*$",
"description": "Environment variable whose value will be used to set the ARG"
},
"value": {
"type": "string",
"description": "Value of the ARG"
}
},
"required": ["key"],
"oneOf": [
{
"required": ["env"],
"not": {
"required": ["value"]
}
},
{
"required": ["value"],
"not": {
"required": ["env"]
}
}
]
},
"dockerReleaseChannel": {
"type": "object",
"properties": {
"channel": {
"$ref": "#/definitions/releaseChannel"
},
"branch": {
"$ref": "#/definitions/releaseChannelBranch"
},
"registry": {
"type": "string",
"description": "Docker registry. Must include protocol (http|https) and port",
"format": "uri"
},
"credentials": {
"$ref": "#/definitions/credentials",
"description": "Jenkins credentials ID for publishing into the specified Docker registry"
}
},
"required": ["channel", "branch", "registry", "credentials"],
"additionalProperties": false
},
"outputHelm": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Path to the folder with all required chart config files"
},
"updates": {
"type": "array",
"description": "Updates that must be done before packing Helm chart. It's a list of objects that specifies which updates must be done on which files",
"items": {
"$ref": "#/definitions/outputHelmUpdates"
}
},
"publish": {
"$ref": "#/definitions/outputHelmPublish",
"description": "Helm chart publishing configuration. If not present, no charts will be published"
}
},
"required": ["path", "publish", "updates"],
"additionalProperties": false
},
"outputHelmUpdates": {
"type": "object",
"additionalProperties": false,
"properties": {
"file": {
"type": "string",
"description": "Name (including path from Helm object path) of the file to be updated. Only supports yaml files"
},
"properties": {
"type": "array",
"description": "A list of properties to update. It can be updated with a fixed value or environment variable",
"items": {
"$ref": "#/definitions/outputHelmUpdatesProperties"
}
}
},
"required": ["file", "properties"]
},
"outputHelmUpdatesProperties": {
"type": "object",
"additionalProperties": false,
"properties": {
"key": {
"type": "string",
"description": "Yaml property (full path) to be updated"
},
"env": {
"type": "string",
"pattern": "^[A-Za-z_][A-Za-z0-9_]*$",
"description": "Environment variable whose value will be used to update the property"
},
"value": {
"type": "string",
"description": "Value to update the given property"
}
},
"required": ["key"],
"oneOf": [
{
"required": ["env"],
"not": {
"required": ["value"]
}
},
{
"required": ["value"],
"not": {
"required": ["env"]
}
}
]
},
"outputHelmPublish": {
"type": "array",
"items": {
"$ref": "#/definitions/helmReleaseChannel"
}
},
"helmReleaseChannel": {
"type": "object",
"properties": {
"channel": {
"$ref": "#/definitions/releaseChannel"
},
"branch": {
"$ref": "#/definitions/releaseChannelBranch"
},
"repository": {
"type": "string",
"format": "uri",
"description": "Helm chart repository. Must include protocol, host, port (if needed) and path"
},
"credentials": {
"$ref": "#/definitions/credentials",
"description": "Jenkins credentials Id for this repository for uploading the chart"
}
},
"required": ["channel", "branch", "repository", "credentials"],
"additionalProperties": false
},
"outputPackage": {
"type": "object",
"properties": {
"publish": {
"$ref": "#/definitions/outputPackagePublish",
"description": "Package publish configuration."
}
},
"required": ["publish"],
"additionalProperties": false
},
"outputPackagePublish": {
"type": "array",
"items": {
"$ref": "#/definitions/packagePublishChannel"
}
},
"packagePublishChannel": {
"type": "object",
"properties": {
"channel": {
"$ref": "#/definitions/releaseChannel"
},
"branch": {
"$ref": "#/definitions/releaseChannelBranch"
},
"registry": {
"type": "string",
"description": "NPM registry (env variable or registry URL)",
"examples": [
"NPM_PUBLISH_REGISTRY",
"NPM_SNAPSHOT_REGISTRY",
"https://registry.npmjs.org"
]
},
"credentials": {
"$ref": "#/definitions/credentials",
"description": "Jenkins credentials ID for publishing into the specified Docker registry"
},
"maven_releases_repo": {
"type": "string",
"description": "Maven repository for deploying releases"
},
"maven_snapshots_repo": {
"type": "string",
"description": "Maven repository for deploying snapshots"
},
"params": {
"type": "string",
"description": "Optional params for npm publish or mvn deploy command.",
"examples": ["--tag latest", "-Dmaven.test.skip=true"]
}
},
"required": ["channel", "branch"],
"additionalProperties": false
},
"cacheItem": {
"type": "object",
"properties": {
"type": {
"enum": ["maven", "npm", "local"],
"description": "Cache type",
"default": "maven"
},
"enabled": {
"type": "boolean",
"description": "Sets whether this cache type is enabled",
"default": false
},
"source": {
"type": "string",
"description": "Location of the cache in the Jenkins workspace",
"default": ".ci-cache/<type>"
},
"target": {
"type": "string",
"description": "Location of the cache directory inside the Docker container",
"default": "/container-path/directory"
}
},
"additionalProperties": false,
"required": ["type", "enabled"]
}
},
"description": "CI configuration for Amdocs Bill Experience projects",
"properties": {
"project": {
"description": "Project properties",
"type": "object",
"properties": {
"name": {
"description": "Project's name (used by Jenkins, Docker and Sonar)",
"type": "string"
},
"type": {
"description": "Project type",
"enum": ["npm", "maven", "mvn"],
"default": "mvn"
},
"settings": {
"description": "ID of a managed maven or npm Jenkins file",
"type": "string",
"examples": ["bx-maven-settings", "bx-npm-settings"]
}
},
"additionalProperties": false
},
"config": {
"type": "object",
"properties": {
"jenkins_runtime": {
"type": "object",
"properties": {
"docker": {
"type": "object",
"description": "Specifies how to build the Docker container (from an existing image or from a local Dockerfile)",
"properties": {
"image": {
"description": "Prebuilt Docker image (has precedence over dockerfile)",
"type": "string",
"examples": ["remote-host.com/image-name:tag"]
},
"dockerfile": {
"description": "Path to a local Dockerfile",
"$ref": "#/definitions/dockerfile",
"examples": [".ci/Dockerfile"]
}
},
"additionalProperties": false
}
},
"additionalProperties": false,
"required": ["docker"]
},
"branch": {
"type": "object",
"description": "Describes on which branch names a build will be run",
"properties": {
"branch_pattern": {
"$ref": "#/definitions/branchPattern"
},
"disable_validation": {
"description": "Disables branch name validation",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
},
"build": {
"type": "object",
"properties": {
"clean_workspace_after_run": {
"type": "boolean",
"description": "Whether Jenkins workspace should be cleaned after the build",
"default": true
},
"commit_time_threshold": {
"oneOf": [
{
"type": "integer",
"const": 0
},
{
"type": "string",
"pattern": "^\\d+[mhd]$"
}
],
"description": "Commit age threshold. Disables automated builds older than this parameter. When 0, this feature is disabled",
"default": false,
"examples": [0, "2m", "30m", "1d", "30m", "10d"]
},
"checkmarx": {
"$ref": "#/definitions/checkmarx",
"description": "Adds a Static Analysis stage for CheckMarx. See https://www.jenkins.io/doc/pipeline/steps/checkmarx/ for all the configuration options."
},
"static_analysis": {
"$ref": "#/definitions/sonar",
"description": "Adds a Static Analysis stage for Sonar."
}
},
"additionalProperties": false
},
"cache": {
"type": "object",
"description": "Cache configuration for projects built inside Docker containers",
"properties": {
"repository": {
"$ref": "#/definitions/binaryRepository"
},
"items": {
"type": "array",
"description": "List of cache types",
"items": {
"$ref": "#/definitions/cacheItem"
}
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"services": {
"type": "array",
"description": "Additional services required by the project or application.",
"items": {
"enum": [
"Postgres",
"Postgis",
"Redis",
"Mssql",
"Mysql",
"Mongodb",
"Elasticsearch"
]
},
"uniqueItems": true
},
"environment": {
"type": "object",
"description": "Custom environment variables to be added to the pipeline",
"propertyNames": {
"pattern": "^[A-Za-z_][A-Za-z0-9_]*$"
}
},
"jenkinsEnvironment": {
"type": "array",
"description": "Jenkins environment variables that are passed to the Docker container",
"uniqueItems": true,
"items": {
"pattern": "^[A-Za-z_][A-Za-z0-9_]*$",
"type": "string"
}
},
"stages": {
"type": "object",
"title": "Stages",
"description": "Defines the stages and steps required to build the project.",
"patternProperties": {
"^\\w+( \\w+)*$": {
"$ref": "#/definitions/stage",
"description": "Stage name in the Jenkins pipeline"
}
}
},
"output": {
"type": "object",
"description": "Describes artifacts generated after all the stages have been run",
"properties": {
"package": {
"$ref": "#/definitions/outputPackage",
"description": "Configuration for publishing NPM or Maven packages"
},
"docker": {
"$ref": "#/definitions/outputDocker",
"description": "Configuration for generating a Docker image"
},
"helm": {
"$ref": "#/definitions/outputHelm",
"description": "Configuration for generating a Helm chart"
}
},
"additionalProperties": false
},
"archive": {
"type": "array",
"description": "List of artifacts to archive (wildcards allowed). Check out https://www.jenkins.io/doc/pipeline/steps/core/#archiveartifacts-archive-the-artifacts",
"examples": ["target/*.jar", "**/*.jar", "target/out.txt"]
},
"timeout": {
"$ref": "#/definitions/timeout",
"description": "Build timeout in seconds",
"default": 600
}
},
"required": ["project", "stages"],
"type": "object"
}
| bxci |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_MutatingWebhook": {
"description": "MutatingWebhook describes an admission webhook and the resources and operations it applies to.",
"properties": {
"admissionReviewVersions": {
"description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. 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."
},
"reinvocationPolicy": {
"description": "reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation. Allowed values are \"Never\" and \"IfNeeded\".\n\nNever: the webhook will not be called more than once in a single admission evaluation.\n\nIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again. * webhooks that use this option may be reordered to minimize the number of additional invocations. * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead.\n\nDefaults to \"Never\".",
"type": "string"
},
"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_RuleWithOperations": {
"description": "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.",
"properties": {
"apiGroups": {
"description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"apiVersions": {
"description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"operations": {
"description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, or * for all operations. If '*' is present, the length of the slice must be one. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"resources": {
"description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"scope": {
"description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_ServiceReference": {
"description": "ServiceReference holds a reference to Service.legacy.k8s.io",
"properties": {
"name": {
"description": "`name` is the name of the service. Required",
"type": "string"
},
"namespace": {
"description": "`namespace` is the namespace of the service. Required",
"type": "string"
},
"path": {
"description": "`path` is an optional URL path which will be sent in any request to this service.",
"type": "string"
},
"port": {
"_format": "int32",
"description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).",
"type": "integer"
}
},
"required": [
"namespace",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_WebhookClientConfig": {
"description": "WebhookClientConfig contains the information to make a TLS connection with the webhook",
"properties": {
"caBundle": {
"_format": "byte",
"description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.",
"type": "string"
},
"service": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_ServiceReference",
"description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`."
},
"url": {
"description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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": "MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object. Deprecated in v1.16, planned for removal in v1.19. Use admissionregistration.k8s.io/v1 MutatingWebhookConfiguration 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",
"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": [
"MutatingWebhookConfiguration"
],
"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_MutatingWebhook"
},
"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": "MutatingWebhookConfiguration",
"version": "v1beta1"
}
]
} | kb_569_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EventSource": {
"description": "EventSource contains information for an event.",
"properties": {
"component": {
"description": "Component from which the event is generated.",
"type": "string"
},
"host": {
"description": "Node name on which the event is generated.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference": {
"description": "ObjectReference contains enough information to let you inspect or modify the referred object.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"fieldPath": {
"description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.",
"type": "string"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"namespace": {
"description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
"type": "string"
},
"resourceVersion": {
"description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_events_v1beta1_Event": {
"description": "Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system.",
"properties": {
"action": {
"description": "What action was taken/failed regarding to the regarding object.",
"type": "string"
},
"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"
},
"deprecatedCount": {
"_format": "int32",
"description": "Deprecated field assuring backward compatibility with core.v1 Event type",
"type": "integer"
},
"deprecatedFirstTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Deprecated field assuring backward compatibility with core.v1 Event type"
},
"deprecatedLastTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Deprecated field assuring backward compatibility with core.v1 Event type"
},
"deprecatedSource": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EventSource",
"description": "Deprecated field assuring backward compatibility with core.v1 Event type"
},
"eventTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime",
"description": "Required. Time when this Event was first observed."
},
"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": [
"Event"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta"
},
"note": {
"description": "Optional. A human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.",
"type": "string"
},
"reason": {
"description": "Why the action was taken.",
"type": "string"
},
"regarding": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference",
"description": "The object this Event is about. In most cases it's an Object reporting controller implements. E.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object."
},
"related": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference",
"description": "Optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object."
},
"reportingController": {
"description": "Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.",
"type": "string"
},
"reportingInstance": {
"description": "ID of the controller instance, e.g. `kubelet-xyzf`.",
"type": "string"
},
"series": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_events_v1beta1_EventSeries",
"description": "Data about the Event series this event represents or nil if it's a singleton Event."
},
"type": {
"description": "Type of this event (Normal, Warning), new types could be added in the future.",
"type": "string"
}
},
"required": [
"eventTime"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "events.k8s.io",
"kind": "Event",
"version": "v1beta1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_events_v1beta1_EventSeries": {
"description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.",
"properties": {
"count": {
"_format": "int32",
"description": "Number of occurrences in this series up to the last heartbeat time",
"type": "integer"
},
"lastObservedTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime",
"description": "Time when last Event from the series was seen before last heartbeat."
},
"state": {
"description": "Information whether this series is ongoing or finished. Deprecated. Planned removal for 1.18",
"type": "string"
}
},
"required": [
"count",
"lastObservedTime",
"state"
],
"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": "EventList is a list of Event objects.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"enum": [
"events.k8s.io/v1beta1"
],
"type": [
"string",
"null"
]
},
"items": {
"description": "Items is a list of schema objects.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_events_v1beta1_Event"
},
"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": [
"EventList"
],
"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": "events.k8s.io",
"kind": "EventList",
"version": "v1beta1"
}
]
} | kb_327_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema",
"id": "http://schema.dcos/acl/auth",
"title": "DCOS ACL: User authentication",
"type": "object",
"properties": {
"token": {
"title": "User authentication token",
"type": "string"
}
},
"required": [
"token"
]
} | o48805 |
{
"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": [
"base",
"height",
"length",
"width",
"radius"
],
"type": "object"
},
"shape": {
"description": "The name of the shape (e.g. triangle, rectangle, circle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_15a043b0 |
{
"properties": {
"base_price": {
"description": "The base price of an item",
"type": "number"
},
"discounts": {
"description": "The discounts applied to the item",
"items": {
"properties": {
"type": {
"description": "The type of discount (e.g., percentage, fixed)",
"type": "string"
},
"value": {
"description": "The value of the discount",
"type": "number"
}
},
"required": [
"type",
"value"
],
"type": "object"
},
"type": "array"
},
"tax_rate": {
"description": "The tax rate for the item",
"type": "number"
}
},
"required": [
"base_price",
"discounts",
"tax_rate"
],
"type": "object"
} | calculate_discounted_price_f6d5b62c |
{
"dependencies": {
"shape": {
"oneOf": [
{
"properties": {
"radius": {
"type": "number"
},
"shape": {
"const": "circle"
}
}
},
{
"properties": {
"length": {
"type": "number"
},
"shape": {
"const": "rectangle"
},
"width": {
"type": "number"
}
}
},
{
"properties": {
"base": {
"type": "number"
},
"height": {
"type": "number"
},
"shape": {
"const": "triangle"
}
}
}
]
}
},
"properties": {
"base": {
"description": "The base of the triangle (if shape is triangle)",
"type": "number"
},
"height": {
"description": "The height of the triangle (if shape is triangle)",
"type": "number"
},
"length": {
"description": "The length of the rectangle (if shape is rectangle)",
"type": "number"
},
"radius": {
"description": "The radius of the circle (if shape is circle)",
"type": "number"
},
"shape": {
"description": "The shape for which the area should be calculated",
"enum": [
"circle",
"rectangle",
"triangle"
],
"type": "string"
},
"width": {
"description": "The width of the rectangle (if shape is rectangle)",
"type": "number"
}
},
"required": [
"shape"
],
"type": "object"
} | calculate_area_530837db |
{
"properties": {
"dimensions": {
"properties": {
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius",
"length",
"width"
],
"type": "object"
},
"shape": {
"description": "The shape type (e.g., circle, rectangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_4b858043 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"notebookExecutionId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"notebookId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"applicationId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"status": {
"type": "string",
"enum": [
"queued",
"inProgress",
"completed",
"errored",
"timeout"
]
},
"executionRelativeTo": {
"type": "string",
"format": "date-time"
},
"maxAllowedRunMinutes": {
"type": "number"
},
"sourceType": {
"type": "string",
"enum": [
"flow",
"user",
"device",
"apiToken",
"notebook"
]
},
"sourceId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"runQueuedAt": {
"type": "string",
"format": "date-time"
},
"runStartedAt": {
"type": "string",
"format": "date-time"
},
"inputsCompletedAt": {
"type": "string",
"format": "date-time"
},
"notebookCompletedAt": {
"type": "string",
"format": "date-time"
},
"outputsCompletedAt": {
"type": "string",
"format": "date-time"
},
"templateContext": {
"type": "string",
"maxLength": 32767
},
"inputInfo": {
"type": "object",
"patternProperties": {
".*": {
"type": "object",
"properties": {
"size": {
"type": "number"
},
"url": {
"type": "string"
}
}
}
}
},
"outputInfo": {
"type": "object",
"patternProperties": {
".*": {
"type": "object",
"properties": {
"size": {
"type": "number"
},
"url": {
"type": "string"
},
"contentType": {
"type": "string"
}
}
}
}
},
"executionErrors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"message": {
"type": "string"
}
}
}
}
}
}
} | o9932 |
{
"id": "https://schema.management.azure.com/schemas/2017-11-01-preview/Microsoft.Management.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Microsoft.Management",
"description": "Microsoft Management Resource Types",
"resourceDefinitions": {},
"tenant_resourceDefinitions": {
"managementGroups": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2017-11-01-preview"
]
},
"displayName": {
"type": "string",
"description": "The friendly name of the management group."
},
"name": {
"type": "string",
"description": "Management Group ID."
},
"parentId": {
"type": "string",
"description": "(Optional) The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000"
},
"resources": {
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/managementGroups_subscriptions_childResource"
}
]
}
},
"type": {
"type": "string",
"enum": [
"Microsoft.Management/managementGroups"
]
}
},
"required": [
"apiVersion",
"name",
"type"
],
"description": "Microsoft.Management/managementGroups"
},
"managementGroups_subscriptions": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2017-11-01-preview"
]
},
"name": {
"type": "string",
"description": "Subscription ID."
},
"type": {
"type": "string",
"enum": [
"Microsoft.Management/managementGroups/subscriptions"
]
}
},
"required": [
"apiVersion",
"name",
"type"
],
"description": "Microsoft.Management/managementGroups/subscriptions"
}
},
"definitions": {
"managementGroups_subscriptions_childResource": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2017-11-01-preview"
]
},
"name": {
"type": "string",
"description": "Subscription ID."
},
"type": {
"type": "string",
"enum": [
"subscriptions"
]
}
},
"required": [
"apiVersion",
"name",
"type"
],
"description": "Microsoft.Management/managementGroups/subscriptions"
}
},
"properties": {
"tenant_resourceDefinitions.managementGroups": {
"$ref": "#/tenant_resourceDefinitions/managementGroups"
},
"tenant_resourceDefinitions.managementGroups_subscriptions": {
"$ref": "#/tenant_resourceDefinitions/managementGroups_subscriptions"
},
"managementGroups_subscriptions_childResource": {
"$ref": "#/definitions/managementGroups_subscriptions_childResource"
}
},
"required": [
"tenant_resourceDefinitions.managementGroups",
"tenant_resourceDefinitions.managementGroups_subscriptions",
"managementGroups_subscriptions_childResource"
]
} | o1707 |
{
"properties": {
"accounting": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"attribute1": {
"type": "string"
},
"attribute10": {
"type": "string"
},
"attribute11": {
"type": "string"
},
"attribute12": {
"type": "string"
},
"attribute13": {
"type": "string"
},
"attribute14": {
"type": "string"
},
"attribute15": {
"type": "string"
},
"attribute16": {
"type": "string"
},
"attribute2": {
"type": "string"
},
"attribute3": {
"type": "string"
},
"attribute4": {
"type": "string"
},
"attribute5": {
"type": "string"
},
"attribute6": {
"type": "string"
},
"attribute7": {
"type": "string"
},
"attribute8": {
"type": "string"
},
"attribute9": {
"type": "string"
},
"attributes": {
"type": "string"
},
"auditfailedcmds": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"authorization": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"authtimeout": {
"type": "integer"
},
"defaultauthenticationgroup": {
"type": "string"
},
"failure": {
"readonly": true,
"type": "integer"
},
"groupattrname": {
"type": "string"
},
"name": {
"type": "string"
},
"serverip": {
"type": "string"
},
"serverport": {
"type": "integer"
},
"success": {
"readonly": true,
"type": "integer"
},
"tacacssecret": {
"type": "string"
}
},
"title": "authenticationtacacsaction",
"type": "object"
} | o30153 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$",
"type": "string"
},
"analytics_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations."
},
"body": {
"description": "The main content provided as HTML rendered from govspeak",
"type": "string"
},
"brexit_no_deal_notice": {
"description": "A list of URLs and titles for a brexit no deal notice.",
"items": {
"additionalProperties": false,
"properties": {
"href": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"href"
],
"type": "object"
},
"type": "array"
},
"change_history": {
"items": {
"additionalProperties": false,
"properties": {
"note": {
"description": "A summary of the change",
"type": "string"
},
"public_timestamp": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"public_timestamp",
"note"
],
"type": "object"
},
"type": "array"
},
"description": {
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"additionalProperties": false,
"properties": {
"alternative_nothern_ireland_url": {
"type": "string"
},
"alternative_scotland_url": {
"type": "string"
},
"alternative_wales_url": {
"type": "string"
},
"attachments": {
"description": "An ordered list of asset links",
"items": {
"$ref": "#/definitions/file_attachment_asset"
},
"type": "array"
},
"body": {
"$ref": "#/definitions/body"
},
"brexit_no_deal_notice": {
"$ref": "#/definitions/brexit_no_deal_notice"
},
"change_history": {
"$ref": "#/definitions/change_history"
},
"emphasised_organisations": {
"$ref": "#/definitions/emphasised_organisations"
},
"first_public_at": {
"$ref": "#/definitions/first_public_at"
},
"government": {
"$ref": "#/definitions/government"
},
"image": {
"$ref": "#/definitions/image"
},
"national_applicability": {
"$ref": "#/definitions/national_applicability"
},
"political": {
"$ref": "#/definitions/political"
},
"related_mainstream_content": {
"description": "The ordered list of related and additional mainstream content item IDs. Use in conjunction with the (unordered) `related_mainstream_content` link.",
"items": {
"$ref": "#/definitions/guid"
},
"type": "array"
},
"tags": {
"$ref": "#/definitions/tags"
}
},
"required": [
"body",
"political"
],
"type": "object"
},
"emphasised_organisations": {
"description": "The content ids of the organisations that should be displayed first in the list of organisations related to the item, these content ids must be present in the item organisation links hash.",
"items": {
"$ref": "#/definitions/guid"
},
"type": "array"
},
"file_attachment_asset": {
"additionalProperties": false,
"properties": {
"accessible": {
"type": "boolean"
},
"alternative_format_contact_email": {
"type": "string"
},
"attachment_type": {
"enum": [
"file"
],
"type": "string"
},
"content_type": {
"type": "string"
},
"file_size": {
"type": "integer"
},
"filename": {
"type": "string"
},
"id": {
"type": "string"
},
"locale": {
"$ref": "#/definitions/locale"
},
"number_of_pages": {
"type": "integer"
},
"preview_url": {
"_format": "uri",
"type": "string"
},
"title": {
"type": "string"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"attachment_type",
"content_type",
"id",
"url"
],
"type": "object"
},
"first_public_at": {
"_format": "date-time",
"description": "DEPRECATED. The date the content was first published. Used in details. Deprecated in favour of top level `first_published_at`.",
"type": "string"
},
"first_published_at": {
"_format": "date-time",
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"frontend_links": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"frontend_links_with_base_path": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"government": {
"additionalProperties": false,
"description": "DEPRECATED: Content should be associated with a government through a link",
"properties": {
"current": {
"description": "Is the government that published this document still the current government.",
"type": "boolean"
},
"slug": {
"description": "Government slug, used for analytics, eg '1970-to-1974-conservative-government'.",
"type": "string"
},
"title": {
"description": "Name of the government that first published this document, eg '1970 to 1974 Conservative government'.",
"type": "string"
}
},
"required": [
"title",
"slug",
"current"
],
"type": "object"
},
"guid": {
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$",
"type": "string"
},
"image": {
"additionalProperties": false,
"properties": {
"alt_text": {
"type": "string"
},
"caption": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"credit": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"high_resolution_url": {
"_format": "uri",
"description": "URL to a high resolution version of the image, for use by third parties such as Twitter, Facebook or Slack. Used by the machine readable metadata component. Don't use this on user-facing web pages, as it might be very large.",
"type": "string"
},
"url": {
"_format": "uri",
"description": "URL to the image. The image should be in a suitable resolution for display on the page.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"locale": {
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
],
"type": "string"
},
"nation_applicability": {
"additionalProperties": false,
"description": "An object specifying the applicability of a particular nation.",
"properties": {
"alternative_url": {
"description": "An optional alternative URL to link to for more information on this content item pertaining to this nation.",
"type": "string"
},
"applicable": {
"description": "Whether the content applies to this nation or not.",
"type": "boolean"
},
"label": {
"description": "The pretty-printed, translated label for this nation.",
"type": "string"
}
},
"type": "object"
},
"national_applicability": {
"additionalProperties": false,
"description": "An object specifying the applicable nations for this content item. If it applies to all nations, it should be omitted.",
"properties": {
"england": {
"$ref": "#/definitions/nation_applicability"
},
"northern_ireland": {
"$ref": "#/definitions/nation_applicability"
},
"scotland": {
"$ref": "#/definitions/nation_applicability"
},
"wales": {
"$ref": "#/definitions/nation_applicability"
}
},
"type": "object"
},
"political": {
"description": "If the content is considered political in nature, reflecting views of the government it was published under.",
"type": "boolean"
},
"public_updated_at": {
"_format": "date-time",
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"publishing_app_name": {
"description": "The application that published this item.",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
],
"type": "string"
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"publishing_scheduled_at": {
"_format": "date-time",
"description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.",
"type": "string"
},
"rendering_app": {
"description": "The application that renders this item.",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
],
"type": "string"
},
"scheduled_publishing_delay_seconds": {
"description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.",
"type": "integer"
},
"tags": {
"additionalProperties": false,
"description": "Field used by email-alert-api to trigger email alerts for subscriptions to topics (gov.uk/topic) and policies (gov.uk/policies).",
"properties": {
"additional_topics": {
"items": {
"type": "string"
},
"type": "array"
},
"browse_pages": {
"items": {
"type": "string"
},
"type": "array"
},
"policies": {
"items": {
"type": "string"
},
"type": "array"
},
"primary_topic": {
"items": {
"type": "string"
},
"type": "array"
},
"topics": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"title": {
"type": "string"
},
"withdrawn_notice": {
"additionalProperties": false,
"properties": {
"explanation": {
"type": "string"
},
"withdrawn_at": {
"format": "date-time"
}
},
"type": "object"
}
},
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"enum": [
"detailed_guide",
"detailed_guidance"
],
"type": "string"
},
"first_published_at": {
"anyOf": [
{
"$ref": "#/definitions/first_published_at"
},
{
"type": "null"
}
]
},
"links": {
"additionalProperties": false,
"properties": {
"available_translations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"child_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"children": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"document_collections": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"facet_groups": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers links from content back to finders the content is surfaced on"
},
"government": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The government associated with this document",
"maxItems": 1
},
"lead_organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"level_one_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"mainstream_browse_pages": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The user needs this piece of content meets."
},
"ministers": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The parent content item.",
"maxItems": 1
},
"part_of_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policies": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policy_areas": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"related_guides": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"related_mainstream_content": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"related_policies": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"related_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"role_appointments": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"secondary_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Prototype-stage taxonomy label for this content item"
},
"topic_taxonomy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"topics": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"need_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"enum": [
"alpha",
"beta",
"live"
],
"type": "string"
},
"public_updated_at": {
"anyOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"publishing_request_id": {
"$ref": "#/definitions/publishing_request_id"
},
"publishing_scheduled_at": {
"anyOf": [
{
"$ref": "#/definitions/publishing_scheduled_at"
},
{
"type": "null"
}
]
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"scheduled_publishing_delay_seconds": {
"anyOf": [
{
"$ref": "#/definitions/scheduled_publishing_delay_seconds"
},
{
"type": "null"
}
]
},
"schema_name": {
"enum": [
"detailed_guide"
],
"type": "string"
},
"title": {
"$ref": "#/definitions/title"
},
"updated_at": {
"_format": "date-time",
"type": "string"
},
"withdrawn_notice": {
"$ref": "#/definitions/withdrawn_notice"
}
},
"required": [
"base_path",
"content_id",
"description",
"details",
"document_type",
"links",
"locale",
"public_updated_at",
"schema_name",
"title",
"updated_at"
],
"type": "object"
} | o21188 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_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_v2beta1_ExternalMetricSource": {
"description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). Exactly one \"target\" type should be set.",
"properties": {
"metricName": {
"description": "metricName is the name of the metric in question.",
"type": "string"
},
"metricSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "metricSelector is used to identify a specific time series within a given metric."
},
"targetAverageValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue."
},
"targetValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue."
}
},
"required": [
"metricName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ObjectMetricSource": {
"description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
"properties": {
"averageValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
},
"metricName": {
"description": "metricName is the name of the metric in question.",
"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."
},
"target": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference",
"description": "target is the described Kubernetes object."
},
"targetValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "targetValue is the target value of the metric (as a quantity)."
}
},
"required": [
"target",
"metricName",
"targetValue"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_PodsMetricSource": {
"description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.",
"properties": {
"metricName": {
"description": "metricName is the name of the metric in question",
"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."
},
"targetAverageValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
}
},
"required": [
"metricName",
"targetAverageValue"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ResourceMetricSource": {
"description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.",
"properties": {
"name": {
"description": "name is the name of the resource in question.",
"type": "string"
},
"targetAverageUtilization": {
"_format": "int32",
"description": "targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.",
"type": "integer"
},
"targetAverageValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type."
}
},
"required": [
"name"
],
"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": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).",
"properties": {
"external": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ExternalMetricSource",
"description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)."
},
"object": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ObjectMetricSource",
"description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
},
"pods": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_PodsMetricSource",
"description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value."
},
"resource": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ResourceMetricSource",
"description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
},
"type": {
"description": "type is the type of metric source. It should be one of \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object.",
"type": [
"string",
"null"
]
}
},
"required": [
"type"
],
"type": "object"
} | kb_552_Normalized |
{
"properties": {
"Snmpoid": {
"type": "string"
},
"acctapplicationid": {
"type": "object"
},
"action": {
"enum": [
"NONE",
"LOG",
"DOWN"
],
"type": "string"
},
"alertretries": {
"type": "integer"
},
"application": {
"type": "string"
},
"attribute": {
"type": "string"
},
"authapplicationid": {
"type": "object"
},
"basedn": {
"type": "string"
},
"binddn": {
"type": "string"
},
"customheaders": {
"type": "string"
},
"database": {
"type": "string"
},
"destip": {
"type": "string"
},
"destport": {
"type": "integer"
},
"deviation": {
"type": "integer"
},
"dispatcherip": {
"type": "string"
},
"dispatcherport": {
"type": "integer"
},
"domain": {
"type": "string"
},
"downtime": {
"type": "integer"
},
"dup_state": {
"enum": [
"ENABLED",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"dup_weight": {
"readonly": true,
"type": "integer"
},
"dynamicinterval": {
"readonly": true,
"type": "integer"
},
"dynamicresponsetimeout": {
"readonly": true,
"type": "integer"
},
"evalrule": {
"type": "string"
},
"failureretries": {
"type": "integer"
},
"filename": {
"type": "string"
},
"filter": {
"type": "string"
},
"firmwarerevision": {
"type": "integer"
},
"group": {
"type": "string"
},
"hostipaddress": {
"type": "string"
},
"hostname": {
"type": "string"
},
"httprequest": {
"type": "string"
},
"inbandsecurityid": {
"enum": [
"NO_INBAND_SECURITY",
"TLS"
],
"type": "string"
},
"interval": {
"type": "integer"
},
"ipaddress": {
"type": "object"
},
"iptunnel": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"kcdaccount": {
"type": "string"
},
"lasversion": {
"type": "string"
},
"logonpointname": {
"type": "string"
},
"lrtm": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"lrtmconf": {
"readonly": true,
"type": "integer"
},
"lrtmconfstr": {
"enum": [
"ENABLED",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"maxforwards": {
"type": "integer"
},
"metric": {
"type": "string"
},
"metrictable": {
"type": "string"
},
"metricthreshold": {
"type": "integer"
},
"metricweight": {
"type": "integer"
},
"monitorname": {
"type": "string"
},
"mssqlprotocolversion": {
"enum": [
"70",
"2000",
"2000SP1",
"2005",
"2008",
"2008R2",
"2012",
"2014"
],
"type": "string"
},
"multimetrictable": {
"readonly": true,
"type": "object"
},
"netprofile": {
"type": "string"
},
"oraclesid": {
"type": "string"
},
"originhost": {
"type": "string"
},
"originrealm": {
"type": "string"
},
"password": {
"type": "string"
},
"productname": {
"type": "string"
},
"query": {
"type": "string"
},
"querytype": {
"enum": [
"Address",
"Zone",
"AAAA"
],
"type": "string"
},
"radaccountsession": {
"type": "string"
},
"radaccounttype": {
"type": "integer"
},
"radapn": {
"type": "string"
},
"radframedip": {
"type": "string"
},
"radkey": {
"type": "string"
},
"radmsisdn": {
"type": "string"
},
"radnasid": {
"type": "string"
},
"radnasip": {
"type": "string"
},
"recv": {
"type": "string"
},
"respcode": {
"type": "object"
},
"resptimeout": {
"type": "integer"
},
"resptimeoutthresh": {
"type": "integer"
},
"retries": {
"type": "integer"
},
"reverse": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"rtsprequest": {
"type": "string"
},
"scriptargs": {
"type": "string"
},
"scriptname": {
"type": "string"
},
"secondarypassword": {
"type": "string"
},
"secure": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"send": {
"type": "string"
},
"servicegroupname": {
"type": "string"
},
"servicename": {
"type": "string"
},
"sipmethod": {
"enum": [
"OPTIONS",
"INVITE",
"REGISTER"
],
"type": "string"
},
"sipreguri": {
"type": "string"
},
"sipuri": {
"type": "string"
},
"sitepath": {
"type": "string"
},
"snmpcommunity": {
"type": "string"
},
"snmpthreshold": {
"type": "string"
},
"snmpversion": {
"enum": [
"V1",
"V2"
],
"type": "string"
},
"sqlquery": {
"type": "string"
},
"sslprofile": {
"type": "string"
},
"state": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"storedb": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"storefrontacctservice": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"storefrontcheckbackendservices": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"storename": {
"type": "string"
},
"successretries": {
"type": "integer"
},
"supportedvendorids": {
"type": "object"
},
"tos": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"tosid": {
"type": "integer"
},
"transparent": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"trofscode": {
"type": "integer"
},
"trofsstring": {
"type": "string"
},
"type": {
"enum": [
"PING",
"TCP",
"HTTP",
"TCP-ECV",
"HTTP-ECV",
"UDP-ECV",
"DNS",
"FTP",
"LDNS-PING",
"LDNS-TCP",
"LDNS-DNS",
"RADIUS",
"USER",
"HTTP-INLINE",
"SIP-UDP",
"SIP-TCP",
"LOAD",
"FTP-EXTENDED",
"SMTP",
"SNMP",
"NNTP",
"MYSQL",
"MYSQL-ECV",
"MSSQL-ECV",
"ORACLE-ECV",
"LDAP",
"POP3",
"CITRIX-XML-SERVICE",
"CITRIX-WEB-INTERFACE",
"DNS-TCP",
"RTSP",
"ARP",
"CITRIX-AG",
"CITRIX-AAC-LOGINPAGE",
"CITRIX-AAC-LAS",
"CITRIX-XD-DDC",
"ND6",
"CITRIX-WI-EXTENDED",
"DIAMETER",
"RADIUS_ACCOUNTING",
"STOREFRONT",
"APPC",
"SMPP",
"CITRIX-XNC-ECV",
"CITRIX-XDM",
"CITRIX-STA-SERVICE",
"CITRIX-STA-SERVICE-NHOP"
],
"type": "string"
},
"units1": {
"enum": [
"SEC",
"MSEC",
"MIN"
],
"type": "string"
},
"units2": {
"enum": [
"SEC",
"MSEC",
"MIN"
],
"type": "string"
},
"units3": {
"enum": [
"SEC",
"MSEC",
"MIN"
],
"type": "string"
},
"units4": {
"enum": [
"SEC",
"MSEC",
"MIN"
],
"type": "string"
},
"username": {
"type": "string"
},
"validatecred": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"vendorid": {
"type": "integer"
},
"vendorspecificacctapplicationids": {
"type": "object"
},
"vendorspecificauthapplicationids": {
"type": "object"
},
"vendorspecificvendorid": {
"type": "integer"
},
"weight": {
"readonly": true,
"type": "integer"
}
},
"title": "lbmonitor",
"type": "object"
} | o30532 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/SetCell.args.scheme.json",
"title": "\u0410\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u044b \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b SetCell",
"description": "\u0421\u0445\u0435\u043c\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u043a \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u043c\u0443 \u0432\u044b\u0437\u043e\u0432\u0443 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b SetCell",
"type": "object",
"definitions": {
"MatrixIndex": {
"description": "\u0418\u043d\u0434\u0435\u043a\u0441 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u043c\u0430\u0442\u0440\u0438\u0446\u044b",
"type": "integer",
"minimum": 0
}
},
"properties": {
"t_id": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 t_id",
"type": "number"
},
"key": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 key",
"$ref": "#/definitions/MatrixIndex"
},
"code": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 code",
"$ref": "#/definitions/MatrixIndex"
},
"text": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 text",
"type": "string"
},
"value": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 value",
"type": [
"number",
"null"
]
}
},
"additionalProperties": false,
"required": [
"t_id",
"key",
"code",
"text"
]
} | o5163 |
{
"type": "array",
"decription": "Array of objects, each represents sort to be performed on the results of a search criteria. For mutlisorts the first sort takes precedence.",
"items": {
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "Field to sort by."
},
"sort_type": {
"enum": [
"ASC",
"DESC"
],
"description": "Type of sort. See shelf.search.sort_type.SortType"
},
"sort_flag": {
"enum": [
"VERSION"
],
"description": "Additional sort critieria. See shelf.search.sort_flag.SortFlag"
}
},
"required": [
"field"
]
},
"$schema": "http://json-schema.org/draft-04/schema#"
} | o64024 |
{
"description": "Entity returned after successfully authenticating.",
"properties": {
"expires": {
"description": "Expiration time of the token.",
"type": "string"
},
"token": {
"description": "A *JSON Web Token* that is valid for 15 minutes.",
"type": "string"
},
"user": {
"description": "The user profile of the authenticated user.",
"properties": {
"_id": {
"description": "Unique identifier for a user.",
"pattern": "^[a-z0-9_-]{7,}$",
"readOnly": true,
"type": "string"
},
"_plan": {
"description": "The user's current subscription plan.",
"type": "string"
},
"created_at": {
"description": "Timestamp when the user was created.",
"readOnly": true,
"type": "string"
},
"email": {
"description": "The email address of the user",
"format": "email",
"type": "string",
"unique": true
},
"gravatar_id": {
"description": "Gravatar ID, see [documentation](https://en.gravatar.com/site/implement/).",
"pattern": "^[a-f0-9]{32}$",
"readOnly": true,
"type": "string"
},
"is_active": {
"description": "Whether the user is able to login. Set to `false` to ban a user.",
"type": "boolean"
},
"name": {
"description": "Display name, initially set to user name.",
"maxLength": 30,
"minLength": 3,
"type": "string"
},
"permissions": {
"description": "Set of permissions for that user, see [permission](/api/permissions).",
"readOnly": true,
"type": "object"
},
"provider": {
"description": "How the user is authenticated. For local accounts this is set to `local`, otherwise to the name of the OAuth2 provider.",
"enum": [
"local",
"github"
],
"readOnly": true,
"type": "string"
},
"roles": {
"description": "List of roles the user belongs to.",
"enum": [
"root",
"admin",
"contributor",
"member"
],
"type": "array"
},
"username": {
"description": "Username used when locally logging in.",
"maxLength": 30,
"minLength": 3,
"type": "string",
"unique": true
}
},
"title": "User Profile",
"type": "object"
}
},
"required": [
"username",
"password"
],
"title": "Authentication Response",
"type": "object"
} | o84343 |
{
"properties": {
"coordinates1": {
"properties": {
"latitude": {
"description": "The latitude of the first coordinate",
"type": "number"
},
"longitude": {
"description": "The longitude of the first coordinate",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
},
"coordinates2": {
"properties": {
"latitude": {
"description": "The latitude of the second coordinate",
"type": "number"
},
"longitude": {
"description": "The longitude of the second coordinate",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
}
},
"required": [
"coordinates1",
"coordinates2"
],
"type": "object"
} | calculate_distance_efe293ea |
{
"definitions": {
"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_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_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_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"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"
} | kb_522_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"pets": {
"type": "object",
"properties": {
"dog": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 0,
"maxItems": 42
}
}
}
},
"properties": {
"pets": {
"$ref": "#/definitions/pets"
}
},
"required": [
"pets"
]
} | o41692 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"location": {
"type": "object",
"properties": {
"alias": {
"type": "string"
},
"address": {
"type": "string"
},
"coordinates": {
"type": "object",
"properties": {
"lat": {
"type": "number"
},
"lng": {
"type": "number"
}
},
"required": [
"lat",
"lng"
]
}
},
"required": [
"alias",
"address",
"coordinates"
]
},
"contact": {
"type": "object",
"properties": {
"phone": {
"type": "string"
}
},
"required": [
"phone"
]
},
"priceRange": {
"type": "object",
"properties": {
"from": {
"type": "number"
},
"to": {
"type": "number"
}
},
"required": [
"from",
"to"
]
},
"menu": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"price": {
"type": "number"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"name",
"price"
]
}
}
},
"additionalProperties": false
} | o19365 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"type": "object",
"description": "details of the information an app holds against a category node, e.g. the testimonials of employees in the Eastern region IT org",
"properties": {
"summary": {
"type": "string",
"description": "Details in markdown format with \n between lines, for rendering to a user interested in this node, capped at 1000 visible characters"
}
},
"required": [
"summary"
],
"additionalProperties": false
} | o79557 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_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_v2beta1_ExternalMetricSource": {
"description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). Exactly one \"target\" type should be set.",
"properties": {
"metricName": {
"description": "metricName is the name of the metric in question.",
"type": "string"
},
"metricSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "metricSelector is used to identify a specific time series within a given metric."
},
"targetAverageValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue."
},
"targetValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue."
}
},
"required": [
"metricName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_MetricSpec": {
"description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).",
"properties": {
"external": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ExternalMetricSource",
"description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)."
},
"object": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ObjectMetricSource",
"description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
},
"pods": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_PodsMetricSource",
"description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value."
},
"resource": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ResourceMetricSource",
"description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
},
"type": {
"description": "type is the type of metric source. It should be one of \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object.",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ObjectMetricSource": {
"description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
"properties": {
"averageValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
},
"metricName": {
"description": "metricName is the name of the metric in question.",
"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."
},
"target": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference",
"description": "target is the described Kubernetes object."
},
"targetValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "targetValue is the target value of the metric (as a quantity)."
}
},
"required": [
"target",
"metricName",
"targetValue"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_PodsMetricSource": {
"description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.",
"properties": {
"metricName": {
"description": "metricName is the name of the metric in question",
"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."
},
"targetAverageValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
}
},
"required": [
"metricName",
"targetAverageValue"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ResourceMetricSource": {
"description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.",
"properties": {
"name": {
"description": "name is the name of the resource in question.",
"type": "string"
},
"targetAverageUtilization": {
"_format": "int32",
"description": "targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.",
"type": "integer"
},
"targetAverageValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type."
}
},
"required": [
"name"
],
"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": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.",
"properties": {
"maxReplicas": {
"description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"metrics": {
"description": "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_MetricSpec"
},
"type": [
"array",
"null"
]
},
"minReplicas": {
"description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"scaleTargetRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference",
"description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count."
}
},
"required": [
"scaleTargetRef",
"maxReplicas"
],
"type": "object"
} | kb_403_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_RoleRef": {
"description": "RoleRef contains information that points to the role being used",
"properties": {
"apiGroup": {
"description": "APIGroup is the group for the resource being referenced",
"type": "string"
},
"kind": {
"description": "Kind is the type of resource being referenced",
"type": "string"
},
"name": {
"description": "Name is the name of resource being referenced",
"type": "string"
}
},
"required": [
"apiGroup",
"kind",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_Subject": {
"description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.",
"properties": {
"apiGroup": {
"description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.",
"type": "string"
},
"kind": {
"description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.",
"type": "string"
},
"name": {
"description": "Name of the object being referenced.",
"type": "string"
},
"namespace": {
"description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.",
"type": "string"
}
},
"required": [
"kind",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBinding, and will no longer be served in v1.20.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": [
"string",
"null"
]
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"ClusterRoleBinding"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata."
},
"roleRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_RoleRef",
"description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error."
},
"subjects": {
"description": "Subjects holds references to the objects the role applies to.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_Subject"
},
"type": [
"array",
"null"
]
}
},
"required": [
"roleRef"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "rbac.authorization.k8s.io",
"kind": "ClusterRoleBinding",
"version": "v1beta1"
}
]
} | kb_90_Normalized |
{
"additionalProperties": false,
"description": "Schema for a AWS CloudFront web distribution access log event. Version released 21 Oct 2013",
"properties": {
"cIp": {
"maxLength": 45,
"type": [
"string",
"null"
]
},
"csBytes": {
"type": [
"number",
"null"
]
},
"csCookie": {
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"csHost": {
"maxLength": 2000,
"type": [
"string",
"null"
]
},
"csMethod": {
"maxLength": 3,
"type": [
"string",
"null"
]
},
"csProtocol": {
"enum": [
"http",
"https",
null
]
},
"csReferer": {
"maxLength": 8192,
"type": [
"string",
"null"
]
},
"csUriQuery": {
"maxLength": 8192,
"type": [
"string",
"null"
]
},
"csUriStem": {
"maxLength": 8192,
"type": [
"string",
"null"
]
},
"csUserAgent": {
"maxLength": 2000,
"type": [
"string",
"null"
]
},
"dateTime": {
"_format": "date-time",
"type": "string"
},
"scBytes": {
"type": [
"number",
"null"
]
},
"scStatus": {
"maxLength": 3,
"type": [
"string",
"null"
]
},
"xEdgeLocation": {
"maxLength": 32,
"type": [
"string",
"null"
]
},
"xEdgeRequestId": {
"maxLength": 2000,
"type": [
"string",
"null"
]
},
"xEdgeResultType": {
"maxLength": 32,
"type": [
"string",
"null"
]
},
"xHostHeader": {
"maxLength": 2000,
"type": [
"string",
"null"
]
}
},
"required": [
"dateTime"
],
"self": {
"format": "jsonschema",
"name": "wd_access_log",
"vendor": "com.amazon.aws.cloudfront",
"version": "1-0-2"
},
"type": "object"
} | sp_3_Normalized |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"version": "1.2.0",
"title": "NameArray",
"type": "object",
"definitions": {
"nameTableRow": {
"properties": {
"min": {
"type": "integer"
},
"max": {
"type": "integer"
},
"result": {
"type": "string"
}
},
"required": [
"min",
"max",
"result"
],
"additionalProperties": false
},
"nameTable": {
"properties": {
"option": {
"type": "string"
},
"diceType": {
"type": "integer"
},
"table": {
"type": "array",
"items": {
"$ref": "#/definitions/nameTableRow"
}
}
},
"required": [
"option",
"table"
],
"additionalProperties": false
},
"name": {
"properties": {
"name": {
"type": "string"
},
"source": {
"type": "string"
},
"page": {
"type": "integer"
},
"tables": {
"type": "array",
"items": {
"$ref": "#/definitions/nameTable"
}
}
},
"required": [
"name",
"source",
"tables"
],
"additionalProperties": false
}
},
"properties": {
"name": {
"type": "array",
"items": {
"$ref": "#/definitions/name"
}
}
},
"required": [
"name"
],
"additionalProperties": false
} | o15203 |
{
"description": "Sysctl defines a kernel parameter to be set",
"properties": {
"name": {
"description": "Name of a property to set",
"type": [
"string",
"null"
]
},
"value": {
"description": "Value of a property to set",
"type": [
"string",
"null"
]
}
},
"required": [
"name",
"value"
],
"type": "object"
} | kb_1056_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"id": "https://eddn.edcd.io/schemas/blackmarket/1#",
"properties": {
"$schemaRef": {
"type": "string"
},
"header": {
"additionalProperties": true,
"properties": {
"gatewayTimestamp": {
"_format": "date-time",
"description": "Timestamp upon receipt at the gateway. If present, this property will be overwritten by the gateway; submitters are not intended to populate this property.",
"type": "string"
},
"softwareName": {
"type": "string"
},
"softwareVersion": {
"type": "string"
},
"uploaderID": {
"type": "string"
}
},
"required": [
"uploaderID",
"softwareName",
"softwareVersion"
],
"type": "object"
},
"message": {
"additionalProperties": true,
"description": "Contains all properties from the listed events in the client's journal minus Localised strings and the properties marked below as 'disallowed'",
"properties": {
"marketId": {
"type": "number"
},
"name": {
"description": "Commodity name as returned by the MarketSell entry in the Journal",
"minLength": 1,
"type": "string"
},
"prohibited": {
"description": "Whether the commodity is prohibited at this station",
"type": "boolean"
},
"sellPrice": {
"description": "Price to sell to the market",
"type": "integer"
},
"stationName": {
"minLength": 1,
"type": "string"
},
"systemName": {
"minLength": 1,
"type": "string"
},
"timestamp": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"systemName",
"stationName",
"timestamp",
"name",
"sellPrice",
"prohibited"
],
"type": "object"
}
},
"required": [
"$schemaRef",
"header",
"message"
],
"type": "object"
} | o4177 |
{
"title": "JSON schema for ESLint configuration files",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"definitions": {
"rule": {
"oneOf": [
{
"description": "ESLint rule\n\n0 - turns the rule off\n1 - turn the rule on as a warning (doesn't affect exit code)\n2 - turn the rule on as an error (exit code is 1 when triggered)\n",
"type": "integer",
"minimum": 0,
"maximum": 2
},
{
"description": "ESLint rule\n\n\"off\" - turns the rule off\n\"warn\" - turn the rule on as a warning (doesn't affect exit code)\n\"error\" - turn the rule on as an error (exit code is 1 when triggered)\n",
"type": "string",
"enum": [
"off",
"warn",
"error"
]
},
{
"type": "array"
}
]
},
"possibleErrors": {
"properties": {
"comma-dangle": {
"$ref": "#/definitions/rule",
"description": "Require or disallow trailing commas"
},
"no-cond-assign": {
"$ref": "#/definitions/rule",
"description": "Disallow assignment operators in conditional expressions"
},
"no-console": {
"$ref": "#/definitions/rule",
"description": "Disallow the use of console"
},
"no-constant-condition": {
"$ref": "#/definitions/rule",
"description": "Disallow constant expressions in conditions"
},
"no-control-regex": {
"$ref": "#/definitions/rule",
"description": "Disallow control characters in regular expressions"
},
"no-debugger": {
"$ref": "#/definitions/rule",
"description": "Disallow the use of debugger"
},
"no-dupe-args": {
"$ref": "#/definitions/rule",
"description": "Disallow duplicate arguments in function definitions"
},
"no-dupe-keys": {
"$ref": "#/definitions/rule",
"description": "Disallow duplicate keys in object literals"
},
"no-duplicate-case": {
"$ref": "#/definitions/rule",
"description": "Disallow duplicate case labels"
},
"no-empty": {
"$ref": "#/definitions/rule",
"description": "Disallow empty block statements"
},
"no-empty-character-class": {
"$ref": "#/definitions/rule",
"description": "Disallow empty character classes in regular expressions"
},
"no-ex-assign": {
"$ref": "#/definitions/rule",
"description": "Disallow reassigning exceptions in catch clauses"
},
"no-extra-boolean-cast": {
"$ref": "#/definitions/rule",
"description": "Disallow unnecessary boolean casts"
},
"no-extra-parens": {
"$ref": "#/definitions/rule",
"description": "Disallow unnecessary parentheses"
},
"no-extra-semi": {
"$ref": "#/definitions/rule",
"description": "Disallow unnecessary semicolons"
},
"no-func-assign": {
"$ref": "#/definitions/rule",
"description": "Disallow reassigning function declarations"
},
"no-inner-declarations": {
"$ref": "#/definitions/rule",
"description": "Disallow function or var declarations in nested blocks"
},
"no-invalid-regexp": {
"$ref": "#/definitions/rule",
"description": "Disallow invalid regular expression strings in RegExp constructors"
},
"no-irregular-whitespace": {
"$ref": "#/definitions/rule",
"description": "Disallow irregular whitespace outside of strings and comments"
},
"no-negated-in-lhs": {
"$ref": "#/definitions/rule",
"description": "Disallow negating the left operand in in expressions (deprecated)"
},
"no-obj-calls": {
"$ref": "#/definitions/rule",
"description": "Disallow calling global object properties as functions"
},
"no-prototype-builtins": {
"$ref": "#/definitions/rule",
"description": "Disallow calling some Object.prototype methods directly on objects"
},
"no-regex-spaces": {
"$ref": "#/definitions/rule",
"description": "Disallow multiple spaces in regular expressions"
},
"no-sparse-arrays": {
"$ref": "#/definitions/rule",
"description": "Disallow sparse arrays"
},
"no-template-curly-in-string": {
"$ref": "#/definitions/rule",
"description": "Disallow template literal placeholder syntax in regular strings"
},
"no-unexpected-multiline": {
"$ref": "#/definitions/rule",
"description": "Disallow confusing multiline expressions"
},
"no-unreachable": {
"$ref": "#/definitions/rule",
"description": "Disallow unreachable code after return, throw, continue, and break statements"
},
"no-unsafe-finally": {
"ref": "#/definitions/rule",
"description": "Disallow control flow statements in finally blocks"
},
"no-unsafe-negation": {
"$ref": "#/definitions/rule",
"description": "Disallow negating the left operand of relational operators"
},
"use-isnan": {
"$ref": "#/definitions/rule",
"description": "Require calls to isNaN() when checking for NaN"
},
"valid-jsdoc": {
"$ref": "#/definitions/rule",
"description": "Enforce valid JSDoc comments"
},
"valid-typeof": {
"$ref": "#/definitions/rule",
"description": "Enforce comparing typeof expressions against valid strings"
}
}
},
"bestPractices": {
"properties": {
"accessor-pairs": {
"$ref": "#/definitions/rule",
"description": "Enforce getter and setter pairs in objects"
},
"array-callback-return": {
"$ref": "#/definitions/rule",
"description": "Enforce return statements in callbacks of array methods"
},
"block-scoped-var": {
"$ref": "#/definitions/rule",
"description": "Enforce the use of variables within the scope they are defined"
},
"complexity": {
"$ref": "#/definitions/rule",
"description": "Enforce a maximum cyclomatic complexity allowed in a program"
},
"consistent-return": {
"$ref": "#/definitions/rule",
"description": "Require return statements to either always or never specify values"
},
"curly": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent brace style for all control statements"
},
"default-case": {
"$ref": "#/definitions/rule",
"description": "Require default cases in switch statements"
},
"dot-location": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent newlines before and after dots"
},
"dot-notation": {
"$ref": "#/definitions/rule",
"description": "Enforce dot notation whenever possible"
},
"eqeqeq": {
"$ref": "#/definitions/rule",
"description": "Require the use of === and !=="
},
"guard-for-in": {
"$ref": "#/definitions/rule",
"description": "Require for-in loops to include an if statement"
},
"no-alert": {
"$ref": "#/definitions/rule",
"description": "Disallow the use of alert, confirm, and prompt"
},
"no-caller": {
"$ref": "#/definitions/rule",
"description": "Disallow the use of arguments.caller or arguments.callee"
},
"no-case-declarations": {
"$ref": "#/definitions/rule",
"description": "Disallow lexical declarations in case clauses"
},
"no-div-regex": {
"$ref": "#/definitions/rule",
"description": "Disallow division operators explicitly at the beginning of regular expressions"
},
"no-else-return": {
"$ref": "#/definitions/rule",
"description": "Disallow else blocks after return statements in if statements"
},
"no-empty-function": {
"$ref": "#/definitions/rule",
"description": "Disallow empty functions"
},
"no-empty-pattern": {
"$ref": "#/definitions/rule",
"description": "Disallow empty destructuring patterns"
},
"no-eq-null": {
"$ref": "#/definitions/rule",
"description": "Disallow null comparisons without type-checking operators"
},
"no-eval": {
"$ref": "#/definitions/rule",
"description": "Disallow the use of eval()"
},
"no-extend-native": {
"$ref": "#/definitions/rule",
"description": "Disallow extending native types"
},
"no-extra-bind": {
"$ref": "#/definitions/rule",
"description": "Disallow unnecessary calls to .bind()"
},
"no-extra-label": {
"$ref": "#/definitions/rule",
"description": "Disallow unnecessary labels"
},
"no-fallthrough": {
"$ref": "#/definitions/rule",
"description": "Disallow fallthrough of case statements"
},
"no-floating-decimal": {
"$ref": "#/definitions/rule",
"description": "Disallow leading or trailing decimal points in numeric literals"
},
"no-global-assign": {
"$ref": "#/definitions/rule",
"description": "Disallow assignments to native objects or read-only global variables"
},
"no-implicit-coercion": {
"$ref": "#/definitions/rule",
"description": "Disallow shorthand type conversions"
},
"no-implicit-globals": {
"$ref": "#/definitions/rule",
"description": "Disallow var and named function declarations in the global scope"
},
"no-implied-eval": {
"$ref": "#/definitions/rule",
"description": "Disallow the use of eval()-like methods"
},
"no-invalid-this": {
"$ref": "#/definitions/rule",
"description": "Disallow this keywords outside of classes or class-like objects"
},
"no-iterator": {
"$ref": "#/definitions/rule",
"description": "Disallow the use of the __iterator__ property"
},
"no-labels": {
"$ref": "#/definitions/rule",
"description": "Disallow labeled statements"
},
"no-lone-blocks": {
"$ref": "#/definitions/rule",
"description": "Disallow unnecessary nested blocks"
},
"no-loop-func": {
"$ref": "#/definitions/rule",
"description": "Disallow function declarations and expressions inside loop statements"
},
"no-magic-numbers": {
"$ref": "#/definitions/rule",
"description": "Disallow magic numbers"
},
"no-multi-spaces": {
"$ref": "#/definitions/rule",
"description": "Disallow multiple spaces"
},
"no-multi-str": {
"$ref": "#/definitions/rule",
"description": "Disallow multiline strings"
},
"no-native-reassign": {
"$ref": "#/definitions/rule"
},
"no-new": {
"$ref": "#/definitions/rule",
"description": "Disallow new operators outside of assignments or comparisons"
},
"no-new-func": {
"$ref": "#/definitions/rule",
"description": "Disallow new operators with the Function object"
},
"no-new-wrappers": {
"$ref": "#/definitions/rule",
"description": "Disallow new operators with the String, Number, and Boolean objects"
},
"no-octal": {
"$ref": "#/definitions/rule",
"description": "Disallow octal literals"
},
"no-octal-escape": {
"$ref": "#/definitions/rule",
"description": "Disallow octal escape sequences in string literals"
},
"no-param-reassign": {
"$ref": "#/definitions/rule",
"description": "Disallow reassigning function parameters"
},
"no-proto": {
"$ref": "#/definitions/rule",
"description": "Disallow the use of the __proto__ property"
},
"no-redeclare": {
"$ref": "#/definitions/rule",
"description": "Disallow var redeclaration"
},
"no-return-assign": {
"$ref": "#/definitions/rule",
"description": "Disallow assignment operators in return statements"
},
"no-script-url": {
"$ref": "#/definitions/rule",
"description": "Disallow javascript: urls"
},
"no-self-assign": {
"$ref": "#/definitions/rule",
"description": "Disallow assignments where both sides are exactly the same"
},
"no-self-compare": {
"$ref": "#/definitions/rule",
"description": "Disallow comparisons where both sides are exactly the same"
},
"no-sequences": {
"$ref": "#/definitions/rule",
"description": "Disallow comma operators"
},
"no-throw-literal": {
"$ref": "#/definitions/rule",
"description": "Disallow throwing literals as exceptions"
},
"no-unmodified-loop-condition": {
"$ref": "#/definitions/rule",
"description": "Disallow unmodified loop conditions"
},
"no-unused-expressions": {
"$ref": "#/definitions/rule",
"description": "Disallow unused expressions"
},
"no-unused-labels": {
"$ref": "#/definitions/rule",
"description": "Disallow unused labels"
},
"no-useless-call": {
"$ref": "#/definitions/rule",
"description": "Disallow unnecessary calls to .call() and .apply()"
},
"no-useless-concat": {
"$ref": "#/definitions/rule",
"description": "Disallow unnecessary concatenation of literals or template literals"
},
"no-useless-escape": {
"$ref": "#/definitions/rule",
"description": "Disallow unnecessary escape characters"
},
"no-void": {
"$ref": "#/definitions/rule",
"description": "Disallow void operators"
},
"no-warning-comments": {
"$ref": "#/definitions/rule",
"description": "Disallow specified warning terms in comments"
},
"no-with": {
"$ref": "#/definitions/rule",
"description": "Disallow with statements"
},
"radix": {
"$ref": "#/definitions/rule",
"description": "Enforce the consistent use of the radix argument when using parseInt()"
},
"require-await": {
"$ref": "#/definitions/rule",
"description": "Disallow async functions which have no await expression"
},
"vars-on-top": {
"$ref": "#/definitions/rule",
"description": "Require var declarations be placed at the top of their containing scope"
},
"wrap-iife": {
"$ref": "#/definitions/rule",
"description": "Require parentheses around immediate function invocations"
},
"yoda": {
"$ref": "#/definitions/rule",
"description": "Require or Disallow \u201cYoda\u201d conditions"
}
}
},
"strictMode": {
"properties": {
"strict": {
"$ref": "#/definitions/rule",
"description": "require or disallow strict mode directives"
}
}
},
"variables": {
"properties": {
"init-declarations": {
"$ref": "#/definitions/rule",
"description": "Require or disallow initialization in var declarations"
},
"no-catch-shadow": {
"$ref": "#/definitions/rule",
"description": "Disallow catch clause parameters from shadowing variables in the outer scope"
},
"no-delete-var": {
"$ref": "#/definitions/rule",
"description": "Disallow deleting variables"
},
"no-label-var": {
"$ref": "#/definitions/rule",
"description": "Disallow labels that share a name with a variable"
},
"no-restricted-globals": {
"$ref": "#/definitions/rule",
"description": "Disallow specified global variables"
},
"no-shadow": {
"$ref": "#/definitions/rule",
"description": "Disallow var declarations from shadowing variables in the outer scope"
},
"no-shadow-restricted-names": {
"$ref": "#/definitions/rule",
"description": "Disallow identifiers from shadowing restricted names"
},
"no-undef": {
"$ref": "#/definitions/rule",
"description": "Disallow the use of undeclared variables unless mentioned in /*global */ comments"
},
"no-undefined": {
"$ref": "#/definitions/rule",
"description": "Disallow the use of undefined as an identifier"
},
"no-undef-init": {
"$ref": "#/definitions/rule",
"description": "Disallow initializing variables to undefined"
},
"no-unused-vars": {
"$ref": "#/definitions/rule",
"description": "Disallow unused variables"
},
"no-use-before-define": {
"$ref": "#/definitions/rule",
"description": "Disallow the use of variables before they are defined"
}
}
},
"nodeAndCommonJs": {
"properties": {
"callback-return": {
"$ref": "#/definitions/rule",
"description": "Require return statements after callbacks"
},
"global-require": {
"$ref": "#/definitions/rule",
"description": "Require require() calls to be placed at top-level module scope"
},
"handle-callback-err": {
"$ref": "#/definitions/rule",
"description": "Require error handling in callbacks"
},
"no-mixed-requires": {
"$ref": "#/definitions/rule",
"description": "Disallow require calls to be mixed with regular var declarations"
},
"no-new-require": {
"$ref": "#/definitions/rule",
"description": "Disallow new operators with calls to require"
},
"no-path-concat": {
"$ref": "#/definitions/rule",
"description": "Disallow string concatenation with __dirname and __filename"
},
"no-process-env": {
"$ref": "#/definitions/rule",
"description": "Disallow the use of process.env"
},
"no-process-exit": {
"$ref": "#/definitions/rule",
"description": "Disallow the use of process.exit()"
},
"no-restricted-modules": {
"$ref": "#/definitions/rule",
"description": "Disallow specified modules when loaded by require"
},
"no-sync": {
"$ref": "#/definitions/rule",
"description": "Disallow synchronous methods"
}
}
},
"stylisticIssues": {
"properties": {
"array-bracket-spacing": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing inside array brackets"
},
"block-spacing": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing inside single-line blocks"
},
"brace-style": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent brace style for blocks"
},
"camelcase": {
"$ref": "#/definitions/rule",
"description": "Enforce camelcase naming convention"
},
"capitalized-comments": {
"$ref": "#/definitions/rule",
"description": "Enforce or disallow capitalization of the first letter of a comment"
},
"comma-dangle": {
"$ref": "#/definitions/rule",
"description": "Require or disallow trailing commas"
},
"comma-spacing": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing before and after commas"
},
"comma-style": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent comma style"
},
"computed-property-spacing": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing inside computed property brackets"
},
"consistent-this": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent naming when capturing the current execution context"
},
"eol-last": {
"$ref": "#/definitions/rule",
"description": "Enforce at least one newline at the end of files"
},
"func-call-spacing": {
"$ref": "#/definitions/rule",
"description": "Require or disallow spacing between function identifiers and their invocations"
},
"func-names": {
"$ref": "#/definitions/rule",
"description": "Require or disallow named function expressions"
},
"func-style": {
"$ref": "#/definitions/rule",
"description": "Enforce the consistent use of either function declarations or expressions"
},
"id-blacklist": {
"$ref": "#/definitions/rule",
"description": "Disallow specified identifiers"
},
"id-length": {
"$ref": "#/definitions/rule",
"description": "Enforce minimum and maximum identifier lengths"
},
"id-match": {
"$ref": "#/definitions/rule",
"description": "Require identifiers to match a specified regular expression"
},
"indent": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent indentation"
},
"jsx-quotes": {
"$ref": "#/definitions/rule",
"description": "Enforce the consistent use of either double or single quotes in JSX attributes"
},
"key-spacing": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing between keys and values in object literal properties"
},
"keyword-spacing": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing before and after keywords"
},
"linebreak-style": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent linebreak style"
},
"lines-around-comment": {
"$ref": "#/definitions/rule",
"description": "Require empty lines around comments"
},
"max-depth": {
"$ref": "#/definitions/rule",
"description": "Enforce a maximum depth that blocks can be nested"
},
"max-len": {
"$ref": "#/definitions/rule",
"description": "Enforce a maximum line length"
},
"max-lines": {
"$ref": "#/definitions/rule",
"description": "Enforce a maximum number of lines per file"
},
"max-nested-callbacks": {
"$ref": "#/definitions/rule",
"description": "Enforce a maximum depth that callbacks can be nested"
},
"max-params": {
"$ref": "#/definitions/rule",
"description": "Enforce a maximum number of parameters in function definitions"
},
"max-statements": {
"$ref": "#/definitions/rule",
"description": "Enforce a maximum number of statements allowed in function blocks"
},
"max-statements-per-line": {
"$ref": "#/definitions/rule",
"description": "Enforce a maximum number of statements allowed per line"
},
"multiline-ternary": {
"$ref": "#/definitions/rule",
"description": "Enforce newlines between operands of ternary expressions"
},
"new-cap": {
"$ref": "#/definitions/rule",
"description": "Require constructor function names to begin with a capital letter"
},
"newline-after-var": {
"$ref": "#/definitions/rule",
"description": "Require or disallow an empty line after var declarations"
},
"newline-before-return": {
"$ref": "#/definitions/rule",
"description": "Require an empty line before return statements"
},
"newline-per-chained-call": {
"$ref": "#/definitions/rule",
"description": "Require a newline after each call in a method chain"
},
"new-parens": {
"$ref": "#/definitions/rule",
"description": "Require parentheses when invoking a constructor with no arguments"
},
"no-array-constructor": {
"$ref": "#/definitions/rule",
"description": "Disallow Array constructors"
},
"no-bitwise": {
"$ref": "#/definitions/rule",
"description": "Disallow bitwise operators"
},
"no-continue": {
"$ref": "#/definitions/rule",
"description": "Disallow continue statements"
},
"no-inline-comments": {
"$ref": "#/definitions/rule",
"description": "Disallow inline comments after code"
},
"no-lonely-if": {
"$ref": "#/definitions/rule",
"description": "Disallow if statements as the only statement in else blocks"
},
"no-mixed-operators": {
"$ref": "#/definitions/rule",
"description": "Disallow mixed binary operators"
},
"no-mixed-spaces-and-tabs": {
"$ref": "#/definitions/rule",
"description": "Disallow mixed spaces and tabs for indentation"
},
"no-multiple-empty-lines": {
"$ref": "#/definitions/rule",
"description": "Disallow multiple empty lines"
},
"no-negated-condition": {
"$ref": "#/definitions/rule",
"description": "Disallow negated conditions"
},
"no-nested-ternary": {
"$ref": "#/definitions/rule",
"description": "Disallow nested ternary expressions"
},
"no-new-object": {
"$ref": "#/definitions/rule",
"description": "Disallow Object constructors"
},
"no-plusplus": {
"$ref": "#/definitions/rule",
"description": "Disallow the unary operators ++ and --"
},
"no-restricted-syntax": {
"$ref": "#/definitions/rule",
"description": "Disallow specified syntax"
},
"no-spaced-func": {
"$ref": "#/definitions/rule"
},
"no-tabs": {
"$ref": "#/definitions/rule",
"description": "Disallow tabs in file"
},
"no-ternary": {
"$ref": "#/definitions/rule",
"description": "Disallow ternary operators"
},
"no-trailing-spaces": {
"$ref": "#/definitions/rule",
"description": "Disallow trailing whitespace at the end of lines"
},
"no-underscore-dangle": {
"$ref": "#/definitions/rule",
"description": "Disallow dangling underscores in identifiers"
},
"no-unneeded-ternary": {
"$ref": "#/definitions/rule",
"description": "Disallow ternary operators when simpler alternatives exist"
},
"no-whitespace-before-property": {
"$ref": "#/definitions/rule",
"description": "Disallow whitespace before properties"
},
"object-curly-newline": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent line breaks inside braces"
},
"object-curly-spacing": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing inside braces"
},
"object-property-newline": {
"$ref": "#/definitions/rule",
"description": "Enforce placing object properties on separate lines"
},
"object-shorthand": {
"$ref": "#/definitions/rule"
},
"one-var": {
"$ref": "#/definitions/rule",
"description": "Enforce variables to be declared either together or separately in functions"
},
"one-var-declaration-per-line": {
"$ref": "#/definitions/rule",
"description": "Require or disallow newlines around var declarations"
},
"operator-assignment": {
"$ref": "#/definitions/rule",
"description": "Require or disallow assignment operator shorthand where possible"
},
"operator-linebreak": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent linebreak style for operators"
},
"padded-blocks": {
"$ref": "#/definitions/rule",
"description": "Require or disallow padding within blocks"
},
"quote-props": {
"$ref": "#/definitions/rule",
"description": "Require quotes around object literal property names"
},
"quotes": {
"$ref": "#/definitions/rule",
"description": "Enforce the consistent use of either backticks, double, or single quotes"
},
"Require-jsdoc": {
"$ref": "#/definitions/rule",
"description": "Require JSDoc comments"
},
"semi": {
"$ref": "#/definitions/rule",
"description": "Require or disallow semicolons instead of ASI"
},
"semi-spacing": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing before and after semicolons"
},
"sort-keys": {
"$ref": "#/definitions/rule",
"description": "Requires object keys to be sorted"
},
"sort-vars": {
"$ref": "#/definitions/rule",
"description": "Require variables within the same declaration block to be sorted"
},
"space-before-blocks": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing before blocks"
},
"space-before-function-paren": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing before function definition opening parenthesis"
},
"spaced-comment": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing after the // or /* in a comment"
},
"space-infix-ops": {
"$ref": "#/definitions/rule",
"description": "Require spacing around operators"
},
"space-in-parens": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing inside parentheses"
},
"space-unary-ops": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing before or after unary operators"
},
"unicode-bom": {
"$ref": "#/definitions/rule",
"description": "Require or disallow Unicode byte order mark (BOM)"
},
"wrap-regex": {
"$ref": "#/definitions/rule",
"description": "Require parenthesis around regex literals"
}
}
},
"ecmaScript6": {
"properties": {
"arrow-body-style": {
"$ref": "#/definitions/rule",
"description": "Require braces around arrow function bodies"
},
"arrow-parens": {
"$ref": "#/definitions/rule",
"description": "Require parentheses around arrow function arguments"
},
"arrow-spacing": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing before and after the arrow in arrow functions"
},
"constructor-super": {
"$ref": "#/definitions/rule",
"description": "Require super() calls in constructors"
},
"generator-star-spacing": {
"$ref": "#/definitions/rule",
"description": "Enforce consistent spacing around * operators in generator functions"
},
"no-class-assign": {
"$ref": "#/definitions/rule",
"description": "Disallow reassigning class members"
},
"no-confusing-arrow": {
"$ref": "#/definitions/rule",
"description": "Disallow arrow functions where they could be confused with comparisons"
},
"no-const-assign": {
"$ref": "#/definitions/rule",
"description": "Disallow reassigning const variables"
},
"no-dupe-class-members": {
"$ref": "#/definitions/rule",
"description": "Disallow duplicate class members"
},
"no-duplicate-imports": {
"$ref": "#/definitions/rule",
"description": "Disallow duplicate module imports"
},
"no-new-symbol": {
"$ref": "#/definitions/rule",
"description": "Disallow new operators with the Symbol object"
},
"no-restricted-imports": {
"$ref": "#/definitions/rule",
"description": "Disallow specified modules when loaded by import"
},
"no-this-before-super": {
"$ref": "#/definitions/rule",
"description": "Disallow this/super before calling super() in constructors"
},
"no-useless-computed-key": {
"$ref": "#/definitions/rule",
"description": "Disallow unnecessary computed property keys in object literals"
},
"no-useless-constructor": {
"$ref": "#/definitions/rule",
"description": "Disallow unnecessary constructors"
},
"no-useless-rename": {
"$ref": "#/definitions/rule",
"description": "Disallow renaming import, export, and destructured assignments to the same name"
},
"no-var": {
"$ref": "#/definitions/rule",
"description": "Require let or const instead of var"
},
"object-shorthand": {
"$ref": "#/definitions/rule",
"description": "Require or disallow method and property shorthand syntax for object literals"
},
"prefer-arrow-callback": {
"$ref": "#/definitions/rule",
"description": "Require arrow functions as callbacks"
},
"prefer-const": {
"$ref": "#/definitions/rule",
"description": "Require const declarations for variables that are never reassigned after declared"
},
"prefer-reflect": {
"$ref": "#/definitions/rule",
"description": "Require Reflect methods where applicable"
},
"prefer-rest-params": {
"$ref": "#/definitions/rule",
"description": "Require rest parameters instead of arguments"
},
"prefer-spread": {
"$ref": "#/definitions/rule",
"description": "Require spread operators instead of .apply()"
},
"prefer-template": {
"$ref": "#/definitions/rule",
"description": "Require template literals instead of string concatenation"
},
"Require-yield": {
"$ref": "#/definitions/rule",
"description": "Require generator functions to contain yield"
},
"rest-spread-spacing": {
"$ref": "#/definitions/rule",
"description": "Enforce spacing between rest and spread operators and their expressions"
},
"sort-imports": {
"$ref": "#/definitions/rule",
"description": "Enforce sorted import declarations within modules"
},
"template-curly-spacing": {
"$ref": "#/definitions/rule",
"description": "Require or disallow spacing around embedded expressions of template strings"
},
"yield-star-spacing": {
"$ref": "#/definitions/rule",
"description": "Require or disallow spacing around the * in yield* expressions"
}
}
},
"legacy": {
"properties": {
"max-depth": {
"$ref": "#/definitions/rule"
},
"max-len": {
"$ref": "#/definitions/rule"
},
"max-params": {
"$ref": "#/definitions/rule"
},
"max-statements": {
"$ref": "#/definitions/rule"
},
"no-bitwise": {
"$ref": "#/definitions/rule"
},
"no-plusplus": {
"$ref": "#/definitions/rule"
}
}
}
},
"properties": {
"ecmaFeatures": {
"description": "By default, ESLint supports only ECMAScript 5 syntax. You can override that setting to enable support for ECMAScript 6 as well as JSX by using configuration settings.",
"type": "object",
"properties": {
"arrowFunctions": {
"type": "boolean"
},
"binaryLiterals": {
"type": "boolean"
},
"blockBindings": {
"type": "boolean"
},
"classes": {
"type": "boolean"
},
"defaultParams": {
"type": "boolean"
},
"destructuring": {
"type": "boolean"
},
"experimentalObjectRestSpread": {
"type": "boolean",
"description": "Enables support for the experimental object rest/spread properties (IMPORTANT: This is an experimental feature that may change significantly in the future. It\u2019s recommended that you do not write rules relying on this functionality unless you are willing to incur maintenance cost when it changes.)"
},
"forOf": {
"type": "boolean"
},
"generators": {
"type": "boolean"
},
"globalReturn": {
"type": "boolean",
"description": "allow return statements in the global scope"
},
"impliedStrict": {
"type": "boolean",
"description": "enable global strict mode (if ecmaVersion is 5 or greater)"
},
"jsx": {
"type": "boolean",
"description": "enable JSX"
},
"modules": {
"type": "boolean"
},
"objectLiteralComputedProperties": {
"type": "boolean"
},
"objectLiteralDuplicateProperties": {
"type": "boolean"
},
"objectLiteralShorthandMethods": {
"type": "boolean"
},
"objectLiteralShorthandProperties": {
"type": "boolean"
},
"octalLiterals": {
"type": "boolean"
},
"regexUFlag": {
"type": "boolean"
},
"regexYFlag": {
"type": "boolean"
},
"restParams": {
"type": "boolean"
},
"spread": {
"type": "boolean"
},
"superInFunctions": {
"type": "boolean"
},
"templateStrings": {
"type": "boolean"
},
"unicodeCodePointEscapes": {
"type": "boolean"
}
}
},
"env": {
"description": "An environment defines global variables that are predefined.",
"type": "object",
"properties": {
"amd": {
"type": "boolean",
"description": "defines require() and define() as global variables as per the amd spec"
},
"applescript": {
"type": "boolean",
"description": "AppleScript global variables"
},
"atomtest": {
"type": "boolean",
"description": "Atom test helper globals"
},
"browser": {
"type": "boolean",
"description": "browser global variables"
},
"commonjs": {
"type": "boolean",
"description": "CommonJS global variables and CommonJS scoping (use this for browser-only code that uses Browserify/WebPack)"
},
"shared-node-browser": {
"type": "boolean",
"description": "Globals common to both Node and Browser"
},
"embertest": {
"type": "boolean",
"description": "Ember test helper globals"
},
"es6": {
"type": "boolean",
"description": "enable all ECMAScript 6 features except for modules"
},
"greasemonkey": {
"type": "boolean",
"description": "GreaseMonkey globals"
},
"jasmine": {
"type": "boolean",
"description": "adds all of the Jasmine testing global variables for version 1.3 and 2.0"
},
"jest": {
"type": "boolean",
"description": "Jest global variables"
},
"jquery": {
"type": "boolean",
"description": "jQuery global variables"
},
"meteor": {
"type": "boolean",
"description": "Meteor global variables"
},
"mocha": {
"type": "boolean",
"description": "adds all of the Mocha test global variables"
},
"mongo": {
"type": "boolean",
"description": "MongoDB global variables"
},
"nashorn": {
"type": "boolean",
"description": "Java 8 Nashorn global variables"
},
"node": {
"type": "boolean",
"description": "Node.js global variables and Node.js scoping"
},
"phantomjs": {
"type": "boolean",
"description": "PhantomJS global variables"
},
"prototypejs": {
"type": "boolean",
"description": "Prototype.js global variables"
},
"protractor": {
"type": "boolean",
"description": "Protractor global variables"
},
"qunit": {
"type": "boolean",
"description": "QUnit global variables"
},
"serviceworker": {
"type": "boolean",
"description": "Service Worker global variables"
},
"shelljs": {
"type": "boolean",
"description": "ShellJS global variables"
},
"webextensions": {
"type": "boolean",
"description": "WebExtensions globals"
},
"worker": {
"type": "boolean",
"description": "web workers global variables"
}
}
},
"extends": {
"description": "If you want to extend a specific configuration file, you can use the extends property and specify the path to the file. The path can be either relative or absolute.",
"type": [
"string",
"array"
],
"items": {
"type": "string"
}
},
"globals": {
"description": "Set each global variable name equal to true to allow the variable to be overwritten or false to disallow overwriting.",
"type": "object",
"additionalProperties": {
"type": "boolean"
}
},
"ignore": {
"description": "A list of file paths/globs that eslint should ignore",
"type": "array",
"items": {
"type": "string"
}
},
"parser": {
"type": "string"
},
"parserOptions": {
"description": "The JavaScript language options to be supported",
"type": "object",
"properties": {
"ecmaFeatures": {
"$ref": "#/properties/ecmaFeatures"
},
"ecmaVersion": {
"enum": [
3,
5,
6,
2015,
7,
2016,
8,
2017
],
"default": 5,
"description": "Set to 3, 5 (default), 6, 7, or 8 to specify the version of ECMAScript you want to use. Alternatively, set to 2015 (same as 6), 2016 (same as 7), or 2017 (same as 8) to use year-based naming."
},
"sourceType": {
"enum": [
"script",
"module"
],
"default": "script",
"description": "set to \"script\" (default) or \"module\" if your code is in ECMAScript modules"
}
}
},
"plugins": {
"description": "ESLint supports the use of third-party plugins. Before using the plugin, you have to install it using npm.",
"type": "array",
"items": {
"type": "string"
}
},
"rules": {
"description": "ESLint comes with a large number of rules. You can modify which rules your project uses either using configuration comments or configuration files.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/possibleErrors"
},
{
"$ref": "#/definitions/bestPractices"
},
{
"$ref": "#/definitions/strictMode"
},
{
"$ref": "#/definitions/variables"
},
{
"$ref": "#/definitions/nodeAndCommonJs"
},
{
"$ref": "#/definitions/stylisticIssues"
},
{
"$ref": "#/definitions/ecmaScript6"
},
{
"$ref": "#/definitions/legacy"
}
]
},
"settings": {
"description": "ESLint supports adding shared settings into configuration file. You can add settings object to ESLint configuration file and it will be supplied to every rule that will be executed. This may be useful if you are adding custom rules and want them to have access to the same information and be easily configurable.",
"type": "object"
}
}
} | o9981 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$",
"type": "string"
},
"analytics_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations."
},
"body": {
"description": "The main content provided as HTML rendered from govspeak",
"type": "string"
},
"change_history": {
"items": {
"additionalProperties": false,
"properties": {
"note": {
"description": "A summary of the change",
"type": "string"
},
"public_timestamp": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"public_timestamp",
"note"
],
"type": "object"
},
"type": "array"
},
"description": {
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"additionalProperties": false,
"properties": {
"attachments": {
"description": "An ordered list of asset links",
"items": {
"$ref": "#/definitions/file_attachment_asset"
},
"type": "array"
},
"body": {
"$ref": "#/definitions/body"
},
"change_history": {
"$ref": "#/definitions/change_history"
},
"first_public_at": {
"$ref": "#/definitions/first_public_at"
},
"government": {
"$ref": "#/definitions/government"
},
"image": {
"$ref": "#/definitions/image"
},
"political": {
"$ref": "#/definitions/political"
},
"tags": {
"$ref": "#/definitions/tags"
}
},
"required": [
"body",
"political"
],
"type": "object"
},
"file_attachment_asset": {
"additionalProperties": false,
"properties": {
"accessible": {
"type": "boolean"
},
"alternative_format_contact_email": {
"type": "string"
},
"attachment_type": {
"enum": [
"file"
],
"type": "string"
},
"content_type": {
"type": "string"
},
"file_size": {
"type": "integer"
},
"filename": {
"type": "string"
},
"id": {
"type": "string"
},
"locale": {
"$ref": "#/definitions/locale"
},
"number_of_pages": {
"type": "integer"
},
"preview_url": {
"_format": "uri",
"type": "string"
},
"title": {
"type": "string"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"attachment_type",
"content_type",
"id",
"url"
],
"type": "object"
},
"first_public_at": {
"_format": "date-time",
"description": "DEPRECATED. The date the content was first published. Used in details. Deprecated in favour of top level `first_published_at`.",
"type": "string"
},
"first_published_at": {
"_format": "date-time",
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"frontend_links": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"frontend_links_with_base_path": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"government": {
"additionalProperties": false,
"description": "DEPRECATED: Content should be associated with a government through a link",
"properties": {
"current": {
"description": "Is the government that published this document still the current government.",
"type": "boolean"
},
"slug": {
"description": "Government slug, used for analytics, eg '1970-to-1974-conservative-government'.",
"type": "string"
},
"title": {
"description": "Name of the government that first published this document, eg '1970 to 1974 Conservative government'.",
"type": "string"
}
},
"required": [
"title",
"slug",
"current"
],
"type": "object"
},
"guid": {
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$",
"type": "string"
},
"image": {
"additionalProperties": false,
"properties": {
"alt_text": {
"type": "string"
},
"caption": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"credit": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"high_resolution_url": {
"_format": "uri",
"description": "URL to a high resolution version of the image, for use by third parties such as Twitter, Facebook or Slack. Used by the machine readable metadata component. Don't use this on user-facing web pages, as it might be very large.",
"type": "string"
},
"url": {
"_format": "uri",
"description": "URL to the image. The image should be in a suitable resolution for display on the page.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"locale": {
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
],
"type": "string"
},
"political": {
"description": "If the content is considered political in nature, reflecting views of the government it was published under.",
"type": "boolean"
},
"public_updated_at": {
"_format": "date-time",
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"publishing_app_name": {
"description": "The application that published this item.",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
],
"type": "string"
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"publishing_scheduled_at": {
"_format": "date-time",
"description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.",
"type": "string"
},
"rendering_app": {
"description": "The application that renders this item.",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
],
"type": "string"
},
"scheduled_publishing_delay_seconds": {
"description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.",
"type": "integer"
},
"tags": {
"additionalProperties": false,
"description": "Field used by email-alert-api to trigger email alerts for subscriptions to topics (gov.uk/topic) and policies (gov.uk/policies).",
"properties": {
"additional_topics": {
"items": {
"type": "string"
},
"type": "array"
},
"browse_pages": {
"items": {
"type": "string"
},
"type": "array"
},
"policies": {
"items": {
"type": "string"
},
"type": "array"
},
"primary_topic": {
"items": {
"type": "string"
},
"type": "array"
},
"topics": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"title": {
"type": "string"
},
"withdrawn_notice": {
"additionalProperties": false,
"properties": {
"explanation": {
"type": "string"
},
"withdrawn_at": {
"format": "date-time"
}
},
"type": "object"
}
},
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"enum": [
"world_location_news_article"
],
"type": "string"
},
"first_published_at": {
"anyOf": [
{
"$ref": "#/definitions/first_published_at"
},
{
"type": "null"
}
]
},
"links": {
"additionalProperties": false,
"properties": {
"available_translations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"child_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"children": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"document_collections": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"facet_groups": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers links from content back to finders the content is surfaced on"
},
"government": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The government associated with this document",
"maxItems": 1
},
"lead_organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"level_one_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"mainstream_browse_pages": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The user needs this piece of content meets."
},
"ministers": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The parent content item.",
"maxItems": 1
},
"part_of_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policies": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policy_areas": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"related_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"role_appointments": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"secondary_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Prototype-stage taxonomy label for this content item"
},
"topic_taxonomy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"topical_events": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"topics": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
},
"world_locations": {
"$ref": "#/definitions/frontend_links"
},
"worldwide_organisations": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"need_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"enum": [
"alpha",
"beta",
"live"
],
"type": "string"
},
"public_updated_at": {
"anyOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"publishing_request_id": {
"$ref": "#/definitions/publishing_request_id"
},
"publishing_scheduled_at": {
"anyOf": [
{
"$ref": "#/definitions/publishing_scheduled_at"
},
{
"type": "null"
}
]
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"scheduled_publishing_delay_seconds": {
"anyOf": [
{
"$ref": "#/definitions/scheduled_publishing_delay_seconds"
},
{
"type": "null"
}
]
},
"schema_name": {
"enum": [
"world_location_news_article"
],
"type": "string"
},
"title": {
"$ref": "#/definitions/title"
},
"updated_at": {
"_format": "date-time",
"type": "string"
},
"withdrawn_notice": {
"$ref": "#/definitions/withdrawn_notice"
}
},
"required": [
"base_path",
"content_id",
"description",
"details",
"document_type",
"links",
"locale",
"public_updated_at",
"schema_name",
"title",
"updated_at"
],
"type": "object"
} | o21436 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"emailAddress": {
"pattern": "^[^@^\\s]+@[^@^\\.^\\s]+(\\.[^@^\\.^\\s]+)+$",
"type": "string"
},
"hashpw": {
"description": "set to False to skip password hashing",
"type": "boolean"
},
"name": {
"maxLength": 255,
"minLength": 1,
"type": "string"
},
"password": {
"maxLength": 255,
"minLength": 10,
"type": "string"
},
"phoneNumber": {
"pattern": "^$|^\\+?([\\d\\s()-]){9,20}$",
"type": "string"
},
"role": {
"enum": [
"buyer",
"supplier",
"admin",
"admin-ccs-category",
"admin-ccs-sourcing",
"admin-manager",
"admin-framework-manager",
"admin-ccs-data-controller"
]
},
"supplierId": {
"type": "integer"
}
},
"required": [
"emailAddress",
"name",
"password",
"role"
],
"title": "API Updater Schema",
"type": "object"
} | o21149 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"migration": {
"type": "object",
"properties": {
"nbCandidatMigration": {
"type": "integer",
"minimum": 0
},
"stepMigration": {
"type": "integer",
"minimum": 0
}
},
"required": [
"nbCandidatMigration",
"stepMigration"
]
},
"name": {
"type": "string",
"minLength": 1
},
"dataFile": {
"type": "string",
"minLength": 1
},
"tabAlgoGen": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"minimum": 0
},
"initParam": {
"type": "object",
"properties": {
"taillePop": {
"type": "integer",
"minimum": 0
},
"nbGeneration": {
"type": "integer",
"minimum": 0
},
"probaCroisement": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"probaMutation": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"tabProbaMigration": {
"type": "array",
"items": {
"type": "number",
"minimum": 0,
"maximum": 1
}
},
"classUsed": {
"type": "object",
"properties": {
"typeInd": {
"type": "object",
"properties": {
"class": {
"enum": [
"itemset",
"itemsetO"
]
},
"typePrimitif": {
"enum": [
"char"
]
}
},
"required": [
"class",
"typePrimitif"
]
},
"populate": {
"type": "object",
"properties": {
"class": {
"enum": [
"randPop",
"freqPop",
"irandPop"
]
}
},
"required": [
"class"
]
},
"evaluate": {
"type": "object",
"properties": {
"class": {
"enum": [
"freqEval",
"closeEval"
]
}
},
"required": [
"class"
]
},
"crossover": {
"type": "object",
"properties": {
"class": {
"enum": [
"monoPCross",
"multiPCross",
"uCross"
]
}
},
"required": [
"class"
]
},
"mutator": {
"type": "object",
"properties": {
"class": {
"enum": [
"randMut"
]
}
},
"required": [
"class"
]
},
"selectPolicy": {
"type": "object",
"properties": {
"class": {
"enum": [
"bestS",
"randS",
"tournamentS"
]
}
},
"required": [
"class"
]
},
"indelPolicy": {
"type": "object",
"properties": {
"class": {
"enum": [
"fitnessID",
"ageID"
]
}
},
"required": [
"class"
]
},
"selectPolicyMigrate": {
"type": "object",
"properties": {
"class": {
"enum": [
"bestMig",
"tournamentMig"
]
}
},
"required": [
"class"
]
},
"indelPolicyMigrate": {
"type": "object",
"properties": {
"class": {
"enum": [
"oldestIDMig",
"worstIDMig"
]
}
},
"required": [
"class"
]
}
},
"required": [
"typeInd",
"populate",
"evaluate",
"crossover",
"mutator",
"selectPolicy",
"indelPolicy",
"selectPolicyMigrate",
"indelPolicyMigrate"
]
}
},
"required": [
"taillePop",
"nbGeneration",
"probaCroisement",
"probaMutation",
"tabProbaMigration",
"classUsed"
]
},
"resultFile": {
"type": "string",
"minLength": 1
}
},
"required": [
"id",
"initParam",
"resultFile"
]
},
"minItems": 1
}
},
"required": [
"migration",
"name",
"dataFile",
"tabAlgoGen"
]
} | o13954 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "O3D3xx Volume model configuration",
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"PrivateType": {
"type": "string",
"default": "Volume",
"attributes": [
"private",
"noexport"
]
},
"Type": {
"type": "string",
"enum": [
"Volume"
],
"attributes": [
"readonly"
]
},
"ROIs": {
"type": "string"
},
"PrivateBackgroundType": {
"type": "string",
"enum": [
"undefined",
"fixed",
"taught"
],
"default": "undefined",
"attributes": [
"private",
"noexport"
]
},
"BackgroundType": {
"type": "string",
"enum": [
"undefined",
"fixed",
"taught"
],
"attributes": [
"readonly"
]
},
"BackgroundFixed": {
"type": "number"
},
"SwitchPoint1": {
"type": "number"
},
"SwitchPoint2": {
"type": "number"
},
"PrivateReferenceVolumeType": {
"type": "string",
"enum": [
"undefined",
"fixed",
"taught"
],
"default": "undefined",
"attributes": [
"private",
"noexport"
]
},
"ReferenceVolumeType": {
"type": "string",
"enum": [
"undefined",
"fixed",
"taught"
],
"attributes": [
"readonly"
]
},
"ReferenceVolumeFixed": {
"type": "number"
},
"UseRelativeVolume": {
"type": "boolean",
"default": false
},
"AllowNegativeVolumes": {
"type": "boolean",
"default": true
},
"UseAnchorTracking": {
"type": "boolean",
"default": false
},
"HasAnchorTeachData": {
"type": "boolean",
"attributes": [
"readonly"
]
},
"TeachData": {
"type": "string",
"attributes": [
"private",
"noexport"
]
},
"AnchorData": {
"type": "string",
"attributes": [
"private",
"noexport"
]
},
"UseMotionOptimization": {
"type": "boolean",
"default": false
},
"CompletenessData": {
"type": "string",
"attributes": [
"private"
]
}
},
"required": [
"Name",
"Type",
"ROIs",
"BackgroundType",
"BackgroundFixed"
]
} | o57652 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the shape (for triangles)",
"type": "number"
},
"height": {
"description": "The height of the shape (for triangles)",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape (for circles)",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of shape (e.g., rectangle, triangle, circle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_ebaeb97c |
{
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"___traits_trait_additional_properties_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": {},
"description": "A grab-bag object for non-validatable data.",
"title": "Has additional properties",
"type": "object"
},
"___traits_trait_alignment_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A property used to determine horizontal positioning of a content element relative to the elements that immediately follow it in the element sequence.",
"enum": [
"left",
"right",
"center"
],
"title": "Alignment",
"type": "string"
},
"___traits_trait_channel_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An optional list of output types for which this element should be visible",
"items": {
"type": "string"
},
"title": "Channel trait",
"type": "array"
},
"___traits_trait_content_elements_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Holds attributes of an ANS collection - a common parent to story and gallery objects.",
"items": {
"$ref": "#/definitions/content_element_json"
},
"title": "A collection of content.",
"type": "array"
},
"___traits_trait_focal_point_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Coordinates representing the 'visual center' of an image. The X axis is horizontal line and the Y axis the vertical line, with 0,0 being the LEFT, TOP of the image.",
"properties": {
"x": {
"description": "The coordinate point on the horizontal axis",
"type": "number"
},
"y": {
"description": "The coordinate point on the vertical axis",
"type": "number"
}
},
"required": [
"x",
"y"
],
"title": "Focal Point",
"type": "object"
},
"___traits_trait_gallery_properties_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An object for overrides for images when images are used in a gallery. Example usage: Each image in a gallery may have the images own focal point overridden by the gallery.",
"gallery_properties": {
"focal_point": {
"$ref": "#/definitions/___traits_trait_focal_point_json"
}
},
"title": "Has gallery properties",
"type": "object"
},
"___traits_trait_id_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A globally unique identifier of the content in the ANS repository.",
"title": "Globally Unique ID trait",
"type": "string"
},
"___traits_trait_subtype_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.",
"title": "Subtype or Template",
"type": "string"
},
"content_element_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": {},
"description": "An item that conforms to this schema can be rendered in a sequence",
"properties": {
"_id": {
"$ref": "#/definitions/___traits_trait_id_json"
},
"additional_properties": {
"$ref": "#/definitions/___traits_trait_additional_properties_json"
},
"alignment": {
"$ref": "#/definitions/___traits_trait_alignment_json"
},
"channels": {
"$ref": "#/definitions/___traits_trait_channel_json"
},
"gallery_properties": {
"$ref": "#/definitions/___traits_trait_gallery_properties_json"
},
"subtype": {
"$ref": "#/definitions/___traits_trait_subtype_json"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"title": "An element that can be listed as part of content elements",
"type": "object"
}
},
"description": "A single table cell.",
"properties": {
"_id": {
"$ref": "#/definitions/___traits_trait_id_json"
},
"additional_properties": {
"$ref": "#/definitions/___traits_trait_additional_properties_json"
},
"channels": {
"$ref": "#/definitions/___traits_trait_channel_json"
},
"content_elements": {
"$ref": "#/definitions/___traits_trait_content_elements_json"
},
"subtype": {
"$ref": "#/definitions/___traits_trait_subtype_json"
},
"type": {
"enum": [
"table_cell"
]
}
},
"type": "object"
} | wp_117_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": {
"description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
"type": "integer"
},
"readOnly": {
"description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "boolean"
},
"volumeID": {
"description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity": {
"description": "Affinity is a group of affinity scheduling rules.",
"properties": {
"nodeAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity",
"description": "Describes node affinity scheduling rules for the pod."
},
"podAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity",
"description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))."
},
"podAntiAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity",
"description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": {
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
"properties": {
"cachingMode": {
"description": "Host Caching mode: None, Read Only, Read Write.",
"type": "string"
},
"diskName": {
"description": "The Name of the data disk in the blob storage",
"type": "string"
},
"diskURI": {
"description": "The URI the data disk in the blob storage",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"kind": {
"description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
}
},
"required": [
"diskName",
"diskURI"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource": {
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
"properties": {
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretName": {
"description": "the name of secret that contains Azure Storage Account Name and Key",
"type": "string"
},
"shareName": {
"description": "Share Name",
"type": "string"
}
},
"required": [
"secretName",
"shareName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": {
"description": "Represents a source location of a volume to mount, managed by an external CSI driver",
"properties": {
"driver": {
"description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.",
"type": "string"
},
"nodePublishSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed."
},
"readOnly": {
"description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).",
"type": "boolean"
},
"volumeAttributes": {
"additionalProperties": {
"type": "string"
},
"description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.",
"type": "object"
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": {
"description": "Adds and removes POSIX capabilities from running containers.",
"properties": {
"add": {
"description": "Added capabilities",
"items": {
"type": "string"
},
"type": "array"
},
"drop": {
"description": "Removed capabilities",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": {
"description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"monitors": {
"description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "boolean"
},
"secretFile": {
"description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
},
"user": {
"description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource": {
"description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
},
"volumeID": {
"description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource": {
"description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector": {
"description": "Selects a key from a ConfigMap.",
"properties": {
"key": {
"description": "The key to select.",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its key must be defined",
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection": {
"description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": {
"description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container": {
"description": "A single application container that you want to run within a pod.",
"properties": {
"args": {
"description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"description": "List of environment variables to set in the container. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"envFrom": {
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"image": {
"description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.",
"type": "string"
},
"imagePullPolicy": {
"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
"type": "string"
},
"lifecycle": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle",
"description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated."
},
"livenessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"name": {
"description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.",
"type": "string"
},
"ports": {
"description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"containerPort",
"protocol"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "containerPort",
"x-kubernetes-patch-strategy": "merge"
},
"readinessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"resources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements",
"description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/"
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext",
"description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
},
"startupProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"stdin": {
"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
"type": "boolean"
},
"stdinOnce": {
"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
"type": "boolean"
},
"terminationMessagePath": {
"description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
"type": "string"
},
"terminationMessagePolicy": {
"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
"type": "string"
},
"tty": {
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
"type": "boolean"
},
"volumeDevices": {
"description": "volumeDevices is the list of block devices to be used by the container.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice"
},
"type": "array",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge"
},
"volumeMounts": {
"description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort": {
"description": "ContainerPort represents a network port in a single container.",
"properties": {
"containerPort": {
"_format": "int32",
"description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.",
"type": "integer"
},
"hostIP": {
"description": "What host IP to bind the external port to.",
"type": "string"
},
"hostPort": {
"_format": "int32",
"description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.",
"type": "integer"
},
"name": {
"description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.",
"type": "string"
},
"protocol": {
"description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
"type": "string"
}
},
"required": [
"containerPort"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": {
"description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.",
"properties": {
"items": {
"description": "Items is a list of DownwardAPIVolume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": {
"description": "DownwardAPIVolumeFile represents information to create the file containing the pod field",
"properties": {
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported."
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'",
"type": "string"
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported."
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": {
"description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "Items is a list of downward API volume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": {
"description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
"properties": {
"medium": {
"description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir",
"type": "string"
},
"sizeLimit": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource": {
"description": "EnvFromSource represents the source of a set of ConfigMaps",
"properties": {
"configMapRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource",
"description": "The ConfigMap to select from"
},
"prefix": {
"description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource",
"description": "The Secret to select from"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar": {
"description": "EnvVar represents an environment variable present in a Container.",
"properties": {
"name": {
"description": "Name of the environment variable. Must be a C_IDENTIFIER.",
"type": "string"
},
"value": {
"description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".",
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource",
"description": "Source for the environment variable's value. Cannot be used if value is not empty."
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource": {
"description": "EnvVarSource represents a source for the value of an EnvVar.",
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector",
"description": "Selects a key of a ConfigMap."
},
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs."
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported."
},
"secretKeyRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector",
"description": "Selects a key of a secret in the pod's namespace"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer": {
"description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.",
"properties": {
"args": {
"description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"description": "List of environment variables to set in the container. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"envFrom": {
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"image": {
"description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images",
"type": "string"
},
"imagePullPolicy": {
"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
"type": "string"
},
"lifecycle": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle",
"description": "Lifecycle is not allowed for ephemeral containers."
},
"livenessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"name": {
"description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.",
"type": "string"
},
"ports": {
"description": "Ports are not allowed for ephemeral containers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort"
},
"type": "array"
},
"readinessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"resources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements",
"description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod."
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext",
"description": "SecurityContext is not allowed for ephemeral containers."
},
"startupProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"stdin": {
"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
"type": "boolean"
},
"stdinOnce": {
"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
"type": "boolean"
},
"targetContainerName": {
"description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.",
"type": "string"
},
"terminationMessagePath": {
"description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
"type": "string"
},
"terminationMessagePolicy": {
"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
"type": "string"
},
"tty": {
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
"type": "boolean"
},
"volumeDevices": {
"description": "volumeDevices is the list of block devices to be used by the container.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice"
},
"type": "array",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge"
},
"volumeMounts": {
"description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": {
"description": "ExecAction describes a \"run in container\" action.",
"properties": {
"command": {
"description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": {
"description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "Optional: FC target lun number",
"type": "integer"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"targetWWNs": {
"description": "Optional: FC target worldwide names (WWNs)",
"items": {
"type": "string"
},
"type": "array"
},
"wwids": {
"description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource": {
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
"properties": {
"driver": {
"description": "Driver is the name of the driver to use for this volume.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.",
"type": "string"
},
"options": {
"additionalProperties": {
"type": "string"
},
"description": "Optional: Extra command options if any.",
"type": "object"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts."
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": {
"description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.",
"properties": {
"datasetName": {
"description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
"type": "string"
},
"datasetUUID": {
"description": "UUID of the dataset. This is unique identifier of a Flocker dataset",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": {
"description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "integer"
},
"pdName": {
"description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "boolean"
}
},
"required": [
"pdName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource": {
"description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
"properties": {
"directory": {
"description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.",
"type": "string"
},
"repository": {
"description": "Repository URL",
"type": "string"
},
"revision": {
"description": "Commit hash for the specified revision.",
"type": "string"
}
},
"required": [
"repository"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": {
"description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"endpoints": {
"description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"path": {
"description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "boolean"
}
},
"required": [
"endpoints",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction": {
"description": "HTTPGetAction describes an action based on HTTP Get requests.",
"properties": {
"host": {
"description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
"type": "string"
},
"httpHeaders": {
"description": "Custom headers to set in the request. HTTP allows repeated headers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader"
},
"type": "array"
},
"path": {
"description": "Path to access on the HTTP server.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
},
"scheme": {
"description": "Scheme to use for connecting to the host. Defaults to HTTP.",
"type": "string"
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": {
"description": "HTTPHeader describes a custom header to be used in HTTP probes",
"properties": {
"name": {
"description": "The header field name",
"type": "string"
},
"value": {
"description": "The header field value",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": {
"description": "Handler defines a specific action that should be taken",
"properties": {
"exec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"httpGet": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"tcpSocket": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias": {
"description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
"properties": {
"hostnames": {
"description": "Hostnames for the above IP address.",
"items": {
"type": "string"
},
"type": "array"
},
"ip": {
"description": "IP address of the host file entry.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": {
"description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
},
"type": {
"description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource": {
"description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
"properties": {
"chapAuthDiscovery": {
"description": "whether support iSCSI Discovery CHAP authentication",
"type": "boolean"
},
"chapAuthSession": {
"description": "whether support iSCSI Session CHAP authentication",
"type": "boolean"
},
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi",
"type": "string"
},
"initiatorName": {
"description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
"type": "string"
},
"iqn": {
"description": "Target iSCSI Qualified Name.",
"type": "string"
},
"iscsiInterface": {
"description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "iSCSI Target Lun number.",
"type": "integer"
},
"portals": {
"description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"items": {
"type": "string"
},
"type": "array"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "CHAP Secret for iSCSI target and initiator authentication"
},
"targetPortal": {
"description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"type": "string"
}
},
"required": [
"targetPortal",
"iqn",
"lun"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath": {
"description": "Maps a string key to a path within a volume.",
"properties": {
"key": {
"description": "The key to project.",
"type": "string"
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.",
"type": "string"
}
},
"required": [
"key",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle": {
"description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.",
"properties": {
"postStart": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler",
"description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
},
"preStop": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler",
"description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": {
"description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": {
"description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "boolean"
},
"server": {
"description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
}
},
"required": [
"server",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity": {
"description": "Node affinity is a group of node affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector",
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": {
"description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.",
"properties": {
"nodeSelectorTerms": {
"description": "Required. A list of node selector terms. The terms are ORed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm"
},
"type": "array"
}
},
"required": [
"nodeSelectorTerms"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": {
"description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "The label key that the selector applies to.",
"type": "string"
},
"operator": {
"description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
"type": "string"
},
"values": {
"description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": {
"description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.",
"properties": {
"matchExpressions": {
"description": "A list of node selector requirements by node's labels.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
},
"matchFields": {
"description": "A list of node selector requirements by node's fields.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": {
"description": "ObjectFieldSelector selects an APIVersioned field of an object.",
"properties": {
"apiVersion": {
"description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
"type": "string"
},
"fieldPath": {
"description": "Path of the field to select in the specified API version.",
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": {
"description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).",
"properties": {
"claimName": {
"description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
"type": "string"
},
"readOnly": {
"description": "Will force the ReadOnly setting in VolumeMounts. Default false.",
"type": "boolean"
}
},
"required": [
"claimName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": {
"description": "Represents a Photon Controller persistent disk resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"pdID": {
"description": "ID that identifies Photon Controller persistent disk",
"type": "string"
}
},
"required": [
"pdID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity": {
"description": "Pod affinity is a group of inter pod affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": {
"description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running",
"properties": {
"labelSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "A label query over a set of resources, in this case pods."
},
"namespaces": {
"description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"",
"items": {
"type": "string"
},
"type": "array"
},
"topologyKey": {
"description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.",
"type": "string"
}
},
"required": [
"topologyKey"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": {
"description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig": {
"description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.",
"properties": {
"nameservers": {
"description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.",
"items": {
"type": "string"
},
"type": "array"
},
"options": {
"description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption"
},
"type": "array"
},
"searches": {
"description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption": {
"description": "PodDNSConfigOption defines DNS resolver options of a pod.",
"properties": {
"name": {
"description": "Required.",
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate": {
"description": "PodReadinessGate contains the reference to a pod condition",
"properties": {
"conditionType": {
"description": "ConditionType refers to a condition in the pod's condition list with matching type.",
"type": "string"
}
},
"required": [
"conditionType"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext": {
"description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.",
"properties": {
"fsGroup": {
"_format": "int64",
"description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.",
"type": "integer"
},
"fsGroupChangePolicy": {
"description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".",
"type": "string"
},
"runAsGroup": {
"_format": "int64",
"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"type": "integer"
},
"runAsNonRoot": {
"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "boolean"
},
"runAsUser": {
"_format": "int64",
"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"type": "integer"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container."
},
"supplementalGroups": {
"description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.",
"items": {
"_format": "int64",
"type": "integer"
},
"type": "array"
},
"sysctls": {
"description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl"
},
"type": "array"
},
"windowsOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions",
"description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec": {
"description": "PodSpec is a description of a pod.",
"properties": {
"activeDeadlineSeconds": {
"_format": "int64",
"description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.",
"type": "integer"
},
"affinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity",
"description": "If specified, the pod's scheduling constraints"
},
"automountServiceAccountToken": {
"description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.",
"type": "boolean"
},
"containers": {
"description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"dnsConfig": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig",
"description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy."
},
"dnsPolicy": {
"description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.",
"type": "string"
},
"enableServiceLinks": {
"description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.",
"type": "boolean"
},
"ephemeralContainers": {
"description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"hostAliases": {
"description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias"
},
"type": "array",
"x-kubernetes-patch-merge-key": "ip",
"x-kubernetes-patch-strategy": "merge"
},
"hostIPC": {
"description": "Use the host's ipc namespace. Optional: Default to false.",
"type": "boolean"
},
"hostNetwork": {
"description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.",
"type": "boolean"
},
"hostPID": {
"description": "Use the host's pid namespace. Optional: Default to false.",
"type": "boolean"
},
"hostname": {
"description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.",
"type": "string"
},
"imagePullSecrets": {
"description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"initContainers": {
"description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"nodeName": {
"description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.",
"type": "string"
},
"nodeSelector": {
"additionalProperties": {
"type": "string"
},
"description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/",
"type": "object"
},
"overhead": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.",
"type": "object"
},
"preemptionPolicy": {
"description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.",
"type": "string"
},
"priority": {
"_format": "int32",
"description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.",
"type": "integer"
},
"priorityClassName": {
"description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.",
"type": "string"
},
"readinessGates": {
"description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate"
},
"type": "array"
},
"restartPolicy": {
"description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy",
"type": "string"
},
"runtimeClassName": {
"description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.",
"type": "string"
},
"schedulerName": {
"description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.",
"type": "string"
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext",
"description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field."
},
"serviceAccount": {
"description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
"type": "string"
},
"serviceAccountName": {
"description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
"type": "string"
},
"shareProcessNamespace": {
"description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.",
"type": "boolean"
},
"subdomain": {
"description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.",
"type": "string"
},
"terminationGracePeriodSeconds": {
"_format": "int64",
"description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.",
"type": "integer"
},
"tolerations": {
"description": "If specified, the pod's tolerations.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration"
},
"type": "array"
},
"topologySpreadConstraints": {
"description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is only honored by clusters that enable the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"topologyKey",
"whenUnsatisfiable"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "topologyKey",
"x-kubernetes-patch-strategy": "merge"
},
"volumes": {
"description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge,retainKeys"
}
},
"required": [
"containers"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec": {
"description": "PodTemplateSpec describes the data a pod should have when created from a template",
"properties": {
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec",
"description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": {
"description": "PortworxVolumeSource represents a Portworx volume resource.",
"properties": {
"fsType": {
"description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"volumeID": {
"description": "VolumeID uniquely identifies a Portworx volume",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm": {
"description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).",
"properties": {
"preference": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm",
"description": "A node selector term, associated with the corresponding weight."
},
"weight": {
"_format": "int32",
"description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
"type": "integer"
}
},
"required": [
"weight",
"preference"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe": {
"description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.",
"properties": {
"exec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"failureThreshold": {
"_format": "int32",
"description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
"type": "integer"
},
"httpGet": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"initialDelaySeconds": {
"_format": "int32",
"description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
"type": "integer"
},
"periodSeconds": {
"_format": "int32",
"description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
"type": "integer"
},
"successThreshold": {
"_format": "int32",
"description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.",
"type": "integer"
},
"tcpSocket": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
},
"timeoutSeconds": {
"_format": "int32",
"description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
"type": "integer"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource": {
"description": "Represents a projected volume source",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"sources": {
"description": "list of volume projections",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection"
},
"type": "array"
}
},
"required": [
"sources"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": {
"description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.",
"properties": {
"group": {
"description": "Group to map volume access to Default is no group",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.",
"type": "boolean"
},
"registry": {
"description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes",
"type": "string"
},
"tenant": {
"description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin",
"type": "string"
},
"user": {
"description": "User to map volume access to Defaults to serivceaccount user",
"type": "string"
},
"volume": {
"description": "Volume is a string that references an already created Quobyte volume by name.",
"type": "string"
}
},
"required": [
"registry",
"volume"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource": {
"description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd",
"type": "string"
},
"image": {
"description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"keyring": {
"description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"monitors": {
"description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"pool": {
"description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
},
"user": {
"description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors",
"image"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": {
"description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
"properties": {
"containerName": {
"description": "Container name: required for volumes, optional for env vars",
"type": "string"
},
"divisor": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Specifies the output format of the exposed resources, defaults to \"1\""
},
"resource": {
"description": "Required: resource to select",
"type": "string"
}
},
"required": [
"resource"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements": {
"description": "ResourceRequirements describes the compute resource requirements.",
"properties": {
"limits": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": "object"
},
"requests": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": {
"description": "SELinuxOptions are the labels to be applied to the container",
"properties": {
"level": {
"description": "Level is SELinux level label that applies to the container.",
"type": "string"
},
"role": {
"description": "Role is a SELinux role label that applies to the container.",
"type": "string"
},
"type": {
"description": "Type is a SELinux type label that applies to the container.",
"type": "string"
},
"user": {
"description": "User is a SELinux user label that applies to the container.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": {
"description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".",
"type": "string"
},
"gateway": {
"description": "The host address of the ScaleIO API Gateway.",
"type": "string"
},
"protectionDomain": {
"description": "The name of the ScaleIO Protection Domain for the configured storage.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
},
"sslEnabled": {
"description": "Flag to enable/disable SSL communication with Gateway, default false",
"type": "boolean"
},
"storageMode": {
"description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
"type": "string"
},
"storagePool": {
"description": "The ScaleIO Storage Pool associated with the protection domain.",
"type": "string"
},
"system": {
"description": "The name of the storage system as configured in ScaleIO.",
"type": "string"
},
"volumeName": {
"description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
"type": "string"
}
},
"required": [
"gateway",
"system",
"secretRef"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource": {
"description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector": {
"description": "SecretKeySelector selects a key of a Secret.",
"properties": {
"key": {
"description": "The key of the secret to select from. Must be a valid secret key.",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection": {
"description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": {
"description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"optional": {
"description": "Specify whether the Secret or its keys must be defined",
"type": "boolean"
},
"secretName": {
"description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext": {
"description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.",
"properties": {
"allowPrivilegeEscalation": {
"description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN",
"type": "boolean"
},
"capabilities": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities",
"description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime."
},
"privileged": {
"description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.",
"type": "boolean"
},
"procMount": {
"description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.",
"type": "string"
},
"readOnlyRootFilesystem": {
"description": "Whether this container has a read-only root filesystem. Default is false.",
"type": "boolean"
},
"runAsGroup": {
"_format": "int64",
"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "integer"
},
"runAsNonRoot": {
"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "boolean"
},
"runAsUser": {
"_format": "int64",
"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "integer"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
},
"windowsOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions",
"description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": {
"description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).",
"properties": {
"audience": {
"description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.",
"type": "string"
},
"expirationSeconds": {
"_format": "int64",
"description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.",
"type": "integer"
},
"path": {
"description": "Path is the path relative to the mount point of the file to project the token into.",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": {
"description": "Represents a StorageOS persistent volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted."
},
"volumeName": {
"description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.",
"type": "string"
},
"volumeNamespace": {
"description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl": {
"description": "Sysctl defines a kernel parameter to be set",
"properties": {
"name": {
"description": "Name of a property to set",
"type": "string"
},
"value": {
"description": "Value of a property to set",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction": {
"description": "TCPSocketAction describes an action based on opening a socket",
"properties": {
"host": {
"description": "Optional: Host name to connect to, defaults to the pod IP.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": {
"description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
"properties": {
"effect": {
"description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
"type": "string"
},
"key": {
"description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.",
"type": "string"
},
"operator": {
"description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.",
"type": "string"
},
"tolerationSeconds": {
"_format": "int64",
"description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.",
"type": "integer"
},
"value": {
"description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint": {
"description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
"properties": {
"labelSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain."
},
"maxSkew": {
"_format": "int32",
"description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.",
"type": "integer"
},
"topologyKey": {
"description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.",
"type": "string"
},
"whenUnsatisfiable": {
"description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.",
"type": "string"
}
},
"required": [
"maxSkew",
"topologyKey",
"whenUnsatisfiable"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume": {
"description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
"properties": {
"awsElasticBlockStore": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource",
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
},
"azureDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource",
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
},
"azureFile": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource",
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
},
"cephfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource",
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
},
"cinder": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource",
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
},
"configMap": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource",
"description": "ConfigMap represents a configMap that should populate this volume"
},
"csi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource",
"description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)."
},
"downwardAPI": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource",
"description": "DownwardAPI represents downward API about the pod that should populate this volume"
},
"emptyDir": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource",
"description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
},
"fc": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource",
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
},
"flexVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource",
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
},
"flocker": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource",
"description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
},
"gcePersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource",
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
},
"gitRepo": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource",
"description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
},
"glusterfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource",
"description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
},
"hostPath": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource",
"description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
},
"iscsi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource",
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
},
"name": {
"description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"nfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource",
"description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
},
"persistentVolumeClaim": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource",
"description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
},
"photonPersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource",
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
},
"portworxVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource",
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
},
"projected": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource",
"description": "Items for all in one resources secrets, configmaps, and downward API"
},
"quobyte": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource",
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
},
"rbd": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource",
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
},
"scaleIO": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource",
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
},
"secret": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource",
"description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
},
"storageos": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource",
"description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
},
"vsphereVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource",
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": {
"description": "volumeDevice describes a mapping of a raw block device within a container.",
"properties": {
"devicePath": {
"description": "devicePath is the path inside of the container that the device will be mapped to.",
"type": "string"
},
"name": {
"description": "name must match the name of a persistentVolumeClaim in the pod",
"type": "string"
}
},
"required": [
"name",
"devicePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": {
"description": "VolumeMount describes a mounting of a Volume within a container.",
"properties": {
"mountPath": {
"description": "Path within the container at which the volume should be mounted. Must not contain ':'.",
"type": "string"
},
"mountPropagation": {
"description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.",
"type": "string"
},
"name": {
"description": "This must match the Name of a Volume.",
"type": "string"
},
"readOnly": {
"description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
"type": "boolean"
},
"subPath": {
"description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
"type": "string"
},
"subPathExpr": {
"description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.",
"type": "string"
}
},
"required": [
"name",
"mountPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": {
"description": "Projection that may be projected along with other supported volume types",
"properties": {
"configMap": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection",
"description": "information about the configMap data to project"
},
"downwardAPI": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection",
"description": "information about the downwardAPI data to project"
},
"secret": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection",
"description": "information about the secret data to project"
},
"serviceAccountToken": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection",
"description": "information about the serviceAccountToken data to project"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": {
"description": "Represents a vSphere volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"storagePolicyID": {
"description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
"type": "string"
},
"storagePolicyName": {
"description": "Storage Policy Based Management (SPBM) profile name.",
"type": "string"
},
"volumePath": {
"description": "Path that identifies vSphere volume vmdk",
"type": "string"
}
},
"required": [
"volumePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": {
"description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
"properties": {
"podAffinityTerm": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm",
"description": "Required. A pod affinity term, associated with the corresponding weight."
},
"weight": {
"_format": "int32",
"description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
"type": "integer"
}
},
"required": [
"weight",
"podAffinityTerm"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": {
"description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
"properties": {
"gmsaCredentialSpec": {
"description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.",
"type": "string"
},
"gmsaCredentialSpecName": {
"description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
"type": "string"
},
"runAsUserName": {
"description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"description": "ReplicaSetSpec is the specification of a ReplicaSet.",
"properties": {
"minReadySeconds": {
"description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)",
"format": "int32",
"type": [
"integer",
"null"
]
},
"replicas": {
"description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller",
"format": "int32",
"type": [
"integer",
"null"
]
},
"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 pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. 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": "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template"
}
},
"type": "object"
} | kb_808_Normalized |
{
"description": "A configuration of the sprite animation.</a>",
"properties": {
"end": {
"description": "The index of the ending frame.",
"example": 24,
"title": "End",
"type": "number"
},
"frameRate": {
"default": 30,
"description": "The number of frame per second to use for this animation. That modifies the speed of the animation.",
"example": 24,
"title": "Frame rate",
"type": "number"
},
"loop": {
"default": true,
"description": "If loop is set to true, the sprite animation will loop",
"example": false,
"title": "Loop",
"type": "boolean"
},
"name": {
"description": "The name of the animation.",
"example": "animation-0",
"title": "Name",
"type": "string"
},
"start": {
"description": "The index of the starting frame.",
"example": 0,
"title": "Start",
"type": "number"
}
},
"required": [
"name"
],
"title": "SpriteAnimationConfig",
"type": "object"
} | o44258 |
{
"properties": {
"end_time": {
"description": "The end time of the meeting",
"format": "date-time",
"type": "string"
},
"participants": {
"description": "Email addresses of the meeting participants",
"items": {
"type": "string"
},
"type": "array"
},
"start_time": {
"description": "The start time of the meeting",
"format": "date-time",
"type": "string"
},
"title": {
"description": "The title of the meeting",
"type": "string"
}
},
"required": [
"title",
"start_time",
"end_time",
"participants"
],
"type": "object"
} | schedule_meeting_d7c6d780 |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"side_length": {
"description": "The side length of the square",
"type": "number"
}
},
"required": [
"radius",
"side_length",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The type of shape (circle, square, triangle, etc.)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_c4a1d9a4 |
{
"properties": {
"comment": {
"type": "string"
},
"onContentLoad": {
"min": -1,
"type": "number"
},
"onLoad": {
"min": -1,
"type": "number"
}
},
"type": "object"
} | o90448 |
Subsets and Splits