json_schema
stringlengths 43
1.28M
| unique_id
stringlengths 2
41
|
---|---|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"applicationId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"lastUpdated": {
"type": "string",
"format": "date-time"
},
"lastUpdatedById": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"lastUpdatedByType": {
"type": "string",
"enum": [
"flow",
"user",
"apiToken"
]
},
"content": {
"type": "string"
}
}
} | o9789 |
{
"properties": {
"cuisine": {
"description": "The desired cuisine type",
"type": "string"
},
"dietary_restrictions": {
"description": "Any dietary restrictions to consider",
"items": {
"type": "string"
},
"type": "array"
},
"ingredients": {
"description": "The ingredients to search for",
"items": {
"type": "string"
},
"type": "array"
},
"max_prep_time": {
"description": "The maximum preparation time in minutes",
"type": "integer"
}
},
"required": [
"ingredients"
],
"type": "object"
} | search_recipes_df373236 |
{
"definitions": {
"factoryConfig": {
"allOf": [
{
"$ref": "#/definitions/importPath"
},
{
"properties": {
"factoryId": {
"$ref": "#/definitions/positiveInteger"
}
}
}
]
},
"factoryConfigArray": {
"items": {
"$ref": "#/definitions/factoryConfig"
},
"type": "array"
},
"importPath": {
"properties": {
"exportedName": {
"type": "string"
},
"path": {
"format": "uri-reference",
"type": "string"
}
},
"type": "object"
},
"listenerConfig": {
"allOf": [
{
"$ref": "#/definitions/importPath"
},
{
"properties": {
"type": {
"enum": [
"lifecycle",
"membership"
]
}
}
}
]
},
"positiveInteger": {
"minimum": 0,
"multipleOf": 1,
"type": "number"
},
"propertiesObject": {
"additionalProperties": {
"type": [
"number",
"string",
"boolean"
]
},
"propertyNames": {
"pattern": "^[^ ]*$"
},
"type": "object"
}
},
"properties": {
"clientLabels": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"clusterName": {
"type": [
"string",
"null"
]
},
"connectionStrategy": {
"properties": {
"asyncStart": {
"default": false,
"type": "boolean"
},
"connectionRetry": {
"properties": {
"clusterConnectTimeoutMillis": {
"type": "number"
},
"initialBackoffMillis": {
"minimum": 0,
"type": "number"
},
"jitter": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"maxBackoffMillis": {
"minimum": 0,
"type": "number"
},
"multiplier": {
"minimum": 1,
"type": "number"
}
},
"type": "object"
},
"reconnectMode": {
"enum": [
"on",
"off",
"async"
]
}
},
"type": "object"
},
"import": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
},
"instanceName": {
"type": [
"string",
"null"
]
},
"listeners": {
"items": {
"$ref": "#/definitions/listenerConfig"
},
"type": "array"
},
"loadBalancer": {
"properties": {
"type": {
"enum": [
"roundRobin",
"random"
]
}
},
"type": "object"
},
"nearCaches": {
"items": {
"properties": {
"evictionMaxSize": {
"$ref": "#/definitions/positiveInteger",
"default": "maximum safe integer"
},
"evictionPolicy": {
"default": "none",
"enum": [
"none",
"lru",
"lfu",
"random"
]
},
"evictionSamplingCount": {
"$ref": "#/definitions/positiveInteger",
"default": 8
},
"evictionSamplingPoolSize": {
"$ref": "#/definitions/positiveInteger",
"default": 16
},
"inMemoryFormat": {
"default": "binary",
"enum": [
"object",
"binary"
]
},
"invalidateOnChange": {
"default": true,
"type": "boolean"
},
"maxIdleSeconds": {
"default": 0,
"minimum": 0,
"type": "number"
},
"name": {
"minLength": 1,
"type": "string"
},
"timeToLiveSeconds": {
"default": 0,
"minimum": 0,
"type": "number"
}
},
"required": [
"name"
],
"type": "object"
},
"type": "array"
},
"network": {
"properties": {
"clusterMembers": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"connectionTimeout": {
"default": 5000,
"minimum": 1000,
"type": "number"
},
"hazelcastCloud": {
"properties": {
"discoveryToken": {
"type": [
"string",
"null"
]
},
"enabled": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"smartRouting": {
"default": true,
"type": "boolean"
},
"ssl": {
"properties": {
"enabled": {
"default": false,
"type": "boolean"
},
"factory": {
"anyOf": [
{
"$ref": "#/definitions/importPath"
},
{
"properties": {
"properties": {
"$ref": "#/definitions/propertiesObject"
}
},
"type": "object"
},
{
"type": "null"
}
]
},
"sslOptions": {
"anyOf": [
{
"properties": {
"properties": {
"$ref": "#/definitions/propertiesObject"
}
},
"type": "object"
},
{
"type": "null"
}
]
}
},
"type": "object"
}
},
"type": "object"
},
"properties": {
"$ref": "#/definitions/propertiesObject"
},
"reliableTopics": {
"items": {
"additionalProperties": false,
"properties": {
"name": {
"minLength": 1,
"type": "string"
},
"overloadPolicy": {
"default": "block",
"enum": [
"discard_oldest",
"discard_newest",
"block",
"error"
]
},
"readBatchSize": {
"$ref": "#/definitions/positiveInteger",
"default": 25
}
},
"required": [
"name"
],
"type": "object"
},
"type": "array"
},
"serialization": {
"properties": {
"dataSerializableFactories": {
"$ref": "#/definitions/factoryConfigArray"
},
"defaultNumberType": {
"default": "double",
"enum": [
"integer",
"float",
"double"
]
},
"globalSerializer": {
"$ref": "#/definitions/importPath"
},
"isBigEndian": {
"default": false,
"type": "boolean"
},
"jsonStringDeserializationPolicy": {
"default": "eager",
"enum": [
"eager",
"no_deserialization"
]
},
"portableFactories": {
"$ref": "#/definitions/factoryConfigArray"
},
"portableVersion": {
"$ref": "#/definitions/positiveInteger"
},
"serializers": {
"items": {
"allOf": [
{
"$ref": "#/definitions/importPath"
},
{
"properties": {
"typeId": {
"$ref": "#/definitions/positiveInteger"
}
},
"required": [
"typeId"
]
}
]
},
"type": "array"
}
},
"type": "object"
}
},
"title": "Hazelcast Node.js Client Configuration",
"type": "object"
} | o45586 |
{
"$ref": "#/definitions/T",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"Data": {
"additionalProperties": false,
"properties": {
"type": {
"type": "string"
},
"value": {
"$ref": "#/definitions/Value"
}
},
"required": [
"type",
"value"
],
"title": "Data",
"type": "object"
},
"FSData": {
"additionalProperties": false,
"properties": {
"driver": {
"type": "string"
},
"location": {
"type": "string"
}
},
"required": [
"driver",
"location"
],
"title": "FSData",
"type": "object"
},
"T": {
"additionalProperties": false,
"properties": {
"chunk_id": {
"_format": "uuid",
"type": "string"
},
"data": {
"$ref": "#/definitions/Data"
},
"output_chunk_id": {
"_format": "uuid",
"type": "string"
},
"state": {
"type": "string"
}
},
"required": [
"chunk_id",
"data",
"output_chunk_id",
"state"
],
"title": "T",
"type": "object"
},
"Value": {
"additionalProperties": false,
"properties": {
"fs_data": {
"$ref": "#/definitions/FSData"
}
},
"required": [
"fs_data"
],
"title": "Value",
"type": "object"
}
}
} | o15292 |
{
"additionalProperties": false,
"description": "Schema for a context of Google Analytics cookie values",
"properties": {
"__utma": {
"type": "string"
},
"__utmb": {
"type": "string"
},
"__utmc": {
"type": "string"
},
"__utmv": {
"type": "string"
},
"__utmz": {
"type": "string"
},
"_ga": {
"type": "string"
}
},
"self": {
"format": "jsonschema",
"name": "cookies",
"vendor": "com.google.analytics",
"version": "1-0-0"
},
"type": "object"
} | sp_28_Normalized |
{
"default": 0,
"description": "",
"title": "number",
"type": "number"
} | o28265 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"limit_exceeded": {
"description": "Whether the number of node granted under the license has been exceeded",
"type": "boolean"
},
"node_license": {
"description": "The number of nodes granted under the license",
"type": "integer"
},
"node_count": {
"description": "The number of nodes currently used",
"type": "integer"
},
"upgrade_url": {
"description": "The URL for more information on how to upgrade",
"type": "string",
"format": "uri"
}
},
"example": {
"limit_exceeded": true,
"node_license": 25,
"node_count": 370007,
"upgrade_url": "http://www.chef.io/contact/on-premises-simple"
}
} | o78135 |
{
"properties": {
"measurements": {
"properties": {
"base": {
"description": "The base of the triangle (if applicable)",
"type": "number"
},
"height": {
"description": "The height of the triangle (if applicable)",
"type": "number"
},
"length": {
"description": "The length of the rectangle (if applicable)",
"type": "number"
},
"radius": {
"description": "The radius of the circle (if applicable)",
"type": "number"
},
"width": {
"description": "The width of the rectangle (if applicable)",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of geometric shape (e.g. circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"measurements"
],
"type": "object"
} | calculate_area_313f90c1 |
{
"additionalProperties": false,
"description": "Schema for R2F (Right to be forgotten) criteria files that contain the identifiers for events that should be deleted.",
"oneOf": [
{
"required": [
"pojo"
]
},
{
"required": [
"json"
]
}
],
"properties": {
"json": {
"additionalProperties": false,
"description": "A JSON field from the EnrichedEvent POJO (e.g. contexts).",
"properties": {
"fieldName": {
"description": "The name of the field",
"enum": [
"contexts",
"derived_contexts",
"unstruct_event"
]
},
"jsonPath": {
"description": "The JsonPath that was specified",
"type": "string"
},
"schemaCriterion": {
"description": "The iglu schema corresponding to this field and value",
"pattern": "^iglu:([a-zA-Z0-9-_.]+)/([a-zA-Z0-9-_]+)/([a-zA-Z0-9-_]+)/([1-9][0-9]*|\\*)-((?:0|[1-9][0-9]*)|\\*)-((?:0|[1-9][0-9]*)|\\*)$",
"type": "string"
},
"valueForWhichEventWillBeDeleted": {
"description": "The value that, if present in that field, will cause the event to be deleted",
"type": "string"
}
},
"required": [
"fieldName",
"jsonPath",
"valueForWhichEventWillBeDeleted",
"schemaCriterion"
],
"type": "object"
},
"pojo": {
"additionalProperties": false,
"description": "A scalar field from the EnrichedEvent POJO (e.g. user_id)",
"properties": {
"fieldName": {
"description": "The name of the field",
"enum": [
"user_id",
"user_ipaddress",
"user_fingerprint",
"domain_userid",
"network_userid",
"ip_organization",
"ip_domain",
"tr_orderid",
"ti_orderid",
"mkt_term",
"mkt_content",
"se_category",
"se_action",
"se_label",
"se_property",
"mkt_clickid",
"refr_domain_userid",
"domain_sessionid"
]
},
"valueForWhichEventWillBeDeleted": {
"description": "The value that, if present in that field, will cause the event to be deleted",
"type": "string"
}
},
"required": [
"fieldName",
"valueForWhichEventWillBeDeleted"
],
"type": "object"
}
},
"self": {
"format": "jsonschema",
"name": "removal_criteria",
"vendor": "com.snowplowanalytics.snowplow.r2f",
"version": "1-0-0"
},
"type": "object"
} | sp_357_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"pageInfo": {
"type": "object",
"description": "Inspect page models received through wrapper events.",
"requires": [
"resource"
],
"properties": {
"resource": {
"type": "string",
"description": "The event topic through which to monitor pages.",
"format": "topic",
"axRole": "inlet"
}
}
},
"filter": {
"type": "object",
"description": "Allows to filter by topic or widget/activity instance",
"requires": [
"resource"
],
"properties": {
"resource": {
"type": "string",
"description": "The topic through which to publish filter information",
"format": "topic",
"axRole": "outlet"
}
}
}
}
} | o89608 |
{
"additionalProperties": false,
"properties": {
"active": {
"description": "e.g. mouse button is down",
"type": "boolean"
},
"char": {
"description": "keycode",
"oneOf": [
{
"type": "null"
},
{
"maxLength": 20,
"type": "string"
}
]
},
"element": {
"description": "id attribute",
"pattern": "^[a-f][a-f0-9]{31}$",
"type": "string"
},
"time": {
"description": "millis per Date.getTime",
"type": "integer"
},
"tool": {
"enum": [
"Pen",
"Hand",
"Eraser"
],
"type": "string"
},
"x": {
"description": "in SVG coordinates",
"type": "number"
},
"y": {
"description": "in SVG coordinates",
"type": "number"
}
},
"required": [
"time",
"tool",
"active"
],
"type": "object"
} | o6022 |
{
"properties": {
"all": {
"type": "boolean"
},
"currentconn": {
"readonly": true,
"type": "boolean"
},
"expirytime": {
"readonly": true,
"type": "integer"
},
"lastactivitytime": {
"readonly": true,
"type": "string"
},
"logintime": {
"readonly": true,
"type": "string"
},
"numofconnections": {
"readonly": true,
"type": "integer"
},
"sid": {
"type": "integer"
},
"username": {
"readonly": true,
"type": "string"
}
},
"title": "systemsession",
"type": "object"
} | o32246 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_IPBlock": {
"description": "IPBlock describes a particular CIDR (Ex. \"192.168.1.1/24\",\"2001:db9::/64\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.",
"properties": {
"cidr": {
"description": "CIDR is a string representing the IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\"",
"type": "string"
},
"except": {
"description": "Except is a slice of CIDRs that should not be included within an IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\" Except values will be rejected if they are outside the CIDR range",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"cidr"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyEgressRule": {
"description": "NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8",
"properties": {
"ports": {
"description": "List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyPort"
},
"type": "array"
},
"to": {
"description": "List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyPeer"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyIngressRule": {
"description": "NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.",
"properties": {
"from": {
"description": "List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyPeer"
},
"type": "array"
},
"ports": {
"description": "List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyPort"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyPeer": {
"description": "NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed",
"properties": {
"ipBlock": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_IPBlock",
"description": "IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be."
},
"namespaceSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "Selects Namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.\n\nIf PodSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects all Pods in the Namespaces selected by NamespaceSelector."
},
"podSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "This is a label selector which selects Pods. This field follows standard label selector semantics; if present but empty, it selects all pods.\n\nIf NamespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the Pods matching PodSelector in the policy's own Namespace."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyPort": {
"description": "NetworkPolicyPort describes a port to allow traffic on",
"properties": {
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers."
},
"protocol": {
"description": "The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"description": "NetworkPolicySpec provides the specification of a NetworkPolicy",
"properties": {
"egress": {
"description": "List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyEgressRule"
},
"type": [
"array",
"null"
]
},
"ingress": {
"description": "List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyIngressRule"
},
"type": [
"array",
"null"
]
},
"podSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace."
},
"policyTypes": {
"description": "List of rule types that the NetworkPolicy relates to. Valid options are \"Ingress\", \"Egress\", or \"Ingress,Egress\". If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an Egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
}
},
"required": [
"podSelector"
],
"type": "object"
} | kb_602_Normalized |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Append to Stream",
"type": "object",
"required": [
"messageId",
"type",
"jsonData"
],
"properties": {
"messageId": {
"type": "string",
"pattern": "^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
"x-schema-form": {
"key": "messageId",
"type": "uuid"
}
},
"type": {
"type": "string"
},
"jsonData": {
"type": "object",
"x-schema-form": {
"key": "jsonData",
"type": "textarea",
"rows": 30
}
},
"jsonMetadata": {
"type": "object",
"x-schema-form": {
"key": "jsonMetadata",
"type": "textarea",
"rows": 30
}
}
},
"additionalProperties": false
} | o34362 |
{
"properties": {
"builtin": {
"enum": [
"MODIFIABLE",
"DELETABLE",
"IMMUTABLE",
"PARTITION_ALL"
],
"readonly": true,
"type": "object"
},
"comment": {
"type": "string"
},
"feature": {
"enum": [
"WL",
"WebLogging",
"SP",
"SurgeProtection",
"LB",
"LoadBalancing",
"CS",
"ContentSwitching",
"CR",
"CacheRedirection",
"SC",
"SureConnect",
"CMP",
"CMPcntl",
"CompressionControl",
"PQ",
"PriorityQueuing",
"HDOSP",
"HttpDoSProtection",
"SSLVPN",
"AAA",
"GSLB",
"GlobalServerLoadBalancing",
"SSL",
"SSLOffload",
"SSLOffloading",
"CF",
"ContentFiltering",
"IC",
"IntegratedCaching",
"OSPF",
"OSPFRouting",
"RIP",
"RIPRouting",
"BGP",
"BGPRouting",
"REWRITE",
"IPv6PT",
"IPv6protocoltranslation",
"AppFw",
"ApplicationFirewall",
"RESPONDER",
"HTMLInjection",
"push",
"NSPush",
"NetScalerPush",
"AppFlow",
"CloudBridge",
"ISIS",
"ISISRouting",
"CH",
"CallHome",
"AppQoE",
"ContentAccelerator",
"SYSTEM",
"RISE",
"FEO",
"LSN",
"LargeScaleNAT",
"RDPProxy",
"Rep",
"Reputation",
"URLFiltering",
"VideoOptimization",
"ForwardProxy",
"SSLInterception",
"AdaptiveTCP",
"CQA",
"CI",
"ContentInspection",
"Bot"
],
"readonly": true,
"type": "string"
},
"hits": {
"readonly": true,
"type": "integer"
},
"name": {
"type": "string"
},
"newname": {
"type": "string"
},
"referencecount": {
"readonly": true,
"type": "integer"
},
"type": {
"enum": [
"clear_text_pd",
"clear_text_abr",
"encrypted_abr",
"trigger_enc_abr",
"trigger_body_detection"
],
"type": "string"
},
"undefhits": {
"readonly": true,
"type": "integer"
}
},
"title": "videooptimizationdetectionaction",
"type": "object"
} | o31108 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Dataset definition",
"description": "Definition of cDAL dataset",
"type": "object",
"properties": {
"datasetName": {
"description": "Name of dataset",
"type": "string"
},
"models": {
"type": "array",
"minItems": 1,
"_uniqueItems": true,
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"typeName": {
"type": "string"
},
"tableName": {
"type": "string"
},
"fields": {
"type": "array",
"minItems": 1,
"_uniqueItems": true,
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"name",
"type"
]
}
}
},
"required": [
"name",
"fields"
]
}
}
},
"required": [
"datasetName",
"models"
]
} | o42456 |
{
"$schema": "http://json-schema.org/draft-07/schema",
"additionalProperties": false,
"properties": {
"ansible-navigator": {
"additionalProperties": false,
"properties": {
"ansible": {
"additionalProperties": false,
"properties": {
"cmdline": {
"description": "Extra parameters passed to the corresponding command",
"type": "string"
},
"config": {
"additionalProperties": false,
"properties": {
"help": {
"default": false,
"description": "Help options for ansible-config command in stdout mode",
"enum": [
true,
false
],
"type": "boolean"
},
"path": {
"description": "Specify the path to the ansible configuration file",
"type": "string"
}
}
},
"doc": {
"additionalProperties": false,
"properties": {
"help": {
"default": false,
"description": "Help options for ansible-doc command in stdout mode",
"enum": [
true,
false
],
"type": "boolean"
},
"plugin": {
"additionalProperties": false,
"properties": {
"name": {
"description": "Specify the plugin name",
"type": "string"
},
"type": {
"default": "module",
"description": "Specify the plugin type, 'become', 'cache', 'callback', 'cliconf', 'connection', 'filter', 'httpapi', 'inventory', 'keyword', 'lookup', 'module', 'netconf', 'role', 'shell', 'strategy', 'test' or 'vars'",
"enum": [
"become",
"cache",
"callback",
"cliconf",
"connection",
"filter",
"httpapi",
"inventory",
"keyword",
"lookup",
"module",
"netconf",
"role",
"shell",
"strategy",
"test",
"vars"
],
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"inventory": {
"additionalProperties": false,
"properties": {
"entries": {
"description": "Specify an inventory file path or comma separated host list",
"items": {
"type": "string"
},
"type": "array"
},
"help": {
"default": false,
"description": "Help options for ansible-inventory command in stdout mode",
"enum": [
true,
false
],
"type": "boolean"
}
}
},
"playbook": {
"additionalProperties": false,
"properties": {
"help": {
"default": false,
"description": "Help options for ansible-playbook command in stdout mode",
"enum": [
true,
false
],
"type": "boolean"
},
"path": {
"description": "Specify the playbook name",
"type": "string"
}
}
}
},
"type": "object"
},
"ansible-builder": {
"additionalProperties": false,
"properties": {
"help": {
"default": false,
"description": "Help options for ansible-builder command in stdout mode",
"enum": [
true,
false
],
"type": "boolean"
},
"workdir": {
"default": ".",
"description": "Specify the path that contains ansible-builder manifest files",
"type": "string"
}
},
"type": "object"
},
"ansible-lint": {
"additionalProperties": false,
"properties": {
"config": {
"description": "Specify the path to the ansible-lint configuration file",
"type": "string"
},
"lintables": {
"description": "Path to files on which to run ansible-lint",
"type": "string"
}
},
"type": "object"
},
"ansible-runner": {
"additionalProperties": false,
"properties": {
"artifact-dir": {
"description": "The directory path to store artifacts generated by ansible-runner",
"type": "string"
},
"job-events": {
"default": false,
"description": "Write ansible-runner job_events in the artifact directory",
"enum": [
true,
false
],
"type": "boolean"
},
"rotate-artifacts-count": {
"description": "Keep ansible-runner artifact directories, for last n runs, if set to 0 artifact directories won't be deleted",
"type": "integer"
},
"timeout": {
"description": "The timeout value after which ansible-runner will forcefully stop the execution",
"type": "integer"
}
},
"type": "object"
},
"app": {
"default": "welcome",
"description": "Subcommands",
"enum": [
"builder",
"collections",
"config",
"doc",
"exec",
"images",
"inventory",
"lint",
"replay",
"run",
"settings",
"welcome"
],
"type": "string"
},
"collection-doc-cache-path": {
"default": "~/.cache/ansible-navigator/collection_doc_cache.db",
"description": "The path to collection doc cache",
"type": "string"
},
"color": {
"additionalProperties": false,
"properties": {
"enable": {
"default": true,
"description": "Enable the use of color for mode interactive and stdout",
"enum": [
true,
false
],
"type": "boolean"
},
"osc4": {
"default": true,
"description": "Enable or disable terminal color changing support with OSC 4",
"enum": [
true,
false
],
"type": "boolean"
}
},
"type": "object"
},
"editor": {
"additionalProperties": false,
"properties": {
"command": {
"default": "vi +{line_number} {filename}",
"description": "Specify the editor command",
"type": "string"
},
"console": {
"default": true,
"description": "Specify if the editor is console based",
"enum": [
true,
false
],
"type": "boolean"
}
},
"type": "object"
},
"enable-prompts": {
"default": false,
"description": "Enable prompts for password and in playbooks. This will set mode to stdout and disable playbook artifact creation",
"enum": [
true,
false
],
"type": "boolean"
},
"exec": {
"additionalProperties": false,
"properties": {
"command": {
"default": "/bin/bash",
"description": "Specify the command to run within the execution environment",
"type": "string"
},
"shell": {
"default": true,
"description": "Specify the exec command should be run in a shell",
"enum": [
true,
false
],
"type": "boolean"
}
},
"type": "object"
},
"execution-environment": {
"additionalProperties": false,
"properties": {
"container-engine": {
"default": "auto",
"description": "Specify the container engine (auto=podman then docker)",
"enum": [
"auto",
"podman",
"docker"
],
"type": "string"
},
"container-options": {
"description": "Extra parameters passed to the container engine command",
"items": {
"type": "string"
},
"type": "array"
},
"enabled": {
"default": true,
"description": "Enable or disable the use of an execution environment",
"enum": [
true,
false
],
"type": "boolean"
},
"environment-variables": {
"additionalProperties": false,
"properties": {
"pass": {
"description": "Specify an existing environment variable to be passed through to and set within the execution environment (--penv MY_VAR)",
"items": {
"type": "string"
},
"type": "array"
},
"set": {
"description": "Specify an environment variable and a value to be set within the execution environment (--senv MY_VAR=42)",
"type": "object"
}
},
"type": "object"
},
"image": {
"description": "Specify the name of the execution environment image",
"type": "string"
},
"pull": {
"additionalProperties": false,
"properties": {
"arguments": {
"description": "Specify any additional parameters that should be added to the pull command when pulling an execution environment from a container registry. e.g. --pa='--tls-verify=false'",
"items": {
"type": "string"
},
"type": "array"
},
"policy": {
"default": "tag",
"description": "Specify the image pull policy always:Always pull the image, missing:Pull if not locally available, never:Never pull the image, tag:if the image tag is 'latest', always pull the image, otherwise pull if not locally available",
"enum": [
"always",
"missing",
"never",
"tag"
],
"type": "string"
}
}
},
"volume-mounts": {
"additionalProperties": false,
"description": "Specify volume to be bind mounted within an execution environment (--eev /home/user/test:/home/user/test:Z)",
"items": {
"additionalProperties": false,
"properties": {
"dest": {
"type": "string"
},
"options": {
"type": "string"
},
"src": {
"type": "string"
}
},
"required": [
"src",
"dest"
],
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"format": {
"default": "yaml",
"description": "Specify the format for stdout output.",
"enum": [
"json",
"yaml"
],
"type": "string"
},
"images": {
"additionalProperties": false,
"properties": {
"details": {
"default": [
"everything"
],
"description": "Provide detailed information about the selected execution environment image",
"items": {
"enum": [
"ansible_collections",
"ansible_version",
"everything",
"os_release",
"python_packages",
"python_version",
"redhat_release",
"system_packages"
],
"type": "string"
},
"type": "array"
}
}
},
"inventory-columns": {
"description": "Specify a host attribute to show in the inventory view",
"items": {
"type": "string"
},
"type": "array"
},
"logging": {
"additionalProperties": false,
"properties": {
"append": {
"default": true,
"description": "Specify if log messages should be appended to an existing log file, otherwise a new log file will be created per session",
"enum": [
true,
false
],
"type": "boolean"
},
"file": {
"default": "./ansible-navigator.log",
"description": "Specify the full path for the ansible-navigator log file",
"type": "string"
},
"level": {
"default": "warning",
"description": "Specify the ansible-navigator log level",
"enum": [
"debug",
"info",
"warning",
"error",
"critical"
],
"type": "string"
}
},
"type": "object"
},
"mode": {
"default": "interactive",
"description": "Specify the user-interface mode",
"enum": [
"stdout",
"interactive"
],
"type": "string"
},
"playbook-artifact": {
"additionalProperties": false,
"properties": {
"enable": {
"default": true,
"description": "Enable or disable the creation of artifacts for completed playbooks. Note: not compatible with '--mode stdout' when playbooks require user input",
"enum": [
true,
false
],
"type": "boolean"
},
"replay": {
"description": "Specify the path for the playbook artifact to replay",
"type": "string"
},
"save-as": {
"default": "{playbook_dir}/{playbook_name}-artifact-{time_stamp}.json",
"description": "Specify the name for artifacts created from completed playbooks. The following placeholders are available: {playbook_dir}, {playbook_name}, {playbook_status}, and {time_stamp}",
"type": "string"
}
},
"type": "object"
},
"settings": {
"additionalProperties": false,
"properties": {
"effective": {
"default": false,
"description": "Show the effective settings. Defaults, CLI parameters, environment variables, and the settings file will be combined",
"type": "boolean"
},
"sample": {
"default": false,
"description": "Generate a sample settings file",
"type": "boolean"
},
"schema": {
"default": "json",
"description": "Generate a schema for the settings file ('json'= draft-07 JSON Schema)",
"enum": [
"json"
],
"type": "string"
},
"sources": {
"default": false,
"description": "Show the source of each current settings entry",
"type": "boolean"
}
}
},
"time-zone": {
"default": "UTC",
"description": "Specify the IANA time zone to use or 'local' to use the system time zone",
"type": "string"
}
}
}
},
"required": [
"ansible-navigator"
],
"title": "ansible-navigator settings v3",
"type": "object",
"version": "3"
}
| ansible-navigator |
{
"title": "renderingRule",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"description": "Specifies the rendering rule for how the requested image should be rendered.",
"properties": {
"outputPixelType": {
"type": "string",
"description": "the output pixel type defines the output image's pixel type.",
"enum": [
"C128",
"C64",
"F32",
"F64",
"S16",
"S32",
"S8",
"U1",
"U16",
"U2",
"U32",
"U4",
"U8",
"UNKNOWN"
],
"default": "UNKNOWN"
},
"rasterFunction": {
"type": "string",
"description": "The raster function name identifies the processing or rendering to be performed. For a list of possible types, please see the [Raster Functions](http://resources.arcgis.com/en/help/arcgis-rest-api/#/Raster_Function_Objects/02r3000000rv000000/) help topic for additional information on this."
},
"rasterFunctionArguments": {
"type": "object",
"description": "The arguments for the referenced `rasterFunction`. For a description of arguments per raster function type, please see the [Raster Functions](http://resources.arcgis.com/en/help/arcgis-rest-api/#/Raster_Function_Objects/02r3000000rv000000/) help topic for additional information on this."
},
"variableName": {
"type": "string",
"description": "Variable name for the raster function."
}
},
"additionalProperties": false,
"esriDocumentation": {
"additionalInformation": "[Raster function objects](http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#//02r3000000rv000000) in ArcGIS REST API",
"examples": [
{
"title": "renderingRule with Aspect rasterFunction",
"code": {
"renderingRule": {
"rasterFunction": "Aspect"
}
}
},
{
"title": "rendering rule with ArgStatistics rasterFunction",
"code": {
"renderingRule": {
"rasterFunction": "ArgStatistics",
"rasterFunctionArguments": {
"ArgStatisticsType": 3,
"MinValue": 0.15,
"MaxValue": 1,
"UndefinedClass": 100,
"Raster": "$$"
},
"outputPixelType": "U8",
"variableName": "Raster"
}
}
}
]
}
} | o90298 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Action type",
"type": "object",
"properties": {
"name": {
"description": "A name to identify the action type. **Remark**: The name is unique in the organization.",
"type": "string"
},
"description": {
"description": "A human description of the action type.",
"type": "string"
},
"public": {
"description": "Make the action type available to everybody.",
"type": "boolean"
},
"type": {
"description": "Valid URL to define the action type.",
"type": "string"
},
"schema": {
"description": "A valid JSON Schema.",
"type": "object"
}
}
}
| o14464 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://schema.getpostman.com/json/collection/v2.0.0/",
"type": "object",
"properties": {
"info": {
"$ref": "#/definitions/info"
},
"item": {
"type": "array",
"description": "Items are the basic unit for a Postman collection. You can think of them as corresponding to a single API endpoint. Each Item has one request and may have multiple API responses associated with it.",
"items": {
"title": "Items",
"oneOf": [
{
"$ref": "#/definitions/item"
},
{
"$ref": "#/definitions/item-group"
}
]
}
},
"event": {
"description": "Postman allows you to configure scripts to run when specific events occur. These scripts are stored here, and can be referenced in the collection by their ID.",
"type": "array",
"items": {
"$ref": "#/definitions/event"
}
},
"variable": {
"description": "Collection variables allow you to define a set of variables, that are a *part of the collection*, as opposed to environments, which are separate entities.\n*Note: Collection variables must not contain any sensitive information.*",
"type": "array",
"items": {
"$ref": "#/definitions/variable"
}
},
"auth": {
"$ref": "#/definitions/auth"
}
},
"required": [
"info",
"item"
],
"definitions": {
"auth": {
"type": "object",
"title": "Auth",
"id": "#/definitions/auth",
"description": "Represents authentication helpers provided by Postman",
"properties": {
"type": {
"type": "string",
"enum": [
"awsv4",
"basic",
"digest",
"hawk",
"noauth",
"oauth1",
"oauth2"
]
},
"awsv4": {
"type": "object",
"properties": {
"accessKey": {
"type": "string"
},
"secretKey": {
"type": "string"
},
"region": {
"type": "string"
},
"service": {
"type": "string"
}
}
},
"basic": {
"type": "object",
"properties": {
"username": {
"type": "string"
},
"password": {
"type": "string"
}
}
},
"digest": {
"type": "object",
"properties": {
"username": {
"type": "string"
},
"realm": {
"type": "string"
},
"password": {
"type": "string"
},
"nonce": {
"type": "string"
},
"nonceCount": {
"type": "string"
},
"algorithm": {
"type": "string"
},
"qop": {
"type": "string"
},
"clientNonce": {
"type": "string"
}
}
},
"hawk": {
"type": "object",
"properties": {
"authId": {
"type": "string"
},
"authKey": {
"type": "string"
},
"algorithm": {
"type": "string"
},
"user": {
"type": "string"
},
"nonce": {
"type": "string"
},
"extraData": {
"type": "string"
},
"appId": {
"type": "string"
},
"delegation": {
"type": "string"
}
}
},
"noauth": {},
"oauth1": {
"type": "object",
"properties": {
"consumerKey": {
"type": "string"
},
"consumerSecret": {
"type": "string"
},
"token": {
"type": "string"
},
"tokenSecret": {
"type": "string"
},
"signatureMethod": {
"type": "string"
},
"timeStamp": {
"type": "string"
},
"nonce": {
"type": "string"
},
"version": {
"type": "string"
},
"realm": {
"type": "string"
},
"encodeOAuthSign": {
"type": "string"
}
}
},
"oauth2": {
"type": "object",
"properties": {
"addTokenTo": {
"type": "string"
},
"callBackUrl": {
"type": "string"
},
"authUrl": {
"type": "string"
},
"accessTokenUrl": {
"type": "string"
},
"clientId": {
"type": "string"
},
"clientSecret": {
"type": "string"
},
"scope": {
"type": "string"
},
"requestAccessTokenLocally": {
"type": "string"
}
}
}
},
"required": [
"type"
]
},
"cookie": {
"type": "object",
"title": "Cookie",
"id": "#/definitions/cookie",
"description": "A Cookie, that follows the [Google Chrome format](https://developer.chrome.com/extensions/cookies)",
"properties": {
"domain": {
"type": "string",
"description": "The domain for which this cookie is valid."
},
"expires": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
],
"description": "When the cookie expires."
},
"maxAge": {
"type": "string"
},
"hostOnly": {
"type": "boolean",
"description": "True if the cookie is a host-only cookie. (i.e. a request's URL domain must exactly match the domain of the cookie)."
},
"httpOnly": {
"type": "boolean",
"description": "Indicates if this cookie is HTTP Only. (if True, the cookie is inaccessible to client-side scripts)"
},
"name": {
"type": "string",
"description": "This is the name of the Cookie."
},
"path": {
"type": "string",
"description": "The path associated with the Cookie."
},
"secure": {
"type": "boolean",
"description": "Indicates if the 'secure' flag is set on the Cookie, meaning that it is transmitted over secure connections only. (typically HTTPS)"
},
"session": {
"type": "boolean",
"description": "True if the cookie is a session cookie."
},
"value": {
"type": "string",
"description": "The value of the Cookie."
},
"extensions": {
"type": "array",
"description": "Custom attributes for a cookie go here, such as the [Priority Field](https://code.google.com/p/chromium/issues/detail?id=232693)"
}
},
"required": [
"domain",
"path"
]
},
"description": {
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "#/definitions/description",
"description": "A Description can be a raw text, or be an object, which holds the description along with its format.",
"oneOf": [
{
"type": "object",
"title": "Description",
"properties": {
"content": {
"type": "string",
"description": "The content of the description goes here, as a raw string."
},
"type": {
"type": "string",
"description": "Holds the mime type of the raw description content. E.g: 'text/markdown' or 'text/html'.\nThe type is used to correctly render the description when generating documentation, or in the Postman app."
},
"version": {
"description": "Description can have versions associated with it, which should be put in this property."
}
}
},
{
"type": "string"
}
]
},
"event": {
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "#/definitions/event",
"title": "Event",
"description": "An Event",
"type": "object",
"properties": {
"listen": {
"type": "string",
"description": "Can be set to `test` or `prerequest` for test scripts or pre-request scripts respectively."
},
"script": {
"$ref": "#/definitions/script"
},
"disabled": {
"type": "boolean",
"description": "Indicates whether the event is disabled. If absent, the event is assumed to be enabled."
}
},
"required": [
"listen"
]
},
"header": {
"type": "object",
"title": "Header",
"id": "#/definitions/header",
"description": "Represents a single HTTP Header",
"properties": {
"key": {
"description": "This holds the LHS of the HTTP Header, e.g ``Content-Type`` or ``X-Custom-Header``",
"type": "string"
},
"value": {
"type": "string",
"description": "The value (or the RHS) of the Header is stored in this field."
}
},
"required": [
"key",
"value"
]
},
"info": {
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "#/definitions/info",
"title": "Information",
"description": "Detailed description of the info block",
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Name of the collection",
"description": "A collection's friendly name is defined by this field. You would want to set this field to a value that would allow you to easily identify this collection among a bunch of other collections, as such outlining its usage or content."
},
"_postman_id": {
"type": "string",
"description": "Every collection is identified by the unique value of this field. The value of this field is usually easiest to generate using a UID generator function. If you already have a collection, it is recommended that you maintain the same id since changing the id usually implies that is a different collection than it was originally.\n *Note: This field exists for compatibility reasons with Collection Format V1.*"
},
"description": {
"$ref": "#/definitions/description"
},
"version": {
"oneOf": [
{
"type": "object",
"title": "Version",
"description": "Postman allows you to version your collections as they grow, and this field holds the version number. While optional, it is recommended that you use this field to its fullest extent!",
"properties": {
"major": {
"description": "Increment this number if you make changes to the collection that changes its behaviour. E.g: Removing or adding new test scripts. (partly or completely).",
"type": "string"
},
"minor": {
"description": "You should increment this number if you make changes that will not break anything that uses the collection. E.g: removing a folder.",
"type": "string"
},
"patch": {
"description": "Ideally, minor changes to a collection should result in the increment of this number.",
"type": "string"
},
"identifier": {
"description": "A human friendly identifier to make sense of the version numbers. E.g: 'beta-3'",
"type": "string",
"maxLength": 10
},
"meta": {}
},
"required": [
"major",
"minor",
"patch"
]
},
{
"type": "string"
}
]
},
"schema": {
"description": "This should ideally hold a link to the Postman schema that is used to validate this collection. E.g: https://schema.getpostman.com/collection/v1",
"type": "string"
}
},
"required": [
"name",
"schema"
]
},
"item-group": {
"title": "Folder",
"id": "#/definitions/item-group",
"description": "One of the primary goals of Postman is to organize the development of APIs. To this end, it is necessary to be able to group requests together. This can be achived using 'Folders'. A folder just is an ordered set of requests.",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "A folder's friendly name is defined by this field. You would want to set this field to a value that would allow you to easily identify this folder."
},
"description": {
"type": "string",
"description": "Essays about the folder go into this field!"
},
"item": {
"description": "Items are entities which contain an actual HTTP request, and sample responses attached to it. Folders may contain many items.",
"type": "array",
"items": {
"title": "Items",
"anyOf": [
{
"$ref": "#/definitions/item"
},
{
"$ref": "#/definitions/item-group"
}
]
}
},
"auth": {
"$ref": "#/definitions/auth"
}
},
"required": [
"item"
]
},
"item": {
"type": "object",
"title": "Item",
"id": "#/definitions/item",
"description": "Items are entities which contain an actual HTTP request, and sample responses attached to it.",
"properties": {
"id": {
"type": "string",
"description": "A unique ID that is used to identify collections internally"
},
"name": {
"description": "A friendly name can be attached to each Item.",
"type": "string"
},
"event": {
"description": "Postman allows you to configure scripts to run when specific events occur. These scripts are stored here, and can be referenced in the collection by their ID.",
"type": "array",
"items": {
"$ref": "#/definitions/event"
}
},
"request": {
"$ref": "#/definitions/request"
},
"response": {
"type": "array",
"title": "Responses",
"items": {
"$ref": "#/definitions/response"
}
}
},
"required": [
"request"
]
},
"request": {
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "#/definitions/request",
"title": "Request",
"description": "A request represents an HTTP request. If a string, the string is assumed to be the request URL and the method is assumed to be 'GET'.",
"oneOf": [
{
"type": "object",
"title": "Request",
"properties": {
"url": {
"$ref": "#/definitions/url"
},
"auth": {
"$ref": "#/definitions/auth"
},
"method": {
"description": "The HTTP method associated with this request.",
"type": "string",
"enum": [
"GET",
"PUT",
"POST",
"PATCH",
"DELETE",
"COPY",
"HEAD",
"OPTIONS",
"LINK",
"UNLINK",
"PURGE",
"LOCK",
"UNLOCK",
"PROPFIND",
"VIEW"
]
},
"header": {
"oneOf": [
{
"type": "array",
"title": "Headers",
"description": "No HTTP request is complete without its headers, and the same is true for a Postman request. This field is an array containing all the headers.",
"items": {
"$ref": "#/definitions/header"
}
},
{
"type": "string"
}
]
},
"body": {
"type": "object",
"description": "This field contains the data usually contained in the request body.",
"properties": {
"mode": {
"description": "Postman stores the type of data associated with this request in this field.",
"enum": [
"raw",
"urlencoded",
"formdata"
]
},
"raw": {
"type": "string"
},
"urlencoded": {
"type": "array",
"items": {
"type": "object",
"title": "UrlEncodedParameter",
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
},
"enabled": {
"type": "boolean"
}
}
}
},
"formdata": {
"type": "array",
"items": {
"type": "object",
"title": "FormParameter",
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
},
"enabled": {
"type": "boolean"
}
}
}
}
}
}
}
},
{
"type": "string"
}
]
},
"response": {
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "#/definitions/response",
"title": "Response",
"description": "A response represents an HTTP response.",
"properties": {
"originalRequest": {
"$ref": "#/definitions/request"
},
"responseTime": {
"title": "ResponseTime",
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
],
"description": "The time taken by the request to complete. If a number, the unit is milliseconds."
},
"header": {
"title": "Headers",
"oneOf": [
{
"type": "array",
"title": "Header",
"description": "No HTTP request is complete without its headers, and the same is true for a Postman request. This field is an array containing all the headers.",
"items": {
"oneOf": [
{
"$ref": "#/definitions/header"
},
{
"title": "Header",
"type": "string"
}
]
}
},
{
"type": "string"
}
]
},
"cookie": {
"type": "array",
"items": {
"$ref": "#/definitions/cookie"
}
},
"body": {
"type": "string",
"description": "The raw text of the response."
},
"status": {
"type": "string",
"description": "The response status, e.g: '200 OK'"
},
"code": {
"type": "integer",
"description": "The numerical response code, example: 200, 201, 404, etc."
}
}
},
"script": {
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "#/definitions/script",
"title": "Script",
"description": "A script is a snippet of Javascript code that can be used to to perform setup or teardown operations on a particular response.",
"oneOf": [
{
"title": "Script",
"type": "object",
"properties": {
"id": {
"description": "A unique, user defined identifier that can be used to refer to this script from requests.",
"type": "string"
},
"type": {
"description": "Type of the script. E.g: 'text/javascript'",
"type": "string"
},
"exec": {
"oneOf": [
{
"type": "array",
"description": "This is an array of strings, where each line represents a single line of code. Having lines separate makes it possible to easily track changes made to scripts.",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"src": {
"$ref": "#/definitions/url"
},
"name": {
"type": "string",
"description": "Script name"
}
}
},
{
"type": "string"
}
]
},
"url": {
"description": "If object, contains the complete broken-down URL for this request. If string, contains the literal request URL.",
"id": "#/definitions/url",
"title": "Url",
"oneOf": [
{
"type": "object",
"properties": {
"protocol": {
"type": "string",
"description": "The protocol associated with the request, E.g: 'http'"
},
"domain": {
"title": "Domain",
"description": "The domain for the URL, E.g: api.yourdomain.com. Can be stored as a string or as an array of strings.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
},
"description": "The domain, split into subdomain strings."
}
]
},
"path": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"description": "The complete path of the current url, broken down into segments. A segment could be a string, or a path variable.",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"type": {
"type": "string"
},
"value": {
"type": "string"
}
}
}
]
}
}
]
},
"port": {
"type": "string",
"description": "The port number present in this URL. An empty value implies 80/443 depending on whether the protocol field contains http/https."
},
"query": {
"type": "array",
"description": "An array of QueryParams, which is basically the query string part of the URL, parsed into separate variables",
"items": {
"type": "object",
"title": "QueryParam",
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
},
"hash": {
"description": "Contains the URL fragment (if any). Usually this is not transmitted over the network, but it could be useful to store this in some cases.",
"type": "string"
},
"variable": {
"type": "array",
"description": "Postman supports path variables with the syntax `/path/:variableName/to/somewhere`. These variables are stored in this field.",
"items": {
"$ref": "#/definitions/variable"
}
}
}
},
{
"type": "string"
}
]
},
"variable": {
"id": "#/definitions/variable",
"title": "Variable",
"description": "Using variables in your Postman requests eliminates the need to duplicate requests, which can save a lot of time. Variables can be defined, and referenced to from any part of a request.",
"type": "object",
"properties": {
"id": {
"description": "A variable ID is a unique user-defined value that identifies the variable within a collection. In traditional terms, this would be a variable name.",
"type": "string"
},
"value": {
"description": "The value that a variable holds in this collection. Ultimately, the variables will be replaced by this value, when say running a set of requests from a collection"
},
"type": {
"description": "A variable may have multiple types. This field specifies the type of the variable.",
"type": "string"
},
"name": {
"type": "string",
"description": "Variable name"
}
}
}
}
} | o71454 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "USSD Language step",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"kind": {
"enum": [
"ussdLanguage"
]
},
"label": {
"type": "string"
},
"title": {
"type": "string"
},
"language": {
"type": [
"string",
"null"
]
},
"iface": {
"type": "object"
}
},
"required": [
"name",
"kind",
"label",
"title",
"language"
]
} | o58495 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_CSINodeDriver": {
"description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node",
"properties": {
"allocatable": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_VolumeNodeResources",
"description": "allocatable represents the volume resources of a node that are available for scheduling."
},
"name": {
"description": "This is the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.",
"type": "string"
},
"nodeID": {
"description": "nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as \"node1\", but the storage system may refer to the same node as \"nodeA\". When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. \"nodeA\" instead of \"node1\". This field is required.",
"type": "string"
},
"topologyKeys": {
"description": "topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. \"company.com/zone\", \"company.com/region\"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"nodeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_VolumeNodeResources": {
"description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.",
"properties": {
"count": {
"_format": "int32",
"description": "Maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is nil, then the supported number of volumes on this node is unbounded.",
"type": "integer"
}
},
"type": "object"
}
},
"description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node",
"properties": {
"drivers": {
"description": "drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_CSINodeDriver"
},
"type": [
"array",
"null"
],
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
}
},
"required": [
"drivers"
],
"type": "object"
} | kb_178_Normalized |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"id": "https://angular.io/schemas/cli-1/schema",
"title": "Angular CLI Configuration",
"type": "object",
"properties": {
"$schema": {
"type": "string"
},
"version": {
"$ref": "#/definitions/fileVersion"
},
"cli": {
"$ref": "#/definitions/cliOptions"
},
"schematics": {
"$ref": "#/definitions/schematicOptions"
},
"newProjectRoot": {
"type": "string",
"description": "Path where new projects will be created."
},
"defaultProject": {
"type": "string",
"description": "Default project name used in commands."
},
"projects": {
"type": "object",
"patternProperties": {
"^(?:@[a-zA-Z0-9_-]+\/)?[a-zA-Z0-9_-]+$": {
"$ref": "#/definitions/project"
}
},
"additionalProperties": false
}
},
"additionalProperties": false,
"required": [
"version"
],
"definitions": {
"cliOptions": {
"type": "object",
"properties": {
"defaultCollection": {
"description": "The default schematics collection to use.",
"type": "string"
},
"packageManager": {
"description": "Specify which package manager tool to use.",
"type": "string",
"enum": [ "npm", "cnpm", "yarn", "pnpm" ]
},
"warnings": {
"description": "Control CLI specific console warnings",
"type": "object",
"properties": {
"versionMismatch": {
"description": "Show a warning when the global version is newer than the local one.",
"type": "boolean"
}
}
},
"analytics": {
"type": ["boolean", "string"],
"description": "Share anonymous usage data with the Angular Team at Google."
}
},
"additionalProperties": false
},
"schematicOptions": {
"type": "object",
"properties": {
"@schematics/angular:component": {
"type": "object",
"properties": {
"changeDetection": {
"description": "Specifies the change detection strategy.",
"enum": ["Default", "OnPush"],
"type": "string",
"default": "Default",
"alias": "c"
},
"displayBlock": {
"description": "Specifies if the style will contain `:host { display: block; }`.",
"type": "boolean",
"default": false,
"alias": "b"
},
"entryComponent": {
"type": "boolean",
"default": false,
"description": "Specifies if the component is an entry component of declaring module."
},
"export": {
"type": "boolean",
"default": false,
"description": "Specifies if declaring module exports the component."
},
"flat": {
"type": "boolean",
"description": "Flag to indicate if a directory is created.",
"default": false
},
"inlineStyle": {
"description": "Specifies if the style will be in the ts file.",
"type": "boolean",
"default": false,
"alias": "s"
},
"inlineTemplate": {
"description": "Specifies if the template will be in the ts file.",
"type": "boolean",
"default": false,
"alias": "t"
},
"module": {
"type": "string",
"description": "Allows specification of the declaring module.",
"alias": "m"
},
"prefix": {
"type": "string",
"format": "html-selector",
"description": "The prefix to apply to generated selectors.",
"alias": "p"
},
"selector": {
"type": "string",
"format": "html-selector",
"description": "The selector to use for the component."
},
"skipImport": {
"type": "boolean",
"description": "Flag to skip the module import.",
"default": false
},
"style": {
"description": "The file extension or preprocessor to use for style files.",
"type": "string",
"default": "css",
"enum": [
"css",
"scss",
"sass",
"less",
"styl"
]
},
"viewEncapsulation": {
"description": "Specifies the view encapsulation strategy.",
"enum": ["Emulated", "Native", "None", "ShadowDom"],
"type": "string",
"alias": "v"
},
"skipTests": {
"type": "boolean",
"description": "When true, does not create test files.",
"default": false
}
}
},
"@schematics/angular:directive": {
"type": "object",
"properties": {
"export": {
"type": "boolean",
"default": false,
"description": "Specifies if declaring module exports the directive."
},
"flat": {
"type": "boolean",
"description": "Flag to indicate if a directory is created.",
"default": true
},
"module": {
"type": "string",
"description": "Allows specification of the declaring module.",
"alias": "m"
},
"prefix": {
"type": "string",
"format": "html-selector",
"description": "The prefix to apply to generated selectors.",
"default": "app",
"alias": "p"
},
"selector": {
"type": "string",
"format": "html-selector",
"description": "The selector to use for the directive."
},
"skipImport": {
"type": "boolean",
"description": "Flag to skip the module import.",
"default": false
},
"skipTests": {
"type": "boolean",
"description": "When true, does not create test files.",
"default": false
}
}
},
"@schematics/angular:module": {
"type": "object",
"properties": {
"routing": {
"type": "boolean",
"description": "Generates a routing module.",
"default": false
},
"routingScope": {
"enum": ["Child", "Root"],
"type": "string",
"description": "The scope for the generated routing.",
"default": "Child"
},
"flat": {
"type": "boolean",
"description": "Flag to indicate if a directory is created.",
"default": false
},
"commonModule": {
"type": "boolean",
"description": "Flag to control whether the CommonModule is imported.",
"default": true,
"visible": false
},
"module": {
"type": "string",
"description": "Allows specification of the declaring module.",
"alias": "m"
}
}
},
"@schematics/angular:service": {
"type": "object",
"properties": {
"flat": {
"type": "boolean",
"default": true,
"description": "Flag to indicate if a directory is created."
},
"skipTests": {
"type": "boolean",
"description": "When true, does not create test files.",
"default": false
}
}
},
"@schematics/angular:pipe": {
"type": "object",
"properties": {
"flat": {
"type": "boolean",
"default": true,
"description": "Flag to indicate if a directory is created."
},
"skipTests": {
"type": "boolean",
"description": "When true, does not create test files.",
"default": false
},
"skipImport": {
"type": "boolean",
"default": false,
"description": "Allows for skipping the module import."
},
"module": {
"type": "string",
"default": "",
"description": "Allows specification of the declaring module.",
"alias": "m"
},
"export": {
"type": "boolean",
"default": false,
"description": "Specifies if declaring module exports the pipe."
}
}
},
"@schematics/angular:class": {
"type": "object",
"properties": {
"skipTests": {
"type": "boolean",
"description": "When true, does not create test files.",
"default": false
}
}
}
},
"additionalProperties": {
"type": "object"
}
},
"fileVersion": {
"type": "integer",
"description": "File format version",
"minimum": 1
},
"project": {
"type": "object",
"properties": {
"cli": {
"$ref": "#/definitions/cliOptions"
},
"schematics": {
"$ref": "#/definitions/schematicOptions"
},
"prefix": {
"type": "string",
"format": "html-selector",
"description": "The prefix to apply to generated selectors."
},
"root": {
"type": "string",
"description": "Root of the project files."
},
"i18n": {
"$ref": "#/definitions/project/definitions/i18n"
},
"sourceRoot": {
"type": "string",
"description": "The root of the source files, assets and index.html file structure."
},
"projectType": {
"type": "string",
"description": "Project type.",
"enum": [
"application",
"library"
]
},
"architect": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/project/definitions/target"
}
},
"targets": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/project/definitions/target"
}
}
},
"required": [
"root",
"projectType"
],
"anyOf": [
{
"required": ["architect"],
"not": {
"required": ["targets"]
}
},
{
"required": ["targets"],
"not": {
"required": ["architect"]
}
},
{
"not": {
"required": [
"targets",
"architect"
]
}
}
],
"additionalProperties": false,
"patternProperties": {
"^[a-z]{1,3}-.*": {}
},
"definitions": {
"i18n": {
"description": "Project i18n options",
"type": "object",
"properties": {
"sourceLocale": {
"oneOf": [
{
"type": "string",
"description": "Specifies the source locale of the application.",
"default": "en-US",
"$comment": "IETF BCP 47 language tag (simplified)",
"pattern": "^[a-zA-Z]{2,3}(-[a-zA-Z]{4})?(-([a-zA-Z]{2}|[0-9]{3}))?(-[a-zA-Z]{5,8})?(-x(-[a-zA-Z0-9]{1,8})+)?$"
},
{
"type": "object",
"description": "Localization options to use for the source locale",
"properties": {
"code": {
"type": "string",
"description": "Specifies the locale code of the source locale",
"pattern": "^[a-zA-Z]{2,3}(-[a-zA-Z]{4})?(-([a-zA-Z]{2}|[0-9]{3}))?(-[a-zA-Z]{5,8})?(-x(-[a-zA-Z0-9]{1,8})+)?$"
},
"baseHref": {
"type": "string",
"description": "HTML base HREF to use for the locale (defaults to the locale code)"
}
},
"additionalProperties": false
}
]
},
"locales": {
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^[a-zA-Z]{2,3}(-[a-zA-Z]{4})?(-([a-zA-Z]{2}|[0-9]{3}))?(-[a-zA-Z]{5,8})?(-x(-[a-zA-Z0-9]{1,8})+)?$": {
"oneOf": [
{
"type": "string",
"description": "Localization file to use for i18n"
},
{
"type": "array",
"description": "Localization files to use for i18n",
"items": {
"type": "string",
"uniqueItems": true
}
},
{
"type": "object",
"description": "Localization options to use for the locale",
"properties": {
"translation": {
"oneOf": [
{
"type": "string",
"description": "Localization file to use for i18n"
},
{
"type": "array",
"description": "Localization files to use for i18n",
"items": {
"type": "string",
"uniqueItems": true
}
}
]
},
"baseHref": {
"type": "string",
"description": "HTML base HREF to use for the locale (defaults to the locale code)"
}
},
"additionalProperties": false
}
]
}
}
}
},
"additionalProperties": false
},
"target": {
"oneOf": [
{
"$comment": "Extendable target with custom builder",
"type": "object",
"properties": {
"builder": {
"type": "string",
"description": "The builder used for this package.",
"not": {
"enum": [
"@angular-devkit/build-angular:app-shell",
"@angular-devkit/build-angular:browser",
"@angular-devkit/build-angular:dev-server",
"@angular-devkit/build-angular:extract-i18n",
"@angular-devkit/build-angular:karma",
"@angular-devkit/build-angular:protractor",
"@angular-devkit/build-angular:server",
"@angular-devkit/build-angular:tslint"
]
}
},
"options": {
"type": "object"
},
"configurations": {
"type": "object",
"description": "A map of alternative target options.",
"additionalProperties": {
"type": "object"
}
}
},
"required": [
"builder"
]
},
{
"type": "object",
"properties": {
"builder": { "const": "@angular-devkit/build-angular:app-shell" },
"options": { "$ref": "#/definitions/targetOptions/definitions/appShell" },
"configurations": {
"type": "object",
"additionalProperties": { "$ref": "#/definitions/targetOptions/definitions/appShell" }
}
}
},
{
"type": "object",
"properties": {
"builder": { "const": "@angular-devkit/build-angular:browser" },
"options": { "$ref": "#/definitions/targetOptions/definitions/browser" },
"configurations": {
"type": "object",
"additionalProperties": { "$ref": "#/definitions/targetOptions/definitions/browser" }
}
}
},
{
"type": "object",
"properties": {
"builder": { "const": "@angular-devkit/build-angular:dev-server" },
"options": { "$ref": "#/definitions/targetOptions/definitions/devServer" },
"configurations": {
"type": "object",
"additionalProperties": { "$ref": "#/definitions/targetOptions/definitions/devServer" }
}
}
},
{
"type": "object",
"properties": {
"builder": { "const": "@angular-devkit/build-angular:extract-i18n" },
"options": { "$ref": "#/definitions/targetOptions/definitions/extracti18n" },
"configurations": {
"type": "object",
"additionalProperties": { "$ref": "#/definitions/targetOptions/definitions/extracti18n" }
}
}
},
{
"type": "object",
"properties": {
"builder": { "const": "@angular-devkit/build-angular:karma" },
"options": { "$ref": "#/definitions/targetOptions/definitions/karma" },
"configurations": {
"type": "object",
"additionalProperties": { "$ref": "#/definitions/targetOptions/definitions/karma" }
}
}
},
{
"type": "object",
"properties": {
"builder": { "const": "@angular-devkit/build-angular:protractor" },
"options": { "$ref": "#/definitions/targetOptions/definitions/protractor" },
"configurations": {
"type": "object",
"additionalProperties": { "$ref": "#/definitions/targetOptions/definitions/protractor" }
}
}
},
{
"type": "object",
"properties": {
"builder": { "const": "@angular-devkit/build-angular:server" },
"options": { "$ref": "#/definitions/targetOptions/definitions/server" },
"configurations": {
"type": "object",
"additionalProperties": { "$ref": "#/definitions/targetOptions/definitions/server" }
}
}
},
{
"type": "object",
"properties": {
"builder": { "const": "@angular-devkit/build-angular:tslint" },
"options": { "$ref": "#/definitions/targetOptions/definitions/tslint" },
"configurations": {
"type": "object",
"additionalProperties": { "$ref": "#/definitions/targetOptions/definitions/tslint" }
}
}
}
]
}
}
},
"global": {
"type": "object",
"properties": {
"$schema": {
"type": "string",
"format": "uri"
},
"version": {
"$ref": "#/definitions/fileVersion"
},
"cli": {
"$ref": "#/definitions/cliOptions"
},
"schematics": {
"$ref": "#/definitions/schematicOptions"
}
},
"required": [
"version"
]
},
"targetOptions": {
"type": "null",
"definitions": {
"appShell": {
"description": "App Shell target options for Architect.",
"type": "object",
"properties": {
"browserTarget": {
"type": "string",
"description": "Target to build."
},
"serverTarget": {
"type": "string",
"description": "Server target to use for rendering the app shell."
},
"appModuleBundle": {
"type": "string",
"description": "Script that exports the Server AppModule to render. This should be the main JavaScript outputted by the server target. By default we will resolve the outputPath of the serverTarget and find a bundle named 'main' in it (whether or not there's a hash tag)."
},
"route": {
"type": "string",
"description": "The route to render.",
"default": "/"
},
"inputIndexPath": {
"type": "string",
"description": "The input path for the index.html file. By default uses the output index.html of the browser target."
},
"outputIndexPath": {
"type": "string",
"description": "The output path of the index.html file. By default will overwrite the input file."
}
},
"additionalProperties": false
},
"browser": {
"title": "Webpack browser schema for Architect.",
"description": "Browser target options",
"properties": {
"assets": {
"type": "array",
"description": "List of static application assets.",
"default": [],
"items": {
"$ref": "#/definitions/targetOptions/definitions/browser/definitions/assetPattern"
}
},
"main": {
"type": "string",
"description": "The name of the main entry-point file."
},
"polyfills": {
"type": "string",
"description": "The name of the polyfills file."
},
"tsConfig": {
"type": "string",
"description": "The name of the TypeScript configuration file."
},
"scripts": {
"description": "Global scripts to be included in the build.",
"type": "array",
"default": [],
"items": {
"$ref": "#/definitions/targetOptions/definitions/browser/definitions/extraEntryPoint"
}
},
"styles": {
"description": "Global styles to be included in the build.",
"type": "array",
"default": [],
"items": {
"$ref": "#/definitions/targetOptions/definitions/browser/definitions/extraEntryPoint"
}
},
"stylePreprocessorOptions": {
"description": "Options to pass to style preprocessors.",
"type": "object",
"properties": {
"includePaths": {
"description": "Paths to include. Paths will be resolved to project root.",
"type": "array",
"items": {
"type": "string"
},
"default": []
}
},
"additionalProperties": false
},
"optimization": {
"description": "Enables optimization of the build output.",
"oneOf": [
{
"type": "object",
"properties": {
"scripts": {
"type": "boolean",
"description": "Enables optimization of the scripts output.",
"default": true
},
"styles": {
"type": "boolean",
"description": "Enables optimization of the styles output.",
"default": true
}
},
"additionalProperties": false
},
{
"type": "boolean"
}
]
},
"fileReplacements": {
"description": "Replace compilation source files with other compilation source files in the build.",
"type": "array",
"items": {
"$ref": "#/definitions/targetOptions/definitions/browser/definitions/fileReplacement"
},
"default": []
},
"outputPath": {
"type": "string",
"description": "Path where output will be placed."
},
"resourcesOutputPath": {
"type": "string",
"description": "The path where style resources will be placed, relative to outputPath."
},
"aot": {
"type": "boolean",
"description": "Build using Ahead of Time compilation.",
"default": false
},
"sourceMap": {
"description": "Output sourcemaps.",
"default": true,
"oneOf": [
{
"type": "object",
"properties": {
"scripts": {
"type": "boolean",
"description": "Output sourcemaps for all scripts.",
"default": true
},
"styles": {
"type": "boolean",
"description": "Output sourcemaps for all styles.",
"default": true
},
"hidden": {
"type": "boolean",
"description": "Output sourcemaps used for error reporting tools.",
"default": false
},
"vendor": {
"type": "boolean",
"description": "Resolve vendor packages sourcemaps.",
"default": false
}
},
"additionalProperties": false
},
{
"type": "boolean"
}
]
},
"vendorChunk": {
"type": "boolean",
"description": "Use a separate bundle containing only vendor libraries.",
"default": true
},
"commonChunk": {
"type": "boolean",
"description": "Use a separate bundle containing code used across multiple bundles.",
"default": true
},
"baseHref": {
"type": "string",
"description": "Base url for the application being built."
},
"deployUrl": {
"type": "string",
"description": "URL where files will be deployed."
},
"verbose": {
"type": "boolean",
"description": "Adds more details to output logging.",
"default": false
},
"progress": {
"type": "boolean",
"description": "Log progress to the console while building.",
"default": true
},
"localize": {
"$ref": "#/definitions/buildersOptions/localize"
},
"i18nMissingTranslation": {
"$ref": "#/definitions/buildersOptions/missingTranslation"
},
"i18nFile": {
"type": "string",
"description": "Localization file to use for i18n.",
"x-deprecated": "Deprecated since 9.0."
},
"i18nFormat": {
"type": "string",
"description": "Format of the localization file specified with --i18n-file.",
"x-deprecated": "Deprecated since 9.0."
},
"i18nLocale": {
"type": "string",
"description": "Locale to use for i18n.",
"x-deprecated": "Deprecated since 9.0."
},
"extractCss": {
"type": "boolean",
"description": "Extract css from global styles onto css files instead of js ones.",
"default": false
},
"watch": {
"type": "boolean",
"description": "Run build when files change.",
"default": false
},
"outputHashing": {
"type": "string",
"description": "Define the output filename cache-busting hashing mode.",
"default": "none",
"enum": [
"none",
"all",
"media",
"bundles"
]
},
"poll": {
"type": "number",
"description": "Enable and define the file watching poll time period in milliseconds."
},
"deleteOutputPath": {
"type": "boolean",
"description": "Delete the output path before building.",
"default": true
},
"preserveSymlinks": {
"type": "boolean",
"description": "Do not use the real path when resolving modules."
},
"extractLicenses": {
"type": "boolean",
"description": "Extract all licenses in a separate file, in the case of production builds only.",
"default": true
},
"showCircularDependencies": {
"type": "boolean",
"description": "Show circular dependency warnings on builds.",
"default": true
},
"buildOptimizer": {
"type": "boolean",
"description": "Enables @angular-devkit/build-optimizer optimizations when using the 'aot' option.",
"default": false
},
"namedChunks": {
"type": "boolean",
"description": "Use file name for lazy loaded chunks.",
"default": true
},
"subresourceIntegrity": {
"type": "boolean",
"description": "Enables the use of subresource integrity validation.",
"default": false
},
"serviceWorker": {
"type": "boolean",
"description": "Generates a service worker config for production builds.",
"default": false
},
"ngswConfigPath": {
"type": "string",
"description": "Path to ngsw-config.json."
},
"index": {
"description": "Configures the generation of the application's HTML index.",
"oneOf": [
{
"type": "string",
"description": "The path of a file to use for the application's HTML index. The filename of the specified path will be used for the generated file and will be created in the root of the application's configured output path."
},
{
"type": "object",
"description": "",
"properties": {
"input": {
"type": "string",
"minLength": 1,
"description": "The path of a file to use for the application's generated HTML index."
},
"output": {
"type": "string",
"minLength": 1,
"default": "index.html",
"description": "The output path of the application's generated HTML index file. The full provided path will be used and will be considered relative to the application's configured output path."
}
},
"required": ["input"]
}
]
},
"statsJson": {
"type": "boolean",
"description": "Generates a 'stats.json' file which can be analyzed using tools such as 'webpack-bundle-analyzer'.",
"default": false
},
"forkTypeChecker": {
"type": "boolean",
"description": "Run the TypeScript type checker in a forked process.",
"default": true
},
"lazyModules": {
"description": "List of additional NgModule files that will be lazy loaded. Lazy router modules with be discovered automatically.",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"budgets": {
"description": "Budget thresholds to ensure parts of your application stay within boundaries which you set.",
"type": "array",
"items": {
"$ref": "#/definitions/targetOptions/definitions/browser/definitions/budget"
},
"default": []
},
"rebaseRootRelativeCssUrls": {
"description": "Change root relative URLs in stylesheets to include base HREF and deploy URL. Use only for compatibility and transition. The behavior of this option is non-standard and will be removed in the next major release.",
"type": "boolean",
"default": false,
"x-deprecated": true
},
"webWorkerTsConfig": {
"type": "string",
"description": "TypeScript configuration for Web Worker modules."
},
"crossOrigin": {
"type": "string",
"description": "Define the crossorigin attribute setting of elements that provide CORS support.",
"default": "none",
"enum": [
"none",
"anonymous",
"use-credentials"
]
},
"experimentalRollupPass": {
"type": "boolean",
"description": "Concatenate modules with Rollup before bundling them with Webpack.",
"default": false
},
"allowedCommonJsDependencies": {
"description": "A list of CommonJS packages that are allowed to be used without a build time warning.",
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"definitions": {
"assetPattern": {
"oneOf": [
{
"type": "object",
"properties": {
"glob": {
"type": "string",
"description": "The pattern to match."
},
"input": {
"type": "string",
"description": "The input path dir in which to apply 'glob'. Defaults to the project root."
},
"output": {
"type": "string",
"description": "Absolute path within the output."
},
"ignore": {
"description": "An array of globs to ignore.",
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"glob",
"input",
"output"
]
},
{
"type": "string",
"description": "The file to include."
}
]
},
"fileReplacement": {
"oneOf": [
{
"type": "object",
"properties": {
"src": {
"type": "string"
},
"replaceWith": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"src",
"replaceWith"
]
},
{
"type": "object",
"properties": {
"replace": {
"type": "string"
},
"with": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"replace",
"with"
]
}
]
},
"extraEntryPoint": {
"oneOf": [
{
"type": "object",
"properties": {
"input": {
"type": "string",
"description": "The file to include."
},
"bundleName": {
"type": "string",
"description": "The bundle name for this extra entry point."
},
"lazy": {
"type": "boolean",
"description": "If the bundle will be lazy loaded.",
"default": false
},
"inject": {
"type": "boolean",
"description": "If the bundle will be referenced in the HTML file.",
"default": true
}
},
"additionalProperties": false,
"required": [
"input"
]
},
{
"type": "string",
"description": "The file to include."
}
]
},
"budget": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "The type of budget.",
"enum": [
"all",
"allScript",
"any",
"anyScript",
"anyComponentStyle",
"bundle",
"initial"
]
},
"name": {
"type": "string",
"description": "The name of the bundle."
},
"baseline": {
"type": "string",
"description": "The baseline size for comparison."
},
"maximumWarning": {
"type": "string",
"description": "The maximum threshold for warning relative to the baseline."
},
"maximumError": {
"type": "string",
"description": "The maximum threshold for error relative to the baseline."
},
"minimumWarning": {
"type": "string",
"description": "The minimum threshold for warning relative to the baseline."
},
"minimumError": {
"type": "string",
"description": "The minimum threshold for error relative to the baseline."
},
"warning": {
"type": "string",
"description": "The threshold for warning relative to the baseline (min & max)."
},
"error": {
"type": "string",
"description": "The threshold for error relative to the baseline (min & max)."
}
},
"additionalProperties": false,
"required": [
"type"
]
}
}
},
"devServer": {
"description": "Dev Server target options for Architect.",
"type": "object",
"properties": {
"browserTarget": {
"type": "string",
"description": "Target to serve."
},
"port": {
"type": "number",
"description": "Port to listen on.",
"default": 4200
},
"host": {
"type": "string",
"description": "Host to listen on.",
"default": "localhost"
},
"proxyConfig": {
"type": "string",
"description": "Proxy configuration file."
},
"ssl": {
"type": "boolean",
"description": "Serve using HTTPS.",
"default": false
},
"sslKey": {
"type": "string",
"description": "SSL key to use for serving HTTPS."
},
"sslCert": {
"type": "string",
"description": "SSL certificate to use for serving HTTPS."
},
"open": {
"type": "boolean",
"description": "When true, open the live-reload URL in default browser.",
"default": false,
"alias": "o"
},
"liveReload": {
"type": "boolean",
"description": "When true, reload the page on change using live-reload.",
"default": true
},
"publicHost": {
"type": "string",
"description": "The URL that the browser client (or live-reload client, if enabled) should use to connect to the development server. Use for a complex dev server setup, such as one with reverse proxies."
},
"allowedHosts": {
"type": "array",
"description": "List of hosts that are allowed to access the dev server.",
"default": [],
"items": {
"type": "string"
}
},
"servePath": {
"type": "string",
"description": "The pathname where the app will be served."
},
"disableHostCheck": {
"type": "boolean",
"description": "When true, don't verify that connected clients are part of allowed hosts.",
"default": false
},
"hmr": {
"type": "boolean",
"description": "When true, enable hot module replacement.",
"default": false
},
"watch": {
"type": "boolean",
"description": "When true, rebuild on change.",
"default": true
},
"hmrWarning": {
"type": "boolean",
"description": "When true, show a warning when the --hmr option is enabled.",
"default": true
},
"servePathDefaultWarning": {
"type": "boolean",
"description": "When true, show a warning when deploy-url/base-href use unsupported serve path values.",
"default": true
},
"optimization": {
"description": "Enable optimization of the build output.",
"default": false,
"oneOf": [
{
"type": "object",
"properties": {
"scripts": {
"type": "boolean",
"description": "When true, enable optimization of the scripts output.",
"default": true
},
"styles": {
"type": "boolean",
"description": "When true, enable optimization of the styles output.",
"default": true
}
},
"additionalProperties": false
},
{
"type": "boolean"
}
]
},
"aot": {
"type": "boolean",
"description": "Build using ahead-of-time compilation."
},
"sourceMap": {
"description": "When true, output sourcemaps.",
"default": true,
"oneOf": [
{
"type": "object",
"properties": {
"scripts": {
"type": "boolean",
"description": "When true, output sourcemaps for all scripts.",
"default": true
},
"styles": {
"type": "boolean",
"description": "When true, output sourcemaps for all styles.",
"default": true
},
"vendor": {
"type": "boolean",
"description": "When true, resolve vendor packages sourcemaps.",
"default": false
}
},
"additionalProperties": false
},
{
"type": "boolean"
}
]
},
"vendorChunk": {
"type": "boolean",
"description": "When true, use a separate bundle containing only vendor libraries."
},
"commonChunk": {
"type": "boolean",
"description": "When true, use a separate bundle containing code used across multiple bundles."
},
"baseHref": {
"type": "string",
"description": "Base url for the application being built."
},
"deployUrl": {
"type": "string",
"description": "URL where files will be deployed."
},
"verbose": {
"type": "boolean",
"description": "When true, add more details to output logging."
},
"progress": {
"type": "boolean",
"description": "When true, log progress to the console while building."
}
},
"additionalProperties": false
},
"extracti18n": {
"description": "Extract i18n target options for Architect.",
"type": "object",
"properties": {
"browserTarget": {
"type": "string",
"description": "Target to extract from."
},
"format": {
"type": "string",
"description": "Output format for the generated file.",
"default": "xlf",
"enum": [
"xmb",
"xlf",
"xlif",
"xliff",
"xlf2",
"xliff2"
]
},
"i18nFormat": {
"type": "string",
"description": "Output format for the generated file.",
"default": "xlf",
"x-deprecated": "Use 'format' option instead.",
"enum": [
"xmb",
"xlf",
"xlif",
"xliff",
"xlf2",
"xliff2"
]
},
"i18nLocale": {
"type": "string",
"description": "Specifies the source language of the application.",
"x-deprecated": "Use 'i18n' project level sub-option 'sourceLocale' instead."
},
"ivy": {
"type": "boolean",
"description": "Use Ivy compiler to extract translations."
},
"progress": {
"type": "boolean",
"description": "Log progress to the console.",
"default": true
},
"outputPath": {
"type": "string",
"description": "Path where output will be placed."
},
"outFile": {
"type": "string",
"description": "Name of the file to output."
}
},
"additionalProperties": false
},
"karma": {
"description": "Karma target options for Architect.",
"type": "object",
"properties": {
"main": {
"type": "string",
"description": "The name of the main entry-point file."
},
"tsConfig": {
"type": "string",
"description": "The name of the TypeScript configuration file."
},
"karmaConfig": {
"type": "string",
"description": "The name of the Karma configuration file."
},
"polyfills": {
"type": "string",
"description": "The name of the polyfills file."
},
"assets": {
"type": "array",
"description": "List of static application assets.",
"default": [],
"items": {
"$ref": "#/definitions/targetOptions/definitions/karma/definitions/assetPattern"
}
},
"scripts": {
"description": "Global scripts to be included in the build.",
"type": "array",
"default": [],
"items": {
"$ref": "#/definitions/targetOptions/definitions/karma/definitions/extraEntryPoint"
}
},
"styles": {
"description": "Global styles to be included in the build.",
"type": "array",
"default": [],
"items": {
"$ref": "#/definitions/targetOptions/definitions/karma/definitions/extraEntryPoint"
}
},
"stylePreprocessorOptions": {
"description": "Options to pass to style preprocessors",
"type": "object",
"properties": {
"includePaths": {
"description": "Paths to include. Paths will be resolved to project root.",
"type": "array",
"items": {
"type": "string"
},
"default": []
}
},
"additionalProperties": false
},
"environment": {
"type": "string",
"description": "Defines the build environment."
},
"sourceMap": {
"description": "Output sourcemaps.",
"default": true,
"oneOf": [
{
"type": "object",
"properties": {
"scripts": {
"type": "boolean",
"description": "Output sourcemaps for all scripts.",
"default": true
},
"styles": {
"type": "boolean",
"description": "Output sourcemaps for all styles.",
"default": true
},
"vendor": {
"type": "boolean",
"description": "Resolve vendor packages sourcemaps.",
"default": false
}
},
"additionalProperties": false
},
{
"type": "boolean"
}
]
},
"progress": {
"type": "boolean",
"description": "Log progress to the console while building.",
"default": true
},
"watch": {
"type": "boolean",
"description": "Run build when files change.",
"default": true
},
"poll": {
"type": "number",
"description": "Enable and define the file watching poll time period in milliseconds."
},
"preserveSymlinks": {
"type": "boolean",
"description": "Do not use the real path when resolving modules."
},
"browsers": {
"type": "string",
"description": "Override which browsers tests are run against."
},
"codeCoverage": {
"type": "boolean",
"description": "Output a code coverage report.",
"default": false
},
"codeCoverageExclude": {
"type": "array",
"description": "Globs to exclude from code coverage.",
"items": {
"type": "string"
},
"default": []
},
"fileReplacements": {
"description": "Replace compilation source files with other compilation source files in the build.",
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"properties": {
"src": {
"type": "string"
},
"replaceWith": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"src",
"replaceWith"
]
},
{
"type": "object",
"properties": {
"replace": {
"type": "string"
},
"with": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"replace",
"with"
]
}
]
},
"default": []
},
"reporters": {
"type": "array",
"description": "Karma reporters to use. Directly passed to the karma runner.",
"items": {
"type": "string"
}
},
"webWorkerTsConfig": {
"type": "string",
"description": "TypeScript configuration for Web Worker modules."
}
},
"additionalProperties": false,
"definitions": {
"assetPattern": {
"oneOf": [
{
"type": "object",
"properties": {
"glob": {
"type": "string",
"description": "The pattern to match."
},
"input": {
"type": "string",
"description": "The input path dir in which to apply 'glob'. Defaults to the project root."
},
"output": {
"type": "string",
"description": "Absolute path within the output."
},
"ignore": {
"description": "An array of globs to ignore.",
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"glob",
"input",
"output"
]
},
{
"type": "string",
"description": "The file to include."
}
]
},
"extraEntryPoint": {
"oneOf": [
{
"type": "object",
"properties": {
"input": {
"type": "string",
"description": "The file to include."
},
"bundleName": {
"type": "string",
"description": "The bundle name for this extra entry point."
},
"lazy": {
"type": "boolean",
"description": "If the bundle will be lazy loaded.",
"default": false
},
"inject": {
"type": "boolean",
"description": "If the bundle will be referenced in the HTML file.",
"default": true
}
},
"additionalProperties": false,
"required": [
"input"
]
},
{
"type": "string",
"description": "The file to include."
}
]
}
}
},
"protractor": {
"description": "Protractor target options for Architect.",
"type": "object",
"properties": {
"protractorConfig": {
"type": "string",
"description": "The name of the Protractor configuration file."
},
"devServerTarget": {
"type": "string",
"description": "Dev server target to run tests against."
},
"grep": {
"type": "string",
"description": "Execute specs whose names match the pattern, which is internally compiled to a RegExp."
},
"invertGrep": {
"type": "boolean",
"description": "Invert the selection specified by the 'grep' option.",
"default": false
},
"specs": {
"type": "array",
"description": "Override specs in the protractor config.",
"default": [],
"items": {
"type": "string",
"description": "Spec name."
}
},
"suite": {
"type": "string",
"description": "Override suite in the protractor config."
},
"webdriverUpdate": {
"type": "boolean",
"description": "Try to update webdriver.",
"default": true
},
"serve": {
"type": "boolean",
"description": "Compile and Serve the app.",
"default": true
},
"port": {
"type": "number",
"description": "The port to use to serve the application."
},
"host": {
"type": "string",
"description": "Host to listen on.",
"default": "localhost"
},
"baseUrl": {
"type": "string",
"description": "Base URL for protractor to connect to."
}
},
"additionalProperties": false
},
"server": {
"title": "Angular Webpack Architect Builder Schema",
"properties": {
"main": {
"type": "string",
"description": "The name of the main entry-point file."
},
"tsConfig": {
"type": "string",
"default": "tsconfig.app.json",
"description": "The name of the TypeScript configuration file."
},
"stylePreprocessorOptions": {
"description": "Options to pass to style preprocessors",
"type": "object",
"properties": {
"includePaths": {
"description": "Paths to include. Paths will be resolved to project root.",
"type": "array",
"items": {
"type": "string"
},
"default": []
}
},
"additionalProperties": false
},
"optimization": {
"description": "Enables optimization of the build output.",
"default": false,
"oneOf": [
{
"type": "object",
"properties": {
"scripts": {
"type": "boolean",
"description": "Enables optimization of the scripts output.",
"default": true
},
"styles": {
"type": "boolean",
"description": "Enables optimization of the styles output.",
"default": true
}
},
"additionalProperties": false
},
{
"type": "boolean"
}
]
},
"fileReplacements": {
"description": "Replace compilation source files with other compilation source files in the build.",
"type": "array",
"items": {
"$ref": "#/definitions/targetOptions/definitions/server/definitions/fileReplacement"
},
"default": []
},
"outputPath": {
"type": "string",
"description": "Path where output will be placed."
},
"resourcesOutputPath": {
"type": "string",
"description": "The path where style resources will be placed, relative to outputPath."
},
"sourceMap": {
"description": "Output sourcemaps.",
"default": true,
"oneOf": [
{
"type": "object",
"properties": {
"scripts": {
"type": "boolean",
"description": "Output sourcemaps for all scripts.",
"default": true
},
"styles": {
"type": "boolean",
"description": "Output sourcemaps for all styles.",
"default": true
},
"hidden": {
"type": "boolean",
"description": "Output sourcemaps used for error reporting tools.",
"default": false
},
"vendor": {
"type": "boolean",
"description": "Resolve vendor packages sourcemaps.",
"default": false
}
},
"additionalProperties": false
},
{
"type": "boolean"
}
]
},
"verbose": {
"type": "boolean",
"description": "Adds more details to output logging.",
"default": false
},
"progress": {
"type": "boolean",
"description": "Log progress to the console while building.",
"default": true
},
"localize": {
"$ref": "#/definitions/buildersOptions/localize"
},
"i18nFile": {
"type": "string",
"description": "Localization file to use for i18n.",
"x-deprecated": "Deprecated since 9.0"
},
"i18nFormat": {
"type": "string",
"description": "Format of the localization file specified with --i18n-file.",
"x-deprecated": "Deprecated since 9.0"
},
"i18nLocale": {
"type": "string",
"description": "Locale to use for i18n.",
"x-deprecated": "Deprecated since 9.0"
},
"i18nMissingTranslation": {
"$ref": "#/definitions/buildersOptions/missingTranslation"
},
"outputHashing": {
"type": "string",
"description": "Define the output filename cache-busting hashing mode.",
"default": "none",
"enum": [
"none",
"all",
"media",
"bundles"
]
},
"deleteOutputPath": {
"type": "boolean",
"description": "delete-output-path",
"default": true
},
"preserveSymlinks": {
"type": "boolean",
"description": "Do not use the real path when resolving modules."
},
"extractLicenses": {
"type": "boolean",
"description": "Extract all licenses in a separate file, in the case of production builds only.",
"default": true
},
"showCircularDependencies": {
"type": "boolean",
"description": "Show circular dependency warnings on builds.",
"default": true
},
"namedChunks": {
"type": "boolean",
"description": "Use file name for lazy loaded chunks.",
"default": true
},
"bundleDependencies": {
"description": "Available on server platform only. Which external dependencies to bundle into the module. By default, all of node_modules will be bundled.",
"default": true,
"oneOf": [
{
"type": "boolean"
},
{
"type": "string",
"enum": [
"none",
"all"
]
}
]
},
"externalDependencies": {
"description": "Exclude the listed external dependencies from being bundled into the bundle. Instead, the created bundle relies on these dependencies to be available during runtime.",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"statsJson": {
"type": "boolean",
"description": "Generates a 'stats.json' file which can be analyzed using tools such as 'webpack-bundle-analyzer'.",
"default": false
},
"forkTypeChecker": {
"type": "boolean",
"description": "Run the TypeScript type checker in a forked process.",
"default": true
},
"lazyModules": {
"description": "List of additional NgModule files that will be lazy loaded. Lazy router modules with be discovered automatically.",
"type": "array",
"items": {
"type": "string"
},
"default": []
}
},
"additionalProperties": false,
"definitions": {
"fileReplacement": {
"oneOf": [
{
"type": "object",
"properties": {
"src": {
"type": "string"
},
"replaceWith": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"src",
"replaceWith"
]
},
{
"type": "object",
"properties": {
"replace": {
"type": "string"
},
"with": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"replace",
"with"
]
}
]
}
}
},
"tslint": {
"description": "TSlint target options for Architect.",
"type": "object",
"properties": {
"tslintConfig": {
"type": "string",
"description": "The name of the TSLint configuration file."
},
"tsConfig": {
"description": "The name of the TypeScript configuration file.",
"oneOf": [
{ "type": "string" },
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"fix": {
"type": "boolean",
"description": "Fixes linting errors (may overwrite linted files).",
"default": false
},
"typeCheck": {
"type": "boolean",
"description": "Controls the type check for linting.",
"default": false
},
"force": {
"type": "boolean",
"description": "Succeeds even if there was linting errors.",
"default": false
},
"silent": {
"type": "boolean",
"description": "Show output text.",
"default": false
},
"format": {
"type": "string",
"description": "Output format (prose, json, stylish, verbose, pmd, msbuild, checkstyle, vso, fileslist, codeFrame).",
"default": "stylish",
"anyOf": [
{
"enum": [
"checkstyle",
"codeFrame",
"filesList",
"json",
"junit",
"msbuild",
"pmd",
"prose",
"stylish",
"tap",
"verbose",
"vso"
]
},
{ "minLength": 1 }
]
},
"exclude": {
"type": "array",
"description": "Files to exclude from linting.",
"default": [],
"items": {
"type": "string"
}
},
"files": {
"type": "array",
"description": "Files to include in linting.",
"default": [],
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}
}
},
"buildersOptions": {
"missingTranslation": {
"type": "string",
"description": "How to handle missing translations for i18n.",
"enum": ["warning", "error", "ignore"],
"default": "warning"
},
"localize": {
"oneOf": [
{
"type": "boolean",
"description": "Translate all locales."
},
{
"type": "array",
"description": "List of locales ID's to translate.",
"minItems": 1,
"items": {
"type": "string",
"pattern": "^[a-zA-Z]{2,3}(-[a-zA-Z]{4})?(-([a-zA-Z]{2}|[0-9]{3}))?(-[a-zA-Z]{5,8})?(-x(-[a-zA-Z0-9]{1,8})+)?$"
}
}
]
}
}
}
}
| schema |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Remember a Thing",
"descrption": "This is used for requesting remember a thing.",
"type": "object",
"properties": {
"thing": {
"descrption": "The thing you want to remember by annie.",
"type": "string"
}
},
"required": [
"thing"
]
} | o89499 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius",
"length",
"width",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The shape (e.g., circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_c77b7943 |
{
"additionalProperties": false,
"description": "This is the format describing the game state for the PlanetWars game, used in the development off MOZAIC",
"properties": {
"expeditions": {
"description": "List of all expeditions in this game. These are the ships on the way to another planet",
"items": {
"additionalProperties": false,
"description": "a command",
"properties": {
"destination": {
"type": "string"
},
"id": {
"type": "integer"
},
"origin": {
"type": "string"
},
"owner": {
"type": "string"
},
"ship_count": {
"minimum": 0,
"type": "integer"
},
"turns_remaining": {
"minimum": 0,
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"planets": {
"description": "List of all planets in the game",
"items": {
"additionalProperties": false,
"description": "planet",
"properties": {
"name": {
"type": "string"
},
"owner": {
"type": "string"
},
"ship_count": {
"minimum": 0,
"type": "integer"
},
"x": {
"type": "integer"
},
"y": {
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"players": {
"description": "List of all players in the game",
"items": {
"type": "string"
},
"minItems": 2,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"players",
"planets",
"expeditions"
],
"title": "PlanetWars"
} | o17988 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"additionalProperties": {},
"definitions": {
"traits_trait_additional_properties_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": {},
"description": "A grab-bag object for non-validatable data.",
"title": "Has additional properties",
"type": "object"
},
"traits_trait_alignment_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A property used to determine horizontal positioning of a content element relative to the elements that immediately follow it in the element sequence.",
"enum": [
"left",
"right",
"center"
],
"title": "Alignment",
"type": "string"
},
"traits_trait_channel_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An optional list of output types for which this element should be visible",
"items": {
"type": "string"
},
"title": "Channel trait",
"type": "array"
},
"traits_trait_id_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A globally unique identifier of the content in the ANS repository.",
"title": "Globally Unique ID trait",
"type": "string"
},
"traits_trait_subtype_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.",
"title": "Subtype or Template",
"type": "string"
},
"utils_reference_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "This represents a reference to external content that should be denormalized",
"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"
},
"referent": {
"additionalProperties": false,
"dependencies": {
"website": {
"properties": {
"type": {
"enum": [
"section"
],
"type": "string"
}
}
}
},
"properties": {
"id": {
"description": "The id passed to the provider to retrieve an ANS document",
"type": "string"
},
"provider": {
"description": "A URL that can resolve the id into an ANS element",
"type": "string"
},
"referent_properties": {
"additionalProperties": {},
"description": "An object for key-value pairs that should override the values of keys with the same name in the denormalized object",
"type": "object"
},
"service": {
"description": "The type of interaction the provider expects. E.g., 'oembed'",
"type": "string"
},
"type": {
"description": "The ANS type that the provider should return.",
"type": "string"
},
"website": {
"description": "The website which the referenced id belongs to. Currently supported only for sections.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"subtype": {
"$ref": "#/definitions/traits_trait_subtype_json"
},
"type": {
"enum": [
"reference"
],
"type": "string"
}
},
"required": [
"type",
"referent"
],
"title": "Representation of a normalized element",
"type": "object"
}
},
"description": "Represents restricted ANS Content objects.",
"properties": {
"_id": {
"$ref": "#/definitions/traits_trait_id_json"
},
"reasons": {
"items": {
"properties": {
"message": {
"description": "The human-readable message describing the restriction.",
"type": "string"
},
"restriction_id": {
"description": "The ARC UUID of the distributor of this content. E.g., ABCDEFGHIJKLMNOPQRSTUVWXYZ.",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"restricted_content": {
"$ref": "#/definitions/utils_reference_json"
},
"type": {
"enum": [
"restricted"
]
}
},
"required": [
"type",
"reasons"
],
"title": "A restricted content object.",
"type": "object"
} | wp_14_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/RancherKubernetesEngineConfig",
"definitions": {
"AESConfiguration": {
"required": [
"keys"
],
"properties": {
"keys": {
"items": {
"$ref": "#/definitions/Key"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"AWSCloudProvider": {
"required": [
"global"
],
"properties": {
"global": {
"$ref": "#/definitions/GlobalAwsOpts"
},
"serviceOverride": {
"patternProperties": {
".*": {
"$ref": "#/definitions/ServiceOverride"
}
},
"type": "object"
}
},
"additionalProperties": false,
"type": "object"
},
"AWSElasticBlockStoreVolumeSource": {
"required": [
"volumeID"
],
"properties": {
"volumeID": {
"type": "string"
},
"fsType": {
"type": "string"
},
"partition": {
"type": "integer"
},
"readOnly": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"AciNetworkProvider": {
"properties": {
"systemId": {
"type": "string"
},
"apicHosts": {
"items": {
"type": "string"
},
"type": "array"
},
"token": {
"type": "string"
},
"apicUserName": {
"type": "string"
},
"apicUserKey": {
"type": "string"
},
"apicUserCrt": {
"type": "string"
},
"apicRefreshTime": {
"type": "string"
},
"vmmDomain": {
"type": "string"
},
"vmmController": {
"type": "string"
},
"encapType": {
"type": "string"
},
"nodeSubnet": {
"type": "string"
},
"mcastRangeStart": {
"type": "string"
},
"mcastRangeEnd": {
"type": "string"
},
"aep": {
"type": "string"
},
"vrfName": {
"type": "string"
},
"vrfTenant": {
"type": "string"
},
"l3out": {
"type": "string"
},
"l3outExternalNetworks": {
"items": {
"type": "string"
},
"type": "array"
},
"externDynamic": {
"type": "string"
},
"externStatic": {
"type": "string"
},
"nodeSvcSubnet": {
"type": "string"
},
"kubeApiVlan": {
"type": "string"
},
"serviceVlan": {
"type": "string"
},
"infraVlan": {
"type": "string"
},
"tenant": {
"type": "string"
},
"ovsMemoryLimit": {
"type": "string"
},
"imagePullPolicy": {
"type": "string"
},
"imagePullSecret": {
"type": "string"
},
"serviceMonitorInterval": {
"type": "string"
},
"pbrTrackingNonSnat": {
"type": "string"
},
"installIstio": {
"type": "string"
},
"istioProfile": {
"type": "string"
},
"dropLogEnable": {
"type": "string"
},
"controllerLogLevel": {
"type": "string"
},
"hostAgentLogLevel": {
"type": "string"
},
"opflexLogLevel": {
"type": "string"
},
"useAciCniPriorityClass": {
"type": "string"
},
"noPriorityClass": {
"type": "string"
},
"maxNodesSvcGraph": {
"type": "string"
},
"snatContractScope": {
"type": "string"
},
"podSubnetChunkSize": {
"type": "string"
},
"enableEndpointSlice": {
"type": "string"
},
"snatNamespace": {
"type": "string"
},
"epRegistry": {
"type": "string"
},
"opflexMode": {
"type": "string"
},
"snatPortRangeStart": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"snatPortRangeEnd": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"snatPortsPerNode": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"opflexClientSsl": {
"type": "string"
},
"usePrivilegedContainer": {
"type": "string"
},
"useHostNetnsVolume": {
"type": "string"
},
"useOpflexServerVolume": {
"type": "string"
},
"subnetDomainName": {
"type": "string"
},
"kafkaBrokers": {
"items": {
"type": "string"
},
"type": "array"
},
"kafkaClientCrt": {
"type": "string"
},
"kafkaClientKey": {
"type": "string"
},
"capic": {
"type": "string"
},
"useAciAnywhereCrd": {
"type": "string"
},
"overlayVrfName": {
"type": "string"
},
"gbpPodSubnet": {
"type": "string"
},
"runGbpContainer": {
"type": "string"
},
"runOpflexServerContainer": {
"type": "string"
},
"opflexServerPort": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"additionalProperties": false,
"type": "object"
},
"AdmissionConfiguration": {
"required": [
"TypeMeta",
"plugins"
],
"properties": {
"TypeMeta": {
"$ref": "#/definitions/TypeMeta"
},
"plugins": {
"items": {
"$ref": "#/definitions/AdmissionPluginConfiguration"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"AdmissionPluginConfiguration": {
"required": [
"name",
"path",
"configuration"
],
"properties": {
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"configuration": {
"$ref": "#/definitions/Unknown"
}
},
"additionalProperties": false,
"type": "object"
},
"AuditLog": {
"properties": {
"enabled": {
"type": "boolean"
},
"configuration": {
"$ref": "#/definitions/AuditLogConfig"
}
},
"additionalProperties": false,
"type": "object"
},
"AuditLogConfig": {
"properties": {
"maxAge": {
"type": "integer"
},
"maxBackup": {
"type": "integer"
},
"maxSize": {
"type": "integer"
},
"path": {
"type": "string"
},
"format": {
"type": "string"
},
"policy": {
"$ref": "#/definitions/Policy"
}
},
"additionalProperties": false,
"type": "object"
},
"AuthWebhookConfig": {
"properties": {
"configFile": {
"type": "string",
"description": "ConfigFile is a multiline string that represent a custom webhook config file"
},
"cacheTimeout": {
"type": "string",
"description": "CacheTimeout controls how long to cache authentication decisions"
}
},
"additionalProperties": false,
"type": "object"
},
"AuthnConfig": {
"properties": {
"strategy": {
"type": "string",
"description": "Authentication strategy that will be used in kubernetes cluster"
},
"sans": {
"items": {
"type": "string"
},
"type": "array",
"description": "List of additional hostnames and IPs to include in the api server PKI cert"
},
"webhook": {
"$ref": "#/definitions/AuthWebhookConfig",
"description": "Webhook configuration options"
}
},
"additionalProperties": false,
"type": "object"
},
"AuthzConfig": {
"properties": {
"mode": {
"type": "string",
"description": "Authorization mode used by kubernetes"
},
"options": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object",
"description": "Authorization mode options"
}
},
"additionalProperties": false,
"type": "object"
},
"AzureCloudProvider": {
"required": [
"cloud",
"tenantId",
"subscriptionId",
"resourceGroup",
"location",
"vnetName",
"vnetResourceGroup",
"subnetName",
"securityGroupName",
"routeTableName",
"primaryAvailabilitySetName",
"vmType",
"primaryScaleSetName",
"aadClientId",
"aadClientSecret",
"aadClientCertPath",
"aadClientCertPassword",
"cloudProviderBackoff",
"cloudProviderBackoffRetries",
"cloudProviderBackoffExponent",
"cloudProviderBackoffDuration",
"cloudProviderBackoffJitter",
"cloudProviderRateLimit",
"cloudProviderRateLimitQPS",
"cloudProviderRateLimitBucket",
"useInstanceMetadata",
"useManagedIdentityExtension",
"maximumLoadBalancerRuleCount"
],
"properties": {
"cloud": {
"type": "string",
"description": "The cloud environment identifier. Takes values from https://github.com/Azure/go-autorest/blob/ec5f4903f77ed9927ac95b19ab8e44ada64c1356/autorest/azure/environments.go#L13"
},
"tenantId": {
"type": "string",
"description": "The AAD Tenant ID for the Subscription that the cluster is deployed in"
},
"subscriptionId": {
"type": "string",
"description": "The ID of the Azure Subscription that the cluster is deployed in"
},
"resourceGroup": {
"type": "string",
"description": "The name of the resource group that the cluster is deployed in"
},
"location": {
"type": "string",
"description": "The location of the resource group that the cluster is deployed in"
},
"vnetName": {
"type": "string",
"description": "The name of the VNet that the cluster is deployed in"
},
"vnetResourceGroup": {
"type": "string",
"description": "The name of the resource group that the Vnet is deployed in"
},
"subnetName": {
"type": "string",
"description": "The name of the subnet that the cluster is deployed in"
},
"securityGroupName": {
"type": "string",
"description": "The name of the security group attached to the cluster's subnet"
},
"routeTableName": {
"type": "string",
"description": "(Optional in 1.6) The name of the route table attached to the subnet that the cluster is deployed in"
},
"primaryAvailabilitySetName": {
"type": "string",
"description": "(Optional) The name of the availability set that should be used as the load balancer backend\nIf this is set, the Azure cloudprovider will only add nodes from that availability set to the load\nbalancer backend pool. If this is not set, and multiple agent pools (availability sets) are used, then\nthe cloudprovider will try to add all nodes to a single backend pool which is forbidden.\nIn other words, if you use multiple agent pools (availability sets), you MUST set this field."
},
"vmType": {
"type": "string",
"description": "The type of azure nodes. Candidate valudes are: vmss and standard.\nIf not set, it will be default to standard."
},
"primaryScaleSetName": {
"type": "string",
"description": "The name of the scale set that should be used as the load balancer backend.\nIf this is set, the Azure cloudprovider will only add nodes from that scale set to the load\nbalancer backend pool. If this is not set, and multiple agent pools (scale sets) are used, then\nthe cloudprovider will try to add all nodes to a single backend pool which is forbidden.\nIn other words, if you use multiple agent pools (scale sets), you MUST set this field."
},
"aadClientId": {
"type": "string",
"description": "The ClientID for an AAD application with RBAC access to talk to Azure RM APIs\nThis's used for service principal authentication: https://github.com/Azure/aks-engine/blob/master/docs/topics/service-principals.md"
},
"aadClientSecret": {
"type": "string",
"description": "The ClientSecret for an AAD application with RBAC access to talk to Azure RM APIs\nThis's used for service principal authentication: https://github.com/Azure/aks-engine/blob/master/docs/topics/service-principals.md"
},
"aadClientCertPath": {
"type": "string",
"description": "The path of a client certificate for an AAD application with RBAC access to talk to Azure RM APIs\nThis's used for client certificate authentication: https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-protocols-oauth-service-to-service"
},
"aadClientCertPassword": {
"type": "string",
"description": "The password of the client certificate for an AAD application with RBAC access to talk to Azure RM APIs\nThis's used for client certificate authentication: https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-protocols-oauth-service-to-service"
},
"cloudProviderBackoff": {
"type": "boolean",
"description": "Enable exponential backoff to manage resource request retries"
},
"cloudProviderBackoffRetries": {
"type": "integer",
"description": "Backoff retry limit"
},
"cloudProviderBackoffExponent": {
"type": "integer",
"description": "Backoff exponent"
},
"cloudProviderBackoffDuration": {
"type": "integer",
"description": "Backoff duration"
},
"cloudProviderBackoffJitter": {
"type": "integer",
"description": "Backoff jitter"
},
"cloudProviderRateLimit": {
"type": "boolean",
"description": "Enable rate limiting"
},
"cloudProviderRateLimitQPS": {
"type": "integer",
"description": "Rate limit QPS"
},
"cloudProviderRateLimitBucket": {
"type": "integer",
"description": "Rate limit Bucket Size"
},
"useInstanceMetadata": {
"type": "boolean",
"description": "Use instance metadata service where possible"
},
"useManagedIdentityExtension": {
"type": "boolean",
"description": "Use managed service identity for the virtual machine to access Azure ARM APIs\nThis's used for managed identity authentication: https://docs.microsoft.com/en-us/azure/active-directory/managed-service-identity/overview\nFor user-assigned managed identity, need to set the below UserAssignedIdentityID"
},
"userAssignedIdentityID": {
"type": "string",
"description": "The Client ID of the user assigned MSI which is assigned to the underlying VMs\nThis's used for managed identity authentication: https://docs.microsoft.com/en-us/azure/active-directory/managed-service-identity/overview"
},
"maximumLoadBalancerRuleCount": {
"type": "integer",
"description": "Maximum allowed LoadBalancer Rule Count is the limit enforced by Azure Load balancer, default(0) to 148"
},
"loadBalancerSku": {
"type": "string",
"description": "Sku of Load Balancer and Public IP: `basic` or `standard`, default(blank) to `basic`"
},
"excludeMasterFromStandardLB": {
"type": "boolean",
"description": "Excludes master nodes (labeled with `node-role.kubernetes.io/master`) from the backend pool of Azure standard loadbalancer, default(nil) to `true`\nIf want adding the master nodes to ALB, this should be set to `false` and remove the `node-role.kubernetes.io/master` label from master nodes"
}
},
"additionalProperties": false,
"type": "object"
},
"AzureDiskVolumeSource": {
"required": [
"diskName",
"diskURI"
],
"properties": {
"diskName": {
"type": "string"
},
"diskURI": {
"type": "string"
},
"cachingMode": {
"type": "string"
},
"fsType": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"kind": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"AzureFileVolumeSource": {
"required": [
"secretName",
"shareName"
],
"properties": {
"secretName": {
"type": "string"
},
"shareName": {
"type": "string"
},
"readOnly": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"BackupConfig": {
"required": [
"s3BackupConfig"
],
"properties": {
"enabled": {
"type": "boolean"
},
"intervalHours": {
"type": "integer"
},
"retention": {
"type": "integer"
},
"s3BackupConfig": {
"$ref": "#/definitions/S3BackupConfig"
},
"safeTimestamp": {
"type": "boolean"
},
"timeout": {
"type": "integer"
}
},
"additionalProperties": false,
"type": "object"
},
"BastionHost": {
"properties": {
"address": {
"type": "string",
"description": "Address of Bastion Host"
},
"port": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
],
"description": "SSH Port of Bastion Host"
},
"user": {
"type": "string",
"description": "ssh User to Bastion Host"
},
"sshAgentAuth": {
"type": "boolean",
"description": "SSH Agent Auth enable"
},
"sshKey": {
"type": "string",
"description": "SSH Private Key"
},
"sshKeyPath": {
"type": "string",
"description": "SSH Private Key Path"
},
"sshCert": {
"type": "string",
"description": "SSH Certificate"
},
"sshCertPath": {
"type": "string",
"description": "SSH Certificate Path"
},
"ignoreProxyEnvVars": {
"type": "boolean",
"description": "Ignore proxy environment variables"
}
},
"additionalProperties": false,
"type": "object"
},
"BlockStorageOpenstackOpts": {
"required": [
"bs-version",
"trust-device-path",
"ignore-volume-az"
],
"properties": {
"bs-version": {
"type": "string",
"description": "overrides autodetection. v1 or v2. Defaults to auto"
},
"trust-device-path": {
"type": "boolean",
"description": "See Issue #33128"
},
"ignore-volume-az": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"CSIVolumeSource": {
"required": [
"driver"
],
"properties": {
"driver": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"fsType": {
"type": "string"
},
"volumeAttributes": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"nodePublishSecretRef": {
"$ref": "#/definitions/LocalObjectReference"
}
},
"additionalProperties": false,
"type": "object"
},
"CalicoNetworkProvider": {
"required": [
"cloudProvider"
],
"properties": {
"cloudProvider": {
"type": "string",
"description": "Cloud provider type used with calico"
}
},
"additionalProperties": false,
"type": "object"
},
"CanalNetworkProvider": {
"required": [
"iface"
],
"properties": {
"iface": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"CephFSVolumeSource": {
"required": [
"monitors"
],
"properties": {
"monitors": {
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"type": "string"
},
"user": {
"type": "string"
},
"secretFile": {
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/LocalObjectReference"
},
"readOnly": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"CinderVolumeSource": {
"required": [
"volumeID"
],
"properties": {
"volumeID": {
"type": "string"
},
"fsType": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/LocalObjectReference"
}
},
"additionalProperties": false,
"type": "object"
},
"CloudProvider": {
"properties": {
"name": {
"type": "string",
"description": "Name of the Cloud Provider"
},
"awsCloudProvider": {
"$ref": "#/definitions/AWSCloudProvider",
"description": "AWSCloudProvider"
},
"azureCloudProvider": {
"$ref": "#/definitions/AzureCloudProvider",
"description": "AzureCloudProvider"
},
"openstackCloudProvider": {
"$ref": "#/definitions/OpenstackCloudProvider",
"description": "OpenstackCloudProvider"
},
"vsphereCloudProvider": {
"$ref": "#/definitions/VsphereCloudProvider",
"description": "VsphereCloudProvider"
},
"customCloudProvider": {
"type": "string",
"description": "CustomCloudProvider is a multiline string that represent a custom cloud config file"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigMapKeySelector": {
"required": [
"LocalObjectReference",
"key"
],
"properties": {
"LocalObjectReference": {
"$ref": "#/definitions/LocalObjectReference"
},
"key": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigMapProjection": {
"required": [
"LocalObjectReference"
],
"properties": {
"LocalObjectReference": {
"$ref": "#/definitions/LocalObjectReference"
},
"items": {
"items": {
"$ref": "#/definitions/KeyToPath"
},
"type": "array"
},
"optional": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"ConfigMapVolumeSource": {
"required": [
"LocalObjectReference"
],
"properties": {
"LocalObjectReference": {
"$ref": "#/definitions/LocalObjectReference"
},
"items": {
"items": {
"$ref": "#/definitions/KeyToPath"
},
"type": "array"
},
"defaultMode": {
"type": "integer"
},
"optional": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"Configuration": {
"required": [
"TypeMeta",
"limits"
],
"properties": {
"TypeMeta": {
"$ref": "#/definitions/TypeMeta"
},
"limits": {
"items": {
"$ref": "#/definitions/Limit"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"DNSConfig": {
"properties": {
"provider": {
"type": "string",
"description": "DNS provider"
},
"options": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object",
"description": "DNS config options"
},
"upstreamnameservers": {
"items": {
"type": "string"
},
"type": "array",
"description": "Upstream nameservers"
},
"reversecidrs": {
"items": {
"type": "string"
},
"type": "array",
"description": "ReverseCIDRs"
},
"stubdomains": {
"patternProperties": {
".*": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object",
"description": "Stubdomains"
},
"nodeSelector": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object",
"description": "NodeSelector key pair"
},
"nodelocal": {
"$ref": "#/definitions/Nodelocal",
"description": "Nodelocal DNS"
},
"updateStrategy": {
"$ref": "#/definitions/DeploymentStrategy",
"description": "Update strategy"
},
"linearAutoscalerParams": {
"$ref": "#/definitions/LinearAutoscalerParams",
"description": "Autoscaler fields to determine number of dns replicas"
},
"tolerations": {
"items": {
"$ref": "#/definitions/Toleration"
},
"type": "array",
"description": "Tolerations for Deployments"
}
},
"additionalProperties": false,
"type": "object"
},
"DaemonSetUpdateStrategy": {
"properties": {
"strategy": {
"type": "string"
},
"rollingUpdate": {
"$ref": "#/definitions/RollingUpdateDaemonSet"
}
},
"additionalProperties": false,
"type": "object"
},
"DeploymentStrategy": {
"properties": {
"strategy": {
"type": "string"
},
"rollingUpdate": {
"$ref": "#/definitions/RollingUpdateDeployment"
}
},
"additionalProperties": false,
"type": "object"
},
"DiskVsphereOpts": {
"properties": {
"scsicontrollertype": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"DownwardAPIProjection": {
"properties": {
"items": {
"items": {
"$ref": "#/definitions/DownwardAPIVolumeFile"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"DownwardAPIVolumeFile": {
"required": [
"path"
],
"properties": {
"path": {
"type": "string"
},
"fieldRef": {
"$ref": "#/definitions/ObjectFieldSelector"
},
"resourceFieldRef": {
"$ref": "#/definitions/ResourceFieldSelector"
},
"mode": {
"type": "integer"
}
},
"additionalProperties": false,
"type": "object"
},
"DownwardAPIVolumeSource": {
"properties": {
"items": {
"items": {
"$ref": "#/definitions/DownwardAPIVolumeFile"
},
"type": "array"
},
"defaultMode": {
"type": "integer"
}
},
"additionalProperties": false,
"type": "object"
},
"Duration": {
"properties": {},
"additionalProperties": false,
"type": "object"
},
"ECRCredentialPlugin": {
"properties": {
"awsAccessKeyId": {
"type": "string"
},
"awsSecretAccessKey": {
"type": "string"
},
"awsAccessToken": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ETCDService": {
"properties": {
"image": {
"type": "string"
},
"extraArgs": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"extraBinds": {
"items": {
"type": "string"
},
"type": "array"
},
"extraEnv": {
"items": {
"type": "string"
},
"type": "array"
},
"winExtraArgs": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"winExtraBinds": {
"items": {
"type": "string"
},
"type": "array"
},
"winExtraEnv": {
"items": {
"type": "string"
},
"type": "array"
},
"externalUrls": {
"items": {
"type": "string"
},
"type": "array",
"description": "List of etcd urls"
},
"caCert": {
"type": "string",
"description": "External CA certificate"
},
"cert": {
"type": "string",
"description": "External Client certificate"
},
"key": {
"type": "string",
"description": "External Client key"
},
"path": {
"type": "string",
"description": "External etcd prefix"
},
"uid": {
"type": "integer",
"description": "UID to run etcd container as"
},
"gid": {
"type": "integer",
"description": "GID to run etcd container as"
},
"snapshot": {
"type": "boolean",
"description": "Etcd Recurring snapshot Service, used by rke only"
},
"retention": {
"type": "string",
"description": "Etcd snapshot Retention period"
},
"creation": {
"type": "string",
"description": "Etcd snapshot Creation period"
},
"backupConfig": {
"$ref": "#/definitions/BackupConfig",
"description": "Backup backend for etcd snapshots"
}
},
"additionalProperties": false,
"type": "object"
},
"EmptyDirVolumeSource": {
"properties": {
"medium": {
"type": "string"
},
"sizeLimit": {
"$ref": "#/definitions/Quantity"
}
},
"additionalProperties": false,
"type": "object"
},
"EncryptionConfiguration": {
"required": [
"resources"
],
"properties": {
"kind": {
"type": "string"
},
"apiVersion": {
"type": "string"
},
"resources": {
"items": {
"$ref": "#/definitions/ResourceConfiguration"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"EnvVarSource": {
"properties": {
"fieldRef": {
"$ref": "#/definitions/ObjectFieldSelector"
},
"resourceFieldRef": {
"$ref": "#/definitions/ResourceFieldSelector"
},
"configMapKeyRef": {
"$ref": "#/definitions/ConfigMapKeySelector"
},
"secretKeyRef": {
"$ref": "#/definitions/SecretKeySelector"
}
},
"additionalProperties": false,
"type": "object"
},
"EphemeralVolumeSource": {
"properties": {
"volumeClaimTemplate": {
"$ref": "#/definitions/PersistentVolumeClaimTemplate"
}
},
"additionalProperties": false,
"type": "object"
},
"EventRateLimit": {
"properties": {
"enabled": {
"type": "boolean"
},
"configuration": {
"$ref": "#/definitions/Configuration"
}
},
"additionalProperties": false,
"type": "object"
},
"ExtraEnv": {
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/EnvVarSource"
}
},
"additionalProperties": false,
"type": "object"
},
"ExtraVolume": {
"required": [
"name",
"VolumeSource"
],
"properties": {
"name": {
"type": "string"
},
"VolumeSource": {
"$ref": "#/definitions/VolumeSource"
}
},
"additionalProperties": false,
"type": "object"
},
"ExtraVolumeMount": {
"required": [
"name",
"mountPath"
],
"properties": {
"name": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"mountPath": {
"type": "string"
},
"subPath": {
"type": "string"
},
"mountPropagation": {
"type": "string"
},
"subPathExpr": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"FCVolumeSource": {
"properties": {
"targetWWNs": {
"items": {
"type": "string"
},
"type": "array"
},
"lun": {
"type": "integer"
},
"fsType": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"wwids": {
"items": {
"type": "string"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"FieldsV1": {
"properties": {},
"additionalProperties": false,
"type": "object"
},
"FlannelNetworkProvider": {
"required": [
"iface"
],
"properties": {
"iface": {
"type": "string",
"description": "Alternate cloud interface for flannel"
}
},
"additionalProperties": false,
"type": "object"
},
"FlexVolumeSource": {
"required": [
"driver"
],
"properties": {
"driver": {
"type": "string"
},
"fsType": {
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/LocalObjectReference"
},
"readOnly": {
"type": "boolean"
},
"options": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
}
},
"additionalProperties": false,
"type": "object"
},
"FlockerVolumeSource": {
"properties": {
"datasetName": {
"type": "string"
},
"datasetUUID": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"GCEPersistentDiskVolumeSource": {
"required": [
"pdName"
],
"properties": {
"pdName": {
"type": "string"
},
"fsType": {
"type": "string"
},
"partition": {
"type": "integer"
},
"readOnly": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"GitRepoVolumeSource": {
"required": [
"repository"
],
"properties": {
"repository": {
"type": "string"
},
"revision": {
"type": "string"
},
"directory": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"GlobalAwsOpts": {
"required": [
"zone",
"vpc",
"subnet-id",
"routetable-id",
"role-arn",
"kubernetes-cluster-tag",
"kubernetes-cluster-id",
"disable-security-group-ingress",
"elb-security-group",
"disable-strict-zone-check"
],
"properties": {
"zone": {
"type": "string",
"description": "TODO: Is there any use for this? We can get it from the instance metadata service\nMaybe if we're not running on AWS, e.g. bootstrap; for now it is not very useful"
},
"vpc": {
"type": "string",
"description": "The AWS VPC flag enables the possibility to run the master components\non a different aws account, on a different cloud provider or on-premises.\nIf the flag is set also the KubernetesClusterTag must be provided"
},
"subnet-id": {
"type": "string",
"description": "SubnetID enables using a specific subnet to use for ELB's"
},
"routetable-id": {
"type": "string",
"description": "RouteTableID enables using a specific RouteTable"
},
"role-arn": {
"type": "string",
"description": "RoleARN is the IAM role to assume when interaction with AWS APIs."
},
"kubernetes-cluster-tag": {
"type": "string",
"description": "KubernetesClusterTag is the legacy cluster id we'll use to identify our cluster resources"
},
"kubernetes-cluster-id": {
"type": "string",
"description": "KubernetesClusterID is the cluster id we'll use to identify our cluster resources"
},
"disable-security-group-ingress": {
"type": "boolean",
"description": "The aws provider creates an inbound rule per load balancer on the node security\ngroup. However, this can run into the AWS security group rule limit of 50 if\nmany LoadBalancers are created.\n\nThis flag disables the automatic ingress creation. It requires that the user\nhas setup a rule that allows inbound traffic on kubelet ports from the\nlocal VPC subnet (so load balancers can access it). E.g. 10.82.0.0/16 30000-32000."
},
"elb-security-group": {
"type": "string",
"description": "AWS has a hard limit of 500 security groups. For large clusters creating a security group for each ELB\ncan cause the max number of security groups to be reached. If this is set instead of creating a new\nSecurity group for each ELB this security group will be used instead."
},
"disable-strict-zone-check": {
"type": "boolean",
"description": "During the instantiation of an new AWS cloud provider, the detected region\nis validated against a known set of regions.\n\nIn a non-standard, AWS like environment (e.g. Eucalyptus), this check may\nbe undesirable. Setting this to true will disable the check and provide\na warning that the check was skipped. Please note that this is an\nexperimental feature and work-in-progress for the moment. If you find\nyourself in an non-AWS cloud and open an issue, please indicate that in the\nissue body."
}
},
"additionalProperties": false,
"type": "object"
},
"GlobalOpenstackOpts": {
"required": [
"auth-url",
"username",
"user-id",
"password",
"tenant-id",
"tenant-name",
"trust-id",
"domain-id",
"domain-name",
"region",
"ca-file"
],
"properties": {
"auth-url": {
"type": "string"
},
"username": {
"type": "string"
},
"user-id": {
"type": "string"
},
"password": {
"type": "string"
},
"tenant-id": {
"type": "string"
},
"tenant-name": {
"type": "string"
},
"trust-id": {
"type": "string"
},
"domain-id": {
"type": "string"
},
"domain-name": {
"type": "string"
},
"region": {
"type": "string"
},
"ca-file": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"GlobalVsphereOpts": {
"properties": {
"user": {
"type": "string"
},
"password": {
"type": "string"
},
"server": {
"type": "string"
},
"port": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"insecure-flag": {
"type": "boolean"
},
"datacenter": {
"type": "string"
},
"datacenters": {
"type": "string"
},
"datastore": {
"type": "string"
},
"working-dir": {
"type": "string"
},
"soap-roundtrip-count": {
"type": "integer"
},
"vm-uuid": {
"type": "string"
},
"vm-name": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"GlusterfsVolumeSource": {
"required": [
"endpoints",
"path"
],
"properties": {
"endpoints": {
"type": "string"
},
"path": {
"type": "string"
},
"readOnly": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"GroupResources": {
"properties": {
"group": {
"type": "string"
},
"resources": {
"items": {
"type": "string"
},
"type": "array"
},
"resourceNames": {
"items": {
"type": "string"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"HostPathVolumeSource": {
"required": [
"path"
],
"properties": {
"path": {
"type": "string"
},
"type": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ISCSIVolumeSource": {
"required": [
"targetPortal",
"iqn",
"lun"
],
"properties": {
"targetPortal": {
"type": "string"
},
"iqn": {
"type": "string"
},
"lun": {
"type": "integer"
},
"iscsiInterface": {
"type": "string"
},
"fsType": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"portals": {
"items": {
"type": "string"
},
"type": "array"
},
"chapAuthDiscovery": {
"type": "boolean"
},
"chapAuthSession": {
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/LocalObjectReference"
},
"initiatorName": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"IdentityConfiguration": {
"properties": {},
"additionalProperties": false,
"type": "object"
},
"IngressConfig": {
"properties": {
"provider": {
"type": "string",
"description": "Ingress controller type used by kubernetes"
},
"options": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object",
"description": "These options are NOT for configuring Ingress's addon template.\nThey are used for its ConfigMap options specifically."
},
"nodeSelector": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object",
"description": "NodeSelector key pair"
},
"extraArgs": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object",
"description": "Ingress controller extra arguments"
},
"dnsPolicy": {
"type": "string",
"description": "DNS Policy"
},
"extraEnvs": {
"items": {
"$ref": "#/definitions/ExtraEnv"
},
"type": "array",
"description": "Extra Env vars"
},
"extraVolumes": {
"items": {
"$ref": "#/definitions/ExtraVolume"
},
"type": "array",
"description": "Extra volumes"
},
"extraVolumeMounts": {
"items": {
"$ref": "#/definitions/ExtraVolumeMount"
},
"type": "array",
"description": "Extra volume mounts"
},
"updateStrategy": {
"$ref": "#/definitions/DaemonSetUpdateStrategy",
"description": "nginx daemonset upgrade strategy"
},
"httpPort": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
],
"description": "Http port for ingress controller daemonset"
},
"httpsPort": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
],
"description": "Https port for ingress controller daemonset"
},
"networkMode": {
"type": "string",
"description": "NetworkMode selector for ingress controller pods. Default is HostNetwork"
},
"tolerations": {
"items": {
"$ref": "#/definitions/Toleration"
},
"type": "array",
"description": "Tolerations for Deployments"
},
"defaultBackend": {
"type": "boolean",
"description": "Enable or disable nginx default-http-backend"
},
"defaultHttpBackendPriorityClassName": {
"type": "string",
"description": "Priority class name for Nginx-Ingress's \"default-http-backend\" deployment"
},
"nginxIngressControllerPriorityClassName": {
"type": "string",
"description": "Priority class name for Nginx-Ingress's \"nginx-ingress-controller\" daemonset"
}
},
"additionalProperties": false,
"type": "object"
},
"IntOrString": {
"required": [
"Type",
"IntVal",
"StrVal"
],
"properties": {
"Type": {
"type": "integer"
},
"IntVal": {
"type": "integer"
},
"StrVal": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"KMSConfiguration": {
"required": [
"name",
"endpoint"
],
"properties": {
"name": {
"type": "string"
},
"cachesize": {
"type": "integer"
},
"endpoint": {
"type": "string"
},
"timeout": {
"$ref": "#/definitions/Duration"
}
},
"additionalProperties": false,
"type": "object"
},
"Key": {
"required": [
"name",
"secret"
],
"properties": {
"name": {
"type": "string"
},
"secret": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"KeyToPath": {
"required": [
"key",
"path"
],
"properties": {
"key": {
"type": "string"
},
"path": {
"type": "string"
},
"mode": {
"type": "integer"
}
},
"additionalProperties": false,
"type": "object"
},
"KubeAPIService": {
"properties": {
"image": {
"type": "string"
},
"extraArgs": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"extraBinds": {
"items": {
"type": "string"
},
"type": "array"
},
"extraEnv": {
"items": {
"type": "string"
},
"type": "array"
},
"winExtraArgs": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"winExtraBinds": {
"items": {
"type": "string"
},
"type": "array"
},
"winExtraEnv": {
"items": {
"type": "string"
},
"type": "array"
},
"serviceClusterIpRange": {
"type": "string",
"description": "Virtual IP range that will be used by Kubernetes services"
},
"serviceNodePortRange": {
"type": "string",
"description": "Port range for services defined with NodePort type"
},
"podSecurityPolicy": {
"type": "boolean",
"description": "Enabled/Disable PodSecurityPolicy"
},
"alwaysPullImages": {
"type": "boolean",
"description": "Enable/Disable AlwaysPullImages admissions plugin"
},
"secretsEncryptionConfig": {
"$ref": "#/definitions/SecretsEncryptionConfig",
"description": "Secrets encryption provider config"
},
"auditLog": {
"$ref": "#/definitions/AuditLog",
"description": "Audit Log Configuration"
},
"admissionConfiguration": {
"$ref": "#/definitions/AdmissionConfiguration",
"description": "AdmissionConfiguration"
},
"eventRateLimit": {
"$ref": "#/definitions/EventRateLimit",
"description": "Event Rate Limit configuration"
}
},
"additionalProperties": false,
"type": "object"
},
"KubeControllerService": {
"properties": {
"image": {
"type": "string"
},
"extraArgs": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"extraBinds": {
"items": {
"type": "string"
},
"type": "array"
},
"extraEnv": {
"items": {
"type": "string"
},
"type": "array"
},
"winExtraArgs": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"winExtraBinds": {
"items": {
"type": "string"
},
"type": "array"
},
"winExtraEnv": {
"items": {
"type": "string"
},
"type": "array"
},
"clusterCidr": {
"type": "string",
"description": "CIDR Range for Pods in cluster"
},
"serviceClusterIpRange": {
"type": "string",
"description": "Virtual IP range that will be used by Kubernetes services"
}
},
"additionalProperties": false,
"type": "object"
},
"KubeletService": {
"properties": {
"image": {
"type": "string"
},
"extraArgs": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"extraBinds": {
"items": {
"type": "string"
},
"type": "array"
},
"extraEnv": {
"items": {
"type": "string"
},
"type": "array"
},
"winExtraArgs": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"winExtraBinds": {
"items": {
"type": "string"
},
"type": "array"
},
"winExtraEnv": {
"items": {
"type": "string"
},
"type": "array"
},
"clusterDomain": {
"type": "string",
"description": "Domain of the cluster (default: \"cluster.local\")"
},
"infraContainerImage": {
"type": "string",
"description": "The image whose network/ipc namespaces containers in each pod will use"
},
"clusterDnsServer": {
"type": "string",
"description": "Cluster DNS service ip"
},
"failSwapOn": {
"type": "boolean",
"description": "Fail if swap is enabled"
},
"generateServingCertificate": {
"type": "boolean",
"description": "Generate per node kubelet serving certificates created using kube-ca"
}
},
"additionalProperties": false,
"type": "object"
},
"KubeproxyService": {
"properties": {
"image": {
"type": "string"
},
"extraArgs": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"extraBinds": {
"items": {
"type": "string"
},
"type": "array"
},
"extraEnv": {
"items": {
"type": "string"
},
"type": "array"
},
"winExtraArgs": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"winExtraBinds": {
"items": {
"type": "string"
},
"type": "array"
},
"winExtraEnv": {
"items": {
"type": "string"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"LabelSelector": {
"properties": {
"matchLabels": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"matchExpressions": {
"items": {
"$ref": "#/definitions/LabelSelectorRequirement"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"LabelSelectorRequirement": {
"required": [
"key",
"operator"
],
"properties": {
"key": {
"type": "string"
},
"operator": {
"type": "string"
},
"values": {
"items": {
"type": "string"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"Limit": {
"required": [
"type",
"qps",
"burst"
],
"properties": {
"type": {
"type": "string"
},
"qps": {
"type": "integer"
},
"burst": {
"type": "integer"
},
"cacheSize": {
"type": "integer"
}
},
"additionalProperties": false,
"type": "object"
},
"LinearAutoscalerParams": {
"properties": {
"coresPerReplica": {
"type": "number"
},
"nodesPerReplica": {
"type": "number"
},
"min": {
"type": "integer"
},
"max": {
"type": "integer"
},
"preventSinglePointFailure": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"LoadBalancerOpenstackOpts": {
"required": [
"lb-version",
"use-octavia",
"subnet-id",
"floating-network-id",
"lb-method",
"lb-provider",
"create-monitor",
"monitor-delay",
"monitor-timeout",
"monitor-max-retries",
"manage-security-groups"
],
"properties": {
"lb-version": {
"type": "string",
"description": "overrides autodetection. Only support v2."
},
"use-octavia": {
"type": "boolean",
"description": "uses Octavia V2 service catalog endpoint"
},
"subnet-id": {
"type": "string",
"description": "overrides autodetection."
},
"floating-network-id": {
"type": "string",
"description": "If specified, will create floating ip for loadbalancer, or do not create floating ip."
},
"lb-method": {
"type": "string",
"description": "default to ROUND_ROBIN."
},
"lb-provider": {
"type": "string"
},
"create-monitor": {
"type": "boolean"
},
"monitor-delay": {
"type": "string"
},
"monitor-timeout": {
"type": "string"
},
"monitor-max-retries": {
"type": "integer"
},
"manage-security-groups": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"LocalObjectReference": {
"properties": {
"name": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ManagedFieldsEntry": {
"properties": {
"manager": {
"type": "string"
},
"operation": {
"type": "string"
},
"apiVersion": {
"type": "string"
},
"time": {
"type": "string",
"format": "date-time"
},
"fieldsType": {
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/FieldsV1"
}
},
"additionalProperties": false,
"type": "object"
},
"MetadataOpenstackOpts": {
"required": [
"search-order",
"request-timeout"
],
"properties": {
"search-order": {
"type": "string"
},
"request-timeout": {
"type": "integer"
}
},
"additionalProperties": false,
"type": "object"
},
"MonitoringConfig": {
"properties": {
"provider": {
"type": "string",
"description": "Monitoring server provider"
},
"options": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object",
"description": "These options are NOT for configuring the Metrics-Server's addon template.\nThey are used to pass command args to the metric-server's deployment containers specifically."
},
"nodeSelector": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object",
"description": "NodeSelector key pair"
},
"updateStrategy": {
"$ref": "#/definitions/DeploymentStrategy",
"description": "Update strategy"
},
"replicas": {
"type": "integer",
"description": "Number of monitoring addon pods"
},
"tolerations": {
"items": {
"$ref": "#/definitions/Toleration"
},
"type": "array",
"description": "Tolerations for Deployments"
},
"metricsServerPriorityClassName": {
"type": "string",
"description": "Priority class name for Metrics-Server's \"metrics-server\" deployment"
}
},
"additionalProperties": false,
"type": "object"
},
"NFSVolumeSource": {
"required": [
"server",
"path"
],
"properties": {
"server": {
"type": "string"
},
"path": {
"type": "string"
},
"readOnly": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"NetworkConfig": {
"properties": {
"plugin": {
"type": "string",
"description": "Network Plugin That will be used in kubernetes cluster"
},
"options": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object",
"description": "Plugin options to configure network properties"
},
"mtu": {
"type": "integer",
"description": "Set MTU for CNI provider"
},
"calicoNetworkProvider": {
"$ref": "#/definitions/CalicoNetworkProvider",
"description": "CalicoNetworkProvider"
},
"canalNetworkProvider": {
"$ref": "#/definitions/CanalNetworkProvider",
"description": "CanalNetworkProvider"
},
"flannelNetworkProvider": {
"$ref": "#/definitions/FlannelNetworkProvider",
"description": "FlannelNetworkProvider"
},
"weaveNetworkProvider": {
"$ref": "#/definitions/WeaveNetworkProvider",
"description": "WeaveNetworkProvider"
},
"aciNetworkProvider": {
"$ref": "#/definitions/AciNetworkProvider",
"description": "AciNetworkProvider"
},
"nodeSelector": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object",
"description": "NodeSelector key pair"
},
"updateStrategy": {
"$ref": "#/definitions/DaemonSetUpdateStrategy",
"description": "Network plugin daemonset upgrade strategy"
},
"tolerations": {
"items": {
"$ref": "#/definitions/Toleration"
},
"type": "array",
"description": "Tolerations for Deployments"
}
},
"additionalProperties": false,
"type": "object"
},
"NetworkVshpereOpts": {
"properties": {
"public-network": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"NodeDrainInput": {
"required": [
"timeout"
],
"properties": {
"force": {
"type": "boolean",
"description": "Drain node even if there are pods not managed by a ReplicationController, Job, or DaemonSet\nDrain will not proceed without Force set to true if there are such pods"
},
"ignoreDaemonSets": {
"type": "boolean",
"description": "If there are DaemonSet-managed pods, drain will not proceed without IgnoreDaemonSets set to true\n(even when set to true, kubectl won't delete pods - so setting default to true)"
},
"deleteLocalData": {
"type": "boolean",
"description": "Continue even if there are pods using emptyDir"
},
"gracePeriod": {
"type": "integer",
"description": "Period of time in seconds given to each pod to terminate gracefully.\nIf negative, the default value specified in the pod will be used"
},
"timeout": {
"type": "integer",
"description": "Time to wait (in seconds) before giving up for one try"
}
},
"additionalProperties": false,
"type": "object"
},
"NodeUpgradeStrategy": {
"properties": {
"maxUnavailableWorker": {
"type": "string",
"description": "MaxUnavailableWorker input can be a number of nodes or a percentage of nodes (example, max_unavailable_worker: 2 OR max_unavailable_worker: 20%)"
},
"maxUnavailableControlplane": {
"type": "string",
"description": "MaxUnavailableControlplane input can be a number of nodes or a percentage of nodes"
},
"drain": {
"type": "boolean"
},
"nodeDrainInput": {
"$ref": "#/definitions/NodeDrainInput"
}
},
"additionalProperties": false,
"type": "object"
},
"Nodelocal": {
"properties": {
"ipAddress": {
"type": "string",
"description": "link-local IP for nodelocal DNS"
},
"updateStrategy": {
"$ref": "#/definitions/DaemonSetUpdateStrategy",
"description": "Nodelocal DNS daemonset upgrade strategy"
},
"nodeSelector": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object",
"description": "NodeSelector key pair"
},
"nodeLocalDnsPriorityClassName": {
"type": "string",
"description": "Priority class name for NodeLocal's \"node-local-dns\" daemonset"
}
},
"additionalProperties": false,
"type": "object"
},
"ObjectFieldSelector": {
"required": [
"fieldPath"
],
"properties": {
"apiVersion": {
"type": "string"
},
"fieldPath": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ObjectMeta": {
"properties": {
"name": {
"type": "string"
},
"generateName": {
"type": "string"
},
"namespace": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"uid": {
"type": "string"
},
"resourceVersion": {
"type": "string"
},
"generation": {
"type": "integer"
},
"creationTimestamp": {
"$ref": "#/definitions/Time"
},
"deletionTimestamp": {
"type": "string",
"format": "date-time"
},
"deletionGracePeriodSeconds": {
"type": "integer"
},
"labels": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"annotations": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"ownerReferences": {
"items": {
"$ref": "#/definitions/OwnerReference"
},
"type": "array"
},
"finalizers": {
"items": {
"type": "string"
},
"type": "array"
},
"clusterName": {
"type": "string"
},
"managedFields": {
"items": {
"$ref": "#/definitions/ManagedFieldsEntry"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"OpenstackCloudProvider": {
"required": [
"global",
"loadBalancer",
"blockStorage",
"route",
"metadata"
],
"properties": {
"global": {
"$ref": "#/definitions/GlobalOpenstackOpts"
},
"loadBalancer": {
"$ref": "#/definitions/LoadBalancerOpenstackOpts"
},
"blockStorage": {
"$ref": "#/definitions/BlockStorageOpenstackOpts"
},
"route": {
"$ref": "#/definitions/RouteOpenstackOpts"
},
"metadata": {
"$ref": "#/definitions/MetadataOpenstackOpts"
}
},
"additionalProperties": false,
"type": "object"
},
"OwnerReference": {
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
},
"uid": {
"type": "string"
},
"controller": {
"type": "boolean"
},
"blockOwnerDeletion": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"PersistentVolumeClaimSpec": {
"properties": {
"accessModes": {
"items": {
"type": "string"
},
"type": "array"
},
"selector": {
"$ref": "#/definitions/LabelSelector"
},
"resources": {
"$ref": "#/definitions/ResourceRequirements"
},
"volumeName": {
"type": "string"
},
"storageClassName": {
"type": "string"
},
"volumeMode": {
"type": "string"
},
"dataSource": {
"$ref": "#/definitions/TypedLocalObjectReference"
}
},
"additionalProperties": false,
"type": "object"
},
"PersistentVolumeClaimTemplate": {
"required": [
"spec"
],
"properties": {
"metadata": {
"$ref": "#/definitions/ObjectMeta"
},
"spec": {
"$ref": "#/definitions/PersistentVolumeClaimSpec"
}
},
"additionalProperties": false,
"type": "object"
},
"PersistentVolumeClaimVolumeSource": {
"required": [
"claimName"
],
"properties": {
"claimName": {
"type": "string"
},
"readOnly": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"PhotonPersistentDiskVolumeSource": {
"required": [
"pdID"
],
"properties": {
"pdID": {
"type": "string"
},
"fsType": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Policy": {
"required": [
"TypeMeta",
"rules"
],
"properties": {
"TypeMeta": {
"$ref": "#/definitions/TypeMeta"
},
"metadata": {
"$ref": "#/definitions/ObjectMeta"
},
"rules": {
"items": {
"$ref": "#/definitions/PolicyRule"
},
"type": "array"
},
"omitStages": {
"items": {
"type": "string"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"PolicyRule": {
"required": [
"level"
],
"properties": {
"level": {
"type": "string"
},
"users": {
"items": {
"type": "string"
},
"type": "array"
},
"userGroups": {
"items": {
"type": "string"
},
"type": "array"
},
"verbs": {
"items": {
"type": "string"
},
"type": "array"
},
"resources": {
"items": {
"$ref": "#/definitions/GroupResources"
},
"type": "array"
},
"namespaces": {
"items": {
"type": "string"
},
"type": "array"
},
"nonResourceURLs": {
"items": {
"type": "string"
},
"type": "array"
},
"omitStages": {
"items": {
"type": "string"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"PortworxVolumeSource": {
"required": [
"volumeID"
],
"properties": {
"volumeID": {
"type": "string"
},
"fsType": {
"type": "string"
},
"readOnly": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"PrivateRegistry": {
"properties": {
"url": {
"type": "string",
"description": "URL for the registry"
},
"user": {
"type": "string",
"description": "User name for registry acces"
},
"password": {
"type": "string",
"description": "Password for registry access"
},
"isDefault": {
"type": "boolean",
"description": "Default registry"
},
"ecrCredentialPlugin": {
"$ref": "#/definitions/ECRCredentialPlugin",
"description": "ECRCredentialPlugin"
}
},
"additionalProperties": false,
"type": "object"
},
"ProjectedVolumeSource": {
"required": [
"sources"
],
"properties": {
"sources": {
"items": {
"$ref": "#/definitions/VolumeProjection"
},
"type": "array"
},
"defaultMode": {
"type": "integer"
}
},
"additionalProperties": false,
"type": "object"
},
"ProviderConfiguration": {
"properties": {
"aesgcm": {
"$ref": "#/definitions/AESConfiguration"
},
"aescbc": {
"$ref": "#/definitions/AESConfiguration"
},
"secretbox": {
"$ref": "#/definitions/SecretboxConfiguration"
},
"identity": {
"$ref": "#/definitions/IdentityConfiguration"
},
"kms": {
"$ref": "#/definitions/KMSConfiguration"
}
},
"additionalProperties": false,
"type": "object"
},
"Quantity": {
"properties": {},
"additionalProperties": false,
"type": "object"
},
"QuobyteVolumeSource": {
"required": [
"registry",
"volume"
],
"properties": {
"registry": {
"type": "string"
},
"volume": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"user": {
"type": "string"
},
"group": {
"type": "string"
},
"tenant": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"RBDVolumeSource": {
"required": [
"monitors",
"image"
],
"properties": {
"monitors": {
"items": {
"type": "string"
},
"type": "array"
},
"image": {
"type": "string"
},
"fsType": {
"type": "string"
},
"pool": {
"type": "string"
},
"user": {
"type": "string"
},
"keyring": {
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/LocalObjectReference"
},
"readOnly": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"RKEConfigNode": {
"properties": {
"nodeName": {
"type": "string",
"description": "Name of the host provisioned via docker machine"
},
"address": {
"type": "string",
"description": "IP or FQDN that is fully resolvable and used for SSH communication"
},
"port": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
],
"description": "Port used for SSH communication"
},
"internalAddress": {
"type": "string",
"description": "Optional - Internal address that will be used for components communication"
},
"role": {
"items": {
"type": "string"
},
"type": "array",
"description": "Node role in kubernetes cluster (controlplane, worker, or etcd)"
},
"hostnameOverride": {
"type": "string",
"description": "Optional - Hostname of the node"
},
"user": {
"type": "string",
"description": "SSH usesr that will be used by RKE"
},
"dockerSocket": {
"type": "string",
"description": "Optional - Docker socket on the node that will be used in tunneling"
},
"sshAgentAuth": {
"type": "boolean",
"description": "SSH Agent Auth enable"
},
"sshKey": {
"type": "string",
"description": "SSH Private Key"
},
"sshKeyPath": {
"type": "string",
"description": "SSH Private Key Path"
},
"sshCert": {
"type": "string",
"description": "SSH Certificate"
},
"sshCertPath": {
"type": "string",
"description": "SSH Certificate Path"
},
"labels": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object",
"description": "Node Labels"
},
"taints": {
"items": {
"$ref": "#/definitions/RKETaint"
},
"type": "array",
"description": "Node Taints"
}
},
"additionalProperties": false,
"type": "object"
},
"RKEConfigServices": {
"properties": {
"etcd": {
"$ref": "#/definitions/ETCDService",
"description": "Etcd Service"
},
"kubeApi": {
"$ref": "#/definitions/KubeAPIService",
"description": "KubeAPI Service"
},
"kubeController": {
"$ref": "#/definitions/KubeControllerService",
"description": "KubeController Service"
},
"scheduler": {
"$ref": "#/definitions/SchedulerService",
"description": "Scheduler Service"
},
"kubelet": {
"$ref": "#/definitions/KubeletService",
"description": "Kubelet Service"
},
"kubeproxy": {
"$ref": "#/definitions/KubeproxyService",
"description": "KubeProxy Service"
}
},
"additionalProperties": false,
"type": "object"
},
"RKESystemImages": {
"properties": {
"etcd": {
"type": "string",
"description": "etcd image"
},
"alpine": {
"type": "string",
"description": "Alpine image"
},
"nginxProxy": {
"type": "string",
"description": "rke-nginx-proxy image"
},
"certDownloader": {
"type": "string",
"description": "rke-cert-deployer image"
},
"kubernetesServicesSidecar": {
"type": "string",
"description": "rke-service-sidekick image"
},
"kubedns": {
"type": "string",
"description": "KubeDNS image"
},
"dnsmasq": {
"type": "string",
"description": "DNSMasq image"
},
"kubednsSidecar": {
"type": "string",
"description": "KubeDNS side car image"
},
"kubednsAutoscaler": {
"type": "string",
"description": "KubeDNS autoscaler image"
},
"coredns": {
"type": "string",
"description": "CoreDNS image"
},
"corednsAutoscaler": {
"type": "string",
"description": "CoreDNS autoscaler image"
},
"nodelocal": {
"type": "string",
"description": "Nodelocal image"
},
"kubernetes": {
"type": "string",
"description": "Kubernetes image"
},
"flannel": {
"type": "string",
"description": "Flannel image"
},
"flannelCni": {
"type": "string",
"description": "Flannel CNI image"
},
"calicoNode": {
"type": "string",
"description": "Calico Node image"
},
"calicoCni": {
"type": "string",
"description": "Calico CNI image"
},
"calicoControllers": {
"type": "string",
"description": "Calico Controllers image"
},
"calicoCtl": {
"type": "string",
"description": "Calicoctl image"
},
"calicoFlexVol": {
"type": "string",
"description": "CalicoFlexVol image"
},
"canalNode": {
"type": "string",
"description": "Canal Node Image"
},
"canalCni": {
"type": "string",
"description": "Canal CNI image"
},
"canalControllers": {
"type": "string",
"description": "Canal Controllers Image needed for Calico/Canal v3.14.0+"
},
"canalFlannel": {
"type": "string",
"description": "CanalFlannel image"
},
"canalFlexVol": {
"type": "string",
"description": "CanalFlexVol image"
},
"weaveNode": {
"type": "string",
"description": "Weave Node image"
},
"weaveCni": {
"type": "string",
"description": "Weave CNI image"
},
"podInfraContainer": {
"type": "string",
"description": "Pod infra container image"
},
"ingress": {
"type": "string",
"description": "Ingress Controller image"
},
"ingressBackend": {
"type": "string",
"description": "Ingress Controller Backend image"
},
"ingressWebhook": {
"type": "string",
"description": "Ingress Webhook image"
},
"metricsServer": {
"type": "string",
"description": "Metrics Server image"
},
"windowsPodInfraContainer": {
"type": "string",
"description": "Pod infra container image for Windows"
},
"aciCniDeployContainer": {
"type": "string",
"description": "Cni deployer container image for Cisco ACI"
},
"aciHostContainer": {
"type": "string",
"description": "host container image for Cisco ACI"
},
"aciOpflexContainer": {
"type": "string",
"description": "opflex agent container image for Cisco ACI"
},
"aciMcastContainer": {
"type": "string",
"description": "mcast daemon container image for Cisco ACI"
},
"aciOvsContainer": {
"type": "string",
"description": "OpenvSwitch container image for Cisco ACI"
},
"aciControllerContainer": {
"type": "string",
"description": "Controller container image for Cisco ACI"
},
"aciGbpServerContainer": {
"type": "string",
"description": "GBP Server container image for Cisco ACI"
},
"aciOpflexServerContainer": {
"type": "string",
"description": "Opflex Server container image for Cisco ACI"
}
},
"additionalProperties": false,
"type": "object"
},
"RKETaint": {
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
},
"effect": {
"type": "string"
},
"timeAdded": {
"type": "string",
"format": "date-time"
}
},
"additionalProperties": false,
"type": "object"
},
"RancherKubernetesEngineConfig": {
"properties": {
"nodes": {
"items": {
"$ref": "#/definitions/RKEConfigNode"
},
"type": "array",
"description": "Kubernetes nodes"
},
"services": {
"$ref": "#/definitions/RKEConfigServices",
"description": "Kubernetes components"
},
"network": {
"$ref": "#/definitions/NetworkConfig",
"description": "Network configuration used in the kubernetes cluster (flannel, calico)"
},
"authentication": {
"$ref": "#/definitions/AuthnConfig",
"description": "Authentication configuration used in the cluster (default: x509)"
},
"addons": {
"type": "string",
"description": "YAML manifest for user provided addons to be deployed on the cluster"
},
"addonsInclude": {
"items": {
"type": "string"
},
"type": "array",
"description": "List of urls or paths for addons"
},
"systemImages": {
"$ref": "#/definitions/RKESystemImages",
"description": "List of images used internally for proxy, cert download and kubedns"
},
"sshKeyPath": {
"type": "string",
"description": "SSH Private Key Path"
},
"sshCertPath": {
"type": "string",
"description": "SSH Certificate Path"
},
"sshAgentAuth": {
"type": "boolean",
"description": "SSH Agent Auth enable"
},
"authorization": {
"$ref": "#/definitions/AuthzConfig",
"description": "Authorization mode configuration used in the cluster"
},
"ignoreDockerVersion": {
"type": "boolean",
"description": "Enable/disable strict docker version checking"
},
"enableCriDockerd": {
"type": "boolean",
"description": "Enable/disable using cri-dockerd"
},
"kubernetesVersion": {
"type": "string",
"description": "Kubernetes version to use (if kubernetes image is specified, image version takes precedence)"
},
"privateRegistries": {
"items": {
"$ref": "#/definitions/PrivateRegistry"
},
"type": "array",
"description": "List of private registries and their credentials"
},
"ingress": {
"$ref": "#/definitions/IngressConfig",
"description": "Ingress controller used in the cluster"
},
"clusterName": {
"type": "string",
"description": "Cluster Name used in the kube config"
},
"cloudProvider": {
"$ref": "#/definitions/CloudProvider",
"description": "Cloud Provider options"
},
"prefixPath": {
"type": "string",
"description": "kubernetes directory path"
},
"winPrefixPath": {
"type": "string",
"description": "kubernetes directory path for windows"
},
"addonJobTimeout": {
"type": "integer",
"description": "Timeout in seconds for status check on addon deployment jobs"
},
"bastionHost": {
"$ref": "#/definitions/BastionHost",
"description": "Bastion/Jump Host configuration"
},
"monitoring": {
"$ref": "#/definitions/MonitoringConfig",
"description": "Monitoring Config"
},
"restore": {
"$ref": "#/definitions/RestoreConfig",
"description": "RestoreCluster flag"
},
"rotateCertificates": {
"$ref": "#/definitions/RotateCertificates",
"description": "Rotating Certificates Option"
},
"rotateEncryptionKey": {
"type": "boolean",
"description": "Rotate Encryption Key Option"
},
"dns": {
"$ref": "#/definitions/DNSConfig",
"description": "DNS Config"
},
"upgradeStrategy": {
"$ref": "#/definitions/NodeUpgradeStrategy",
"description": "Upgrade Strategy for the cluster"
}
},
"additionalProperties": false,
"type": "object"
},
"ResourceConfiguration": {
"required": [
"resources",
"providers"
],
"properties": {
"resources": {
"items": {
"type": "string"
},
"type": "array"
},
"providers": {
"items": {
"$ref": "#/definitions/ProviderConfiguration"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"ResourceFieldSelector": {
"required": [
"resource"
],
"properties": {
"containerName": {
"type": "string"
},
"resource": {
"type": "string"
},
"divisor": {
"$ref": "#/definitions/Quantity"
}
},
"additionalProperties": false,
"type": "object"
},
"ResourceRequirements": {
"properties": {
"limits": {
"patternProperties": {
".*": {
"$ref": "#/definitions/Quantity"
}
},
"type": "object"
},
"requests": {
"patternProperties": {
".*": {
"$ref": "#/definitions/Quantity"
}
},
"type": "object"
}
},
"additionalProperties": false,
"type": "object"
},
"RestoreConfig": {
"properties": {
"restore": {
"type": "boolean"
},
"snapshotName": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"RollingUpdateDaemonSet": {
"properties": {
"maxUnavailable": {
"$ref": "#/definitions/IntOrString"
},
"maxSurge": {
"$ref": "#/definitions/IntOrString"
}
},
"additionalProperties": false,
"type": "object"
},
"RollingUpdateDeployment": {
"properties": {
"maxUnavailable": {
"$ref": "#/definitions/IntOrString"
},
"maxSurge": {
"$ref": "#/definitions/IntOrString"
}
},
"additionalProperties": false,
"type": "object"
},
"RotateCertificates": {
"properties": {
"caCertificates": {
"type": "boolean",
"description": "Rotate CA Certificates"
},
"services": {
"items": {
"type": "string"
},
"type": "array",
"description": "Services to rotate their certs"
}
},
"additionalProperties": false,
"type": "object"
},
"RouteOpenstackOpts": {
"required": [
"router-id"
],
"properties": {
"router-id": {
"type": "string",
"description": "required"
}
},
"additionalProperties": false,
"type": "object"
},
"S3BackupConfig": {
"required": [
"endpoint"
],
"properties": {
"accessKey": {
"type": "string"
},
"secretKey": {
"type": "string"
},
"bucketName": {
"type": "string"
},
"region": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"customCa": {
"type": "string"
},
"folder": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ScaleIOVolumeSource": {
"required": [
"gateway",
"system",
"secretRef"
],
"properties": {
"gateway": {
"type": "string"
},
"system": {
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/LocalObjectReference"
},
"sslEnabled": {
"type": "boolean"
},
"protectionDomain": {
"type": "string"
},
"storagePool": {
"type": "string"
},
"storageMode": {
"type": "string"
},
"volumeName": {
"type": "string"
},
"fsType": {
"type": "string"
},
"readOnly": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"SchedulerService": {
"properties": {
"image": {
"type": "string"
},
"extraArgs": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"extraBinds": {
"items": {
"type": "string"
},
"type": "array"
},
"extraEnv": {
"items": {
"type": "string"
},
"type": "array"
},
"winExtraArgs": {
"patternProperties": {
".*": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"type": "object"
},
"winExtraBinds": {
"items": {
"type": "string"
},
"type": "array"
},
"winExtraEnv": {
"items": {
"type": "string"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"SecretKeySelector": {
"required": [
"LocalObjectReference",
"key"
],
"properties": {
"LocalObjectReference": {
"$ref": "#/definitions/LocalObjectReference"
},
"key": {
"type": "string"
},
"optional": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"SecretProjection": {
"required": [
"LocalObjectReference"
],
"properties": {
"LocalObjectReference": {
"$ref": "#/definitions/LocalObjectReference"
},
"items": {
"items": {
"$ref": "#/definitions/KeyToPath"
},
"type": "array"
},
"optional": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"SecretVolumeSource": {
"properties": {
"secretName": {
"type": "string"
},
"items": {
"items": {
"$ref": "#/definitions/KeyToPath"
},
"type": "array"
},
"defaultMode": {
"type": "integer"
},
"optional": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"SecretboxConfiguration": {
"required": [
"keys"
],
"properties": {
"keys": {
"items": {
"$ref": "#/definitions/Key"
},
"type": "array"
}
},
"additionalProperties": false,
"type": "object"
},
"SecretsEncryptionConfig": {
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable/disable secrets encryption provider config"
},
"customConfig": {
"$ref": "#/definitions/EncryptionConfiguration",
"description": "Custom Encryption Provider configuration object"
}
},
"additionalProperties": false,
"type": "object"
},
"ServiceAccountTokenProjection": {
"required": [
"path"
],
"properties": {
"audience": {
"type": "string"
},
"expirationSeconds": {
"type": "integer"
},
"path": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"ServiceOverride": {
"required": [
"service",
"region",
"url",
"signing-region",
"signing-method",
"signing-name"
],
"properties": {
"service": {
"type": "string"
},
"region": {
"type": "string"
},
"url": {
"type": "string"
},
"signing-region": {
"type": "string"
},
"signing-method": {
"type": "string"
},
"signing-name": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"StorageOSVolumeSource": {
"properties": {
"volumeName": {
"type": "string"
},
"volumeNamespace": {
"type": "string"
},
"fsType": {
"type": "string"
},
"readOnly": {
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/LocalObjectReference"
}
},
"additionalProperties": false,
"type": "object"
},
"Time": {
"properties": {},
"additionalProperties": false,
"type": "object"
},
"Toleration": {
"properties": {
"key": {
"type": "string"
},
"operator": {
"type": "string"
},
"value": {
"type": "string"
},
"effect": {
"type": "string"
},
"tolerationSeconds": {
"type": "integer"
}
},
"additionalProperties": false,
"type": "object"
},
"TypeMeta": {
"properties": {
"kind": {
"type": "string"
},
"apiVersion": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"TypedLocalObjectReference": {
"required": [
"apiGroup",
"kind",
"name"
],
"properties": {
"apiGroup": {
"type": "string"
},
"kind": {
"type": "string"
},
"name": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Unknown": {
"required": [
"TypeMeta",
"Raw",
"ContentEncoding",
"ContentType"
],
"properties": {
"TypeMeta": {
"$ref": "#/definitions/TypeMeta"
},
"Raw": {
"type": "string"
},
"ContentEncoding": {
"type": "string"
},
"ContentType": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"VirtualCenterConfig": {
"properties": {
"user": {
"type": "string"
},
"password": {
"type": "string"
},
"port": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"datacenters": {
"type": "string"
},
"soap-roundtrip-count": {
"type": "integer"
}
},
"additionalProperties": false,
"type": "object"
},
"VolumeProjection": {
"properties": {
"secret": {
"$ref": "#/definitions/SecretProjection"
},
"downwardAPI": {
"$ref": "#/definitions/DownwardAPIProjection"
},
"configMap": {
"$ref": "#/definitions/ConfigMapProjection"
},
"serviceAccountToken": {
"$ref": "#/definitions/ServiceAccountTokenProjection"
}
},
"additionalProperties": false,
"type": "object"
},
"VolumeSource": {
"properties": {
"hostPath": {
"$ref": "#/definitions/HostPathVolumeSource"
},
"emptyDir": {
"$ref": "#/definitions/EmptyDirVolumeSource"
},
"gcePersistentDisk": {
"$ref": "#/definitions/GCEPersistentDiskVolumeSource"
},
"awsElasticBlockStore": {
"$ref": "#/definitions/AWSElasticBlockStoreVolumeSource"
},
"gitRepo": {
"$ref": "#/definitions/GitRepoVolumeSource"
},
"secret": {
"$ref": "#/definitions/SecretVolumeSource"
},
"nfs": {
"$ref": "#/definitions/NFSVolumeSource"
},
"iscsi": {
"$ref": "#/definitions/ISCSIVolumeSource"
},
"glusterfs": {
"$ref": "#/definitions/GlusterfsVolumeSource"
},
"persistentVolumeClaim": {
"$ref": "#/definitions/PersistentVolumeClaimVolumeSource"
},
"rbd": {
"$ref": "#/definitions/RBDVolumeSource"
},
"flexVolume": {
"$ref": "#/definitions/FlexVolumeSource"
},
"cinder": {
"$ref": "#/definitions/CinderVolumeSource"
},
"cephfs": {
"$ref": "#/definitions/CephFSVolumeSource"
},
"flocker": {
"$ref": "#/definitions/FlockerVolumeSource"
},
"downwardAPI": {
"$ref": "#/definitions/DownwardAPIVolumeSource"
},
"fc": {
"$ref": "#/definitions/FCVolumeSource"
},
"azureFile": {
"$ref": "#/definitions/AzureFileVolumeSource"
},
"configMap": {
"$ref": "#/definitions/ConfigMapVolumeSource"
},
"vsphereVolume": {
"$ref": "#/definitions/VsphereVirtualDiskVolumeSource"
},
"quobyte": {
"$ref": "#/definitions/QuobyteVolumeSource"
},
"azureDisk": {
"$ref": "#/definitions/AzureDiskVolumeSource"
},
"photonPersistentDisk": {
"$ref": "#/definitions/PhotonPersistentDiskVolumeSource"
},
"projected": {
"$ref": "#/definitions/ProjectedVolumeSource"
},
"portworxVolume": {
"$ref": "#/definitions/PortworxVolumeSource"
},
"scaleIO": {
"$ref": "#/definitions/ScaleIOVolumeSource"
},
"storageos": {
"$ref": "#/definitions/StorageOSVolumeSource"
},
"csi": {
"$ref": "#/definitions/CSIVolumeSource"
},
"ephemeral": {
"$ref": "#/definitions/EphemeralVolumeSource"
}
},
"additionalProperties": false,
"type": "object"
},
"VsphereCloudProvider": {
"properties": {
"global": {
"$ref": "#/definitions/GlobalVsphereOpts"
},
"virtualCenter": {
"patternProperties": {
".*": {
"$ref": "#/definitions/VirtualCenterConfig"
}
},
"type": "object"
},
"network": {
"$ref": "#/definitions/NetworkVshpereOpts"
},
"disk": {
"$ref": "#/definitions/DiskVsphereOpts"
},
"workspace": {
"$ref": "#/definitions/WorkspaceVsphereOpts"
}
},
"additionalProperties": false,
"type": "object"
},
"VsphereVirtualDiskVolumeSource": {
"required": [
"volumePath"
],
"properties": {
"volumePath": {
"type": "string"
},
"fsType": {
"type": "string"
},
"storagePolicyName": {
"type": "string"
},
"storagePolicyID": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"WeaveNetworkProvider": {
"properties": {
"password": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"WorkspaceVsphereOpts": {
"properties": {
"server": {
"type": "string"
},
"datacenter": {
"type": "string"
},
"folder": {
"type": "string"
},
"default-datastore": {
"type": "string"
},
"resourcepool-path": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
}
}
} | cluster |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_PolicyRule": {
"description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.",
"properties": {
"apiGroups": {
"description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.",
"items": {
"type": "string"
},
"type": "array"
},
"nonResourceURLs": {
"description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.",
"items": {
"type": "string"
},
"type": "array"
},
"resourceNames": {
"description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.",
"items": {
"type": "string"
},
"type": "array"
},
"resources": {
"description": "Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '*/foo' represents the subresource 'foo' for all resources in the specified apiGroups.",
"items": {
"type": "string"
},
"type": "array"
},
"verbs": {
"description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"verbs"
],
"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": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, 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",
"enum": [
"rbac.authorization.k8s.io/v1beta1"
],
"type": [
"string",
"null"
]
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"Role"
],
"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."
},
"rules": {
"description": "Rules holds all the PolicyRules for this Role",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_PolicyRule"
},
"type": [
"array",
"null"
]
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "rbac.authorization.k8s.io",
"kind": "Role",
"version": "v1beta1"
}
]
} | kb_852_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "schema for a qcodes config file",
"properties": {
"user": {
"description": "controls user settings of qcodes",
"properties": {
"analysis_location": {
"description": "Location of analysis plots and data",
"type": "string",
"default": "A:/TransmonExperiments/GoogleDrive/T2acquisition/Data/"
},
"data_location": {
"description": "Location of dat",
"type": "string",
"default": "A:/TransmonExperiments/GoogleDrive/T2acquisition/Data/"
},
"log_location": {
"description": "Location of log files",
"type": "string",
"default": "A:/TransmonExperiments/GoogleDrive/T2acquisition/Data/"
},
"temp_dict_location": {
"description": "Location of calib dict",
"type": "string",
"default": "/"
},
"data_format": {
"description": "Format of data file names",
"type": "string",
"default": "{counter}"
},
"pulse_location": {
"description": "Location of AWG files",
"type": "string",
"default": "A:/TransmonExperiments/GoogleDrive/T2acquisition/Data/"
}
},
"type": "object"
},
"gui": {
"description": "controls gui of qcodes",
"properties": {
"notebook": {
"description": "Use notebook frontend",
"type": "boolean",
"default": true
},
"plotlib": {
"description": "Plotting library",
"enum": [
"QT",
"matplotlib"
],
"type": "string",
"default": "matplotlib"
}
},
"type": "object",
"required": [
"notebook",
"plotlib"
]
},
"core": {
"description": "controls core settings of qcodes",
"properties": {
"loglevel": {
"description": "control logging level",
"enum": [
"CRITICAL",
"ERROR",
"WARNING",
"INFO",
"DEBUG"
],
"type": "string",
"default": "DEBUG"
},
"default_fmt": {
"description": "default location formatter",
"type": "string",
"default": "data/{date}/#{counter}_{name}_{time}"
}
},
"type": "object",
"required": [
"loglevel"
]
}
},
"type": "object",
"required": [
"gui",
"core",
"user"
]
} | o13095 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "get noop response",
"properties": {
"links": {
"properties": {
"self": {
"properties": {
"href": {
"_format": "uri",
"type": "string"
}
},
"required": [
"href"
],
"type": "object"
}
},
"required": [
"self"
],
"type": "object"
}
},
"required": [
"links"
],
"title": "get noop response",
"type": "object"
} | o76479 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSetCondition": {
"description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.",
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Last time the condition transitioned from one status to another."
},
"message": {
"description": "A human readable message indicating details about the transition.",
"type": "string"
},
"reason": {
"description": "The reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "Status of the condition, one of True, False, Unknown.",
"type": "string"
},
"type": {
"description": "Type of DaemonSet condition.",
"type": "string"
}
},
"required": [
"type",
"status"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "DaemonSetStatus represents the current status of a daemon set.",
"properties": {
"collisionCount": {
"description": "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"conditions": {
"description": "Represents the latest available observations of a DaemonSet's current state.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DaemonSetCondition"
},
"type": [
"array",
"null"
],
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge"
},
"currentNumberScheduled": {
"description": "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/",
"format": "int32",
"type": [
"integer",
"null"
]
},
"desiredNumberScheduled": {
"description": "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/",
"format": "int32",
"type": [
"integer",
"null"
]
},
"numberAvailable": {
"description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)",
"format": "int32",
"type": [
"integer",
"null"
]
},
"numberMisscheduled": {
"description": "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/",
"format": "int32",
"type": [
"integer",
"null"
]
},
"numberReady": {
"description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"numberUnavailable": {
"description": "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)",
"format": "int32",
"type": [
"integer",
"null"
]
},
"observedGeneration": {
"description": "The most recent generation observed by the daemon set controller.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"updatedNumberScheduled": {
"description": "The total number of nodes that are running updated daemon pod",
"format": "int32",
"type": [
"integer",
"null"
]
}
},
"required": [
"currentNumberScheduled",
"numberMisscheduled",
"desiredNumberScheduled",
"numberReady"
],
"type": "object"
} | kb_241_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"tier": {
"type": "number"
},
"order": {
"type": "number"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"slot": {
"type": "string"
},
"facts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
},
"icon": {
"type": "string"
},
"duration": {
"type": "number"
},
"status": {
"type": "string"
},
"description": {
"type": "string"
},
"apply_count": {
"type": "number"
},
"percent": {
"type": "number"
}
},
"required": [
"text",
"type",
"icon"
]
}
},
"skills": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"facts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
},
"icon": {
"type": "string"
},
"distance": {
"type": "number"
},
"value": {
"type": "number"
},
"hit_count": {
"type": "number"
},
"dmg_multiplier": {
"type": "number"
},
"duration": {
"type": "number"
}
},
"required": [
"text",
"type",
"icon"
]
}
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"flags": {
"type": "array",
"items": {}
},
"id": {
"type": "number"
},
"chat_link": {
"type": "string"
},
"traited_facts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
},
"icon": {
"type": "string"
},
"duration": {
"type": "number"
},
"status": {
"type": "string"
},
"description": {
"type": "string"
},
"apply_count": {
"type": "number"
},
"requires_trait": {
"type": "number"
}
}
}
}
}
}
},
"specialization": {
"type": "number"
},
"icon": {
"type": "string"
}
},
"required": [
"id",
"tier",
"order",
"name",
"description",
"slot",
"facts",
"specialization",
"icon"
]
},
"properties": {},
"additionalProperties": false
} | o45221 |
{
"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",
"null"
]
},
"fieldPath": {
"description": "Path of the field to select in the specified API version.",
"type": [
"string",
"null"
]
}
},
"required": [
"fieldPath"
],
"type": "object"
} | kb_643_Normalized |
{
"description": "BoundObjectReference is a reference to an object that a token is bound to.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": [
"string",
"null"
]
},
"kind": {
"description": "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.",
"type": [
"string",
"null"
]
},
"name": {
"description": "Name of the referent.",
"type": [
"string",
"null"
]
},
"uid": {
"description": "UID of the referent.",
"type": [
"string",
"null"
]
}
},
"type": "object"
} | kb_60_Normalized |
{
"description": "DaemonEndpoint contains information about a single Daemon endpoint.",
"properties": {
"Port": {
"description": "Port number of the given endpoint.",
"format": "int32",
"type": [
"integer",
"null"
]
}
},
"required": [
"Port"
],
"type": "object"
} | kb_223_Normalized |
{
"properties": {
"attendees": {
"description": "The email addresses of the attendees",
"items": {
"type": "string"
},
"type": "array"
},
"end_datetime": {
"description": "The end date and time of the event",
"format": "date-time",
"type": "string"
},
"location": {
"description": "The location of the event",
"type": "string"
},
"start_datetime": {
"description": "The start date and time of the event",
"format": "date-time",
"type": "string"
},
"title": {
"description": "The title of the calendar event",
"type": "string"
}
},
"required": [
"title",
"start_datetime",
"end_datetime"
],
"type": "object"
} | create_calendar_event_5ba5d103 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://judkins.house/apis/k2/v1/loadBalancerConfig.json",
"$$target": "loadBalancerConfig.json",
"title": "Load balancer configuration",
"description": "Load balancer configuration for Kubernetes API servers",
"properties": {
"name": {
"description": "Name of the load balancer configuration.",
"type": "string",
"maxLength": 32
},
"type": {
"description": "Type of load balancer.",
"enum": [
"cloud",
"flipbit"
],
"type": "string"
}
},
"required": [
"type"
],
"additionalProperties": false,
"type": "object"
} | o90407 |
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"created": {
"type": "string"
},
"numFiles": {
"type": "integer"
},
"files": {
"type": "array",
"items": {
"type": "object",
"properties": {
"filePath": {
"type": "string"
},
"dirName": {
"type": "string"
},
"fileSize": {
"type": "integer"
},
"head": {
"type": "object",
"properties": {
"EBML version": {
"type": "integer"
},
"EBML read version": {
"type": "integer"
},
"EBML maximum ID length": {
"type": "integer"
},
"EBML maximum size length": {
"type": "integer"
},
"Doc type": {
"type": "string"
},
"Doc type version": {
"type": "integer"
},
"Doc type read version": {
"type": "integer"
}
},
"required": [
"Doc type",
"Doc type version",
"Doc type read version"
]
},
"segInfo": {
"type": "object",
"properties": {
"Seek head (subentries will be skipped)": {
"type": "null"
},
"Segment information": {
"type": "null"
},
"Segment UID": {
"type": "string"
},
"Muxing application": {
"type": "string"
},
"Writing application": {
"type": "string"
},
"Timecode scale": {
"type": "integer"
},
"Duration": {
"type": "string"
}
},
"required": [
"Segment information",
"Segment UID",
"Muxing application",
"Writing application",
"Timecode scale",
"Duration"
]
},
"segTracks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"number": {
"type": "string"
},
"uid": {
"type": "integer"
},
"type": {
"type": "string"
},
"codecId": {
"type": "string"
},
"language": {
"type": "string"
},
"sampFreq": {
"type": "integer"
},
"channels": {
"type": "integer"
}
},
"required": [
"number",
"uid",
"type",
"codecId"
]
}
},
"chapters": {
"type": "array",
"items": {}
}
},
"required": [
"filePath",
"dirName",
"fileSize",
"head",
"segInfo",
"segTracks"
]
}
},
"infoSize": {
"type": "integer"
},
"args": {
"type": "object",
"properties": {
"_": {
"type": "array",
"items": {}
},
"p": {
"type": "string"
},
"o": {
"type": "string"
},
"m": {
"type": "string"
}
},
"required": []
},
"mkvInfoVersion": {
"type": "string"
}
},
"required": [
"created",
"numFiles",
"files",
"infoSize",
"args",
"mkvInfoVersion"
]
} | o10927 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "org.eclipse.persistence.testing.jaxb.annotations.xmlpath.Root",
"type": "object",
"properties": {
"root": {
"type": "object",
"properties": {
"employees": {
"type": "object",
"properties": {
"employee": {
"type": "array",
"items": {
"$ref": "#/definitions/Employee"
}
}
}
},
"addresses": {
"type": "object",
"properties": {
"address": {
"type": "array",
"items": {
"$ref": "#/definitions/Address"
}
}
}
}
},
"additionalProperties": false
}
},
"definitions": {
"Employee": {
"type": "object",
"properties": {
"employee-info": {
"type": "object",
"properties": {
"id": {
"type": "integer"
}
}
},
"personal-info": {
"type": "object",
"properties": {
"first-name": {
"type": "string"
},
"last-name": {
"type": "string"
}
}
},
"contact-info": {
"type": "object",
"properties": {
"address-id": {
"type": "string"
},
"phones": {
"type": "object",
"properties": {
"phone-number": {
"type": "array",
"items": {
"$ref": "#/definitions/PhoneNumber"
}
}
}
}
}
},
"responsibilities": {
"type": "object",
"properties": {
"responsibility": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"any-object-root": {},
"any-collection-root": {
"type": "array",
"items": {}
}
},
"additionalProperties": true
},
"PhoneNumber": {
"type": "string",
"additionalProperties": false
},
"Address": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"street": {
"type": "string"
},
"city": {
"type": "string"
}
},
"additionalProperties": false
}
}
} | o42286 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"id": "https://github.com/myedibleenso/processors-server/tree/master/src/main/resources/json/schema/document.json",
"properties": {
"text": {
"type": "string",
"id": "text"
},
"sentences": {
"type": "array",
"items": {
"type": "object",
"id": "0"
},
"id": "sentences"
}
}
}
| o62378 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Form meta schema",
"description": "Schema used for data type validation.",
"type": "array",
"minItems": 1,
"_uniqueItems": true,
"items": {
"oneOf": [
{
"$ref": "#/types/string"
},
{
"$ref": "#/types/boolean"
},
{
"$ref": "#/types/integer"
},
{
"$ref": "#/types/decimal"
},
{
"$ref": "#/types/date"
},
{
"$ref": "#/types/datetime"
},
{
"$ref": "#/types/secret"
},
{
"$ref": "#/types/file"
},
{
"$ref": "#/types/dir"
},
{
"$ref": "#/types/url"
},
{
"$ref": "#/types/json"
},
{
"$ref": "#/types/list_string"
},
{
"$ref": "#/types/list_integer"
},
{
"$ref": "#/types/list_decimal"
},
{
"$ref": "#/types/list_file"
},
{
"$ref": "#/types/list_dir"
},
{
"$ref": "#/types/list_url"
}
]
},
"types": {
"string": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^basic:(string|text):$"
},
"value": {
"type": "string"
}
}
},
"boolean": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^basic:boolean:$"
},
"value": {
"type": "boolean"
}
}
},
"integer": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^(basic:integer|data(:[a-z0-9:]+)?):$"
},
"value": {
"type": "integer"
}
}
},
"decimal": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^basic:decimal:$"
},
"value": {
"type": "number"
}
}
},
"date": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^basic:date:$"
},
"value": {
"type": "string",
"pattern": "^(19|20)\\d\\d-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$"
}
}
},
"datetime": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^basic:datetime:$"
},
"value": {
"type": "string",
"pattern": "^(19|20)\\d\\d-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01]) (?:(?:([01]?\\d|2[0-3]):)?([0-5]?\\d):)?([0-5]?\\d)$"
}
}
},
"secret": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^basic:secret:$"
},
"value": {
"type": "object",
"required": [
"handle"
],
"additionalProperties": false,
"properties": {
"handle": {
"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}$"
}
}
}
}
},
"file": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^basic:file:(html:)?$"
},
"value": {
"type": "object",
"required": [
"file"
],
"additionalProperties": false,
"properties": {
"file": {
"type": "string"
},
"size": {
"type": "number"
},
"total_size": {
"type": "number"
},
"is_remote": {
"type": "boolean"
},
"file_temp": {
"type": "string"
},
"refs": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
"dir": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^basic:dir:$"
},
"value": {
"type": "object",
"required": [
"dir"
],
"additionalProperties": false,
"properties": {
"dir": {
"type": "string"
},
"size": {
"type": "number"
},
"total_size": {
"type": "number"
},
"refs": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
"url": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^basic:(url:download|url:view|url:link):$"
},
"value": {
"type": "object",
"required": [
"url"
],
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"url": {
"type": "string"
},
"refs": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
"json": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^basic:json:$"
},
"value": {
"type": "number"
}
}
},
"list_string": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^list:basic:(string|text):$"
},
"value": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": false
}
}
},
"list_integer": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^list:(basic:integer|data(:[a-z0-9:]+)?):$"
},
"value": {
"type": "array",
"items": {
"type": "integer"
},
"_uniqueItems": false
}
}
},
"list_decimal": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^list:basic:decimal:$"
},
"value": {
"type": "array",
"items": {
"type": "number"
},
"_uniqueItems": false
}
}
},
"list_file": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^list:basic:file:(html:)?$"
},
"value": {
"type": "array",
"items": {
"type": "object",
"required": [
"file"
],
"additionalProperties": false,
"properties": {
"file": {
"type": "string"
},
"size": {
"type": "number"
},
"total_size": {
"type": "number"
},
"is_remote": {
"type": "boolean"
},
"file_temp": {
"type": "string"
},
"refs": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"_uniqueItems": false
}
}
},
"list_dir": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^list:basic:dir:$"
},
"value": {
"type": "array",
"items": {
"type": "object",
"required": [
"dir"
],
"additionalProperties": false,
"properties": {
"dir": {
"type": "string"
},
"size": {
"type": "number"
},
"total_size": {
"type": "number"
},
"refs": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"_uniqueItems": false
}
}
},
"list_url": {
"type": "object",
"required": [
"type",
"value"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"pattern": "^list:basic:(url:download|url:view|url:link):$"
},
"value": {
"type": "array",
"items": {
"type": "object",
"required": [
"url"
],
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"url": {
"type": "string"
},
"refs": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"_uniqueItems": false
}
}
}
}
} | o48770 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"owner": {
"type": "string"
},
"description": {
"type": "string"
},
"vcsroot": {
"type": "string"
},
"contact": {
"type": "string"
},
"short_name": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"links": {
"type": "object",
"properties": {
"homepage": {
"type": "string"
},
"buildchain": {
"type": "string"
},
"api_docs": {
"type": "string"
}
}
},
"service": {
"type": "object",
"properties": {
"provides": {
"type": "array",
"items": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"service_name": {
"type": "string"
},
"protocol": {
"type": "string"
},
"port": {
"type": "integer"
},
"public_dns": {
"type": "array",
"items": {
"type": "string"
}
},
"transport_protocol": {
"type": "string"
}
}
}
},
"depends_on": {
"type": "object",
"properties": {
"internal": {
"type": "array",
"items": {
"type": "object",
"properties": {
"short_name": {
"type": "string"
},
"port": {
"type": "integer"
}
}
}
},
"external": {
"type": "array",
"items": {
"type": "object",
"properties": {
"target": {
"type": "string"
},
"transport_protocol": {
"type": "string"
},
"why": {
"type": "string"
}
}
}
}
}
}
}
},
"context": {
"type": "object",
"properties": {
"belongs_to_bounded_context": {
"type": "string"
},
"visibility": {
"type": "string"
}
}
},
"runtime": {
"type": "object",
"properties": {
"cpu": {
"type": "string"
},
"ram": {
"type": "string"
},
"disk": {
"type": "string"
},
"host_type": {
"type": "string"
},
"network_zone": {
"type": "string"
}
}
},
"software_dependencies": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string"
},
"licenses": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"url": {
"type": "string"
}
}
}
}
}
}
}
},
"required": [
"id",
"name",
"type",
"owner",
"description"
]
} | o67269 |
{
"additionalProperties": false,
"properties": {
"max_age": {
"description": "This property specifies HTTP Strict Transport Security max age.",
"minimum": 0,
"title": "HSTS max age",
"type": "number"
},
"path": {
"additionalProperties": false,
"description": "This object contains information about paths to be used for the various configurations.",
"properties": {
"cert": {
"description": "This property specifies the path for the HTTPS certificate.",
"title": "HTTPS certificate",
"type": "string"
},
"key": {
"description": "This property specifies the path for the HTTPS key.",
"title": "HTTPS key",
"type": "string"
}
},
"required": [
"key",
"cert"
],
"title": "Paths configuration object",
"type": "object"
},
"port": {
"additionalProperties": false,
"description": "This object contains information about ports to be used for the various supported protocols.",
"properties": {
"http": {
"description": "This property specifies the port to use for HTTP connections.",
"maximum": 65535,
"minimum": 0,
"title": "HTTP port",
"type": "number"
},
"https": {
"description": "This property specifies the port to use for HTTPS connections.",
"maximum": 65535,
"minimum": 0,
"title": "HTTPS port",
"type": "number"
}
},
"required": [
"http"
],
"title": "Ports configuration object",
"type": "object"
}
},
"required": [
"port",
"max_age"
],
"self": {
"format": "jsonschema",
"name": "app-config",
"vendor": "unical",
"version": "1-0-0"
},
"type": "object"
} | o4236 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Crystallisation",
"type": "object",
"properties": {
"calculationId": {
"title": "Calculation ID",
"description": "The calculation ID that was returned by intent to crystallise endpoint.",
"type": "string",
"example": "041f7e4d-87d9-4d4a-a296-3cfbdf92f7e2"
}
},
"required": [
"calculationId"
],
"additionalProperties": false
} | o46362 |
{
"definitions": {
"filter_group": {
"additionalProperties": false,
"properties": {
"match_max": {
"_id": "/match_max",
"type": [
"number",
"null"
]
},
"match_min": {
"_id": "/match_min",
"type": [
"number",
"null"
]
},
"mfs": {
"_id": "/mf",
"items": {
"_id": "/mf/items",
"additionalProperties": false,
"properties": {
"expr": {
"_id": "/mf/expr",
"type": "string"
},
"max": {
"_id": "/mf/max",
"type": [
"number",
"null"
]
},
"min": {
"_id": "/mf/min",
"type": [
"number",
"null"
]
},
"type": {
"_id": "/mf/type",
"enum": [
"pseudo",
"total",
"explicit",
"implicit",
"crafted",
"enchant",
"prophecy",
"leaguestone"
],
"type": "string"
}
},
"required": [
"type",
"expr"
],
"type": "object"
},
"minItems": 1,
"type": "array"
},
"type": {
"_id": "/type",
"enum": [
"all",
"count",
"none"
],
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"properties": {
"_id": {
"id": "/id",
"type": "string"
},
"baseid": {
"_id": "/baseid",
"type": "string"
},
"criteria": {
"additionalProperties": false,
"properties": {
"aps_max": {
"_id": "/criteria/aps_max",
"type": "number"
},
"aps_min": {
"_id": "/criteria/aps_min",
"type": "number"
},
"armour_max": {
"_id": "/criteria/armour_max",
"type": "number"
},
"armour_min": {
"_id": "/criteria/armour_min",
"type": "number"
},
"base": {
"_id": "/criteria/base",
"type": "string"
},
"block_max": {
"_id": "/criteria/block_max",
"type": "number"
},
"block_min": {
"_id": "/criteria/block_min",
"type": "number"
},
"buyout": {
"_id": "/criteria/buyout",
"type": "boolean"
},
"corrupted": {
"_id": "/criteria/corrupted",
"type": "boolean"
},
"crafted": {
"_id": "/criteria/crafted",
"type": "boolean"
},
"crit_max": {
"_id": "/criteria/crit_max",
"type": "number"
},
"crit_min": {
"_id": "/criteria/crit_min",
"type": "number"
},
"dps_max": {
"_id": "/criteria/dps_max",
"type": "number"
},
"dps_min": {
"_id": "/criteria/dps_min",
"type": "number"
},
"edps_max": {
"_id": "/criteria/epds_max",
"type": "number"
},
"edps_min": {
"_id": "/criteria/epds_min",
"type": "number"
},
"enchanted": {
"_id": "/criteria/enchanted",
"type": "boolean"
},
"es_max": {
"_id": "/criteria/es_max",
"type": "number"
},
"es_min": {
"_id": "/criteria/es_min",
"type": "number"
},
"evasion_max": {
"_id": "/criteria/evasion_max",
"type": "number"
},
"evasion_min": {
"_id": "/criteria/evasion_min",
"type": "number"
},
"exp": {
"_id": "/criteria/exp",
"maximum": 100,
"minimum": 0,
"type": "number"
},
"fgs": {
"items": {
"$ref": "#/definitions/filter_group"
},
"minItems": 1,
"type": "array"
},
"iclass": {
"_id": "/criteria/iclass",
"type": "string"
},
"identified": {
"_id": "/criteria/identified",
"type": "boolean"
},
"ilvl_max": {
"_id": "/criteria/ilvl_max",
"type": "number"
},
"ilvl_min": {
"_id": "/criteria/ilvl_min",
"type": "number"
},
"level_max": {
"_id": "/criteria/level_max",
"type": "number"
},
"level_min": {
"_id": "/criteria/level_min",
"type": "number"
},
"links_max": {
"_id": "/criteria/links_max",
"type": "number"
},
"links_min": {
"_id": "/criteria/links_min",
"type": "number"
},
"modcount_max": {
"_id": "/criteria/modcount_max",
"type": "number"
},
"modcount_min": {
"_id": "/criteria/modcount_min",
"type": "number"
},
"modifiable": {
"_id": "/criteria/modifiable",
"type": "boolean"
},
"name": {
"_id": "/criteria/name",
"items": {
"_id": "/criteria/name/items",
"type": "string"
},
"minItems": 1,
"type": "array"
},
"pdps_max": {
"_id": "/criteria/pdps_max",
"type": "number"
},
"pdps_min": {
"_id": "/criteria/pdps_min",
"type": "number"
},
"price_max": {
"_id": "/criteria/price_max",
"type": "string"
},
"price_min": {
"_id": "/criteria/price_min",
"type": "string"
},
"quality_max": {
"_id": "/criteria/quality_max",
"type": "number"
},
"quality_min": {
"_id": "/criteria/quality_min",
"type": "number"
},
"rarity": {
"_id": "/criteria/rarity",
"items": {
"_id": "/criteria/rarity/items",
"enum": [
"normal",
"magic",
"rare",
"unique",
"relic"
],
"type": "string"
},
"minItems": 1,
"type": "array"
},
"sockets_max": {
"_id": "/criteria/sockets_max",
"type": "number"
},
"sockets_min": {
"_id": "/criteria/sockets_min",
"type": "number"
},
"stacksize_max": {
"_id": "/criteria/stacksize_max",
"type": "number"
},
"stacksize_min": {
"_id": "/criteria/stacksize_min",
"type": "number"
},
"type": {
"_id": "/criteria/type",
"items": {
"_id": "/criteria/type/items",
"enum": [
"normal",
"magic",
"rare",
"unique",
"gem",
"currency",
"divination card",
"quest item",
"prophecy",
"relic"
],
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"type": "object"
},
"description": {
"_id": "/description",
"type": "string"
},
"enabled": {
"_id": "/enabled",
"type": "boolean"
},
"priority": {
"_id": "/priority",
"type": "number"
},
"title": {
"_id": "/title",
"type": "string"
}
},
"required": [
"criteria",
"title"
],
"type": "object"
} | o74488 |
{
"$id": "http://github.com/kubeflow/metada/schemaparser/testdata/base.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "a JSON schema, which is referred by ext.json",
"properties": {
"annotations": {
"description": "arbitrary string key/value pairs",
"patternProperties": {
"^.*$": {
"type": "string"
}
},
"type": "object"
},
"apiversion": {
"description": "version of the type",
"type": "string"
},
"category": {
"description": "three categories of entities",
"enum": [
"artifact",
"execution",
"container"
],
"type": "string"
},
"id": {
"description": "unique identifier for this entity",
"type": "string"
},
"kind": {
"description": "type of this entity",
"type": "string"
},
"name": {
"description": "name of this entity",
"type": "string"
},
"namespace": {
"description": "namepace of the entity type",
"type": "string"
}
},
"required": [
"id",
"kind",
"namespace",
"apiversion",
"name",
"category"
],
"type": "object"
} | o56043 |
{
"description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"endpoints": {
"description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": [
"string",
"null"
]
},
"path": {
"description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": [
"string",
"null"
]
},
"readOnly": {
"description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": [
"boolean",
"null"
]
}
},
"required": [
"endpoints",
"path"
],
"type": "object"
} | kb_382_Normalized |
{
"definitions": {
"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_policy_v1beta1_AllowedCSIDriver": {
"description": "AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.",
"properties": {
"name": {
"description": "Name is the registered name of the CSI driver",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_AllowedFlexVolume": {
"description": "AllowedFlexVolume represents a single Flexvolume that is allowed to be used.",
"properties": {
"driver": {
"description": "driver is the name of the Flexvolume driver.",
"type": "string"
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_AllowedHostPath": {
"description": "AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined.",
"properties": {
"pathPrefix": {
"description": "pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path.\n\nExamples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo`",
"type": "string"
},
"readOnly": {
"description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_FSGroupStrategyOptions": {
"description": "FSGroupStrategyOptions defines the strategy type and options used to create the strategy.",
"properties": {
"ranges": {
"description": "ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_IDRange"
},
"type": "array"
},
"rule": {
"description": "rule is the strategy that will dictate what FSGroup is used in the SecurityContext.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_HostPortRange": {
"description": "HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.",
"properties": {
"max": {
"_format": "int32",
"description": "max is the end of the range, inclusive.",
"type": "integer"
},
"min": {
"_format": "int32",
"description": "min is the start of the range, inclusive.",
"type": "integer"
}
},
"required": [
"min",
"max"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_IDRange": {
"description": "IDRange provides a min/max of an allowed range of IDs.",
"properties": {
"max": {
"_format": "int64",
"description": "max is the end of the range, inclusive.",
"type": "integer"
},
"min": {
"_format": "int64",
"description": "min is the start of the range, inclusive.",
"type": "integer"
}
},
"required": [
"min",
"max"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodSecurityPolicy": {
"description": "PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container.",
"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": [
"PodSecurityPolicy"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodSecurityPolicySpec",
"description": "spec defines the policy enforced."
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "policy",
"kind": "PodSecurityPolicy",
"version": "v1beta1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodSecurityPolicySpec": {
"description": "PodSecurityPolicySpec defines the policy enforced.",
"properties": {
"allowPrivilegeEscalation": {
"description": "allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.",
"type": "boolean"
},
"allowedCSIDrivers": {
"description": "AllowedCSIDrivers is a whitelist of inline CSI drivers that must be explicitly set to be embedded within a pod spec. An empty value indicates that any CSI driver can be used for inline ephemeral volumes. This is an alpha field, and is only honored if the API server enables the CSIInlineVolume feature gate.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_AllowedCSIDriver"
},
"type": "array"
},
"allowedCapabilities": {
"description": "allowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author's discretion. You must not list a capability in both allowedCapabilities and requiredDropCapabilities.",
"items": {
"type": "string"
},
"type": "array"
},
"allowedFlexVolumes": {
"description": "allowedFlexVolumes is a whitelist of allowed Flexvolumes. Empty or nil indicates that all Flexvolumes may be used. This parameter is effective only when the usage of the Flexvolumes is allowed in the \"volumes\" field.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_AllowedFlexVolume"
},
"type": "array"
},
"allowedHostPaths": {
"description": "allowedHostPaths is a white list of allowed host paths. Empty indicates that all host paths may be used.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_AllowedHostPath"
},
"type": "array"
},
"allowedProcMountTypes": {
"description": "AllowedProcMountTypes is a whitelist of allowed ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled.",
"items": {
"type": "string"
},
"type": "array"
},
"allowedUnsafeSysctls": {
"description": "allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to whitelist all allowed unsafe sysctls explicitly to avoid rejection.\n\nExamples: e.g. \"foo/*\" allows \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" allows \"foo.bar\", \"foo.baz\", etc.",
"items": {
"type": "string"
},
"type": "array"
},
"defaultAddCapabilities": {
"description": "defaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both defaultAddCapabilities and requiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the allowedCapabilities list.",
"items": {
"type": "string"
},
"type": "array"
},
"defaultAllowPrivilegeEscalation": {
"description": "defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.",
"type": "boolean"
},
"forbiddenSysctls": {
"description": "forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of forbidden sysctls. Single * means all sysctls are forbidden.\n\nExamples: e.g. \"foo/*\" forbids \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" forbids \"foo.bar\", \"foo.baz\", etc.",
"items": {
"type": "string"
},
"type": "array"
},
"fsGroup": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_FSGroupStrategyOptions",
"description": "fsGroup is the strategy that will dictate what fs group is used by the SecurityContext."
},
"hostIPC": {
"description": "hostIPC determines if the policy allows the use of HostIPC in the pod spec.",
"type": "boolean"
},
"hostNetwork": {
"description": "hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.",
"type": "boolean"
},
"hostPID": {
"description": "hostPID determines if the policy allows the use of HostPID in the pod spec.",
"type": "boolean"
},
"hostPorts": {
"description": "hostPorts determines which host port ranges are allowed to be exposed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_HostPortRange"
},
"type": "array"
},
"privileged": {
"description": "privileged determines if a pod can request to be run as privileged.",
"type": "boolean"
},
"readOnlyRootFilesystem": {
"description": "readOnlyRootFilesystem when set to true will force containers to run with a read only root file system. If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to.",
"type": "boolean"
},
"requiredDropCapabilities": {
"description": "requiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added.",
"items": {
"type": "string"
},
"type": "array"
},
"runAsGroup": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_RunAsGroupStrategyOptions",
"description": "RunAsGroup is the strategy that will dictate the allowable RunAsGroup values that may be set. If this field is omitted, the pod's RunAsGroup can take any value. This field requires the RunAsGroup feature gate to be enabled."
},
"runAsUser": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_RunAsUserStrategyOptions",
"description": "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set."
},
"runtimeClass": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_RuntimeClassStrategyOptions",
"description": "runtimeClass is the strategy that will dictate the allowable RuntimeClasses for a pod. If this field is omitted, the pod's runtimeClassName field is unrestricted. Enforcement of this field depends on the RuntimeClass feature gate being enabled."
},
"seLinux": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_SELinuxStrategyOptions",
"description": "seLinux is the strategy that will dictate the allowable labels that may be set."
},
"supplementalGroups": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_SupplementalGroupsStrategyOptions",
"description": "supplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext."
},
"volumes": {
"description": "volumes is a white list of allowed volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use '*'.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"seLinux",
"runAsUser",
"supplementalGroups",
"fsGroup"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_RunAsGroupStrategyOptions": {
"description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.",
"properties": {
"ranges": {
"description": "ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_IDRange"
},
"type": "array"
},
"rule": {
"description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.",
"type": "string"
}
},
"required": [
"rule"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_RunAsUserStrategyOptions": {
"description": "RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.",
"properties": {
"ranges": {
"description": "ranges are the allowed ranges of uids that may be used. If you would like to force a single uid then supply a single range with the same start and end. Required for MustRunAs.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_IDRange"
},
"type": "array"
},
"rule": {
"description": "rule is the strategy that will dictate the allowable RunAsUser values that may be set.",
"type": "string"
}
},
"required": [
"rule"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_RuntimeClassStrategyOptions": {
"description": "RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.",
"properties": {
"allowedRuntimeClassNames": {
"description": "allowedRuntimeClassNames is a whitelist of RuntimeClass names that may be specified on a pod. A value of \"*\" means that any RuntimeClass name is allowed, and must be the only item in the list. An empty list requires the RuntimeClassName field to be unset.",
"items": {
"type": "string"
},
"type": "array"
},
"defaultRuntimeClassName": {
"description": "defaultRuntimeClassName is the default RuntimeClassName to set on the pod. The default MUST be allowed by the allowedRuntimeClassNames list. A value of nil does not mutate the Pod.",
"type": "string"
}
},
"required": [
"allowedRuntimeClassNames"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_SELinuxStrategyOptions": {
"description": "SELinuxStrategyOptions defines the strategy type and any options used to create the strategy.",
"properties": {
"rule": {
"description": "rule is the strategy that will dictate the allowable labels that may be set.",
"type": "string"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
}
},
"required": [
"rule"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_SupplementalGroupsStrategyOptions": {
"description": "SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.",
"properties": {
"ranges": {
"description": "ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_IDRange"
},
"type": "array"
},
"rule": {
"description": "rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": {
"description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
"properties": {
"continue": {
"description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
"type": "string"
},
"remainingItemCount": {
"_format": "int64",
"description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
"type": "integer"
},
"resourceVersion": {
"description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "PodSecurityPolicyList is a list of PodSecurityPolicy 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": [
"policy/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_policy_v1beta1_PodSecurityPolicy"
},
"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": [
"PodSecurityPolicyList"
],
"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": "policy",
"kind": "PodSecurityPolicyList",
"version": "v1beta1"
}
]
} | kb_723_Normalized |
{
"definitions": {
"stringArray": {
"additionalItems": false,
"items": {
"type": "string"
},
"type": "array"
}
},
"properties": {
"ramlTitle": {
"type": "string"
},
"validationViolations": {
"$ref": "#/definitions/stringArray"
}
},
"type": "object"
} | o63477 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://json.schemastore.org/bower.json",
"patternProperties": {
"^_": {
"description": "Any property starting with _ is valid.",
"additionalProperties": true
}
},
"properties": {
"name": {
"description": "The name of your package.",
"type": "string",
"maxLength": 50,
"minLength": 1
},
"description": {
"description": "Help users identify and search for your package with a brief description.",
"type": "string",
"maxLength": 140
},
"version": {
"description": "A semantic version number.",
"type": "string"
},
"main": {
"description": "The primary acting files necessary to use your package.",
"type": ["string", "array"]
},
"license": {
"description": "SPDX license identifier or path/url to a license.",
"type": ["string", "array"],
"maxLength": 140
},
"ignore": {
"description": "A list of files for Bower to ignore when installing your package.",
"type": ["string", "array"]
},
"keywords": {
"description": "Used for search by keyword. Helps make your package easier to discover without people needing to know its name.",
"type": "array",
"items": {
"type": "string",
"maxLength": 50
}
},
"authors": {
"description": "A list of people that authored the contents of the package.",
"type": "array",
"items": {
"type": ["string", "object"]
}
},
"homepage": {
"description": "URL to learn more about the package. Falls back to GitHub project if not specified and it's a GitHub endpoint.",
"type": "string",
"format": "uri"
},
"repository": {
"description": "The repository in which the source code can be found.",
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": ["git"]
},
"url": {
"type": "string",
"format": "uri"
}
}
},
"dependencies": {
"description": "Dependencies are specified with a simple hash of package name to a semver compatible identifier or URL.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"devDependencies": {
"description": "Dependencies that are only needed for development of the package, e.g., test framework or building documentation.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"resolutions": {
"description": "Dependency versions to automatically resolve with if conflicts occur between packages.",
"type": "object"
},
"private": {
"description": "If you set it to true it will refuse to publish it. This is a way to prevent accidental publication of private repositories.",
"type": "boolean"
},
"exportsOverride": {
"description": "Used by grunt-bower-task to specify custom install locations.",
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": ["string", "array"]
}
}
},
"moduleType": {
"description": "The types of modules this package exposes",
"type": ["array", "string"],
"items": {
"enum": ["amd", "es6", "globals", "node", "yui"]
}
}
},
"required": ["name"],
"title": "JSON schema for Bower configuration files",
"type": "object"
}
| bower |
{
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"title": "VCMI map object template format",
"description": "Description of map object tempate that describes appearence of object instance",
"required": [
"animation",
"mask"
],
"additionalProperties": false,
"properties": {
"animation": {
"type": "string",
"description": "Path to def file with animation of this object",
"format": "defFile"
},
"editorAnimation": {
"type": "string",
"description": "Optional path to def file with animation of this object to use in map editor",
"format": "defFile"
},
"visitableFrom": {
"type": "array",
"description": "Directions from which this object is visible",
"minItems": 3,
"maxItems": 3,
"items": {
"type": "string",
"maxLength": 3,
"minLength": 3
}
},
"allowedTerrains": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of terrain on which this object can be placed"
},
"mask": {
"type": "array",
"items": {
"type": "string"
},
"description": "Object mask that describes on which tiles object is visible/blocked/activatable"
}
}
} | o83815 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "#/definitions/response",
"title": "Response",
"description": "A response represents an HTTP response.",
"properties": {
"responseCode": {
"type": "object",
"properties": {
"code": {
"type": "number",
"description": "Each HTTP response has a numeric response code (explained in [rfc-2616](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html). This code is stored in this field by Postman."
},
"name": {
"type": "string",
"description": "Since it is rather hard to keep track of what a number means, responses can have a Human-friendly string describing the response code."
},
"detail": {
"type": "string",
"description": "Detailed explanation about the response code goes here."
}
},
"required": [
"code",
"name"
]
},
"time": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
],
"description": "The time taken by the request to complete."
},
"headers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Some headers can have names associated with them, which are stored in this field."
},
"key": {
"type": "string",
"description": "The left hand side (LHS) or 'key' of the header."
},
"value": {
"type": "string",
"description": "Value of the header, or the right hand side (RHS)."
},
"description": {
"type": "string",
"description": "An optional description about the header."
}
},
"required": [
"key",
"value"
]
}
},
"cookies": {
"type": "array",
"items": {
"type": "object",
"title": "Cookie",
"description": "A Cookie, that follows the [Google Chrome format](https://developer.chrome.com/extensions/cookies)",
"properties": {
"domain": {
"type": "string",
"description": "The domain for which this cookie is valid."
},
"expirationDate": {
"type": "number",
"description": "The timestamp of the time when the cookie expires."
},
"hostOnly": {
"type": "boolean",
"description": "True if the cookie is a host-only cookie. (i.e. a request's URL domain must exactly match the domain of the cookie)."
},
"httpOnly": {
"type": "boolean",
"description": "Indicates if this cookie is HTTP Only. (if True, the cookie is inaccessible to client-side scripts)"
},
"name": {
"type": "string",
"description": "This is the name of the Cookie."
},
"path": {
"type": "string",
"description": "The path associated with the Cookie."
},
"secure": {
"type": "boolean",
"description": "Indicates if the 'secure' flag is set on the Cookie, meaning that it is transmitted over secure connections only. (typically HTTPS)"
},
"session": {
"type": "boolean",
"description": "True if the cookie is a session cookie."
},
"storeId": {
"type": "string",
"description": "The ID of the cookie store containing this cookie."
},
"value": {
"type": "string",
"description": "The value of the Cookie."
},
"expires": {
"type": "string",
"description": "Human readable expiration time."
}
},
"required": [
"domain",
"expirationDate",
"hostOnly",
"httpOnly",
"name",
"path",
"secure",
"session",
"storeId",
"value",
"expires"
]
}
},
"mime": {
"type": "string",
"description": "Mimetype of the response."
},
"text": {
"type": "string",
"description": "The raw text of the response."
},
"rawDataType": {
"type": "string",
"description": "The data type of the raw response."
}
},
"required": [
"responseCode",
"headers",
"text"
]
} | o67549 |
{
"additionalProperties": false,
"description": "Schema for a CallRail call completion event",
"properties": {
"answered": {
"type": [
"boolean",
"null"
]
},
"callercity": {
"type": [
"string",
"null"
]
},
"callercountry": {
"type": [
"string",
"null"
]
},
"callername": {
"type": [
"string",
"null"
]
},
"callernum": {
"type": [
"string",
"null"
]
},
"callerstate": {
"type": [
"string",
"null"
]
},
"callerzip": {
"type": [
"string",
"null"
]
},
"callsource": {
"type": [
"string",
"null"
]
},
"customer_city": {
"type": [
"string",
"null"
]
},
"customer_country": {
"type": [
"string",
"null"
]
},
"customer_name": {
"type": [
"string",
"null"
]
},
"customer_phone_number": {
"type": [
"string",
"null"
]
},
"customer_state": {
"type": [
"string",
"null"
]
},
"customer_zip": {
"type": [
"string",
"null"
]
},
"datetime": {
"_format": "date-time",
"type": "string"
},
"destinationnum": {
"type": [
"string",
"null"
]
},
"device_type": {
"type": [
"string",
"null"
]
},
"duration": {
"type": [
"number",
"null"
]
},
"first_call": {
"type": [
"boolean",
"null"
]
},
"ga": {
"type": [
"string",
"null"
]
},
"gclid": {
"type": [
"string",
"null"
]
},
"id": {
"type": "string"
},
"ip": {
"type": [
"string",
"null"
]
},
"keywords": {
"type": [
"string",
"null"
]
},
"kissmetrics_id": {
"type": [
"string",
"null"
]
},
"landingpage": {
"type": [
"string",
"null"
]
},
"recording": {
"type": [
"string",
"null"
]
},
"referrer": {
"type": [
"string",
"null"
]
},
"referrermedium": {
"type": [
"string",
"null"
]
},
"trackingnum": {
"type": [
"string",
"null"
]
},
"transcription": {
"type": [
"string",
"null"
]
},
"utm_campaign": {
"type": [
"string",
"null"
]
},
"utm_content": {
"type": [
"string",
"null"
]
},
"utm_medium": {
"type": [
"string",
"null"
]
},
"utm_source": {
"type": [
"string",
"null"
]
},
"utm_term": {
"type": [
"string",
"null"
]
},
"utma": {
"type": [
"string",
"null"
]
},
"utmb": {
"type": [
"string",
"null"
]
},
"utmc": {
"type": [
"string",
"null"
]
},
"utmv": {
"type": [
"string",
"null"
]
},
"utmx": {
"type": [
"string",
"null"
]
},
"utmz": {
"type": [
"string",
"null"
]
}
},
"required": [
"datetime",
"id"
],
"self": {
"format": "jsonschema",
"name": "call_complete",
"vendor": "com.callrail",
"version": "1-0-2"
},
"type": "object"
} | sp_16_Normalized |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"provider": {
"type": "object",
"description": "The OAuth2 endpoint configuration. If not set, uses application config.",
"required": [],
"properties": {
"url": {
"type": "string",
"description": "The URL of the OAuth flow provider's entry point."
},
"redirectUrl": {
"type": "string",
"description": "The URL the OAuth provider should redirect to."
},
"accessTokenUrl": {
"type": "string",
"description": "The location where the application can obtain an access token."
},
"clientId": {
"type": "string",
"description": "The client identifier."
},
"clientSecret": {
"type": "string",
"description": "The client secret."
},
"scope": {
"type": "string",
"description": "The authorization scopes to request from the provider."
},
"sessionStorageId": {
"type": "string",
"description": "A unique identifier for storing temporary information inside the browser's sessionStorage",
"format": "topic",
"default": "default"
}
}
},
"auth": {
"type": "object",
"description": "Authenticate with the OAuth2 provider.",
"required": [
"resource"
],
"properties": {
"onActions": {
"type": "array",
"description": "Names of the actions that trigger OAuth2 authentication.",
"items": {
"type": "string",
"format": "topic"
},
"default": []
},
"token": {
"type": "string",
"description": "Use the given OAuth2 access token (instead of using the OAuth provider)."
},
"resource": {
"type": "string",
"description": "The name under which to publish the OAuth access token.",
"format": "topic"
},
"flag": {
"type": "string",
"description": "The name of the flag indicating the current authentication state.",
"format": "topic"
},
"drop": {
"type": "object",
"description": "When to drop authorization.",
"properties": {
"onActions": {
"type": "array",
"description": "Names of the actions that trigger de-authentication.",
"items": {
"type": "string",
"format": "topic"
},
"default": []
}
},
"default": {
"onActions": []
}
}
}
}
}
} | o52962 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"cvecheck_details": {
"type": "object",
"description": "Detail of one CVE",
"properties": {
"cvss": {
"$ref": "#/definitions/cvss"
},
"description": {
"type": "string"
},
"severity": {
"type": "string"
},
"attribution": {
"type": "string"
},
"id": {
"type": "string"
},
"references": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
},
"cwe": {
"type": "string"
}
},
"required": [
"cvss",
"description",
"severity",
"id",
"references"
],
"additionalProperties": false
},
"cvss": {
"type": "object",
"properties": {
"score": {
"type": "number"
},
"vector": {
"type": "string"
}
},
"required": [
"score",
"vector"
],
"additionalProperties": false
}
},
"type": "object",
"description": "CVEcheck worker results",
"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/cvecheck_details"
}
},
"summary": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"status",
"details",
"summary"
],
"additionalProperties": false,
"title": "cvecheck_results-v3-0-1"
} | o61001 |
{
"properties": {
"discounts": {
"description": "The list of discounts to apply",
"items": {
"properties": {
"expiration_date": {
"description": "The expiration date of the discount",
"format": "date",
"type": "string"
},
"percentage": {
"description": "The discount percentage",
"type": "number"
}
},
"required": [
"percentage",
"expiration_date"
],
"type": "object"
},
"type": "array"
},
"original_price": {
"description": "The original price of the item",
"type": "number"
}
},
"required": [
"original_price",
"discounts"
],
"type": "object"
} | calculate_discounted_price_4a4fc05e |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_IPBlock": {
"description": "IPBlock describes a particular CIDR (Ex. \"192.168.1.1/24\",\"2001:db9::/64\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.",
"properties": {
"cidr": {
"description": "CIDR is a string representing the IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\"",
"type": "string"
},
"except": {
"description": "Except is a slice of CIDRs that should not be included within an IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\" Except values will be rejected if they are outside the CIDR range",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"cidr"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyEgressRule": {
"description": "NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8",
"properties": {
"ports": {
"description": "List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyPort"
},
"type": "array"
},
"to": {
"description": "List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyPeer"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyIngressRule": {
"description": "NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.",
"properties": {
"from": {
"description": "List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyPeer"
},
"type": "array"
},
"ports": {
"description": "List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyPort"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyPeer": {
"description": "NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed",
"properties": {
"ipBlock": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_IPBlock",
"description": "IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be."
},
"namespaceSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "Selects Namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.\n\nIf PodSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects all Pods in the Namespaces selected by NamespaceSelector."
},
"podSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "This is a label selector which selects Pods. This field follows standard label selector semantics; if present but empty, it selects all pods.\n\nIf NamespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the Pods matching PodSelector in the policy's own Namespace."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyPort": {
"description": "NetworkPolicyPort describes a port to allow traffic on",
"properties": {
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers."
},
"protocol": {
"description": "The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicySpec": {
"description": "NetworkPolicySpec provides the specification of a NetworkPolicy",
"properties": {
"egress": {
"description": "List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyEgressRule"
},
"type": "array"
},
"ingress": {
"description": "List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicyIngressRule"
},
"type": "array"
},
"podSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace."
},
"policyTypes": {
"description": "List of rule types that the NetworkPolicy relates to. Valid options are \"Ingress\", \"Egress\", or \"Ingress,Egress\". If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an Egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"podSelector"
],
"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"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"description": "NetworkPolicy describes what network traffic is allowed for a set of Pods",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"enum": [
"networking.k8s.io/v1"
],
"type": [
"string",
"null"
]
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"NetworkPolicy"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1_NetworkPolicySpec",
"description": "Specification of the desired behavior for this NetworkPolicy."
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "networking.k8s.io",
"kind": "NetworkPolicy",
"version": "v1"
}
]
} | kb_584_Normalized |
{
"properties": {
"dimensions": {
"properties": {
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle or triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius",
"length"
],
"type": "object"
},
"shape": {
"description": "The geometric shape (e.g., circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_f2449c3a |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_StatefulSetCondition": {
"description": "StatefulSetCondition describes the state of a statefulset at a certain point.",
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Last time the condition transitioned from one status to another."
},
"message": {
"description": "A human readable message indicating details about the transition.",
"type": "string"
},
"reason": {
"description": "The reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "Status of the condition, one of True, False, Unknown.",
"type": "string"
},
"type": {
"description": "Type of statefulset condition.",
"type": "string"
}
},
"required": [
"type",
"status"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "StatefulSetStatus represents the current state of a StatefulSet.",
"properties": {
"collisionCount": {
"description": "collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"conditions": {
"description": "Represents the latest available observations of a statefulset's current state.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_StatefulSetCondition"
},
"type": [
"array",
"null"
],
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge"
},
"currentReplicas": {
"description": "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"currentRevision": {
"description": "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).",
"type": [
"string",
"null"
]
},
"observedGeneration": {
"description": "observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"readyReplicas": {
"description": "readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"replicas": {
"description": "replicas is the number of Pods created by the StatefulSet controller.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"updateRevision": {
"description": "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)",
"type": [
"string",
"null"
]
},
"updatedReplicas": {
"description": "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.",
"format": "int32",
"type": [
"integer",
"null"
]
}
},
"required": [
"replicas"
],
"type": "object"
} | kb_1012_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"message": {
"default": "",
"description": "Message to log to the console",
"type": "string"
}
},
"required": [
"message"
],
"title": "Log a message to the console",
"type": "object"
} | o12503 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Inventory Manager Analysis Schema",
"description": "The shape of the analysis object generated within Inventory Manager for a successfully parsed metadata document. Content within this object is related to the quality of the content of specific metadata fields, which can be used downstream to determine whether or not a given document should be accepted into another service, such as the OneStop search platform.",
"type": "object",
"properties": {
"identification": {
"description": "Assessment of the identifying elements of the metadata.",
"type": "object",
"properties": {
"fileIdentifier": {
"type": "object",
"properties": {
"exists": {
"type": "boolean"
},
"fileIdentifierString": {
"type": [
"string"
]
}
},
"required": [
"exists"
],
"additionalProperties": false
},
"doi": {
"type": "object",
"properties": {
"exists": {
"type": "boolean"
},
"doiString": {
"type": [
"string"
]
}
},
"required": [
"exists"
],
"additionalProperties": false
},
"parentIdentifier": {
"type": "object",
"properties": {
"exists": {
"type": "boolean"
},
"parentIdentifierString": {
"type": [
"string"
]
}
},
"required": [
"exists"
],
"additionalProperties": false
},
"hierarchyLevelName": {
"type": "object",
"properties": {
"exists": {
"type": "boolean"
},
"matchesIdentifiers": {
"description": "Resolves to true if 'granule' specified as hierarchy level and both fileId & parentId provided OR if no hierarchy level specified.",
"type": "boolean"
}
},
"required": [
"exists",
"matchesIdentifiers"
],
"additionalProperties": false
}
},
"additionalProperties": false
},
"temporalBounding": {
"description": "Assessment of the temporal bounding in the metadata.",
"type": "object",
"properties": {
"begin": {
"$ref": "#/definitions/dateInfo"
},
"end": {
"$ref": "#/definitions/dateInfo"
},
"instant": {
"$ref": "#/definitions/dateInfo"
},
"range": {
"type": "object",
"properties": {
"descriptor": {
"enum": [
"BOUNDED",
"INSTANT",
"INVALID",
"ONGOING",
"UNDEFINED"
]
},
"beginLTEEnd": {
"enum": [
true,
false,
"UNDEFINED"
]
}
},
"additionalProperties": false,
"required": [
"descriptor",
"beginLTEEnd"
]
}
},
"required": [
"begin",
"end",
"instant",
"range"
],
"additionalProperties": false
},
"spatialBounding": {
"description": "Assessment of the spatial bounding in the metadata.",
"type": "object",
"properties": {
"exists": {
"type": "boolean"
}
},
"required": [
"exists"
],
"additionalProperties": false
},
"titles": {
"description": "Assessment of the titles in the metadata.",
"type": "object",
"properties": {
"title": {
"type": "object",
"properties": {
"exists": {
"type": "boolean"
},
"characters": {
"type": "integer"
}
},
"required": [
"exists",
"characters"
],
"additionalProperties": false
},
"alternateTitle": {
"type": "object",
"properties": {
"exists": {
"type": "boolean"
},
"characters": {
"type": "integer"
}
},
"required": [
"exists",
"characters"
],
"additionalProperties": false
}
},
"required": [
"title",
"alternateTitle"
],
"additionalProperties": false
},
"description": {
"description": "Assessment of the description in the metadata.",
"type": "object",
"properties": {
"exists": {
"type": "boolean"
},
"characters": {
"type": "integer"
}
},
"required": [
"exists",
"characters"
],
"additionalProperties": false
},
"thumbnail": {
"description": "Assessment of the thumbnail information in the metadata.",
"type": "object",
"properties": {
"exists": {
"type": "boolean"
}
},
"required": [
"exists"
],
"additionalProperties": false
},
"dataAccess": {
"description": "Assessment of the data access elements in the metadata.",
"type": "object",
"properties": {
"exists": {
"type": "boolean"
}
},
"required": [
"exists"
],
"additionalProperties": false
}
},
"additionalProperties": false,
"definitions": {
"dateInfo": {
"type": "object",
"properties": {
"exists": {
"type": "boolean"
},
"precision": {
"enum": [
"Years",
"Days",
"Nanos",
"UNDEFINED",
"INVALID"
]
},
"validSearchFormat": {
"enum": [
true,
false,
"UNDEFINED"
]
},
"zoneSpecified": {
"type": "string"
},
"utcDateTimeString": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"exists",
"precision",
"validSearchFormat",
"zoneSpecified",
"utcDateTimeString"
]
}
}
} | o29019 |
{
"definitions": {
"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_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"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",
"null"
]
},
"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",
"null"
]
},
"path": {
"description": "Path to access on the HTTP server.",
"type": [
"string",
"null"
]
},
"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",
"null"
]
}
},
"required": [
"port"
],
"type": "object"
} | kb_422_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema",
"additionalProperties": {},
"definitions": {
"image_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Holds attributes of an ANS image component. In the Arc ecosystem, these are stored in Anglerfish.",
"properties": {
"_id": {
"$ref": "#/definitions/traits_trait_id_json"
},
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"address": {
"$ref": "#/definitions/traits_trait_address_json"
},
"alignment": {
"$ref": "#/definitions/traits_trait_alignment_json"
},
"alt_text": {
"$ref": "#/definitions/traits_trait_alt_text_json"
},
"canonical_url": {
"$ref": "#/definitions/traits_trait_canonical_url_json"
},
"caption": {
"description": "Caption for the image.",
"type": "string"
},
"channels": {
"$ref": "#/definitions/traits_trait_channel_json"
},
"comments": {
"$ref": "#/definitions/traits_trait_comments_json"
},
"content_restrictions": {
"$ref": "#/definitions/traits_trait_content_restrictions_json"
},
"contributors": {
"$ref": "#/definitions/traits_trait_contributors_json"
},
"copyright": {
"$ref": "#/definitions/traits_trait_copyright_json"
},
"created_date": {
"$ref": "#/definitions/traits_trait_created_date_json"
},
"credits": {
"$ref": "#/definitions/traits_trait_credits_json"
},
"description": {
"$ref": "#/definitions/traits_trait_description_json"
},
"display_date": {
"$ref": "#/definitions/traits_trait_display_date_json"
},
"distributor": {
"$ref": "#/definitions/traits_trait_distributor_json"
},
"editor_note": {
"$ref": "#/definitions/traits_trait_editor_note_json"
},
"first_publish_date": {
"$ref": "#/definitions/traits_trait_first_publish_date_json"
},
"focal_point": {
"$ref": "#/definitions/traits_trait_focal_point_json"
},
"geo": {
"$ref": "#/definitions/traits_trait_geo_json"
},
"headlines": {
"$ref": "#/definitions/traits_trait_headlines_json"
},
"height": {
"description": "Height for the image.",
"type": "integer"
},
"image_type": {
"$ref": "#/definitions/traits_trait_image_type_json"
},
"label": {
"$ref": "#/definitions/traits_trait_label_json"
},
"language": {
"$ref": "#/definitions/traits_trait_locale_json"
},
"last_updated_date": {
"$ref": "#/definitions/traits_trait_last_updated_date_json"
},
"licensable": {
"description": "True if the image can legally be licensed to others.",
"type": "boolean"
},
"location": {
"$ref": "#/definitions/traits_trait_location_json"
},
"owner": {
"$ref": "#/definitions/traits_trait_owner_json"
},
"pitches": {
"$ref": "#/definitions/traits_trait_pitches_json"
},
"planning": {
"$ref": "#/definitions/traits_trait_planning_json"
},
"promo_items": {
"$ref": "#/definitions/traits_trait_promo_items_json"
},
"publish_date": {
"$ref": "#/definitions/traits_trait_publish_date_json"
},
"related_content": {
"$ref": "#/definitions/traits_trait_related_content_json"
},
"revision": {
"$ref": "#/definitions/traits_trait_revision_json"
},
"short_url": {
"$ref": "#/definitions/traits_trait_short_url_json"
},
"slug": {
"$ref": "#/definitions/traits_trait_slug_json"
},
"source": {
"$ref": "#/definitions/traits_trait_source_json"
},
"status": {
"$ref": "#/definitions/traits_trait_status_json"
},
"subheadlines": {
"$ref": "#/definitions/traits_trait_subheadlines_json"
},
"subtitle": {
"description": "Subtitle for the image.",
"type": "string"
},
"subtype": {
"$ref": "#/definitions/traits_trait_subtype_json"
},
"syndication": {
"$ref": "#/definitions/traits_trait_syndication_json"
},
"taxonomy": {
"$ref": "#/definitions/traits_trait_taxonomy_json"
},
"tracking": {
"$ref": "#/definitions/traits_trait_tracking_json"
},
"type": {
"enum": [
"image"
],
"type": "string"
},
"url": {
"description": "URL for the image.",
"type": "string"
},
"vanity_credits": {
"$ref": "#/definitions/traits_trait_vanity_credits_json"
},
"version": {
"$ref": "#/definitions/traits_trait_version_json"
},
"width": {
"description": "Width for the image.",
"type": "integer"
},
"workflow": {
"$ref": "#/definitions/traits_trait_workflow_json"
}
},
"required": [
"type",
"version"
],
"title": "An image.",
"type": "object"
},
"redirect_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "A redirect to another story.",
"properties": {
"_id": {
"$ref": "#/definitions/traits_trait_id_json"
},
"canonical_url": {
"$ref": "#/definitions/traits_trait_canonical_url_json"
},
"owner": {
"$ref": "#/definitions/traits_trait_owner_json"
},
"redirect_url": {
"$ref": "#/definitions/traits_trait_canonical_url_json"
},
"revision": {
"$ref": "#/definitions/traits_trait_revision_json"
},
"type": {
"enum": [
"redirect"
],
"type": "string"
},
"version": {
"$ref": "#/definitions/traits_trait_version_json"
}
},
"required": [
"type",
"version",
"canonical_url",
"redirect_url"
],
"title": "A redirect object.",
"type": "object"
},
"story_elements_custom_embed_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "A custom embed element. Can be used to reference content from external providers about which little is known.",
"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"
},
"embed": {
"additionalProperties": false,
"description": "The embed data.",
"properties": {
"config": {
"additionalProperties": false,
"description": "Arbitrary configuration data generated by a plugin. Users are responsible for maintaining schema.",
"patternProperties": {
"^([a-zA-Z0-9_])*$": {}
},
"properties": {
"referent": {
"not": {}
},
"type": {
"not": {}
},
"version": {
"not": {}
}
},
"title": "Embed Configuration",
"type": "object"
},
"id": {
"description": "Foreign ID of embedded item.",
"maxLength": 128,
"minLength": 1,
"title": "Embed ID",
"type": "string"
},
"url": {
"description": "Provider URL for this embed item. When concatenated with Embed ID, should produce a URL that returns json metadata about the embedded content.",
"maxLength": 512,
"minLength": 1,
"title": "Embed Provider URL",
"type": "string"
}
},
"required": [
"id",
"url"
],
"title": "Embed",
"type": "object"
},
"subtype": {
"$ref": "#/definitions/traits_trait_subtype_json"
},
"type": {
"enum": [
"custom_embed"
],
"type": "string"
}
},
"required": [
"type",
"embed"
],
"title": "Custom Embed",
"type": "object"
},
"story_elements_raw_html_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "An html content element",
"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"
},
"content": {
"description": "Any arbitrary chunk of HTML.",
"type": "string"
},
"subtype": {
"$ref": "#/definitions/traits_trait_subtype_json"
},
"type": {
"enum": [
"raw_html"
]
}
},
"required": [
"type",
"content"
],
"type": "object"
},
"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_address_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"dependencies": {
"extended_address": [
"street_address"
],
"post_office_box": [
"street_address"
]
},
"description": "An Address following the convention of http://microformats.org/wiki/hcard",
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"country_name": {
"type": "string"
},
"extended_address": {
"type": "string"
},
"locality": {
"type": "string"
},
"post_office_box": {
"type": "string"
},
"postal_code": {
"type": "string"
},
"region": {
"type": "string"
},
"street_address": {
"type": "string"
}
},
"title": "Address",
"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_alt_text_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The direct ANS equivalent of the HTML 'alt' attribute. A description of the contents of an image for improved accessibility.",
"title": "Alt Text",
"type": "string"
},
"traits_trait_canonical_url_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The relative URL to this document on the website specified by the `canonical_website` field. In the Arc ecosystem, this will be populated by the content api from the arc-canonical-url service if present based on the canonical_website. In conjunction with canonical_website, it can be used to determine the SEO canonical url or open graph url. In a multi-site context, this field may be different from the website_url field.",
"title": "Canonical URL",
"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_comments_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": {},
"description": "Comment configuration data",
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"allow_comments": {
"description": "If false, commenting is disabled on this content.",
"type": "boolean"
},
"comments_period": {
"description": "How long (in days) after publish date until comments are closed.",
"type": "integer"
},
"display_comments": {
"description": "If false, do not render comments on this content.",
"type": "boolean"
},
"moderation_required": {
"description": "If true, comments must be moderator-approved before being displayed.",
"type": "boolean"
}
},
"title": "Comments",
"type": "object"
},
"traits_trait_content_aliases_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An list of alternate names that this content can be fetched by instead of id.",
"items": {
"pattern": "^([a-z])([a-z0-9-])*$",
"type": "string"
},
"title": "Aliases trait",
"type": "array"
},
"traits_trait_content_restrictions_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Trait that applies contains the content restrictions of an ANS object.",
"properties": {
"content_code": {
"description": "The content restriction code/level/flag associated with the ANS object",
"type": "string"
},
"embargo": {
"additionalProperties": false,
"description": "Embargo configuration to enforce publishing restrictions. Embargoed content must not go live.",
"properties": {
"active": {
"description": "The boolean flag to indicate if the embargo is active or not. If this field is false, ignore the embargo.",
"type": "boolean"
},
"description": {
"description": "An optional description for the embargo.",
"type": "string"
},
"end_time": {
"_format": "date-time",
"description": "An optional end time for the embargo to indicate when it ends. When it's not defined, it means the embargo keeps applying. The end time should be ignored if active flag is false.",
"type": "string"
}
},
"required": [
"active"
],
"type": "object"
},
"geo": {
"additionalProperties": false,
"description": "Geo-Restriction configuration that contains the restriction ids that this content should be associated with.",
"properties": {
"restrictions": {
"description": "An array containing the geo-restriction objects. Limited to a size of 1 for now.",
"items": {
"additionalProperties": false,
"description": "An object specifying the _id of the restriction this content should be associated with.",
"properties": {
"restriction_id": {
"description": "The _id of the restriction that is stored in Global Settings.",
"type": "string"
}
},
"required": [
"restriction_id"
],
"type": "object"
},
"maxItems": 1,
"minItems": 1,
"type": "array"
}
},
"required": [
"restrictions"
],
"type": "object"
}
},
"title": "Content Restrictions",
"type": "object"
},
"traits_trait_contributors_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Trait that holds information on who created and contributed to a given document in Arc.",
"properties": {
"created_by": {
"description": "The Creator of the Document.",
"properties": {
"display_name": {
"description": "The display name of the Arc user who created the Document",
"type": "string"
},
"user_id": {
"description": "The unique ID of the Arc user who created the Document",
"type": "string"
}
},
"type": "object"
}
},
"title": "Contributors",
"type": "object"
},
"traits_trait_copyright_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A copyright notice for the legal owner of this content. E.g., '\u00a9 1996-2018 The Washington Post.' Format may vary between organizations.",
"title": "Copyright information",
"type": "string"
},
"traits_trait_created_date_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"_format": "date-time",
"description": "When the content was originally created (RFC3339-formatted). In the Arc ecosystem, this will be automatically generated for stories in the Story API.",
"title": "Created Date",
"type": "string"
},
"traits_trait_credits_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A list of people and groups attributed to this content, keyed by type of contribution. In the Arc ecosystem, references in this list will be denormalized into author objects from the arc-author-service.",
"patternProperties": {
"^[a-zA-Z0-9_]*": {
"items": {
"anyOf": [
{
"$ref": "#/definitions/utils_author_json"
},
{
"$ref": "#/definitions/utils_reference_json"
}
],
"type": "object"
},
"type": "array"
}
},
"properties": {
"by": {
"description": "The primary author(s) of this document. For a story, is is the writer or reporter. For an image, it is the photographer.",
"items": {
"anyOf": [
{
"$ref": "#/definitions/utils_author_json"
},
{
"$ref": "#/definitions/utils_reference_json"
}
],
"type": "object"
},
"title": "By",
"type": "array"
},
"photos_by": {
"description": "The photographer(s) of supplementary images included in this document, if it is a story. Note that if this document is an image, the photographer(s) should appear in the 'by' slot.",
"items": {
"anyOf": [
{
"$ref": "#/definitions/utils_author_json"
},
{
"$ref": "#/definitions/utils_reference_json"
}
],
"type": "object"
},
"title": "Photos by",
"type": "array"
}
},
"title": "Credit trait",
"type": "object"
},
"traits_trait_description_json": {
"$ref": "#/definitions/utils_dictionary_json",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The descriptions, or blurbs, for the content.",
"title": "Description",
"type": "object"
},
"traits_trait_display_date_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"_format": "date-time",
"description": "The RFC3339-formatted dated time of the most recent date the story was (re)displayed on a public site.",
"title": "Display_Date",
"type": "string"
},
"traits_trait_distributor_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Information about a third party that provided this content from outside this document's hosted organization.",
"oneOf": [
{
"additionalProperties": false,
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"category": {
"description": "The machine-readable category of how this content was produced. Use 'staff' if this content was produced by an employee of the organization who owns this document repository. (Multisite note: content produced within a single *organization*, but shared across multiple *websites* should still be considered 'staff.') Use \u2018wires\u2019 if this content was produced for another organization and shared with the one who owns this document repository. Use 'freelance' if this content was produced by an individual on behalf of the organization who owns this document repository. Use 'stock' if this content is stock media distributed directly from a stock media provider. Use 'handout' if this is content provided from a source for an article (usually promotional media distributed directly from a company). Use 'other' for all other cases.",
"enum": [
"staff",
"wires",
"freelance",
"stock",
"handout",
"other"
],
"type": "string"
},
"mode": {
"enum": [
"custom"
],
"type": "string"
},
"name": {
"description": "The human-readable name of the distributor of this content. E.g., Reuters.",
"type": "string"
},
"subcategory": {
"description": "The machine-readable subcategory of how this content was produced. E.g., 'freelance - signed'. May vary between organizations.",
"type": "string"
}
}
},
{
"additionalProperties": false,
"properties": {
"mode": {
"enum": [
"reference"
],
"type": "string"
},
"reference_id": {
"description": "The ARC UUID of the distributor of this content. E.g., ABCDEFGHIJKLMNOPQRSTUVWXYZ.",
"type": "string"
}
},
"required": [
"reference_id",
"mode"
]
}
],
"title": "Distributor",
"type": "object"
},
"traits_trait_editor_note_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Additional information to be displayed near the content from the editor.",
"title": "Editor_Note",
"type": "string"
},
"traits_trait_first_publish_date_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"_format": "date-time",
"description": "When the story was first published.",
"title": "First Publish Date",
"type": "string"
},
"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_geo_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Latitidue and Longitude of the content",
"properties": {
"latitude": {
"type": "number"
},
"longitude": {
"type": "number"
}
},
"title": "Geo",
"type": "object"
},
"traits_trait_headlines_json": {
"$ref": "#/definitions/utils_dictionary_json",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The headline(s) or title for this content. The 'basic' key is required.",
"title": "Headlines",
"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_image_type_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"category": {
"description": "The machine-readable enumeration of valid image types.",
"enum": [
"photograph",
"graphic",
"illustration",
"thumbnail"
],
"type": "string"
},
"description": "A more specific category for an image.",
"title": "Image Type",
"type": "string"
},
"traits_trait_label_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "What the Washington Post calls a Kicker",
"patternProperties": {
"^[a-zA-Z0-9_]*$": {
"additionalProperties": false,
"description": "Additional user-defined keyed label objects.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"display": {
"description": "If false, this label should be hidden.",
"type": "boolean"
},
"text": {
"description": "The text of this label.",
"type": "string"
},
"url": {
"description": "An optional destination url of this label.",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}
},
"properties": {
"basic": {
"additionalProperties": false,
"description": "The default label object for this piece of content.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"display": {
"description": "If false, this label should be hidden.",
"type": "boolean"
},
"text": {
"description": "The text of this label.",
"type": "string"
},
"url": {
"description": "An optional destination url of this label.",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}
},
"title": "Label",
"type": "object"
},
"traits_trait_last_updated_date_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"_format": "date-time",
"description": "When the content was last updated (RFC3339-formatted).",
"title": "Last Updated Date",
"type": "string"
},
"traits_trait_locale_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The primary language of the content. The value should follow IETF BCP47. (e.g. 'en', 'es-419', etc.) ",
"title": "Locale",
"type": "string"
},
"traits_trait_location_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A description of the location, useful if a full address or lat/long specification is overkill.",
"title": "Location related trait",
"type": "string"
},
"traits_trait_owner_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Various unrelated fields that should be preserved for backwards-compatibility reasons. See also trait_source.",
"properties": {
"id": {
"description": "The machine-readable unique identifier of the organization whose database this content is stored in. In Arc, this is equivalent to ARC_ORG_NAME.",
"type": "string"
},
"name": {
"description": "Deprecated in 0.10.9. See `distributor.name`. (Formerly: The human-readable name of original producer of content. Distinguishes between Wires, Staff and other sources.)",
"type": "string"
},
"sponsored": {
"description": "True if this content is advertorial or native advertising.",
"type": "boolean"
}
},
"title": "Owner information ",
"type": "object"
},
"traits_trait_pitches_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Trait that represents a story's pitches. In the Arc ecosystem, this data is generated by WebSked.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"platform": {
"description": "A list of the story's pitches to a platform.",
"items": {
"$ref": "#/definitions/traits_trait_platform_pitch_json"
},
"type": "array"
},
"publication": {
"description": "A list of the story's pitches to a publication.",
"items": {
"$ref": "#/definitions/traits_trait_publication_pitch_json"
},
"type": "array"
}
},
"title": "Pitches",
"type": "object"
},
"traits_trait_planning_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Trait that applies planning information to a document or resource. In the Arc ecosystem, this data is generated by WebSked. Newsroom use only. All these fields should be available and editable in WebSked.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"budget_line": {
"description": "Used for the newsroom to identify what the story is about, especially if a user is unfamiliar with the slug of a story and the headline or they do not yet exist. Newsroom use only.",
"title": "Budget Line",
"type": "string"
},
"deadline_miss": {
"description": "The delta between the story's planned publish date and actual first publish time, in minutes.",
"type": "integer"
},
"internal_note": {
"description": "This note is used for shared communication inside the newsroom.",
"title": "Internal Note",
"type": "string"
},
"scheduling": {
"additionalProperties": false,
"description": "Scheduling information.",
"properties": {
"planned_publish_date": {
"_format": "date-time",
"description": "When the content is planned to be published.",
"type": "string"
},
"scheduled_publish_date": {
"_format": "date-time",
"description": "When the content was first published.",
"type": "string"
},
"will_have_gallery": {
"description": "Will this content have galleries?",
"type": "boolean"
},
"will_have_graphic": {
"description": "Will this content have graphics?",
"type": "boolean"
},
"will_have_image": {
"description": "Will this content have images?",
"type": "boolean"
},
"will_have_video": {
"description": "Will this content have videos?",
"type": "boolean"
}
},
"type": "object"
},
"story_length": {
"additionalProperties": false,
"description": "Story length information.",
"properties": {
"character_count_actual": {
"description": "The current number of characters in the story.",
"type": "integer"
},
"character_count_planned": {
"description": "The anticipated number of characters in the story.",
"type": "integer"
},
"character_encoding": {
"description": "The encoding used for counting characters in the story.",
"type": "string"
},
"inch_count_actual": {
"description": "The current length of the story in inches.",
"type": "integer"
},
"inch_count_planned": {
"description": "The anticipated length of the story in inches.",
"type": "integer"
},
"line_count_actual": {
"description": "The current length of the story in lines.",
"type": "integer"
},
"line_count_planned": {
"description": "The anticipated length of the story in lines.",
"type": "integer"
},
"word_count_actual": {
"description": "Current number of words.",
"type": "integer"
},
"word_count_planned": {
"description": "The anticipated number of words in the story.",
"type": "integer"
}
},
"type": "object"
},
"websked_sort_date": {
"_format": "date-time",
"description": "Date to be used for chronological sorting in WebSked.",
"type": "string"
}
},
"title": "Scheduling information",
"type": "object"
},
"traits_trait_platform_pitch_event_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Trait that represents an update event for a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"note": {
"description": "Optional note associated with this update.",
"type": "string"
},
"status": {
"description": "The current status of the pitch.",
"pattern": "^([a-z]|[ ])*$",
"type": "string"
},
"time": {
"_format": "date-time",
"description": "The time of this update.",
"type": "string"
},
"user_id": {
"description": "The ID of the user who made this update.",
"type": "string"
}
},
"title": "Platform pitch event",
"type": "object"
},
"traits_trait_platform_pitch_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Trait that represents a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"creation_event": {
"$ref": "#/definitions/traits_trait_platform_pitch_event_json"
},
"latest_event": {
"$ref": "#/definitions/traits_trait_platform_pitch_event_json"
},
"platform_path": {
"description": "The path of the platform that this pitch targets.",
"type": "string"
}
},
"title": "Platform pitch",
"type": "object"
},
"traits_trait_promo_items_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Lists of promotional content to use when highlighting the story. In the Arc ecosystem, references in these lists will be denormalized.",
"patternProperties": {
".*": {
"oneOf": [
{
"$ref": "#"
},
{
"$ref": "#/definitions/utils_reference_json"
},
{
"$ref": "#/definitions/story_elements_raw_html_json"
},
{
"$ref": "#/definitions/story_elements_custom_embed_json"
}
]
}
},
"properties": {
"basic": {
"oneOf": [
{
"$ref": "#"
},
{
"$ref": "#/definitions/utils_reference_json"
},
{
"$ref": "#/definitions/story_elements_raw_html_json"
},
{
"$ref": "#/definitions/story_elements_custom_embed_json"
}
]
}
},
"title": "Promo Items",
"type": "object"
},
"traits_trait_publication_pitch_event_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Trait that represents an update event for a pitch to a publication. In the Arc ecosystem, this data is generated by WebSked.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"edition_id": {
"description": "The ID of the publication edition that this pitch targets.",
"type": "string"
},
"edition_time": {
"_format": "date-time",
"description": "The time of the publication edition that this pitch targets.",
"type": "string"
},
"note": {
"description": "Optional note associated with this update.",
"type": "string"
},
"status": {
"description": "The current status of the pitch.",
"pattern": "^([a-z]|[ ])*$",
"type": "string"
},
"time": {
"_format": "date-time",
"description": "The time of this update.",
"type": "string"
},
"user_id": {
"description": "The ID of the user who made this update.",
"type": "string"
}
},
"title": "Publication pitch event",
"type": "object"
},
"traits_trait_publication_pitch_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Trait that represents a pitch to a publication. In the Arc ecosystem, this data is generated by WebSked.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"creation_event": {
"$ref": "#/definitions/traits_trait_publication_pitch_event_json"
},
"latest_event": {
"$ref": "#/definitions/traits_trait_publication_pitch_event_json"
},
"publication_id": {
"description": "The ID of the publication that this pitch targets.",
"type": "string"
}
},
"title": "Publication pitch",
"type": "object"
},
"traits_trait_publish_date_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"_format": "date-time",
"description": "When the story was published.",
"title": "Publish_Date",
"type": "string"
},
"traits_trait_related_content_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Lists of content items or references this story is related to, arbitrarily keyed. In the Arc ecosystem, references in this object will be denormalized into the fully-inflated content objects they represent.",
"patternProperties": {
".*": {
"items": {
"anyOf": [
{
"$ref": "#"
},
{
"$ref": "#/definitions/utils_reference_json"
},
{
"$ref": "#/definitions/story_elements_custom_embed_json"
}
],
"type": "object"
},
"type": "array"
}
},
"properties": {
"redirect": {
"description": "An attached redirect. In Arc, when this content item is fetched by url, content api will instead return this redirect object with appropriate headers. In all other cases, this content should be treated normally.",
"items": {
"$ref": "#/definitions/redirect_json"
},
"maxItems": 1,
"type": "array"
}
},
"title": "Related_Content",
"type": "object"
},
"traits_trait_revision_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Trait that applies revision information to a document. In the Arc ecosystem, many of these fields are populated in stories by the Story API.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"branch": {
"description": "The name of the branch this revision was created on.",
"type": "string"
},
"editions": {
"description": "A list of identifiers of editions that point to this revision.",
"items": {
"type": "string"
},
"type": "array"
},
"parent_id": {
"description": "The unique id of the revision that this revisions was branched from, or preceded it on the current branch.",
"type": "string"
},
"published": {
"description": "Whether or not this revision's parent story is published, in any form or place",
"type": "boolean"
},
"revision_id": {
"description": "The unique id of this revision.",
"type": "string"
},
"user_id": {
"description": "The unique user id of the person who created this revision.",
"type": "string"
}
},
"title": "Revision",
"type": "object"
},
"traits_trait_short_url_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A url-shortened version of the canonical url.",
"title": "Short_Url",
"type": "string"
},
"traits_trait_slug_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A short reference name for internal editorial use",
"title": "Slug",
"type": "string"
},
"traits_trait_social_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Links to various social media",
"items": {
"additionalProperties": {},
"properties": {
"site": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"title": "Social Links",
"type": "array"
},
"traits_trait_source_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Information about the original source and/or owner of this content",
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"edit_url": {
"description": "A link to edit this content in its source CMS.",
"type": "string"
},
"name": {
"description": "Deprecated in 0.10.9. See `distributor.name`. (Formerly: The human-readable name of the organization who first produced this content. E.g., 'Reuters'.)",
"type": "string"
},
"source_id": {
"description": "The id of this content in a foreign CMS.",
"type": "string"
},
"source_type": {
"description": "Deprecated in 0.10.9. See `distributor.category` and `distributor.subcategory`. (Formerly: The method used to enter this content. E.g. 'staff', 'wires'.)",
"type": "string"
},
"system": {
"description": "The software (CMS or editor) that was used to enter this content. E.g., 'wordpress', 'ellipsis'.",
"type": "string"
}
},
"title": "Source",
"type": "object"
},
"traits_trait_status_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Optional field to story story workflow related status (e.g. published/embargoed/etc)",
"title": "Status",
"type": "string"
},
"traits_trait_subheadlines_json": {
"$ref": "#/definitions/utils_dictionary_json",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The sub-headline(s) for the content.",
"title": "Sub-Headlines",
"type": "object"
},
"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"
},
"traits_trait_syndication_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Key-boolean pair of syndication services where this article may go",
"patternProperties": {
".*": {
"type": "boolean"
}
},
"properties": {
"external_distribution": {
"description": "Necessary for fulfilling contractual agreements with third party clients",
"type": "boolean"
},
"search": {
"description": "Necessary so that we can filter out all articles that editorial has deemed should not be discoverable via search",
"type": "boolean"
}
},
"title": "Syndication",
"type": "object"
},
"traits_trait_taxonomy_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Holds the collection of tags, categories, keywords, etc that describe content.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"associated_tasks": {
"description": "A list of WebSked task IDs that this content was created or curated to satisfy.",
"items": {
"pattern": "^[0-9a-fA-F]{24}$",
"type": "string"
},
"maxItems": 200,
"type": "array"
},
"auxiliaries": {
"description": "A list of auxiliaries. In the Arc ecosystem, this list is populated by Clavis.",
"items": {
"$ref": "#/definitions/utils_auxiliary_json"
},
"type": "array"
},
"keywords": {
"description": "A list of keywords. In the Arc ecosystem, this list is populated by Clavis.",
"items": {
"$ref": "#/definitions/utils_keyword_json"
},
"type": "array"
},
"named_entities": {
"description": "A list of named entities. In the Arc ecosystem, this list is populated by Clavis.",
"items": {
"$ref": "#/definitions/utils_named_entity_json"
},
"type": "array"
},
"primary_section": {
"description": "A primary section object or reference to one. In the Arc ecosystem, a reference here is denormalized into a site from the arc-site-service.",
"oneOf": [
{
"$ref": "#/definitions/utils_section_json"
},
{
"allOf": [
{
"$ref": "#/definitions/utils_reference_json"
},
{
"properties": {
"referent": {
"properties": {
"type": {
"enum": [
"section"
]
}
}
}
}
}
]
}
]
},
"primary_site": {
"description": "Deprecated in 0.10.9. (See `primary_section` instead.) A primary site object or reference to one. In the Arc ecosystem, a reference here is denormalized into a site from the arc-site-service.",
"oneOf": [
{
"$ref": "#/definitions/utils_site_json"
},
{
"allOf": [
{
"$ref": "#/definitions/utils_reference_json"
},
{
"properties": {
"referent": {
"properties": {
"type": {
"enum": [
"site"
]
}
}
}
}
}
]
}
]
},
"sections": {
"description": "A list of site objects or references to them. In the Arc ecosystem, references in this list are denormalized into sites from the arc-site-service. In a multi-site context, sites will be denormalized against an organization's default website only.",
"items": {
"oneOf": [
{
"$ref": "#/definitions/utils_section_json"
},
{
"allOf": [
{
"$ref": "#/definitions/utils_reference_json"
},
{
"properties": {
"referent": {
"properties": {
"type": {
"enum": [
"section"
]
}
}
}
}
}
]
}
]
},
"type": "array"
},
"seo_keywords": {
"description": "A list of user-editable manually entered keywords for search purposes. In the Arc ecosystem, these can be generated and saved in source CMS systems, editors, etc.",
"items": {
"type": "string"
},
"type": "array"
},
"sites": {
"description": "Deprecated in 0.10.9. (See `sections` instead.) A list of site objects or references to them. In the Arc ecosystem, references in this list are denormalized into sites from the arc-site-service. In a multi-site context, sites will be denormalized against an organization's default website only.",
"items": {
"oneOf": [
{
"$ref": "#/definitions/utils_site_json"
},
{
"allOf": [
{
"$ref": "#/definitions/utils_reference_json"
},
{
"properties": {
"referent": {
"properties": {
"type": {
"enum": [
"site"
]
}
}
}
}
}
]
}
]
},
"type": "array"
},
"stock_symbols": {
"description": "A list of stock symbols of companies related to this content. In the Arc ecosystem, these can be generated and saved in source CMS systems, editors, etc.",
"items": {
"type": "string"
},
"type": "array"
},
"tags": {
"items": {
"$ref": "#/definitions/utils_tag_json"
},
"type": "array"
},
"topics": {
"description": "A list of topics. In the Arc ecosystem, this list is populated by Clavis.",
"items": {
"$ref": "#/definitions/utils_topic_json"
},
"type": "array"
}
},
"title": "Taxonomy",
"type": "object"
},
"traits_trait_tracking_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": {},
"description": "Tracking information, probably implementation-dependent",
"title": "Tracking",
"type": "object"
},
"traits_trait_vanity_credits_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Similar to the credits trait, but to be used only when ANS is being directly rendered to readers natively. For legal and technical reasons, the `credits` trait is preferred when converting ANS into feeds or other distribution formats. However, when present, `vanity_credits` allows more sophisticated credits presentation to override the default without losing that original data.",
"patternProperties": {
"^[a-zA-Z0-9_]*": {
"items": {
"anyOf": [
{
"$ref": "#/definitions/utils_author_json"
},
{
"$ref": "#/definitions/utils_reference_json"
}
],
"type": "object"
},
"type": "array"
}
},
"properties": {
"by": {
"description": "The primary author(s) of this document. For a story, is is the writer or reporter. For an image, it is the photographer.",
"items": {
"anyOf": [
{
"$ref": "#/definitions/utils_author_json"
},
{
"$ref": "#/definitions/utils_reference_json"
}
],
"type": "object"
},
"title": "By",
"type": "array"
},
"photos_by": {
"description": "The photographer(s) of supplementary images included in this document, if it is a story. Note that if this document is an image, the photographer(s) should appear in the 'by' slot.",
"items": {
"anyOf": [
{
"$ref": "#/definitions/utils_author_json"
},
{
"$ref": "#/definitions/utils_reference_json"
}
],
"type": "object"
},
"title": "Photos by",
"type": "array"
}
},
"title": "Vanity Credits trait",
"type": "object"
},
"traits_trait_version_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The version of ANS that this object was serialized as, in major.minor.patch format. For top-level content objects, this is a required trait.",
"enum": [
"0.10.9"
],
"title": "Describes the ANS version of this object",
"type": "string"
},
"traits_trait_website_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The _id of the website on which this document exists. This field is only available in Content API. If different from canonical_website, then this document was originally sourced from the canonical_website. Generated at fetch time by Content API.",
"title": "Website",
"type": "string"
},
"traits_trait_workflow_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Trait that applies workflow information to a document or resource. In the Arc ecosystem, this data is generated by WebSked.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"note": {
"description": "This note will be used for any task automatically generated via WebSked task triggers.",
"type": "string"
},
"status_code": {
"description": "Code indicating the story's current workflow status. This number should match the values configured in WebSked.",
"minimum": 1,
"type": "integer"
}
},
"title": "Workflow information",
"type": "object"
},
"utils_author_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Models attribution to an individual or group for contribution towards some content item. In the Arc ecosystem, these are stored in the arc-author-service.",
"properties": {
"_id": {
"$ref": "#/definitions/traits_trait_id_json"
},
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"affiliation": {
"description": "The name of an organization the author is affiliated with. E.g., The Washington Post, or George Mason University.",
"title": "Affiliation",
"type": "string"
},
"awards": {
"description": "A list of awards the author has received.",
"items": {
"additionalProperties": false,
"properties": {
"award_name": {
"description": "The name of the award.",
"title": "Award Name",
"type": "string"
}
},
"type": "object"
},
"title": "Awards",
"type": "array"
},
"bio": {
"description": "A one or two sentence description of the author.",
"title": "Short Biography",
"type": "string"
},
"books": {
"description": "A list of books written by the author.",
"items": {
"additionalProperties": false,
"properties": {
"book_title": {
"description": "The book title.",
"title": "Title",
"type": "string"
},
"book_url": {
"description": "A link to a page to purchase or learn more about the book.",
"title": "URL",
"type": "string"
}
},
"title": "Book",
"type": "object"
},
"title": "Books",
"type": "array"
},
"byline": {
"description": "The public-facing name, or nom-de-plume, name of the author.",
"title": "Byline",
"type": "string"
},
"contributor": {
"description": "If true, this author is an external contributor to the publication.",
"title": "Contributor",
"type": "boolean"
},
"division": {
"description": "The desk or group that this author normally reports to. E.g., 'Politics' or 'Sports.'",
"title": "Division",
"type": "string"
},
"education": {
"description": "A list of schools that this author has graduated from.",
"items": {
"additionalProperties": false,
"properties": {
"school_name": {
"description": "The name of the school.",
"title": "School Name",
"type": "string"
}
},
"title": "School",
"type": "object"
},
"title": "Education",
"type": "array"
},
"email": {
"_format": "email",
"description": "The professional email address of this author.",
"title": "E-mail",
"type": "string"
},
"expertise": {
"description": "A comma-delimited list of subjects the author in which the author has expertise.",
"title": "Expertise",
"type": "string"
},
"first_name": {
"description": "The real first name of a human author.",
"title": "First Name",
"type": "string"
},
"image": {
"$ref": "#/definitions/image_json"
},
"languages": {
"description": "A description of list of languages that the author is somewhat fluent in, excluding the native language of the parent publication, and identified in the language of the parent publication. E.g., Russian, Japanese, Greek.",
"title": "Languages",
"type": "string"
},
"last_name": {
"description": "The real last name of a human author.",
"title": "Last Name",
"type": "string"
},
"location": {
"description": "The city or locality that the author resides in or is primarily associated with.",
"title": "Location",
"type": "string"
},
"long_bio": {
"description": "The full biography of the author.",
"title": "Long Biography",
"type": "string"
},
"middle_name": {
"description": "The real middle name of a human author.",
"title": "Middle Name",
"type": "string"
},
"name": {
"description": "The full human name of contributor. See also byline, first_name, last_name, middle_name, suffix.",
"title": "Name",
"type": "string"
},
"org": {
"description": "Deprecated. In ANS 0.5.8 and prior versions, this field is populated with the 'location' field from Arc Author Service. New implementations should use the 'location' and 'affiliation' field. Content should be identical to 'location.'",
"title": "Org",
"type": "string"
},
"role": {
"description": "The organizational role or title of this author.",
"title": "Role",
"type": "string"
},
"slug": {
"$ref": "#/definitions/traits_trait_slug_json"
},
"socialLinks": {
"$ref": "#/definitions/traits_trait_social_json",
"description": "Deperecated. Included for backwards-compatibility. Content should be identical to social_links."
},
"social_links": {
"$ref": "#/definitions/traits_trait_social_json"
},
"suffix": {
"description": "The real suffix of a human author.",
"title": "Suffix",
"type": "string"
},
"type": {
"description": "Indicates that this is an author",
"enum": [
"author"
],
"type": "string"
},
"url": {
"description": "A link to an author's landing page on the website, or a personal website.",
"type": "string"
},
"version": {
"$ref": "#/definitions/traits_trait_version_json"
}
},
"required": [
"type",
"name"
],
"title": "An author of a piece of content.",
"type": "object"
},
"utils_auxiliary_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Models a auxiliary used in targeting a piece of content.",
"properties": {
"_id": {
"description": "The unique identifier for this auxiliary.",
"type": "string"
},
"name": {
"description": "The general name for this auxiliary.",
"type": "string"
},
"uid": {
"description": "A short identifier for this auxiliary. Usually used in cases where a long form id cannot work.",
"type": "string"
}
},
"required": [
"_id",
"uid"
],
"title": "Auxiliary",
"type": "object"
},
"utils_dictionary_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"patternProperties": {
".*": {
"type": "string"
}
},
"properties": {
"basic": {
"type": "string"
}
},
"required": [
"basic"
]
},
"utils_keyword_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Models a keyword used in describing a piece of content.",
"properties": {
"frequency": {
"description": "An optional count of the frequency of the keyword as it appears in the content it describes",
"type": "integer"
},
"keyword": {
"description": "The keyword used to describe a piece of content",
"type": "string"
},
"score": {
"description": "An arbitrary weighting to give the keyword",
"type": "number"
},
"tag": {
"description": "The Part of Speech tag for this keyword.",
"type": "string"
}
},
"required": [
"keyword",
"score"
],
"title": "Keyword",
"type": "object"
},
"utils_named_entity_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Models a named entity (i.e. name of a person, place, or organization) used in a piece of content.",
"properties": {
"_id": {
"description": "A unique identifier for the concept of the named entity.",
"type": "string"
},
"name": {
"description": "The actual string of text that was identified as a named entity.",
"type": "string"
},
"score": {
"decription": "An optional relevancy for this named entitiy.",
"type": "number"
},
"type": {
"description": "A description of what the named entity is. E.g. 'organization', 'person', or 'location'.",
"type": "string"
}
},
"required": [
"_id",
"name",
"type"
],
"title": "Named Entity",
"type": "object"
},
"utils_reference_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "This represents a reference to external content that should be denormalized",
"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"
},
"referent": {
"additionalProperties": false,
"dependencies": {
"website": {
"properties": {
"type": {
"enum": [
"section"
],
"type": "string"
}
}
}
},
"properties": {
"id": {
"description": "The id passed to the provider to retrieve an ANS document",
"type": "string"
},
"provider": {
"description": "A URL that can resolve the id into an ANS element",
"type": "string"
},
"referent_properties": {
"additionalProperties": {},
"description": "An object for key-value pairs that should override the values of keys with the same name in the denormalized object",
"type": "object"
},
"service": {
"description": "The type of interaction the provider expects. E.g., 'oembed'",
"type": "string"
},
"type": {
"description": "The ANS type that the provider should return.",
"type": "string"
},
"website": {
"description": "The website which the referenced id belongs to. Currently supported only for sections.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"subtype": {
"$ref": "#/definitions/traits_trait_subtype_json"
},
"type": {
"enum": [
"reference"
],
"type": "string"
}
},
"required": [
"type",
"referent"
],
"title": "Representation of a normalized element",
"type": "object"
},
"utils_section_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "A hierarchical section in a taxonomy. In the Arc ecosystem, these are stored in the arc-site-service.",
"properties": {
"_id": {
"$ref": "#/definitions/traits_trait_id_json"
},
"_website": {
"$ref": "#/definitions/traits_trait_website_json"
},
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"description": {
"description": "A short description or tagline about this site",
"type": "string"
},
"name": {
"description": "The name of this site",
"type": "string"
},
"parent": {
"description": "The id of this section's parent section in various commonly-used hierarchies, where available.",
"properties": {
"default": {
"type": "string"
}
},
"type": "object"
},
"parent_id": {
"description": "The id of this section's parent section in the default hierarchy, if any.",
"type": "string"
},
"path": {
"description": "The url path to this site",
"type": "string"
},
"primary": {
"description": "Is this the primary site?",
"type": "boolean"
},
"type": {
"enum": [
"section"
]
},
"version": {
"$ref": "#/definitions/traits_trait_version_json"
}
},
"required": [
"type",
"version",
"name"
],
"title": "Section",
"type": "object"
},
"utils_site_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "A hierarchical section or 'site' in a taxonomy. In the Arc ecosystem, these are stored in the arc-site-service.",
"properties": {
"_id": {
"$ref": "#/definitions/traits_trait_id_json"
},
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"description": {
"description": "A short description or tagline about this site",
"type": "string"
},
"name": {
"description": "The name of this site",
"type": "string"
},
"parent_id": {
"description": "The id of this section's parent site, if any",
"type": "string"
},
"path": {
"description": "The url path to this site",
"type": "string"
},
"primary": {
"description": "Is this the primary site?",
"type": "boolean"
},
"type": {
"enum": [
"site"
]
},
"version": {
"$ref": "#/definitions/traits_trait_version_json"
}
},
"required": [
"type",
"version",
"name"
],
"title": "Site",
"type": "object"
},
"utils_tag_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Models a keyword used in describing a piece of content.",
"properties": {
"_id": {
"$ref": "#/definitions/traits_trait_id_json"
},
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"description": {
"description": "A more detailed description of the tag.",
"type": "string"
},
"slug": {
"$ref": "#/definitions/traits_trait_slug_json"
},
"subtype": {
"$ref": "#/definitions/traits_trait_subtype_json"
},
"text": {
"description": "The text of the tag as displayed to users.",
"type": "string"
},
"type": {
"enum": [
"tag"
]
}
},
"required": [
"text"
],
"title": "Tag",
"type": "object"
},
"utils_topic_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Models a topic used in describing a piece of content.",
"properties": {
"_id": {
"description": "The unique identifier for this topic.",
"type": "string"
},
"name": {
"description": "The general name for this topic.",
"type": "string"
},
"score": {
"description": "An arbitrary weighting to give the topic",
"type": "number"
},
"uid": {
"description": "A short identifier for this topic. Usually used in cases where a long form id cannot work.",
"type": "string"
}
},
"required": [
"_id",
"score",
"uid"
],
"title": "Topic",
"type": "object"
}
},
"description": "Holds common attributes of ANS Content objects.",
"properties": {
"_id": {
"$ref": "#/definitions/traits_trait_id_json"
},
"additional_properties": {
"$ref": "#/definitions/traits_trait_additional_properties_json"
},
"address": {
"$ref": "#/definitions/traits_trait_address_json"
},
"alignment": {
"$ref": "#/definitions/traits_trait_alignment_json"
},
"canonical_url": {
"$ref": "#/definitions/traits_trait_canonical_url_json"
},
"channels": {
"$ref": "#/definitions/traits_trait_channel_json"
},
"comments": {
"$ref": "#/definitions/traits_trait_comments_json"
},
"content_aliases": {
"$ref": "#/definitions/traits_trait_content_aliases_json"
},
"content_restrictions": {
"$ref": "#/definitions/traits_trait_content_restrictions_json"
},
"contributors": {
"$ref": "#/definitions/traits_trait_contributors_json"
},
"copyright": {
"$ref": "#/definitions/traits_trait_copyright_json"
},
"created_date": {
"$ref": "#/definitions/traits_trait_created_date_json"
},
"credits": {
"$ref": "#/definitions/traits_trait_credits_json"
},
"description": {
"$ref": "#/definitions/traits_trait_description_json"
},
"display_date": {
"$ref": "#/definitions/traits_trait_display_date_json"
},
"distributor": {
"$ref": "#/definitions/traits_trait_distributor_json"
},
"editor_note": {
"$ref": "#/definitions/traits_trait_editor_note_json"
},
"first_publish_date": {
"$ref": "#/definitions/traits_trait_first_publish_date_json"
},
"geo": {
"$ref": "#/definitions/traits_trait_geo_json"
},
"headlines": {
"$ref": "#/definitions/traits_trait_headlines_json"
},
"label": {
"$ref": "#/definitions/traits_trait_label_json"
},
"language": {
"$ref": "#/definitions/traits_trait_locale_json"
},
"last_updated_date": {
"$ref": "#/definitions/traits_trait_last_updated_date_json"
},
"location": {
"$ref": "#/definitions/traits_trait_location_json"
},
"owner": {
"$ref": "#/definitions/traits_trait_owner_json"
},
"pitches": {
"$ref": "#/definitions/traits_trait_pitches_json"
},
"planning": {
"$ref": "#/definitions/traits_trait_planning_json"
},
"promo_items": {
"$ref": "#/definitions/traits_trait_promo_items_json"
},
"publish_date": {
"$ref": "#/definitions/traits_trait_publish_date_json"
},
"related_content": {
"$ref": "#/definitions/traits_trait_related_content_json"
},
"revision": {
"$ref": "#/definitions/traits_trait_revision_json"
},
"short_url": {
"$ref": "#/definitions/traits_trait_short_url_json"
},
"slug": {
"$ref": "#/definitions/traits_trait_slug_json"
},
"source": {
"$ref": "#/definitions/traits_trait_source_json"
},
"status": {
"$ref": "#/definitions/traits_trait_status_json"
},
"subheadlines": {
"$ref": "#/definitions/traits_trait_subheadlines_json"
},
"subtype": {
"$ref": "#/definitions/traits_trait_subtype_json"
},
"syndication": {
"$ref": "#/definitions/traits_trait_syndication_json"
},
"taxonomy": {
"$ref": "#/definitions/traits_trait_taxonomy_json"
},
"tracking": {
"$ref": "#/definitions/traits_trait_tracking_json"
},
"type": {
"type": "string"
},
"vanity_credits": {
"$ref": "#/definitions/traits_trait_vanity_credits_json"
},
"version": {
"$ref": "#/definitions/traits_trait_version_json"
},
"workflow": {
"$ref": "#/definitions/traits_trait_workflow_json"
}
},
"required": [
"type",
"version"
],
"title": "A content object.",
"type": "object"
} | wp_4_Normalized |
{
"title": "JSON schema for Outblocks project configuration files",
"$schema": "http://json-schema.org/draft-04/schema",
"$ref": "#/definitions/OutblocksProject",
"definitions": {
"OutblocksProject": {
"title": "Outblocks",
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"dns": {
"description": "Project-wide DNS setup.",
"$ref": "#/definitions/DNS"
},
"state": {
"description": "Project-wide state source.",
"$ref": "#/definitions/State"
},
"secrets": {
"description": "Project-wide secrets provider.",
"$ref": "#/definitions/Secrets"
},
"dependencies": {
"description": "Project-wide dependencies to provision.",
"$ref": "#/definitions/Dependencies"
},
"monitoring": {
"description": "Project monitoring setup.",
"$ref": "#/definitions/Monitoring"
},
"plugins": {
"description": "Project-wide plugins.",
"type": "array",
"items": {
"$ref": "#/definitions/Plugin"
}
},
"defaults": {
"description": "Project-wide default app settings.",
"$ref": "#/definitions/Defaults"
}
}
},
"DNS": {
"title": "DNS",
"type": "array",
"items": {
"additionalProperties": false,
"properties": {
"domain": {
"type": "string"
},
"domains": {
"type": "array",
"items": {
"type": "string"
}
},
"plugin": {
"type": "string"
},
"ssl": {
"description": "SSL configuration.",
"$ref": "#/definitions/SSL"
}
},
"oneOf": [
{
"required": [
"domain"
]
},
{
"required": [
"domains"
]
}
]
}
},
"SSL": {
"title": "SSL",
"type": "object",
"additionalProperties": false,
"properties": {
"cert_file": {
"description": "Public key file path. Required to be in PEM format.",
"type": "string"
},
"key_file": {
"description": "Private key file path. Required to be in PEM format.",
"type": "string"
},
"cert": {
"description": "Public key value in PEM format.",
"type": "string"
},
"key": {
"description": "Private key value in PEM format.",
"type": "string"
}
}
},
"State": {
"type": "object",
"additionalProperties": true,
"properties": {
"type": {
"description": "State type, plugin specific value e.g. 'gcp' for gcp plugin or use 'local' for local state.",
"type": "string"
},
"path": {
"description": "Path of local state, used only when state type is 'local'.",
"type": "string"
}
},
"required": [
"type"
],
"title": "State"
},
"Secrets": {
"type": "object",
"additionalProperties": true,
"properties": {
"type": {
"description": "Secrets provider type, plugin specific value e.g. 'gcp' for gcp plugin.",
"type": "string"
}
},
"title": "Secrets"
},
"Dependencies": {
"title": "Dependencies",
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^[_a-zA-Z][a-zA-Z0-9_-]*$": {
"type": "object",
"properties": {
"type": {
"description": "The type of the dependency.",
"type": "string"
},
"deploy": {
"description": "Deploy config.",
"$ref": "#/definitions/DependencyDeploy"
},
"run": {
"description": "Run config.",
"$ref": "#/definitions/DependencyRun"
}
},
"required": [
"type"
],
"allOf": [
{
"if": {
"properties": {
"type": {
"const": "storage"
}
}
},
"then": {
"properties": {
"versioning": {
"description": "Enables versioning for objects.",
"type": "boolean"
},
"location": {
"description": "Specify location for storage, refer to cloud provider docs for possible options.",
"type": "string"
},
"public": {
"description": "Makes whole storage public so that all objects can be accessed.",
"type": "boolean"
},
"max_versions": {
"description": "Maximum amount of versions to keep.",
"type": "integer"
},
"delete_in_days": {
"description": "Delete new objects after X days.",
"type": "integer"
},
"expire_versions_in_days": {
"description": "Expire archived versions after X days.",
"type": "integer"
},
"cors": {
"description": "CORS settings.",
"type": "array",
"items": {
"$ref": "#/definitions/DependencyStorageCORS"
}
}
}
}
},
{
"if": {
"anyOf": [
{
"properties": {
"type": {
"const": "mysql"
}
}
},
{
"properties": {
"type": {
"const": "postgresql"
}
}
}
]
},
"then": {
"properties": {
"version": {
"description": "Specify version of database, refer to cloud provider docs for possible options.",
"type": "string"
},
"high_availability": {
"description": "Makes database highly available meaning it will have a read replica available in case of master failure.",
"type": "boolean"
},
"tier": {
"description": "Specify tier of database, refer to cloud provider docs for possible options.",
"type": "string"
},
"flags": {
"description": "Database flags, refer to cloud provider docs for possible options.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"users": {
"description": "Database users.",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/DependencyDatabaseUser"
}
}
}
}
}
]
}
}
},
"DependencyDatabaseUser": {
"title": "Database user",
"type": "object",
"properties": {
"password": {
"description": "Explicitly set password, defaults to a randomly generated string.",
"type": "string"
},
"hostname": {
"description": "Hostname that user is allowed to connect from. Not all databases may support it.",
"type": "string"
}
}
},
"DependencyStorageCORS": {
"title": "Storage CORS",
"type": "object",
"properties": {
"origins": {
"description": "The list of Origins eligible to receive CORS response headers. Note: \"*\" is permitted in the list of origins, and means \"any Origin\".",
"type": "array",
"items": {
"type": "string"
}
},
"methods": {
"description": "The list of HTTP methods on which to include CORS response headers, (GET, OPTIONS, POST, etc) Note: \"*\" is permitted in the list of methods, and means \"any method\".",
"type": "array",
"items": {
"type": "string"
}
},
"response_headers": {
"description": "The list of HTTP headers other than the simple response headers to give permission for the user-agent to share across domains.",
"type": "array",
"items": {
"type": "string"
}
},
"max_age_in_seconds": {
"description": "The value in seconds to return in the Access-Control-Max-Age header used in preflight responses.",
"type": "integer"
}
}
},
"DependencyRun": {
"title": "Run",
"type": "object",
"additionalProperties": true,
"properties": {
"plugin": {
"type": "string"
}
}
},
"DependencyDeploy": {
"title": "Deploy",
"type": "object",
"additionalProperties": true,
"properties": {
"plugin": {
"type": "string"
}
}
},
"Monitoring": {
"title": "Monitoring",
"type": "object",
"additionalProperties": false,
"properties": {
"plugin": {
"description": "Monitoring plugin override. Defaults to first supported plugin available.",
"type": "string"
},
"channels": {
"description": "Monitoring notification channels.",
"type": "array",
"items": {
"$ref": "#/definitions/MonitoringChannel"
}
},
"targets": {
"description": "Monitoring targets.",
"type": "array",
"items": {
"$ref": "#/definitions/MonitoringTarget"
}
}
}
},
"MonitoringChannel": {
"title": "Monitoring channels",
"type": "object",
"additionalProperties": true,
"properties": {
"type": {
"description": "Notification channel type. Possible values: slack, email.",
"type": "string",
"enum": [
"slack",
"email"
]
}
},
"required": [
"type"
],
"allOf": [
{
"if": {
"properties": {
"type": {
"const": "slack"
}
}
},
"then": {
"properties": {
"token": {
"description": "Bot user oauth token used for slack notification.",
"type": "string"
},
"channel": {
"description": "Channel used for slack notification.",
"type": "string"
}
},
"required": [
"type",
"token",
"channel"
]
}
},
{
"if": {
"properties": {
"type": {
"const": "email"
}
}
},
"then": {
"properties": {
"email": {
"description": "Email used for email channel type.",
"type": "string"
}
},
"required": [
"type",
"email"
]
}
}
]
},
"MonitoringTarget": {
"title": "Monitoring target",
"type": "object",
"additionalProperties": false,
"properties": {
"url": {
"description": "Target full url.",
"type": "string"
},
"frequency": {
"description": "Check frequency in minutes. Defaults to 5 minutes.",
"type": "integer",
"enum": [
1,
5,
10,
15
]
},
"locations": {
"description": "Check locations to use. Defaults to 'all'.",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"url"
]
},
"Plugin": {
"title": "Plugin",
"type": "object",
"additionalProperties": true,
"properties": {
"name": {
"type": "string"
}
},
"required": [
"name"
]
},
"Defaults": {
"title": "Defaults",
"type": "object",
"additionalProperties": false,
"properties": {
"deploy": {
"description": "Deploy config.",
"$ref": "#/definitions/DefaultDeploy"
},
"dns": {
"description": "DNS config.",
"$ref": "#/definitions/DefaultDNS"
},
"run": {
"description": "Run config.",
"$ref": "#/definitions/DefaultRun"
}
}
},
"DefaultDeploy": {
"title": "Deploy defaults",
"type": "object",
"additionalProperties": true,
"properties": {
"plugin": {
"description": "Deploy plugin override. Defaults to first supported plugin available.",
"type": "string"
}
},
"env": {
"description": "Additional environment variables added to every app that supports environment variables.",
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"DefaultDNS": {
"title": "DNS defaults",
"type": "object",
"additionalProperties": true,
"properties": {
"plugin": {
"description": "DNS plugin override. Defaults to first supported plugin available.",
"type": "string"
}
}
},
"DefaultRun": {
"title": "Run defaults",
"type": "object",
"additionalProperties": true,
"properties": {
"plugin": {
"description": "Run plugin override. Defaults to first supported plugin available.",
"type": "string"
},
"env": {
"description": "Additional environment variables added to every app that supports environment variables.",
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
}
}
} | schema-project |
{
"properties": {
"cuisine": {
"description": "The cuisine for restaurant search",
"type": "string"
},
"location": {
"description": "The location for restaurant search",
"type": "string"
},
"price_range": {
"description": "The price range for restaurant search",
"properties": {
"max": {
"description": "The maximum price range",
"type": "number"
},
"min": {
"description": "The minimum price range",
"type": "number"
}
},
"type": "object"
}
},
"required": [
"location"
],
"type": "object"
} | search_restaurants_0160bc0b |
{
"properties": {
"destination": {
"description": "The destination of the shipment",
"type": "string"
},
"dimensions": {
"properties": {
"height": {
"description": "The height of the item in centimeters",
"type": "number"
},
"length": {
"description": "The length of the item in centimeters",
"type": "number"
},
"width": {
"description": "The width of the item in centimeters",
"type": "number"
}
},
"required": [
"length",
"width",
"height"
],
"type": "object"
},
"weight": {
"description": "The weight of the item in kilograms",
"type": "number"
}
},
"required": [
"weight",
"dimensions",
"destination"
],
"type": "object"
} | calculate_shipping_cost_7d829c6c |
{
"properties": {
"event_date": {
"description": "The date of the event in 'YYYY-MM-DD' format",
"type": "string"
},
"event_location": {
"description": "The location of the event",
"type": "string"
},
"event_time": {
"description": "The time of the event in 'HH:MM' format",
"type": "string"
},
"event_title": {
"description": "The title of the event",
"type": "string"
}
},
"required": [
"event_title",
"event_date",
"event_time",
"event_location"
],
"type": "object"
} | create_calendar_event_ca5ec392 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.5.7/traits/trait_source.json",
"title": "Source",
"description": "Information about the original source and/or owner of this content",
"type": "object",
"additionalProperties": {},
"properties": {
"source_id": {
"description": "Original source CMS id",
"type": "string"
}
}
} | o86524 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"config",
"inputs"
],
"type": "object",
"properties": {
"inputs": {
"required": [
"api_key"
],
"type": "object",
"properties": {
"t1w_anatomy": {
"type": "object",
"properties": {}
},
"api_key": {
"type": "object",
"properties": {}
},
"t2w_anatomy": {
"type": "object",
"properties": {}
}
}
},
"config": {
"required": [
"save_outputs",
"intermediate_files",
"license_reference",
"intermediate_folders",
"freesurfer",
"license_email",
"save_intermediate_work",
"license_number",
"license_key"
],
"type": "object",
"properties": {
"save_outputs": {
"default": false,
"type": "boolean"
},
"intermediate_files": {
"default": "",
"type": "string"
},
"license_reference": {
"type": "string"
},
"intermediate_folders": {
"default": "",
"type": "string"
},
"license_email": {
"type": "string"
},
"license_number": {
"type": "string"
},
"save_intermediate_work": {
"default": false,
"type": "boolean"
},
"freesurfer": {
"default": true,
"type": "boolean"
},
"license_key": {
"type": "string"
}
}
}
},
"title": "Invocation manifest for fMRIPREP: A Robust Preprocessing Pipeline for fMRI Data"
} | o41264 |
{
"additionalProperties": true,
"properties": {
"asm_group_id": {
"maximum": 32767,
"minimum": 0,
"type": "integer"
},
"category": {
"items": {
"type": "string"
},
"type": [
"array",
"string"
]
},
"email": {
"type": "string"
},
"sg_event_id": {
"type": "string"
},
"sg_message_id": {
"type": "string"
},
"smtp-id": {
"type": "string"
},
"timestamp": {
"_format": "date-time",
"type": "string"
}
},
"self": {
"format": "jsonschema",
"name": "spamreport",
"vendor": "com.sendgrid",
"version": "1-0-0"
},
"type": "object"
} | sp_196_Normalized |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Reward Created Webhook Schema",
"description": "Sent whenever a reward is created (when it becomes available, e.g. not pending).",
"type": "object",
"properties": {
"id": {
"type": "string",
"title": "Reward Id",
"description": "The unique identifier associated with this reward"
},
"type": {
"type": "string",
"title": "Reward Type",
"enum": [
"PCT_DISCOUNT",
"FUELTANK",
"CREDIT",
"INTEGRATION"
]
},
"dateCreated": {
"type": "integer",
"title": "Date Reward Created",
"description": "The date this reward was created"
},
"dateScheduledFor": {
"type": [
"integer",
"null"
],
"title": "Date Scheduled For",
"description": "The date this reward is scheduled to be given if it starts in a pending state"
},
"dateGiven": {
"type": [
"integer",
"null"
],
"title": "Date Given",
"description": "The date this reward was given (became available for use)"
},
"dateExpires": {
"type": [
"integer",
"null"
],
"title": "Date Expires",
"description": "The date this reward will expire"
},
"dateCancelled": {
"type": [
"integer",
"null"
],
"title": "Date Cancelled",
"description": "The date this reward was cancelled"
},
"accountId": {
"type": "string",
"title": "Account Id",
"description": "The account Id for the user who received this reward"
},
"userId": {
"type": "string",
"title": "User Id",
"description": "The user Id for the user who received this reward"
},
"cancellable": {
"type": "boolean",
"title": "Is Cancellable",
"description": "Whether this reward can be cancelled (e.g. rewards that have already been fulfilled externally cannot be cancelled)"
},
"programId": {
"type": [
"string",
"null"
],
"title": "Program Id",
"description": "The program that issued this reward"
},
"rewardSource": {
"type": "string",
"title": "Reward Source",
"description": "The source of this reward (e.g. insight into why this reward was created)",
"enum": [
"FRIEND_SIGNUP",
"REFERRED",
"MANUAL",
"ACTIVATION",
"ACQUISITION",
"RETENTION",
"REACTIVATION",
"AUTOMATED"
]
}
},
"required": [
"id",
"type",
"dateCreated",
"accountId",
"userId",
"cancellable",
"rewardSource"
],
"dependencies": {
"type": {
"oneOf": [
{
"properties": {
"type": {
"enum": [
"PCT_DISCOUNT"
]
},
"discountPercent": {
"type": "integer",
"title": "Discount Percent",
"description": "The percent discount to be given (e.g. 1-100)"
},
"unit": {
"type": "string",
"title": "Reward Unit",
"description": "The unit of this reward",
"const": "%"
},
"name": {
"type": "string",
"title": "Reward Name",
"description": "The name given to this discount reward (e.g. Referrer Reward)"
}
}
},
{
"properties": {
"type": {
"enum": [
"FUELTANK"
]
},
"fuelTankCode": {
"type": "string",
"title": "Reward Code",
"description": "The code associated with this reward (e.g. used in fulfillment)"
},
"unit": {
"type": "string",
"title": "Reward Unit",
"description": "The unit of this reward"
},
"amount": {
"type": "integer",
"title": "Reward Amount",
"description": "The value associated with this reward (e.g. 10% or $100)"
},
"fuelTankType": {
"type": "string",
"title": "Reward Code Type",
"description": "The type of the redeemable reward associated with the fuel tank code (e.g. is it a discount or credit)",
"enum": [
"PCT_DISCOUNT",
"CREDIT"
]
}
}
},
{
"properties": {
"type": {
"enum": [
"CREDIT"
]
},
"unit": {
"type": "string",
"title": "Reward Unit",
"description": "The unit of this reward (e.g. USD)"
},
"assignedCredit": {
"type": "integer",
"title": "Assigned Credit",
"description": "The credit assigned to this reward (e.g. amount that can be redeemed)"
},
"redeemedCredit": {
"type": "integer",
"title": "Redeemed Credit",
"description": "The amount of credit that has already been redeemed from this reward"
},
"name": {
"type": "string",
"title": "Reward Name",
"description": "The name given to this credit reward (e.g. Referrer Reward)"
},
"redemptions": {
"type": "array",
"title": "Reward Redemptions",
"description": "A record of how credit was redeemed from this reward",
"items": {
"$ref": "#/definitions/rewardRedemption"
}
}
}
},
{
"properties": {
"type": {
"enum": [
"INTEGRATION"
]
},
"name": {
"type": "string",
"title": "Reward Name",
"description": "The name of this reward (e.g. Amazon Gift Card)"
},
"description": {
"type": "string",
"title": "Reward Description",
"description": "This describe the reward in more detail"
},
"unit": {
"type": "string",
"title": "Reward Unit",
"description": "The unit of this reward (e.g. USD)"
},
"valueInCents": {
"type": "integer",
"title": "Reward Value",
"description": "The monetary value of this reward in its fractional unit (e.g. cents)"
},
"integrationId": {
"type": "string",
"title": "Integration Id",
"description": "The identifier for the integration that issued this reward"
},
"rewardDetails": {
"type": "object",
"title": "Reward Details",
"description": "A map of details about this reward provided by the underlying giftcard provider (e.g. Tango's utid)"
}
}
}
]
}
},
"definitions": {
"rewardRedemption": {
"type": "object",
"title": "Reward Redemption",
"description": "An instance of credit being withdrawn from a reward",
"properties": {
"id": {
"type": "string",
"title": "Redemption Id",
"description": "The unique identifier of this redemption"
},
"dateRedeemed": {
"type": "integer",
"title": "Date Redeemed",
"description": "The date this redemption was made"
},
"quantityRedeemed": {
"type": "string",
"title": "Quantity Redeemed",
"description": "The amount that was withdrawn from this reward"
}
},
"required": [
"id",
"dateRedeemed",
"quantityRedeemed"
],
"additionalProperties": false
}
}
} | o72217 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"_elements"
],
"properties": {
"_attributes": {
"type": "object",
"required": [
"extracted"
],
"properties": {
"extracted": {
"type": "boolean"
}
}
},
"_elements": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"package_name",
"package_version"
],
"properties": {
"name": {
"type": "string"
},
"package_name": {
"type": "string",
"minLength": 1
},
"package_version": {
"type": "string",
"minLength": 1
}
},
"oneOf": [
{
"$ref": "#/definitions/file_changed"
},
{
"$ref": "#/definitions/file_error"
}
]
}
}
},
"definitions": {
"file_changed": {
"required": [
"status"
],
"properties": {
"status": {
"enum": [
"changed"
]
}
},
"oneOf": [
{
"$ref": "#/definitions/file_changed_modified"
},
{
"$ref": "#/definitions/link_changed_modified"
}
]
},
"file_changed_modified": {
"required": [
"changes"
],
"properties": {
"changes": {
"type": "array",
"items": {
"enum": [
"size",
"mode",
"md5",
"device_number",
"link_path",
"user",
"group",
"time",
"capabilities",
"replaced",
"other_rpm_changes",
"deleted"
]
},
"minItems": 1
},
"mode": {
"type": "string",
"pattern": "^[0-7]{3,4}$"
},
"user": {
"type": "string",
"minLength": 1
},
"group": {
"type": "string",
"minLength": 1
},
"type": {
"enum": [
"file",
"dir"
]
}
}
},
"link_changed_modified": {
"required": [
"target",
"changes",
"mode",
"user",
"group",
"type"
],
"properties": {
"changes": {
"type": "array",
"items": {
"enum": [
"size",
"mode",
"md5",
"device_number",
"link_path",
"user",
"group",
"time",
"capabilities",
"replaced",
"other_rpm_changes"
]
},
"minItems": 1
},
"mode": {
"type": "string",
"pattern": "^[0-7]{3,4}$"
},
"user": {
"type": "string",
"minLength": 1
},
"group": {
"type": "string",
"minLength": 1
},
"type": {
"enum": [
"link"
]
},
"target": {
"type": "string"
}
}
},
"file_error": {
"required": [
"status",
"error_message"
],
"properties": {
"status": {
"enum": [
"error"
]
},
"error_message": {
"type": "string"
}
}
}
}
} | o25695 |
{
"$id": "https://scandihealth.github.io/lpr3-docs/resources/acl.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"definitions": {
"uuid": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[0-9a-f]{4}-[0-9a-f]{12}$"
},
"uuid-5": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-5[0-9a-f]{3}-[0-9a-f]{4}-[0-9a-f]{12}$"
},
"ruleId": {
"type": "string"
},
"ruleVersion": {
"type": "string",
"pattern": "^([a-zA-Z][a-zA-Z0-9]*:)+[0-9]+\\.[0-9]+\\.[0-9](-[0-9a-zA-Z]+)*$"
},
"errors": {
"type": "array",
"items": {
"$ref": "#/definitions/error"
},
"minItems": 1
},
"error": {
"type": "object",
"properties": {
"ruleId": {
"$ref": "#/definitions/ruleId"
},
"ruleVersion": {
"$ref": "#/definitions/ruleVersion"
},
"code": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"ruleId",
"ruleVersion",
"code",
"message"
]
},
"warnings": {
"type": "array",
"items": {
"$ref": "#/definitions/warning"
},
"minItems": 1
},
"warning": {
"type": "object",
"properties": {
"ruleId": {
"$ref": "#/definitions/ruleId"
},
"ruleVersion": {
"$ref": "#/definitions/ruleVersion"
},
"code": {
"type": "string"
},
"message": {
"type": "string"
},
"errorBy": {
"type": "string",
"pattern": "^[1-9][0-9]{3,}-[0-1][0-9]-[0-3][0-9]T[0-2][0-9]:[0-9][0-9]:[0-9][0-9](\\.[0-9]+)?[+-][01][0-9](:[03]0)?$"
}
},
"required": [
"ruleId",
"ruleVersion",
"code",
"message"
]
},
"identifiers": {
"type": "array",
"items": {
"$ref": "#/definitions/identifier"
},
"minItems": 1
},
"identifier": {
"type": "object",
"properties": {
"root": {
"$ref": "#/definitions/uuid"
},
"extension": {
"$ref": "#/definitions/uuid-5"
}
},
"required": [
"root",
"extension"
]
},
"patientIdentifiers": {
"type": "array",
"items": {
"$ref": "#/definitions/patientIdentifier"
},
"minItems": 1
},
"patientIdentifier": {
"type": "object",
"properties": {
"root": {
"type": "string"
},
"extension": {
"type": "string"
}
},
"required": [
"root",
"extension"
]
},
"patient": {
"type": "object",
"properties": {
"identifiers": {
"$ref": "#/definitions/patientIdentifiers"
},
"errors": {
"$ref": "#/definitions/errors"
},
"warnings": {
"$ref": "#/definitions/warnings"
}
},
"required": [
"identifiers"
]
},
"encounters": {
"type": "array",
"items": {
"$ref": "#/definitions/encounter"
},
"minItems": 1
},
"encounter": {
"type": "object",
"properties": {
"identifier": {
"$ref": "#/definitions/identifier"
},
"errors": {
"$ref": "#/definitions/errors"
},
"warnings": {
"$ref": "#/definitions/warnings"
},
"observationOrganizers": {
"$ref": "#/definitions/observationOrganizers"
},
"procedures": {
"$ref": "#/definitions/procedures"
},
"conditions": {
"$ref": "#/definitions/conditions"
}
},
"required": [
"identifier"
]
},
"procedures": {
"type": "array",
"items": {
"$ref": "#/definitions/procedure"
},
"minItems": 1
},
"procedure": {
"type": "object",
"properties": {
"identifier": {
"$ref": "#/definitions/identifier"
},
"errors": {
"$ref": "#/definitions/errors"
},
"warnings": {
"$ref": "#/definitions/warnings"
},
"observationOrganizers": {
"$ref": "#/definitions/observationOrganizers"
}
},
"required": [
"identifier"
]
},
"conditions": {
"type": "array",
"items": {
"$ref": "#/definitions/condition"
},
"minItems": 1
},
"condition": {
"type": "object",
"properties": {
"identifier": {
"$ref": "#/definitions/identifier"
},
"errors": {
"$ref": "#/definitions/errors"
},
"warnings": {
"$ref": "#/definitions/warnings"
},
"observationOrganizers": {
"$ref": "#/definitions/observationOrganizers"
}
},
"required": [
"identifier"
]
},
"markers": {
"type": "array",
"items": {
"$ref": "#/definitions/marker"
},
"minItems": 1
},
"marker": {
"type": "object",
"properties": {
"identifier": {
"$ref": "#/definitions/identifier"
},
"errors": {
"$ref": "#/definitions/errors"
},
"warnings": {
"$ref": "#/definitions/warnings"
},
"observationOrganizers": {
"$ref": "#/definitions/observationOrganizers"
}
},
"required": [
"identifier"
]
},
"observationOrganizers": {
"type": "array",
"items": {
"$ref": "#/definitions/observationOrganizer"
},
"minItems": 1
},
"observationOrganizer": {
"type": "object",
"properties": {
"identifier": {
"$ref": "#/definitions/identifier"
},
"errors": {
"$ref": "#/definitions/errors"
},
"warnings": {
"$ref": "#/definitions/warnings"
}
},
"required": [
"identifier"
]
}
},
"properties": {
"identifier": {
"$ref": "#/definitions/identifier"
},
"errors": {
"$ref": "#/definitions/errors"
},
"warnings": {
"$ref": "#/definitions/warnings"
},
"patient": {
"$ref": "#/definitions/patient"
},
"markers": {
"$ref": "#/definitions/markers"
},
"encounters": {
"$ref": "#/definitions/encounters"
},
"procedures": {
"$ref": "#/definitions/procedures"
},
"observationOrganizers": {
"$ref": "#/definitions/observationOrganizers"
}
},
"required": [
"identifier"
]
} | o73831 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"properties": {
"attributes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"min": {
"type": "integer"
},
"max": {
"type": "integer"
},
"featureId": {
"type": "string"
}
},
"required": [
"id",
"min",
"max",
"featureId"
]
}
},
"contexts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"min": {
"type": "integer"
},
"max": {
"type": "integer"
}
},
"required": [
"id",
"min",
"max"
]
}
},
"configuration": {
"type": "object",
"properties": {
"selectedFeatures": {
"description": "initial selected features. If no features are selected this key is optional",
"type": "array",
"items": {
"type": "string"
}
},
"attribute_values": {
"description": "initial values of the attributes if any. If no attributes are present this key is optional",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"required": [
"id",
"value"
]
}
},
"context_values": {
"description": "initial values of the context if any. If no context are present this key is optional",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"required": [
"id",
"value"
]
}
}
},
"required": []
},
"constraints": {
"type": "array",
"items": {
"type": "string"
}
},
"preferences": {
"description": "list of expression to maximize. If boolean expressions the goal is to satisfy them",
"type": "array",
"items": {
"type": "string"
}
},
"smt_constraints": {
"description": "constraints given in smt format (faster to parse)",
"properties": {
"features": {
"description": "declared features. Not needed in case the option --features-as-boolean is selected",
"items": {
"type": "string"
},
"type": "array"
},
"formulas": {
"description": "list of constraints in SMTLib 2 format",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"context_constraints": {
"type": "array",
"items": {
"type": "string"
}
},
"optional_features": {
"type": "object",
"description": "Map or the optional feature ids with a list representing their time validity if there is evolution, empty list otherwise.",
"additionalProperties": {
"type": "array",
"description": "List of two element list representing the time bounds if evolution is considered, empty list otherwise.",
"items": {
"type": "array",
"items": {
"type": "integer"
},
"description": "The bounds of the time validity if evolution is considered. Extremes included."
}
}
},
"time_context": {
"type": "string",
"description": "Optional filed used to indicate in case there is evolution which context id represent the time.",
"examples": [
"context_id"
]
}
},
"required": [
"attributes",
"contexts",
"configuration",
"constraints",
"preferences"
]
} | o7290 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"data": {
"description": "List of identifiers (or URIs) of the references describing the data.",
"items": {
"type": "string"
},
"type": "array"
},
"description": {
"description": "A short description of the dataset",
"type": "string"
},
"environment": {
"description": "List of identifiers (or URIs) of the environments associated to the dataset.",
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"description": "Integer data. Ex: 2673",
"type": "integer"
},
"name": {
"description": "The name of the dataset",
"type": "string"
},
"networks": {
"description": "List of identifiers (or URIs) of the networks in the dataset.",
"items": {
"type": "string"
},
"type": "array"
},
"owner": {
"description": "A single related resource. Can be either a URI or set of nested resource data.",
"type": "string"
},
"papers": {
"description": "List of identifiers (or URIs) of the references to the papers associated with the dataset.",
"items": {
"type": "string"
},
"type": "array"
},
"public": {
"description": "Whether the dataset can be viewed by all users",
"type": "boolean"
},
"resource_uri": {
"description": "Unicode string data. Ex: \"Hello World\"",
"type": "string"
}
},
"required": [
"public",
"owner",
"networks",
"name"
],
"title": "Schema for dataset objects",
"type": "object"
} | o58599 |
{
"definitions": {
"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"
}
},
"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",
"null"
]
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": [
"string",
"null"
]
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": [
"boolean",
"null"
]
}
},
"type": "object"
} | kb_941_Normalized |
{
"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": {
"description": "The side length of the square",
"type": "number"
}
},
"required": [
"radius",
"base",
"height",
"side"
],
"type": "object"
},
"shape": {
"description": "The type of shape (e.g., circle, triangle, square)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_5becc74b |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The options' id"
},
"authorizeComment": {
"type": "boolean",
"description": "Comments authorized"
},
"authorizeAnonymousComment": {
"type": "boolean",
"description": "Anonymous comments authorized"
},
"postPerPage": {
"type": "integer",
"description": "Post number per page"
},
"autoPublishPost": {
"type": "boolean",
"description": "Automatic publication of posts"
},
"commentModerationMode": {
"type": "integer",
"description": "Moderation mode option"
},
"displayPostViewCounter": {
"type": "boolean",
"description": "Display post views number"
},
"tagCloud": {
"type": "integer",
"description": "Tag cloud presentation mode"
},
"tagTopMode": {
"type": "boolean",
"description": "Display top tags only"
},
"maxtTag": {
"type": "integer",
"description": "Tag number to display"
},
"displayFullPosts": {
"type": "boolean",
"description": "Display full posts in view list"
},
"infos": {
"type": "string",
"description": "Information toolbar content"
},
"widgetOrder": {
"type": [
"object"
],
"properties": {
"nameTemplate": {
"type": "string",
"description": "Widget template name"
},
"visibility": {
"type": "boolean",
"description": "Visiblity status"
},
"id": {
"type": "string",
"description": "Widget id"
}
}
}
},
"required": [
"id"
],
"claroIds": [
"id"
]
} | o32494 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/getFuturesLimit.args.scheme.json",
"title": "\u0410\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u044b \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b getFuturesLimit",
"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 getFuturesLimit",
"type": "object",
"properties": {
"firmid": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 firmid",
"type": "string"
},
"trdaccid": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 trdaccid",
"type": "string"
},
"limit_type": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 limit_type",
"type": "integer"
},
"currcode": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 currcode",
"type": "string"
}
},
"additionalProperties": false,
"required": [
"firmid",
"trdaccid",
"limit_type",
"currcode"
]
} | o5224 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"title": "Revenue",
"description": "Describes information about revenue",
"type": "object",
"properties": {
"scope": {
"description": "scope of the revenue result",
"enum": [
"company",
"city",
"station",
"pump"
]
},
"id": {
"description": "unique identifier for the scope of the revenue result",
"type": "string"
},
"fuel": {
"description": "fuel type for the revenue result",
"type": "array",
"items": {
"description": "fuel type included in the revenue result",
"enum": [
"any",
"regular",
"premium",
"diesel"
]
}
},
"from": {
"description": "timestamp at beginning of interval for which revenue was collected",
"type": "string"
},
"to": {
"description": "timestamp at end of interval for which revenue was collected",
"type": "string"
},
"amount": {
"description": "revenue amount being reported",
"type": "number"
}
},
"required": [
"scope",
"id",
"fuel",
"amount"
]
} | o64823 |
{
"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"
},
"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"
],
"type": "object"
},
"shape": {
"description": "The shape (e.g. circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_758c2efe |
{
"properties": {
"error": {
"id": "error",
"type": "string"
},
"id": {
"id": "id",
"type": "string"
},
"progress": {
"id": "progress",
"type": "string"
},
"progressDetail": {
"id": "progressDetail",
"properties": {
"current": {
"id": "current",
"type": "integer"
},
"total": {
"id": "total",
"type": "integer"
}
},
"type": "object"
},
"status": {
"id": "status",
"type": "string"
}
},
"type": "object"
} | o48246 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": {
"description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
"type": "integer"
},
"readOnly": {
"description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "boolean"
},
"volumeID": {
"description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": {
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
"properties": {
"cachingMode": {
"description": "Host Caching mode: None, Read Only, Read Write.",
"type": "string"
},
"diskName": {
"description": "The Name of the data disk in the blob storage",
"type": "string"
},
"diskURI": {
"description": "The URI the data disk in the blob storage",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"kind": {
"description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
}
},
"required": [
"diskName",
"diskURI"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource": {
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
"properties": {
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretName": {
"description": "the name of secret that contains Azure Storage Account Name and Key",
"type": "string"
},
"shareName": {
"description": "Share Name",
"type": "string"
}
},
"required": [
"secretName",
"shareName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": {
"description": "Represents a source location of a volume to mount, managed by an external CSI driver",
"properties": {
"driver": {
"description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.",
"type": "string"
},
"nodePublishSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed."
},
"readOnly": {
"description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).",
"type": "boolean"
},
"volumeAttributes": {
"additionalProperties": {
"type": "string"
},
"description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.",
"type": "object"
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": {
"description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"monitors": {
"description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "boolean"
},
"secretFile": {
"description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
},
"user": {
"description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource": {
"description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
},
"volumeID": {
"description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection": {
"description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": {
"description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": {
"description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.",
"properties": {
"items": {
"description": "Items is a list of DownwardAPIVolume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": {
"description": "DownwardAPIVolumeFile represents information to create the file containing the pod field",
"properties": {
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported."
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'",
"type": "string"
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported."
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": {
"description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "Items is a list of downward API volume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": {
"description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
"properties": {
"medium": {
"description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir",
"type": "string"
},
"sizeLimit": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": {
"description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "Optional: FC target lun number",
"type": "integer"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"targetWWNs": {
"description": "Optional: FC target worldwide names (WWNs)",
"items": {
"type": "string"
},
"type": "array"
},
"wwids": {
"description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource": {
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
"properties": {
"driver": {
"description": "Driver is the name of the driver to use for this volume.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.",
"type": "string"
},
"options": {
"additionalProperties": {
"type": "string"
},
"description": "Optional: Extra command options if any.",
"type": "object"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts."
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": {
"description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.",
"properties": {
"datasetName": {
"description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
"type": "string"
},
"datasetUUID": {
"description": "UUID of the dataset. This is unique identifier of a Flocker dataset",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": {
"description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "integer"
},
"pdName": {
"description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "boolean"
}
},
"required": [
"pdName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource": {
"description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
"properties": {
"directory": {
"description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.",
"type": "string"
},
"repository": {
"description": "Repository URL",
"type": "string"
},
"revision": {
"description": "Commit hash for the specified revision.",
"type": "string"
}
},
"required": [
"repository"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": {
"description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"endpoints": {
"description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"path": {
"description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "boolean"
}
},
"required": [
"endpoints",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": {
"description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
},
"type": {
"description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource": {
"description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
"properties": {
"chapAuthDiscovery": {
"description": "whether support iSCSI Discovery CHAP authentication",
"type": "boolean"
},
"chapAuthSession": {
"description": "whether support iSCSI Session CHAP authentication",
"type": "boolean"
},
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi",
"type": "string"
},
"initiatorName": {
"description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
"type": "string"
},
"iqn": {
"description": "Target iSCSI Qualified Name.",
"type": "string"
},
"iscsiInterface": {
"description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "iSCSI Target Lun number.",
"type": "integer"
},
"portals": {
"description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"items": {
"type": "string"
},
"type": "array"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "CHAP Secret for iSCSI target and initiator authentication"
},
"targetPortal": {
"description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"type": "string"
}
},
"required": [
"targetPortal",
"iqn",
"lun"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath": {
"description": "Maps a string key to a path within a volume.",
"properties": {
"key": {
"description": "The key to project.",
"type": "string"
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.",
"type": "string"
}
},
"required": [
"key",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": {
"description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": {
"description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "boolean"
},
"server": {
"description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
}
},
"required": [
"server",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": {
"description": "ObjectFieldSelector selects an APIVersioned field of an object.",
"properties": {
"apiVersion": {
"description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
"type": "string"
},
"fieldPath": {
"description": "Path of the field to select in the specified API version.",
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": {
"description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).",
"properties": {
"claimName": {
"description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
"type": "string"
},
"readOnly": {
"description": "Will force the ReadOnly setting in VolumeMounts. Default false.",
"type": "boolean"
}
},
"required": [
"claimName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": {
"description": "Represents a Photon Controller persistent disk resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"pdID": {
"description": "ID that identifies Photon Controller persistent disk",
"type": "string"
}
},
"required": [
"pdID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": {
"description": "PortworxVolumeSource represents a Portworx volume resource.",
"properties": {
"fsType": {
"description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"volumeID": {
"description": "VolumeID uniquely identifies a Portworx volume",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource": {
"description": "Represents a projected volume source",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"sources": {
"description": "list of volume projections",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection"
},
"type": "array"
}
},
"required": [
"sources"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": {
"description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.",
"properties": {
"group": {
"description": "Group to map volume access to Default is no group",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.",
"type": "boolean"
},
"registry": {
"description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes",
"type": "string"
},
"tenant": {
"description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin",
"type": "string"
},
"user": {
"description": "User to map volume access to Defaults to serivceaccount user",
"type": "string"
},
"volume": {
"description": "Volume is a string that references an already created Quobyte volume by name.",
"type": "string"
}
},
"required": [
"registry",
"volume"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource": {
"description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd",
"type": "string"
},
"image": {
"description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"keyring": {
"description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"monitors": {
"description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"pool": {
"description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
},
"user": {
"description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors",
"image"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": {
"description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
"properties": {
"containerName": {
"description": "Container name: required for volumes, optional for env vars",
"type": "string"
},
"divisor": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Specifies the output format of the exposed resources, defaults to \"1\""
},
"resource": {
"description": "Required: resource to select",
"type": "string"
}
},
"required": [
"resource"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": {
"description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".",
"type": "string"
},
"gateway": {
"description": "The host address of the ScaleIO API Gateway.",
"type": "string"
},
"protectionDomain": {
"description": "The name of the ScaleIO Protection Domain for the configured storage.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
},
"sslEnabled": {
"description": "Flag to enable/disable SSL communication with Gateway, default false",
"type": "boolean"
},
"storageMode": {
"description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
"type": "string"
},
"storagePool": {
"description": "The ScaleIO Storage Pool associated with the protection domain.",
"type": "string"
},
"system": {
"description": "The name of the storage system as configured in ScaleIO.",
"type": "string"
},
"volumeName": {
"description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
"type": "string"
}
},
"required": [
"gateway",
"system",
"secretRef"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection": {
"description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": {
"description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"optional": {
"description": "Specify whether the Secret or its keys must be defined",
"type": "boolean"
},
"secretName": {
"description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": {
"description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).",
"properties": {
"audience": {
"description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.",
"type": "string"
},
"expirationSeconds": {
"_format": "int64",
"description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.",
"type": "integer"
},
"path": {
"description": "Path is the path relative to the mount point of the file to project the token into.",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": {
"description": "Represents a StorageOS persistent volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted."
},
"volumeName": {
"description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.",
"type": "string"
},
"volumeNamespace": {
"description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_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_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"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",
"null"
]
},
"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"
} | kb_1103_Normalized |
{
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"shape": {
"description": "The shape to calculate the area of",
"enum": [
"circle",
"rectangle",
"triangle"
],
"type": "string"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"shape"
],
"type": "object"
} | calculate_area_cb73c384 |
{
"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_ReplicationController": {
"description": "ReplicationController represents the configuration of a replication controller.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"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": [
"ReplicationController"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ReplicationControllerSpec",
"description": "Spec defines the specification of the desired behavior of the replication controller. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
},
"status": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ReplicationControllerStatus",
"description": "Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "",
"kind": "ReplicationController",
"version": "v1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ReplicationControllerCondition": {
"description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.",
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "The last time the condition transitioned from one status to another."
},
"message": {
"description": "A human readable message indicating details about the transition.",
"type": "string"
},
"reason": {
"description": "The reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "Status of the condition, one of True, False, Unknown.",
"type": "string"
},
"type": {
"description": "Type of replication controller condition.",
"type": "string"
}
},
"required": [
"type",
"status"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ReplicationControllerSpec": {
"description": "ReplicationControllerSpec is the specification of a replication controller.",
"properties": {
"minReadySeconds": {
"_format": "int32",
"description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)",
"type": "integer"
},
"replicas": {
"_format": "int32",
"description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
"type": "integer"
},
"selector": {
"additionalProperties": {
"type": "string"
},
"description": "Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors",
"type": "object"
},
"template": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec",
"description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ReplicationControllerStatus": {
"description": "ReplicationControllerStatus represents the current status of a replication controller.",
"properties": {
"availableReplicas": {
"_format": "int32",
"description": "The number of available replicas (ready for at least minReadySeconds) for this replication controller.",
"type": "integer"
},
"conditions": {
"description": "Represents the latest available observations of a replication controller's current state.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ReplicationControllerCondition"
},
"type": "array",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge"
},
"fullyLabeledReplicas": {
"_format": "int32",
"description": "The number of pods that have labels matching the labels of the pod template of the replication controller.",
"type": "integer"
},
"observedGeneration": {
"_format": "int64",
"description": "ObservedGeneration reflects the generation of the most recently observed replication controller.",
"type": "integer"
},
"readyReplicas": {
"_format": "int32",
"description": "The number of ready replicas for this replication controller.",
"type": "integer"
},
"replicas": {
"_format": "int32",
"description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
"type": "integer"
}
},
"required": [
"replicas"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": {
"description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
"properties": {
"containerName": {
"description": "Container name: required for volumes, optional for env vars",
"type": "string"
},
"divisor": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Specifies the output format of the exposed resources, defaults to \"1\""
},
"resource": {
"description": "Required: resource to select",
"type": "string"
}
},
"required": [
"resource"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements": {
"description": "ResourceRequirements describes the compute resource requirements.",
"properties": {
"limits": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": "object"
},
"requests": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": {
"description": "SELinuxOptions are the labels to be applied to the container",
"properties": {
"level": {
"description": "Level is SELinux level label that applies to the container.",
"type": "string"
},
"role": {
"description": "Role is a SELinux role label that applies to the container.",
"type": "string"
},
"type": {
"description": "Type is a SELinux type label that applies to the container.",
"type": "string"
},
"user": {
"description": "User is a SELinux user label that applies to the container.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": {
"description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".",
"type": "string"
},
"gateway": {
"description": "The host address of the ScaleIO API Gateway.",
"type": "string"
},
"protectionDomain": {
"description": "The name of the ScaleIO Protection Domain for the configured storage.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
},
"sslEnabled": {
"description": "Flag to enable/disable SSL communication with Gateway, default false",
"type": "boolean"
},
"storageMode": {
"description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
"type": "string"
},
"storagePool": {
"description": "The ScaleIO Storage Pool associated with the protection domain.",
"type": "string"
},
"system": {
"description": "The name of the storage system as configured in ScaleIO.",
"type": "string"
},
"volumeName": {
"description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
"type": "string"
}
},
"required": [
"gateway",
"system",
"secretRef"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource": {
"description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector": {
"description": "SecretKeySelector selects a key of a Secret.",
"properties": {
"key": {
"description": "The key of the secret to select from. Must be a valid secret key.",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection": {
"description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": {
"description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"optional": {
"description": "Specify whether the Secret or its keys must be defined",
"type": "boolean"
},
"secretName": {
"description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext": {
"description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.",
"properties": {
"allowPrivilegeEscalation": {
"description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN",
"type": "boolean"
},
"capabilities": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities",
"description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime."
},
"privileged": {
"description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.",
"type": "boolean"
},
"procMount": {
"description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.",
"type": "string"
},
"readOnlyRootFilesystem": {
"description": "Whether this container has a read-only root filesystem. Default is false.",
"type": "boolean"
},
"runAsGroup": {
"_format": "int64",
"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "integer"
},
"runAsNonRoot": {
"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "boolean"
},
"runAsUser": {
"_format": "int64",
"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "integer"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
},
"windowsOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions",
"description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": {
"description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).",
"properties": {
"audience": {
"description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.",
"type": "string"
},
"expirationSeconds": {
"_format": "int64",
"description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.",
"type": "integer"
},
"path": {
"description": "Path is the path relative to the mount point of the file to project the token into.",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": {
"description": "Represents a StorageOS persistent volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted."
},
"volumeName": {
"description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.",
"type": "string"
},
"volumeNamespace": {
"description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl": {
"description": "Sysctl defines a kernel parameter to be set",
"properties": {
"name": {
"description": "Name of a property to set",
"type": "string"
},
"value": {
"description": "Value of a property to set",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction": {
"description": "TCPSocketAction describes an action based on opening a socket",
"properties": {
"host": {
"description": "Optional: Host name to connect to, defaults to the pod IP.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": {
"description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
"properties": {
"effect": {
"description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
"type": "string"
},
"key": {
"description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.",
"type": "string"
},
"operator": {
"description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.",
"type": "string"
},
"tolerationSeconds": {
"_format": "int64",
"description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.",
"type": "integer"
},
"value": {
"description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint": {
"description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
"properties": {
"labelSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain."
},
"maxSkew": {
"_format": "int32",
"description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.",
"type": "integer"
},
"topologyKey": {
"description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.",
"type": "string"
},
"whenUnsatisfiable": {
"description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.",
"type": "string"
}
},
"required": [
"maxSkew",
"topologyKey",
"whenUnsatisfiable"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume": {
"description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
"properties": {
"awsElasticBlockStore": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource",
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
},
"azureDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource",
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
},
"azureFile": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource",
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
},
"cephfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource",
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
},
"cinder": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource",
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
},
"configMap": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource",
"description": "ConfigMap represents a configMap that should populate this volume"
},
"csi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource",
"description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)."
},
"downwardAPI": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource",
"description": "DownwardAPI represents downward API about the pod that should populate this volume"
},
"emptyDir": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource",
"description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
},
"fc": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource",
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
},
"flexVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource",
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
},
"flocker": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource",
"description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
},
"gcePersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource",
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
},
"gitRepo": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource",
"description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
},
"glusterfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource",
"description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
},
"hostPath": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource",
"description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
},
"iscsi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource",
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
},
"name": {
"description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"nfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource",
"description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
},
"persistentVolumeClaim": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource",
"description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
},
"photonPersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource",
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
},
"portworxVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource",
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
},
"projected": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource",
"description": "Items for all in one resources secrets, configmaps, and downward API"
},
"quobyte": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource",
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
},
"rbd": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource",
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
},
"scaleIO": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource",
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
},
"secret": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource",
"description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
},
"storageos": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource",
"description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
},
"vsphereVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource",
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": {
"description": "volumeDevice describes a mapping of a raw block device within a container.",
"properties": {
"devicePath": {
"description": "devicePath is the path inside of the container that the device will be mapped to.",
"type": "string"
},
"name": {
"description": "name must match the name of a persistentVolumeClaim in the pod",
"type": "string"
}
},
"required": [
"name",
"devicePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": {
"description": "VolumeMount describes a mounting of a Volume within a container.",
"properties": {
"mountPath": {
"description": "Path within the container at which the volume should be mounted. Must not contain ':'.",
"type": "string"
},
"mountPropagation": {
"description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.",
"type": "string"
},
"name": {
"description": "This must match the Name of a Volume.",
"type": "string"
},
"readOnly": {
"description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
"type": "boolean"
},
"subPath": {
"description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
"type": "string"
},
"subPathExpr": {
"description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.",
"type": "string"
}
},
"required": [
"name",
"mountPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": {
"description": "Projection that may be projected along with other supported volume types",
"properties": {
"configMap": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection",
"description": "information about the configMap data to project"
},
"downwardAPI": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection",
"description": "information about the downwardAPI data to project"
},
"secret": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection",
"description": "information about the secret data to project"
},
"serviceAccountToken": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection",
"description": "information about the serviceAccountToken data to project"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": {
"description": "Represents a vSphere volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"storagePolicyID": {
"description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
"type": "string"
},
"storagePolicyName": {
"description": "Storage Policy Based Management (SPBM) profile name.",
"type": "string"
},
"volumePath": {
"description": "Path that identifies vSphere volume vmdk",
"type": "string"
}
},
"required": [
"volumePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": {
"description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
"properties": {
"podAffinityTerm": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm",
"description": "Required. A pod affinity term, associated with the corresponding weight."
},
"weight": {
"_format": "int32",
"description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
"type": "integer"
}
},
"required": [
"weight",
"podAffinityTerm"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": {
"description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
"properties": {
"gmsaCredentialSpec": {
"description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.",
"type": "string"
},
"gmsaCredentialSpecName": {
"description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
"type": "string"
},
"runAsUserName": {
"description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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": "ReplicationControllerList is a collection of replication controllers.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"enum": [
"v1"
],
"type": [
"string",
"null"
]
},
"items": {
"description": "List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ReplicationController"
},
"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": [
"ReplicationControllerList"
],
"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": "ReplicationControllerList",
"version": "v1"
}
]
} | kb_818_Normalized |
{
"properties": {
"App": {
"default": {
"Options": {
"DisableAutoLock": false,
"DisableDeviceRotation": false,
"DisableRingerSwitch": false,
"DisableSleepWakeButton": false,
"DisableTouch": false,
"DisableVolumeButtons": false,
"EnableAssistiveTouch": false,
"EnableInvertColors": false,
"EnableMonoAudio": false,
"EnableSpeakSelection": false,
"EnableVoiceOver": false,
"EnableZoom": false
},
"UserEnabledOptions": {
"AssistiveTouch": false,
"InvertColors": false,
"VoiceOver": false,
"Zoom": false
}
},
"description": "Dictionary containing the app identifier",
"properties": {
"Identifier": {
"description": "App identifier",
"type": "string"
},
"Options": {
"description": "App Lock Options Dictionary",
"properties": {
"DisableAutoLock": {
"default": false,
"description": "Disable Auto Lock",
"type": "boolean"
},
"DisableDeviceRotation": {
"default": false,
"description": "Disable Device Rotation",
"type": "boolean"
},
"DisableRingerSwitch": {
"default": false,
"description": "Disable Ringer Switch",
"type": "boolean"
},
"DisableSleepWakeButton": {
"default": false,
"description": "Disable Sleep Wake Button",
"type": "boolean"
},
"DisableTouch": {
"default": false,
"description": "Disable Touch Screen",
"type": "boolean"
},
"DisableVolumeButtons": {
"default": false,
"description": "Disable Volume Buttons",
"type": "boolean"
},
"EnableAssistiveTouch": {
"default": false,
"description": "Enable Assistive Touch",
"type": "boolean"
},
"EnableInvertColors": {
"default": false,
"description": "Enable Inverted Colors",
"type": "boolean"
},
"EnableMonoAudio": {
"default": false,
"description": "Enable Mono Audio",
"type": "boolean"
},
"EnableSpeakSelection": {
"default": false,
"description": "Enable Speak Selection",
"type": "boolean"
},
"EnableVoiceOver": {
"default": false,
"description": "Enable Voice Over",
"type": "boolean"
},
"EnableZoom": {
"default": false,
"description": "Enable Zoom",
"type": "boolean"
}
},
"type": "object"
},
"UserEnabledOptions": {
"description": "App Lock User Enabled Options Dictionary",
"properties": {
"AssistiveTouch": {
"default": false,
"description": "Allow user to enable Assistive Touch",
"type": "boolean"
},
"InvertColors": {
"default": false,
"description": "Allow user to enable Inverted Colors",
"type": "boolean"
},
"VoiceOver": {
"default": false,
"description": "Allow user to enable Voice Over",
"type": "boolean"
},
"Zoom": {
"default": false,
"description": "Allow user to enable Zoom",
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
},
"PayloadDescription": {
"default": "App Lock",
"description": "Description of the payload",
"type": "string"
},
"PayloadDisplayName": {
"default": "App Lock",
"description": "Name of the payload",
"type": "string"
},
"PayloadIdentifier": {
"default": "com.apple.app.lock",
"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.app.lock",
"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.app.lock",
"type": "object"
} | o61595 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"description": "c# access modifier",
"enum": [
"PUBLIC",
"PROTECTED",
"STATIC",
"SEALED"
]
} | o81745 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Integration Configuration",
"description": "The schema used to generate integration configuration in Contentful",
"type": "object",
"properties": {
"webhooks": {
"type": "array",
"title": "Managed Webhooks",
"description": "A list of webhooks managed by this integration",
"items": {
"$ref": "#/definitions/webhook"
}
}
},
"additionalProperties": false,
"definitions": {
"webhook": {
"type": "object",
"title": "Managed Webhook",
"description": "Configuration for setting up a webhook",
"properties": {
"endpointUrl": {
"type": "string",
"title": "Endpoint Url",
"format": "url",
"description": "The webhook destination"
},
"name": {
"type": "string",
"title": "Name",
"description": "The name of the webhook (e.g. Stripe Integration Entry Point)"
}
},
"additionalProperties": false,
"required": [
"endpointUrl",
"name"
]
}
}
} | o72182 |
{
"id": "http://schemas.triniti.io/json-schema/triniti/curator/mixin/teaser/1-0-1.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"_id": {
"type": "string",
"pattern": "^[\\w\\/\\.:-]+$",
"pbj": {
"type": "identifier",
"rule": "single",
"overridable": true
}
},
"status": {
"type": "string",
"default": "draft",
"enum": [
"unknown",
"published",
"scheduled",
"pending",
"draft",
"expired",
"archived",
"deleted"
],
"pbj": {
"type": "string-enum",
"rule": "single"
}
},
"etag": {
"type": "string",
"pattern": "^[\\w\\.:-]+$",
"pbj": {
"type": "string",
"rule": "single"
}
},
"created_at": {
"type": "string",
"pattern": "^[1-9]{1}[0-9]{12,15}$",
"pbj": {
"type": "microtime",
"rule": "single"
}
},
"creator_ref": {
"type": "object",
"properties": {
"curie": {
"type": "string",
"pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$",
"minLength": 0,
"maxLength": 146
},
"id": {
"type": "string",
"pattern": "^[A-Za-z0-9:_\\-]+$",
"minLength": 0,
"maxLength": 255
},
"tag": {
"type": "string",
"pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$",
"minLength": 0,
"maxLength": 255
}
},
"required": [
"curie",
"id"
],
"additionalProperties": false,
"description": "A fully qualified reference to what created this node. This is intentionally a message-ref and not a user id because it is often a program that creates nodes, not a user.",
"pbj": {
"type": "message-ref",
"rule": "single"
}
},
"updated_at": {
"type": "string",
"pattern": "^[1-9]{1}[0-9]{12,15}$",
"pbj": {
"type": "microtime",
"rule": "single",
"useTypeDefault": false
}
},
"updater_ref": {
"type": "object",
"properties": {
"curie": {
"type": "string",
"pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$",
"minLength": 0,
"maxLength": 146
},
"id": {
"type": "string",
"pattern": "^[A-Za-z0-9:_\\-]+$",
"minLength": 0,
"maxLength": 255
},
"tag": {
"type": "string",
"pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$",
"minLength": 0,
"maxLength": 255
}
},
"required": [
"curie",
"id"
],
"additionalProperties": false,
"description": "A fully qualified reference to what updated this node. This is intentionally a message-ref and not a user id because it is often a program that updates nodes, not a user. E.g. \"acme:iam:node:app:cli-scheduler\" or \"acme:iam:node:user:60c71df0-fda8-11e5-bfb9-30342d363854\"",
"pbj": {
"type": "message-ref",
"rule": "single"
}
},
"last_event_ref": {
"type": "object",
"properties": {
"curie": {
"type": "string",
"pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$",
"minLength": 0,
"maxLength": 146
},
"id": {
"type": "string",
"pattern": "^[A-Za-z0-9:_\\-]+$",
"minLength": 0,
"maxLength": 255
},
"tag": {
"type": "string",
"pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$",
"minLength": 0,
"maxLength": 255
}
},
"required": [
"curie",
"id"
],
"additionalProperties": false,
"description": "A reference to the last event that changed the state of this node. E.g. \"acme:blog:event:article-published:60c71df0-fda8-11e5-bfb9-30342d363854\"",
"pbj": {
"type": "message-ref",
"rule": "single"
}
},
"title": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"pbj": {
"type": "string",
"rule": "single"
}
},
"order_date": {
"type": "string",
"format": "date-time",
"description": "Determines the sequence that this teaser node will be rendered in lists, search results, etc. It DOES NOT control visibility or publishing. A date was used over an integer (e.g. seq_no) for blog-like, reverse chronological, clarity in sorting.",
"pbj": {
"type": "date-time",
"rule": "single"
}
},
"image_ref": {
"type": "string",
"pattern": "^[\\w\\/\\.:-]+$",
"description": "A reference to the image asset to use for widgets, sharing, seo.",
"pbj": {
"type": "identifier",
"rule": "single"
}
},
"description": {
"type": "string",
"minLength": 0,
"maxLength": 5000,
"description": "A description of the teaser (usually a few sentences). It should typically not have HTML as it is used in metadata, feeds, SERP and social.",
"pbj": {
"type": "text",
"rule": "single"
}
},
"caption": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"description": "Text to be used to caption the teaser.",
"pbj": {
"type": "string",
"rule": "single"
}
},
"cta_text": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"description": "Text to be used for the call to action.",
"pbj": {
"type": "string",
"rule": "single"
}
},
"credit": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"description": "Text to be used to credit the teaser source.",
"pbj": {
"type": "string",
"rule": "single"
}
},
"credit_url": {
"type": "string",
"pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$",
"description": "URL to be used to link to the teaser source.",
"pbj": {
"type": "text",
"rule": "single",
"format": "url"
}
},
"gallery_ref": {
"type": "string",
"pattern": "^[\\w\\/\\.:-]+$",
"pbj": {
"type": "identifier",
"rule": "single"
}
},
"timeline_ref": {
"type": "string",
"pattern": "^[\\w\\/\\.:-]+$",
"pbj": {
"type": "identifier",
"rule": "single"
}
}
},
"required": [
"_id"
],
"additionalProperties": true
} | o82825 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"compilerArguments": {
"type": "object",
"help": "Compiler arguments are applied to all compilers, unless explicitly modified in post processing",
"properties": {
"entry": {
"type": "string",
"help": "main entry point for your program, across all contexts"
},
"out": {
"type": "string",
"help": "destination for compiled bundle. If there are multiple, the destination of specific bundles will be decided by the --combinator"
},
"watch": {
"help": "monitor source files for changes and recompile.",
"type": "boolean"
},
"chunkFilename": {
"help": "If provided, enables code splitting with webpack.require. Examples patterns include '[id].chunk.js', '[name].chunk.js'",
"type": "string"
},
"babelPresets": {
"type": "array",
"items": {
"type": "string"
},
"help": "add a preset to the babel loader, between es2015 and stage-0"
},
"outCombinator": {
"type": "string",
"help": "string to combine arguments that \"define\" a compiler (environment, environment)",
"default": "_"
},
"outPrefix": {
"type": "string",
"help": "prefix for generated contextual modules. Appended to `out` directory"
},
"modules": {
"type": "string",
"help": "where to look for modules"
}
}
},
"cartesianArguments": {
"type": "object",
"help": "Cartesian arguments are array arguments that generate compilers equal to the unorderd cartesian product between them",
"properties": {
"environments": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"help": "an application lifecycle environment {DEVELOPMENT, PRODUCTION, etc} this distribution will run in"
},
"contexts": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"help": "a context {NODE, BROWSER, etc} this distribution will run in. "
}
}
},
"managerArguments": {
"type": "object",
"help": "Task arguments are arguments that are fed to the task manager ",
"properties": {
"task": {
"help": "the task to run. If non is specified, it will be inferred from other arguments.",
"type": "string"
},
"run": {
"help": "Which context to run on compilation, if any",
"type": "string"
},
"runner": {
"help": "Which runner to run the selected compiler with, if any",
"type": "string"
},
"logLevel": {
"default": "ERROR",
"help": "VERBOSE will output webpack stats and warnings"
}
}
},
"presets": {
"type": "object",
"help": "Presets are functions that apply default or derived arguments at various stages of parsing, loaded from the module given as an argument from the export of the given preset.",
"properties": {
"preset": {
"help": "module from which to import ALL of the potential presets (any missing presets will be identities)",
"type": "string"
}
}
}
},
"type": "object",
"allOf": [
{
"allOf": [
{
"$ref": "#/definitions/compilerArguments"
},
{
"$ref": "#/definitions/cartesianArguments"
}
]
},
{
"$ref": "#/definitions/managerArguments"
},
{
"$ref": "#/definitions/presets"
}
]
} | o67449 |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle or base of the triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of shape (circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_1d0fcef9 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle or triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius",
"length",
"width",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The shape (e.g., circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_16ecbdde |
{
"items": {
"additionalProperties": false,
"type": "string"
},
"type": "array"
} | o9292 |
{
"properties": {
"builtin": {
"enum": [
"MODIFIABLE",
"DELETABLE",
"IMMUTABLE",
"PARTITION_ALL"
],
"readonly": true,
"type": "object"
},
"cachemaxage": {
"type": "integer"
},
"clientsidemeasurements": {
"type": "boolean"
},
"convertimporttolink": {
"type": "boolean"
},
"csscombine": {
"type": "boolean"
},
"cssflattenimports": {
"readonly": true,
"type": "boolean"
},
"cssimginline": {
"type": "boolean"
},
"cssinline": {
"type": "boolean"
},
"cssminify": {
"type": "boolean"
},
"cssmovetohead": {
"type": "boolean"
},
"dnsshards": {
"type": "object"
},
"domainsharding": {
"type": "string"
},
"feature": {
"enum": [
"WL",
"WebLogging",
"SP",
"SurgeProtection",
"LB",
"LoadBalancing",
"CS",
"ContentSwitching",
"CR",
"CacheRedirection",
"SC",
"SureConnect",
"CMP",
"CMPcntl",
"CompressionControl",
"PQ",
"PriorityQueuing",
"HDOSP",
"HttpDoSProtection",
"SSLVPN",
"AAA",
"GSLB",
"GlobalServerLoadBalancing",
"SSL",
"SSLOffload",
"SSLOffloading",
"CF",
"ContentFiltering",
"IC",
"IntegratedCaching",
"OSPF",
"OSPFRouting",
"RIP",
"RIPRouting",
"BGP",
"BGPRouting",
"REWRITE",
"IPv6PT",
"IPv6protocoltranslation",
"AppFw",
"ApplicationFirewall",
"RESPONDER",
"HTMLInjection",
"push",
"NSPush",
"NetScalerPush",
"AppFlow",
"CloudBridge",
"ISIS",
"ISISRouting",
"CH",
"CallHome",
"AppQoE",
"ContentAccelerator",
"SYSTEM",
"RISE",
"FEO",
"LSN",
"LargeScaleNAT",
"RDPProxy",
"Rep",
"Reputation",
"URLFiltering",
"VideoOptimization",
"ForwardProxy",
"SSLInterception",
"AdaptiveTCP",
"CQA",
"CI",
"ContentInspection",
"Bot"
],
"readonly": true,
"type": "string"
},
"hits": {
"readonly": true,
"type": "integer"
},
"htmlminify": {
"type": "boolean"
},
"htmlrmattribquotes": {
"readonly": true,
"type": "boolean"
},
"htmlrmdefaultattribs": {
"readonly": true,
"type": "boolean"
},
"htmltrimurls": {
"readonly": true,
"type": "boolean"
},
"imgadddimensions": {
"readonly": true,
"type": "boolean"
},
"imggiftopng": {
"type": "boolean"
},
"imginline": {
"type": "boolean"
},
"imglazyload": {
"type": "boolean"
},
"imgshrinkformobile": {
"readonly": true,
"type": "boolean"
},
"imgshrinktoattrib": {
"type": "boolean"
},
"imgtojpegxr": {
"type": "boolean"
},
"imgtowebp": {
"type": "boolean"
},
"imgweaken": {
"readonly": true,
"type": "boolean"
},
"jpgoptimize": {
"type": "boolean"
},
"jpgprogressive": {
"readonly": true,
"type": "boolean"
},
"jscombine": {
"readonly": true,
"type": "boolean"
},
"jsinline": {
"type": "boolean"
},
"jsminify": {
"type": "boolean"
},
"jsmovetoend": {
"type": "boolean"
},
"name": {
"type": "string"
},
"pageextendcache": {
"type": "boolean"
},
"undefhits": {
"readonly": true,
"type": "integer"
}
},
"title": "feoaction",
"type": "object"
} | o30439 |
{
"properties": {
"down_payment": {
"description": "The down payment amount",
"type": "number"
},
"home_insurance": {
"description": "The annual home insurance amount",
"type": "number"
},
"interest_rate": {
"description": "The annual interest rate",
"type": "number"
},
"loan_amount": {
"description": "The amount of the loan",
"type": "number"
},
"loan_term": {
"description": "The term of the loan in years",
"type": "integer"
},
"property_tax": {
"description": "The annual property tax amount",
"type": "number"
}
},
"required": [
"loan_amount",
"interest_rate",
"loan_term"
],
"type": "object"
} | calculate_mortgage_payment_7efc1646 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"base_path",
"details",
"document_type",
"publishing_app",
"rendering_app",
"routes",
"schema_name",
"title"
],
"additionalProperties": false,
"properties": {
"access_limited": {
"$ref": "#/definitions/access_limited"
},
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"auth_bypass_ids": {
"description": "A list of ids that will allow access to this item for non-authenticated users",
"$ref": "#/definitions/guid_list"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"bulk_publishing": {
"type": "boolean"
},
"change_note": {
"type": [
"null",
"string"
]
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"type": "string",
"enum": [
"topical_event_about_page"
]
},
"first_published_at": {
"$ref": "#/definitions/first_published_at"
},
"last_edited_at": {
"description": "Last time when the content received a major or minor update.",
"type": "string",
"format": "date-time"
},
"links": {
"type": "object",
"additionalProperties": false,
"properties": {
"policy_areas": {
"description": "A largely deprecated tag currently only used to power email alerts.",
"$ref": "#/definitions/guid_list"
}
}
},
"locale": {
"$ref": "#/definitions/locale"
},
"need_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"type": "string",
"enum": [
"alpha",
"beta",
"live"
]
},
"previous_version": {
"type": "string"
},
"public_updated_at": {
"$ref": "#/definitions/public_updated_at"
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"redirects": {
"type": "array",
"additionalItems": false,
"items": {}
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"routes": {
"$ref": "#/definitions/routes"
},
"schema_name": {
"type": "string",
"enum": [
"topical_event_about_page"
]
},
"title": {
"$ref": "#/definitions/title"
},
"update_type": {
"$ref": "#/definitions/update_type"
}
},
"definitions": {
"description": {
"type": "string"
},
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"type": "string",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$"
},
"access_limited": {
"type": "object",
"additionalProperties": false,
"properties": {
"auth_bypass_ids": {
"description": "Deprecated: auth_bypass_ids should be sent as a separate field",
"$ref": "#/definitions/guid_list"
},
"organisations": {
"description": "A list of organisation content ids permitted access to this item",
"$ref": "#/definitions/guid_list"
},
"users": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"analytics_identifier": {
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations.",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"body": {
"description": "The main content provided as HTML rendered from govspeak",
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"type": "object",
"required": [
"read_more",
"body"
],
"additionalProperties": false,
"properties": {
"body": {
"$ref": "#/definitions/body"
},
"read_more": {
"type": "string"
}
}
},
"first_published_at": {
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string",
"format": "date-time"
},
"guid": {
"type": "string",
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$"
},
"guid_list": {
"type": "array",
"items": {
"$ref": "#/definitions/guid"
},
"_uniqueItems": true
},
"locale": {
"type": "string",
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
]
},
"public_updated_at": {
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string",
"format": "date-time"
},
"publishing_app_name": {
"description": "The application that published this item.",
"type": "string",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
]
},
"rendering_app": {
"description": "The application that renders this item.",
"type": "string",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
]
},
"route": {
"type": "object",
"required": [
"path",
"type"
],
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"type": {
"enum": [
"prefix",
"exact"
]
}
}
},
"routes": {
"type": "array",
"items": {
"$ref": "#/definitions/route"
},
"minItems": 1
},
"title": {
"type": "string"
},
"update_type": {
"enum": [
"major",
"minor",
"republish"
]
}
}
} | o21410 |
{
"additionalProperties": true,
"description": "Schema for a SendGrid deferred event. Property descriptions derived from the SendGrid documentation: https://sendgrid.com/docs/for-developers/tracking-events/event/",
"properties": {
"asm_group_id": {
"description": "The ID of the unsubscribe group the recipient\u2019s email address is included in. ASM IDs correspond to the ID that is returned when you create an unsubscribe group.",
"maximum": 32767,
"minimum": 0,
"type": "integer"
},
"attempt": {
"description": "The number of times SendGrid has attempted to deliver this message",
"type": "string"
},
"category": {
"description": "Categories are custom tags that you set for the purpose of organizing your emails. Categories can be set as an array or string, and they will be returned as such when posted in your event endpoint.",
"items": {
"type": "string"
},
"type": [
"array",
"string"
]
},
"cert_error": {
"description": "No longer found in the SendGrid documentation; possibly deprecated",
"type": "string"
},
"email": {
"_format": "email",
"description": "The email address of the recipient",
"type": "string"
},
"ip": {
"_format": "ipv4",
"description": "The IP address used to send the email",
"type": "string"
},
"marketing_campaign_id": {
"description": "For emails sent through our Marketing Campaigns feature, we add Marketing Campaigns specific parameters to the Event Webhook. Both marketing_campaign_name and marketing_campaign_id are displayed as unique arguments in the event data.",
"type": "integer"
},
"marketing_campaign_name": {
"description": "For emails sent through our Marketing Campaigns feature, we add Marketing Campaigns specific parameters to the Event Webhook. Both marketing_campaign_name and marketing_campaign_id are displayed as unique arguments in the event data.",
"type": "string"
},
"marketing_campaign_split_id": {
"description": "Marketing campaign split id",
"type": "integer"
},
"marketing_campaign_version": {
"description": "Displayed in the event data for emails sent as part of an A/B Test. The value for marketing_campaign_version are returned as A, B, C, etc.",
"type": "string"
},
"newsletter": {
"additionalProperties": true,
"description": "Legacy Marketing Email tool fields",
"properties": {
"newsletter_id": {
"type": "string"
},
"newsletter_send_id": {
"type": "string"
},
"newsletter_user_list_id": {
"type": "string"
}
},
"type": "object"
},
"response": {
"description": "The full text of the HTTP response error returned from the receiving server",
"type": "string"
},
"sg_event_id": {
"description": "A unique ID to this event that you can use for deduplication purposes. These IDs are up to 100 characters long and are URL safe.",
"maxLength": 4096,
"minLength": 22,
"type": "string"
},
"sg_message_id": {
"description": "A unique, internal SendGrid ID for the message. The first half of this is pulled from the smtp-id.",
"type": "string"
},
"smtp-id": {
"description": "A unique ID attached to the message by the originating system",
"type": "string"
},
"timestamp": {
"_format": "date-time",
"description": "The timestamp of when the message was sent",
"type": "string"
},
"tls": {
"description": "Indicates whether TLS encription was used in sending this message. For more information about TLS, see the SendGrid TLS Glossary page.",
"type": [
"string",
"integer"
]
}
},
"self": {
"format": "jsonschema",
"name": "deferred",
"vendor": "com.sendgrid",
"version": "2-0-0"
},
"type": "object"
} | sp_183_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"appliedFilters": {
"type": "array",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string"
},
"name": {
"type": "string"
},
"selected": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"label": {
"type": "string"
},
"values": {
"type": "array",
"items": {
"type": "object",
"properties": {}
}
}
},
"required": [
"key",
"label",
"values"
]
}
}
},
"required": [
"label",
"name",
"selected"
]
}
},
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"component": {
"type": "string"
},
"componentName": {
"type": "string"
},
"componentVersion": {
"type": "string"
},
"componentVersionName": {
"type": "string"
},
"componentVersionOriginId": {
"type": "string"
},
"componentVersionOriginName": {
"type": "string"
},
"license": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"licenses": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"ownership": {
"type": "string"
},
"codeSharing": {
"type": "string"
},
"licenses": {
"type": "array"
},
"license": {
"type": "string"
}
}
}
}
}
},
"vulnerabilityWithRemediation": {
"type": "object",
"properties": {
"baseScore": {
"type": "number"
},
"cweId": {
"type": "string"
},
"description": {
"type": "string"
},
"exploitabilitySubscore": {
"type": "number"
},
"impactSubscore": {
"type": "number"
},
"remediationActualAt": {
"type": "string"
},
"remediationCreatedAt": {
"type": "string"
},
"remediationStatus": {
"type": "string"
},
"remediationTargetAt": {
"type": "string"
},
"remediationUpdatedAt": {
"type": "string"
},
"severity": {
"type": "string"
},
"source": {
"type": "string"
},
"vulnerabilityName": {
"type": "string"
},
"vulnerabilityPublishedDate": {
"type": "string"
},
"vulnerabilityUpdatedDate": {
"type": "string"
}
},
"required": [
"baseScore",
"description",
"exploitabilitySubscore",
"impactSubscore",
"severity",
"source",
"vulnerabilityName",
"vulnerabilityPublishedDate",
"vulnerabilityUpdatedDate"
]
}
},
"required": [
"componentName",
"componentVersion",
"componentVersionName",
"componentVersionOriginId",
"componentVersionOriginName",
"license",
"vulnerabilityWithRemediation"
]
}
},
"totalCount": {
"type": "integer"
}
},
"required": [
"appliedFilters",
"items",
"totalCount"
]
} | o42026 |
{
"additionalProperties": false,
"description": "Generate phone number list",
"properties": {
"$schema": {
"type": "string"
},
"$tool": {
"const": "city-mobile-sections",
"description": "Must be set to city-mobile-sections",
"type": "string"
},
"column": {
"description": "Column name.",
"enum": [
"province",
"city"
]
},
"dist": {
"description": "The output path (relative to the pwd).",
"type": "string"
},
"driver": {
"additionalProperties": false,
"default": {},
"description": "Typeorm driver.",
"properties": {
"database": {
"default": "phone",
"description": "Database name to connect to",
"type": "string"
},
"host": {
"default": "localhost",
"description": "Database host",
"type": "string"
},
"password": {
"default": "postgres",
"description": "Database password",
"type": "string"
},
"port": {
"default": 5432,
"description": "Database port",
"type": "integer"
},
"type": {
"default": "postgres",
"description": "Database type, sync with typeorm.DriverType",
"enum": [
"mysql",
"postgres",
"mariadb",
"sqlite",
"oracle",
"mssql",
"websql"
],
"type": "string"
},
"username": {
"default": "postgres",
"description": "Database username",
"type": "string"
}
},
"required": [
"type",
"host",
"port",
"username",
"password",
"database"
],
"type": "object"
},
"value": {
"description": "Column value.",
"type": "string"
}
},
"required": [
"$tool",
"dist",
"column",
"value",
"driver"
],
"title": "city-mobile-sections Config",
"type": "object"
} | o39078 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.