json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "definitions": { "BottlePayload": { "example": { "color": "sparkling", "country": "USA", "name": "Number 8", "region": "Napa Valley", "review": "Great and inexpensive", "sweetness": 4, "varietal": "Merlot", "vineyard": "Asti", "vintage": 2012 }, "properties": { "color": { "enum": [ "red", "white", "rose", "yellow", "sparkling" ], "example": "sparkling", "type": "string" }, "country": { "example": "USA", "minLength": 2, "type": "string" }, "name": { "example": "Number 8", "minLength": 2, "type": "string" }, "region": { "example": "Napa Valley", "type": "string" }, "review": { "example": "Great and inexpensive", "maxLength": 300, "minLength": 3, "type": "string" }, "sweetness": { "example": 4, "maximum": 5, "minimum": 1, "type": "integer" }, "varietal": { "example": "Merlot", "minLength": 4, "type": "string" }, "vineyard": { "example": "Asti", "minLength": 2, "type": "string" }, "vintage": { "example": 2012, "maximum": 2020, "minimum": 1900, "type": "integer" } }, "title": "BottlePayload", "type": "object" }, "CreateAccountPayload": { "example": { "name": "Ratione debitis." }, "properties": { "name": { "example": "Ratione debitis.", "type": "string" } }, "required": [ "name" ], "title": "CreateAccountPayload", "type": "object" }, "CreateBottlePayload": { "example": { "color": "sparkling", "country": "USA", "name": "Number 8", "region": "Napa Valley", "review": "Great and inexpensive", "sweetness": 4, "varietal": "Merlot", "vineyard": "Asti", "vintage": 2012 }, "properties": { "color": { "enum": [ "red", "white", "rose", "yellow", "sparkling" ], "example": "sparkling", "type": "string" }, "country": { "example": "USA", "minLength": 2, "type": "string" }, "name": { "example": "Number 8", "minLength": 2, "type": "string" }, "region": { "example": "Napa Valley", "type": "string" }, "review": { "example": "Great and inexpensive", "maxLength": 300, "minLength": 3, "type": "string" }, "sweetness": { "example": 4, "maximum": 5, "minimum": 1, "type": "integer" }, "varietal": { "example": "Merlot", "minLength": 4, "type": "string" }, "vineyard": { "example": "Asti", "minLength": 2, "type": "string" }, "vintage": { "example": 2012, "maximum": 2020, "minimum": 1900, "type": "integer" } }, "required": [ "name", "vineyard", "varietal", "vintage", "color" ], "title": "CreateBottlePayload", "type": "object" }, "RateBottlePayload": { "example": { "rating": 8279792463320557696 }, "properties": { "rating": { "example": 8279792463320557696, "format": "int64", "type": "integer" } }, "required": [ "rating" ], "title": "RateBottlePayload", "type": "object" }, "UpdateAccountPayload": { "example": { "name": "Sapiente expedita sit laboriosam placeat ducimus doloribus." }, "properties": { "name": { "example": "Sapiente expedita sit laboriosam placeat ducimus doloribus.", "type": "string" } }, "required": [ "name" ], "title": "UpdateAccountPayload", "type": "object" }, "account": { "links": [ { "href": "/cellar/accounts", "mediaType": "application/vnd.goa.error", "method": "POST", "rel": "create", "schema": { "$ref": "#/definitions/CreateAccountPayload", "description": "create payload" }, "targetSchema": { "$ref": "#/definitions/error" }, "title": "create" }, { "href": "/cellar/accounts/{accountID}", "mediaType": "application/vnd.goa.error", "method": "DELETE", "rel": "delete", "targetSchema": { "$ref": "#/definitions/error" }, "title": "delete" }, { "href": "/cellar/accounts", "method": "GET", "rel": "list", "title": "list" }, { "href": "/cellar/accounts/{accountID}", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "self", "targetSchema": { "$ref": "#/definitions/error" }, "title": "show" }, { "href": "/cellar/accounts/{accountID}", "mediaType": "application/vnd.goa.error", "method": "PUT", "rel": "update", "schema": { "$ref": "#/definitions/UpdateAccountPayload", "description": "update payload" }, "targetSchema": { "$ref": "#/definitions/error" }, "title": "update" } ], "title": "account", "type": "object" }, "bottle": { "links": [ { "href": "/cellar/accounts/{accountID}/bottles", "mediaType": "application/vnd.goa.error", "method": "POST", "rel": "create", "schema": { "$ref": "#/definitions/CreateBottlePayload", "description": "create payload" }, "targetSchema": { "$ref": "#/definitions/error" }, "title": "create" }, { "href": "/cellar/accounts/{accountID}/bottles/{bottleID}", "mediaType": "application/vnd.goa.error", "method": "DELETE", "rel": "delete", "targetSchema": { "$ref": "#/definitions/error" }, "title": "delete" }, { "href": "/cellar/accounts/{accountID}/bottles", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "list", "targetSchema": { "$ref": "#/definitions/error" }, "title": "list" }, { "href": "/cellar/accounts/{accountID}/bottles/{bottleID}/actions/rate", "mediaType": "application/vnd.goa.error", "method": "PUT", "rel": "rate", "schema": { "$ref": "#/definitions/RateBottlePayload", "description": "rate payload" }, "targetSchema": { "$ref": "#/definitions/error" }, "title": "rate" }, { "href": "/cellar/accounts/{accountID}/bottles/{bottleID}", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "self", "targetSchema": { "$ref": "#/definitions/error" }, "title": "show" }, { "href": "/cellar/accounts/{accountID}/bottles/{bottleID}", "mediaType": "application/vnd.goa.error", "method": "PATCH", "rel": "update", "schema": { "$ref": "#/definitions/BottlePayload", "description": "update payload" }, "targetSchema": { "$ref": "#/definitions/error" }, "title": "update" }, { "href": "/cellar/accounts/{accountID}/bottles/{bottleID}/watch", "mediaType": "application/vnd.goa.error", "method": "GET", "rel": "watch", "targetSchema": { "$ref": "#/definitions/error" }, "title": "watch" } ], "title": "bottle", "type": "object" }, "error": { "description": "Error response media type (default view)", "example": { "code": "invalid_value", "detail": "Value of ID must be an integer", "id": "3F1FKVRR", "meta": { "timestamp": 1458609066 }, "status": "400" }, "media": { "type": "application/vnd.goa.error; view=default" }, "properties": { "code": { "description": "an application-specific error code, expressed as a string value.", "example": "invalid_value", "type": "string" }, "detail": { "description": "a human-readable explanation specific to this occurrence of the problem.", "example": "Value of ID must be an integer", "type": "string" }, "id": { "description": "a unique identifier for this particular occurrence of the problem.", "example": "3F1FKVRR", "type": "string" }, "meta": { "additionalProperties": true, "description": "a meta object containing non-standard meta-information about the error.", "example": { "timestamp": 1458609066 }, "type": "object" }, "status": { "description": "the HTTP status code applicable to this problem, expressed as a string value.", "example": "400", "type": "string" } }, "title": "Mediatype identifier: application/vnd.goa.error; view=default", "type": "object" }, "health": { "links": [ { "href": "/cellar/_ah/health", "method": "GET", "rel": "health", "title": "health" } ], "title": "health", "type": "object" }, "js": { "title": "js", "type": "object" }, "public": { "title": "public", "type": "object" }, "swagger": { "title": "swagger", "type": "object" } }, "description": "A basic example of a CRUD API implemented with goa", "links": [ { "href": "http://localhost:8081", "rel": "self" }, { "href": "/schema", "method": "GET", "rel": "self", "targetSchema": { "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": true } } ], "properties": { "BottlePayload": { "$ref": "#/definitions/BottlePayload" }, "CreateAccountPayload": { "$ref": "#/definitions/CreateAccountPayload" }, "CreateBottlePayload": { "$ref": "#/definitions/CreateBottlePayload" }, "RateBottlePayload": { "$ref": "#/definitions/RateBottlePayload" }, "UpdateAccountPayload": { "$ref": "#/definitions/UpdateAccountPayload" }, "account": { "$ref": "#/definitions/account" }, "bottle": { "$ref": "#/definitions/bottle" }, "error": { "$ref": "#/definitions/error" }, "health": { "$ref": "#/definitions/health" }, "js": { "$ref": "#/definitions/js" }, "public": { "$ref": "#/definitions/public" }, "swagger": { "$ref": "#/definitions/swagger" } }, "title": "The virtual wine cellar", "type": "object" }
o57801
{ "definitions": { "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" } }, "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", "null" ] }, "type": [ "array", "null" ] }, "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", "null" ] }, "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", "null" ] }, "type": [ "array", "null" ] } }, "type": "object" }
kb_702_Normalized
{ "properties": { "length": { "description": "The length of the password", "type": "integer" }, "requirements": { "properties": { "lowercase": { "description": "Require lowercase letters", "type": "boolean" }, "numbers": { "description": "Require numbers", "type": "boolean" }, "special_characters": { "description": "Require special characters", "type": "boolean" }, "uppercase": { "description": "Require uppercase letters", "type": "boolean" } }, "type": "object" } }, "required": [ "length" ], "type": "object" }
generate_random_password_321a6b80
{ "title": "fabric info", "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "additionalProperties": false, "required": [ "fabric_fq_name", "management_subnets", "device_auth", "node_profiles" ], "properties": { "fabric_fq_name": { "type": "array", "items": { "type": "string" } }, "fabric_display_name": { "type": "string" }, "management_subnets": { "type": "array", "items": { "type": "object", "description": "List of the management network subnets for the fabric", "additionalProperties": false, "required": [ "cidr" ], "properties": { "cidr": { "type": "string", "pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$" }, "gateway": { "type": "string", "format": "ipv4" } } } }, "loopback_subnets": { "type": "array", "items": { "type": "string", "description": "List of the subnet prefixes that fabric device loopback ips can be allocated.", "pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$" } }, "fabric_subnets": { "type": "array", "items": { "type": "string", "description": "List of the subnet prefixes that could be carved out for the p2p networks between fabric devices.", "pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$" } }, "fabric_asn_pool": { "type": "array", "items": { "title": "eBGP ASN Pool for fabric underlay network", "type": "object", "description": "List of the ASN pools that could be used to configure the eBGP peers for the IP fabric", "properties": { "asn_min": { "type": "integer" }, "asn_max": { "type": "integer" } }, "required": [ "asn_min", "asn_max" ] } }, "overlay_ibgp_asn": { "type": "integer", "title": "iBGP ASN for Contrail overlay network", "default": 64512 }, "device_auth": { "title": "Device Auth", "type": "array", "items": { "type": "object", "additionalProperties": false, "required": [ "username", "password" ], "properties": { "username": { "type": "string" }, "password": { "type": "string" } } } }, "node_profiles": { "type": "array", "items": { "title": "Node profile", "type": "object", "description": "List of node profiles to be used by the fabric.", "additionalProperties": false, "properties": { "node_profile_name": { "type": "string" }, "serial_nums": { "type": "array", "description": "Optional list of serial numbers of fabric devices that we want to associate with this node profile.", "items": { "type": "string" } } }, "required": [ "node_profile_name" ] } }, "device_count": { "title": "Number of fabric devices", "type": "integer", "description": "Total number of devices in the fabric that needs to be zero-touch provisioned" } } }
o39197
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "GetDWDescriptors", "type": "object", "additionalProperties": false, "properties": { "totalCount": { "type": "integer" }, "data": { "type": "array", "items": { "$ref": "#/definitions/Datum" } } }, "required": [ "data", "totalCount" ], "definitions": { "Datum": { "type": "object", "additionalProperties": false, "properties": { "realms": { "$ref": "#/definitions/Realms" } }, "required": [ "realms" ], "title": "Datum" }, "Realms": { "type": "object", "additionalProperties": { "type": "object", "$ref": "#/definitions/realm" }, "title": "Realms", "minProperties": 1 }, "realm": { "type": "object", "additionalProperties": false, "properties": { "metrics": { "$ref": "#/definitions/metrics" }, "dimensions": { "$ref": "#/definitions/dimensions" }, "text": { "type": "string" }, "category": { "type": "string" } }, "required": [ "category", "dimensions", "metrics", "text" ], "title": "realm" }, "dimensions": { "type": "object", "additionalProperties": { "type": "object", "$ref": "#/definitions/dimension" }, "minProperties": 1, "title": "Dimensions" }, "metrics": { "type": "object", "additionalProperties": { "type": "object", "$ref": "#/definitions/metric" }, "minProperties": 1, "title": "metrics" }, "dimension": { "type": "object", "additionalProperties": false, "properties": { "text": { "type": "string" }, "info": { "type": "string" } }, "required": [ "info", "text" ], "title": "dimension" }, "metric": { "type": "object", "additionalProperties": false, "properties": { "text": { "type": "string" }, "info": { "type": "string" }, "std_err": { "type": "boolean" } }, "required": [ "info", "std_err", "text" ], "title": "metric" } } }
o83276
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerIngress": { "description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.", "properties": { "hostname": { "description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)", "type": "string" }, "ip": { "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerStatus": { "description": "LoadBalancerStatus represents the status of a load-balancer.", "properties": { "ingress": { "description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerIngress" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference": { "description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.", "properties": { "apiGroup": { "description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.", "type": "string" }, "kind": { "description": "Kind is the type of resource being referenced", "type": "string" }, "name": { "description": "Name is the name of resource being referenced", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_HTTPIngressPath": { "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.", "properties": { "backend": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_IngressBackend", "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to." }, "path": { "description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.", "type": "string" }, "pathType": { "description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types. Defaults to ImplementationSpecific.", "type": "string" } }, "required": [ "backend" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_HTTPIngressRuleValue": { "description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.", "properties": { "paths": { "description": "A collection of paths that map requests to backends.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_HTTPIngressPath" }, "type": "array" } }, "required": [ "paths" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_IngressBackend": { "description": "IngressBackend describes all endpoints for a given service and port.", "properties": { "resource": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference", "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified." }, "serviceName": { "description": "Specifies the name of the referenced service.", "type": "string" }, "servicePort": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Specifies the port of the referenced service." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_IngressRule": { "description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.", "properties": { "host": { "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.", "type": "string" }, "http": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_HTTPIngressRuleValue" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_IngressSpec": { "description": "IngressSpec describes the Ingress the user wishes to exist.", "properties": { "backend": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_IngressBackend", "description": "A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default." }, "ingressClassName": { "description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.", "type": "string" }, "rules": { "description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_IngressRule" }, "type": "array" }, "tls": { "description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_IngressTLS" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_IngressStatus": { "description": "IngressStatus describe the current state of the Ingress.", "properties": { "loadBalancer": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerStatus", "description": "LoadBalancer contains the current status of the load-balancer." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_IngressTLS": { "description": "IngressTLS describes the transport layer security associated with an Ingress.", "properties": { "hosts": { "description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", "items": { "type": "string" }, "type": "array" }, "secretName": { "description": "SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. DEPRECATED - This group version of Ingress is deprecated by networking.k8s.io/v1beta1 Ingress. See the release notes for more information.", "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": [ "extensions/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": [ "Ingress" ], "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_extensions_v1beta1_IngressSpec", "description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_IngressStatus", "description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "extensions", "kind": "Ingress", "version": "v1beta1" } ] }
kb_436_Normalized
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "base": { "description": "The base of the triangle (for triangle shape)", "type": "number" }, "height": { "description": "The height of the triangle (for triangle shape)", "type": "number" }, "length": { "description": "The length of the rectangle (for rectangle shape)", "type": "number" }, "radius": { "description": "The radius of the circle (for circle shape)", "type": "number" }, "width": { "description": "The width of the rectangle (for rectangle shape)", "type": "number" } }, "required": [ "radius", "length", "width", "base", "height" ], "type": "object" }, "shape": { "description": "The shape for which area is to be calculated", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_106b898c
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "sequence", "link": "account-sequence-number", "description": "An account transaction sequence number", "type": "integer", "minimum": 1 }
o89152
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "responseCode": { "type": "integer", "minimum": 100, "maximum": 599 }, "verificationType": { "type": "string", "enum": [ "facebook", "fitbit", "none", "twilio", "alexa" ] }, "verificationCode": { "type": "string", "maxLength": 32767 }, "waitForReply": { "type": "boolean" }, "basicAuthUsername": { "type": "string", "maxLength": 255 }, "basicAuthPassword": { "type": "string", "maxLength": 255 } }, "additionalProperties": false }
o9966
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "geometries": { "$ref": "#/definitions/GeometriesType" }, "version": { "type": "string" } }, "definitions": { "GeometriesType": { "type": "object", "additionalProperties": false, "properties": { "geometry": { "type": "array", "items": { "$ref": "#/definitions/GeometryType" } }, "path": { "type": "string" } } }, "GeometryType": { "type": "object", "additionalProperties": false, "properties": { "directions": { "$ref": "#/definitions/Directions" }, "id": { "type": "string" }, "file": { "type": "string", "enum": [ "OK", "NONE" ] }, "path": { "type": "string" } } }, "Directions": { "type": "object", "additionalProperties": false, "properties": { "direction": { "type": "array", "items": { "$ref": "#/definitions/DirectionType" } } } }, "DirectionType": { "type": "object", "additionalProperties": false, "properties": { "movements": { "$ref": "#/definitions/Movements" }, "id": { "type": "string" }, "bound": { "type": "string", "enum": [ "NORTH", "SOUTH", "EAST", "WEST" ] }, "exitlanes": { "type": "integer" }, "speed": { "type": "integer" }, "next": { "type": "string" }, "distance": { "type": "integer" }, "name": { "type": "string" } } }, "Movements": { "type": "object", "additionalProperties": false, "properties": { "movement": { "type": "array", "items": { "$ref": "#/definitions/MovementType" } } } }, "MovementType": { "type": "object", "additionalProperties": false, "properties": { "value": { "type": "string" }, "dir": { "type": "string", "enum": [ "LT", "ST", "RT" ] }, "lanes": { "type": "integer" }, "faze": { "type": "integer" }, "overlap": { "type": "string", "enum": [ "E", "F", "A", "G", "B", "C", "H", "D" ] }, "perm": { "type": "integer" }, "display": { "type": "string", "enum": [ "BALL", "ARROW", "STDLEFT" ] } } } } }
o73952
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "subschema3", "type": "object", "properties": { "created_by": { "name": "created_by", "type": "integer" }, "id": { "name": "id", "type": "integer" } } }
o89704
{ "type": "object", "properties": { "species": { "type": "array", "description": "The species resources featured within this film." }, "url": { "type": "string", "description": "The url of this resource" }, "opening_crawl": { "type": "string", "description": "The opening crawl text at the beginning of this film." }, "director": { "type": "string", "description": "The director of this film." }, "episode_id": { "type": "integer", "description": "The episode number of this film." }, "starships": { "type": "array", "description": "The starship resources featured within this film." }, "planets": { "type": "array", "description": "The planet resources featured within this film." }, "vehicles": { "type": "array", "description": "The vehicle resources featured within this film." }, "characters": { "type": "array", "description": "The people resources featured within this film." }, "title": { "type": "string", "description": "The title of this film." }, "producer": { "type": "string", "description": "The producer(s) of this film." } }, "title": "Film", "$schema": "http://json-schema.org/draft-04/schema", "description": "A Star Wars film", "required": [ "title", "episode_id", "opening_crawl", "director", "producer", "characters", "planets", "starships", "vehicles", "species", "url" ] }
o67146
{ "additionalProperties": false, "description": "Schema for client geolocation contexts", "properties": { "altitude": { "type": [ "number", "null" ] }, "altitudeAccuracy": { "type": [ "number", "null" ] }, "bearing": { "type": [ "number", "null" ] }, "latitude": { "maximum": 90, "minimum": -90, "type": "number" }, "latitudeLongitudeAccuracy": { "type": [ "number", "null" ] }, "longitude": { "maximum": 180, "minimum": -180, "type": "number" }, "speed": { "type": [ "number", "null" ] }, "timestamp": { "type": [ "integer", "null" ] } }, "required": [ "latitude", "longitude" ], "self": { "format": "jsonschema", "name": "geolocation_context", "vendor": "com.snowplowanalytics.snowplow", "version": "1-1-0" }, "type": "object" }
sp_289_Normalized
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape (for triangle)", "type": "number" }, "height": { "description": "The height of the shape (for triangle)", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "width", "height", "radius" ], "type": "object" }, "shape": { "description": "The shape (e.g. rectangle, circle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_59aeb8e9
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base length 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" }, "side": { "description": "The side length of the square", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape (circle, square, triangle, rectangle)", "type": "string" } }, "type": "object" }
calculate_area_a9125cf8
{ "properties": { "end_time": { "description": "The end time of the event", "type": "string" }, "location": { "description": "The location of the event", "type": "string" }, "participants": { "description": "The participants of the event", "items": { "type": "string" }, "type": "array" }, "start_time": { "description": "The start time of the event", "type": "string" }, "title": { "description": "The title of the event", "type": "string" } }, "required": [ "title", "start_time", "end_time" ], "type": "object" }
create_calendar_event_5d98f59d
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "metadata": { "type": "object", "properties": { "host": { "type": "string" }, "protocol": { "type": "string" }, "httpVerb": { "type": "string" }, "host header": { "type": "string" } }, "required": [ "host", "protocol", "httpVerb", "host header" ] }, "probes": { "type": "array", "items": { "type": "object", "properties": { "seq": { "type": "string" }, "httpStatus": { "type": "string" }, "bytes": { "type": "string" }, "rtt": { "type": "string" } }, "required": [ "seq", "httpStatus", "bytes", "rtt" ] } } }, "required": [ "metadata", "probes" ] }
o67288
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Product set", "type": "array", "items": { "title": "Product", "type": "object", "properties": { "id": { "description": "The unique identifier for a product", "type": "number" }, "name": { "type": "string" }, "price": { "type": "number", "exclusiveMinimum": 0 }, "tags": { "type": "array", "items": { "type": "string" }, "minItems": 1, "_uniqueItems": true }, "dimensions": { "type": "object", "properties": { "length": { "type": "number" }, "width": { "type": "number" }, "height": { "type": "number" } }, "required": [ "length", "width", "height" ] }, "warehouseLocation": { "description": "Coordinates of the warehouse with the product" } }, "required": [ "id", "name", "price" ] } }
o39225
{ "$schema": "http://json-schema.org/draft-04/schema#", "name": "Package", "type": "object", "additionalProperties": false, "required": [ "name", "description" ], "properties": { "name": { "type": "string", "description": "Package name, including 'vendor-name/' prefix." }, "type": { "description": "Package type, either 'library' for common packages, 'composer-plugin' for plugins, 'metapackage' for empty packages, or a custom type ([a-z0-9-]+) defined by whatever project this package applies to.", "type": "string" }, "target-dir": { "description": "DEPRECATED: Forces the package to be installed into the given subdirectory path. This is used for autoloading PSR-0 packages that do not contain their full path. Use forward slashes for cross-platform compatibility.", "type": "string" }, "description": { "type": "string", "description": "Short package description." }, "keywords": { "type": "array", "items": { "type": "string", "description": "A tag/keyword that this package relates to." } }, "homepage": { "type": "string", "description": "Homepage URL for the project.", "format": "uri" }, "readme": { "type": "string", "description": "Relative path to the readme document." }, "version": { "type": "string", "description": "Package version, see https://getcomposer.org/doc/04-schema.md#version for more info on valid schemes." }, "time": { "type": "string", "description": "Package release date, in 'YYYY-MM-DD', 'YYYY-MM-DD HH:MM:SS' or 'YYYY-MM-DDTHH:MM:SSZ' format." }, "license": { "type": [ "string", "array" ], "description": "License name. Or an array of license names." }, "authors": { "$ref": "#/definitions/authors" }, "require": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that are required to run this package.", "additionalProperties": { "type": "string" } }, "replace": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that can be replaced by this package.", "additionalProperties": { "type": "string" } }, "conflict": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that conflict with this package.", "additionalProperties": { "type": "string" } }, "provide": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that this package provides in addition to this package's name.", "additionalProperties": { "type": "string" } }, "require-dev": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that this package requires for developing it (testing tools and such).", "additionalProperties": { "type": "string" } }, "suggest": { "type": "object", "description": "This is a hash of package name (keys) and descriptions (values) that this package suggests work well with it (this will be suggested to the user during installation).", "additionalProperties": { "type": "string" } }, "config": { "type": "object", "description": "Composer options.", "properties": { "process-timeout": { "type": "integer", "description": "The timeout in seconds for process executions, defaults to 300 (5mins)." }, "use-include-path": { "type": "boolean", "description": "If true, the Composer autoloader will also look for classes in the PHP include path." }, "preferred-install": { "type": [ "string", "object" ], "description": "The install method Composer will prefer to use, defaults to auto and can be any of source, dist, auto, or a hash of {\"pattern\": \"preference\"}." }, "notify-on-install": { "type": "boolean", "description": "Composer allows repositories to define a notification URL, so that they get notified whenever a package from that repository is installed. This option allows you to disable that behaviour, defaults to true." }, "github-protocols": { "type": "array", "description": "A list of protocols to use for github.com clones, in priority order, defaults to [\"git\", \"https\", \"http\"].", "items": { "type": "string" } }, "github-oauth": { "type": "object", "description": "A hash of domain name => github API oauth tokens, typically {\"github.com\":\"<token>\"}.", "additionalProperties": { "type": "string" } }, "gitlab-oauth": { "type": "object", "description": "A hash of domain name => gitlab API oauth tokens, typically {\"gitlab.com\":\"<token>\"}.", "additionalProperties": { "type": "string" } }, "gitlab-token": { "type": "object", "description": "A hash of domain name => gitlab private tokens, typically {\"gitlab.com\":\"<token>\"}.", "additionalProperties": true }, "disable-tls": { "type": "boolean", "description": "Defaults to `false`. If set to true all HTTPS URLs will be tried with HTTP instead and no network level encryption is performed. Enabling this is a security risk and is NOT recommended. The better way is to enable the php_openssl extension in php.ini." }, "secure-http": { "type": "boolean", "description": "Defaults to `true`. If set to true only HTTPS URLs are allowed to be downloaded via Composer. If you really absolutely need HTTP access to something then you can disable it, but using \"Let's Encrypt\" to get a free SSL certificate is generally a better alternative." }, "cafile": { "type": "string", "description": "A way to set the path to the openssl CA file. In PHP 5.6+ you should rather set this via openssl.cafile in php.ini, although PHP 5.6+ should be able to detect your system CA file automatically." }, "capath": { "type": "string", "description": "If cafile is not specified or if the certificate is not found there, the directory pointed to by capath is searched for a suitable certificate. capath must be a correctly hashed certificate directory." }, "http-basic": { "type": "object", "description": "A hash of domain name => {\"username\": \"...\", \"password\": \"...\"}.", "additionalProperties": { "type": "object", "required": [ "username", "password" ], "properties": { "username": { "type": "string", "description": "The username used for HTTP Basic authentication" }, "password": { "type": "string", "description": "The password used for HTTP Basic authentication" } } } }, "store-auths": { "type": [ "string", "boolean" ], "description": "What to do after prompting for authentication, one of: true (store), false (do not store) or \"prompt\" (ask every time), defaults to prompt." }, "platform": { "type": "object", "description": "This is a hash of package name (keys) and version (values) that will be used to mock the platform packages on this machine.", "additionalProperties": { "type": "string" } }, "vendor-dir": { "type": "string", "description": "The location where all packages are installed, defaults to \"vendor\"." }, "bin-dir": { "type": "string", "description": "The location where all binaries are linked, defaults to \"vendor/bin\"." }, "data-dir": { "type": "string", "description": "The location where old phar files are stored, defaults to \"$home\" except on XDG Base Directory compliant unixes." }, "cache-dir": { "type": "string", "description": "The location where all caches are located, defaults to \"~/.composer/cache\" on *nix and \"%LOCALAPPDATA%\\Composer\" on windows." }, "cache-files-dir": { "type": "string", "description": "The location where files (zip downloads) are cached, defaults to \"{$cache-dir}/files\"." }, "cache-repo-dir": { "type": "string", "description": "The location where repo (git/hg repo clones) are cached, defaults to \"{$cache-dir}/repo\"." }, "cache-vcs-dir": { "type": "string", "description": "The location where vcs infos (git clones, github api calls, etc. when reading vcs repos) are cached, defaults to \"{$cache-dir}/vcs\"." }, "cache-ttl": { "type": "integer", "description": "The default cache time-to-live, defaults to 15552000 (6 months)." }, "cache-files-ttl": { "type": "integer", "description": "The cache time-to-live for files, defaults to the value of cache-ttl." }, "cache-files-maxsize": { "type": [ "string", "integer" ], "description": "The cache max size for the files cache, defaults to \"300MiB\"." }, "bin-compat": { "enum": [ "auto", "full" ], "description": "The compatibility of the binaries, defaults to \"auto\" (automatically guessed) and can be \"full\" (compatible with both Windows and Unix-based systems)." }, "discard-changes": { "type": [ "string", "boolean" ], "description": "The default style of handling dirty updates, defaults to false and can be any of true, false or \"stash\"." }, "autoloader-suffix": { "type": "string", "description": "Optional string to be used as a suffix for the generated Composer autoloader. When null a random one will be generated." }, "optimize-autoloader": { "type": "boolean", "description": "Always optimize when dumping the autoloader." }, "prepend-autoloader": { "type": "boolean", "description": "If false, the composer autoloader will not be prepended to existing autoloaders, defaults to true." }, "classmap-authoritative": { "type": "boolean", "description": "If true, the composer autoloader will not scan the filesystem for classes that are not found in the class map, defaults to false." }, "apcu-autoloader": { "type": "boolean", "description": "If true, the Composer autoloader will check for APCu and use it to cache found/not-found classes when the extension is enabled, defaults to false." }, "github-domains": { "type": "array", "description": "A list of domains to use in github mode. This is used for GitHub Enterprise setups, defaults to [\"github.com\"].", "items": { "type": "string" } }, "github-expose-hostname": { "type": "boolean", "description": "Defaults to true. If set to false, the OAuth tokens created to access the github API will have a date instead of the machine hostname." }, "gitlab-domains": { "type": "array", "description": "A list of domains to use in gitlab mode. This is used for custom GitLab setups, defaults to [\"gitlab.com\"].", "items": { "type": "string" } }, "archive-format": { "type": "string", "description": "The default archiving format when not provided on cli, defaults to \"tar\"." }, "archive-dir": { "type": "string", "description": "The default archive path when not provided on cli, defaults to \".\"." }, "htaccess-protect": { "type": "boolean", "description": "Defaults to true. If set to false, Composer will not create .htaccess files in the composer home, cache, and data directories." }, "sort-packages": { "type": "boolean", "description": "Defaults to false. If set to true, Composer will sort packages when adding/updating a new dependency." } } }, "extra": { "type": [ "object", "array" ], "description": "Arbitrary extra data that can be used by plugins, for example, package of type composer-plugin may have a 'class' key defining an installer class name.", "additionalProperties": true }, "autoload": { "$ref": "#/definitions/autoload" }, "autoload-dev": { "type": "object", "description": "Description of additional autoload rules for development purpose (eg. a test suite).", "properties": { "psr-0": { "type": "object", "description": "This is a hash of namespaces (keys) and the directories they can be found into (values, can be arrays of paths) by the autoloader.", "additionalProperties": { "type": [ "string", "array" ], "items": { "type": "string" } } }, "psr-4": { "type": "object", "description": "This is a hash of namespaces (keys) and the PSR-4 directories they can map to (values, can be arrays of paths) by the autoloader.", "additionalProperties": { "type": [ "string", "array" ], "items": { "type": "string" } } }, "classmap": { "type": "array", "description": "This is an array of directories that contain classes to be included in the class-map generation process." }, "files": { "type": "array", "description": "This is an array of files that are always required on every request." } } }, "archive": { "type": [ "object" ], "description": "Options for creating package archives for distribution.", "properties": { "exclude": { "type": "array", "description": "A list of patterns for paths to exclude or include if prefixed with an exclamation mark." } } }, "repositories": { "type": [ "object", "array" ], "description": "A set of additional repositories where packages can be found.", "additionalProperties": { "oneOf": [ { "$ref": "#/definitions/repository" }, { "type": "boolean", "enum": [ false ] } ] }, "items": { "oneOf": [ { "$ref": "#/definitions/repository" }, { "type": "object", "additionalProperties": { "type": "boolean", "enum": [ false ] }, "minProperties": 1, "maxProperties": 1 } ] } }, "minimum-stability": { "type": [ "string" ], "description": "The minimum stability the packages must have to be install-able. Possible values are: dev, alpha, beta, RC, stable.", "pattern": "^dev|alpha|beta|rc|RC|stable$" }, "prefer-stable": { "type": [ "boolean" ], "description": "If set to true, stable packages will be preferred to dev packages when possible, even if the minimum-stability allows unstable packages." }, "bin": { "type": [ "string", "array" ], "description": "A set of files, or a single file, that should be treated as binaries and symlinked into bin-dir (from config).", "items": { "type": "string" } }, "include-path": { "type": [ "array" ], "description": "DEPRECATED: A list of directories which should get added to PHP's include path. This is only present to support legacy projects, and all new code should preferably use autoloading.", "items": { "type": "string" } }, "scripts": { "type": [ "object" ], "description": "Script listeners that will be executed before/after some events.", "properties": { "pre-install-cmd": { "type": [ "array", "string" ], "description": "Occurs before the install command is executed, contains one or more Class::method callables or shell commands." }, "post-install-cmd": { "type": [ "array", "string" ], "description": "Occurs after the install command is executed, contains one or more Class::method callables or shell commands." }, "pre-update-cmd": { "type": [ "array", "string" ], "description": "Occurs before the update command is executed, contains one or more Class::method callables or shell commands." }, "post-update-cmd": { "type": [ "array", "string" ], "description": "Occurs after the update command is executed, contains one or more Class::method callables or shell commands." }, "pre-status-cmd": { "type": [ "array", "string" ], "description": "Occurs before the status command is executed, contains one or more Class::method callables or shell commands." }, "post-status-cmd": { "type": [ "array", "string" ], "description": "Occurs after the status command is executed, contains one or more Class::method callables or shell commands." }, "pre-package-install": { "type": [ "array", "string" ], "description": "Occurs before a package is installed, contains one or more Class::method callables or shell commands." }, "post-package-install": { "type": [ "array", "string" ], "description": "Occurs after a package is installed, contains one or more Class::method callables or shell commands." }, "pre-package-update": { "type": [ "array", "string" ], "description": "Occurs before a package is updated, contains one or more Class::method callables or shell commands." }, "post-package-update": { "type": [ "array", "string" ], "description": "Occurs after a package is updated, contains one or more Class::method callables or shell commands." }, "pre-package-uninstall": { "type": [ "array", "string" ], "description": "Occurs before a package has been uninstalled, contains one or more Class::method callables or shell commands." }, "post-package-uninstall": { "type": [ "array", "string" ], "description": "Occurs after a package has been uninstalled, contains one or more Class::method callables or shell commands." }, "pre-autoload-dump": { "type": [ "array", "string" ], "description": "Occurs before the autoloader is dumped, contains one or more Class::method callables or shell commands." }, "post-autoload-dump": { "type": [ "array", "string" ], "description": "Occurs after the autoloader is dumped, contains one or more Class::method callables or shell commands." }, "post-root-package-install": { "type": [ "array", "string" ], "description": "Occurs after the root-package is installed, contains one or more Class::method callables or shell commands." }, "post-create-project-cmd": { "type": [ "array", "string" ], "description": "Occurs after the create-project command is executed, contains one or more Class::method callables or shell commands." } } }, "scripts-descriptions": { "type": [ "object" ], "description": "Descriptions for custom commands, shown in console help.", "additionalProperties": { "type": "string" } }, "support": { "type": "object", "properties": { "email": { "type": "string", "description": "Email address for support.", "format": "email" }, "issues": { "type": "string", "description": "URL to the issue tracker.", "format": "uri" }, "forum": { "type": "string", "description": "URL to the forum.", "format": "uri" }, "wiki": { "type": "string", "description": "URL to the wiki.", "format": "uri" }, "irc": { "type": "string", "description": "IRC channel for support, as irc://server/channel.", "format": "uri" }, "source": { "type": "string", "description": "URL to browse or download the sources.", "format": "uri" }, "docs": { "type": "string", "description": "URL to the documentation.", "format": "uri" }, "rss": { "type": "string", "description": "URL to the RSS feed.", "format": "uri" } } }, "non-feature-branches": { "type": [ "array" ], "description": "A set of string or regex patterns for non-numeric branch names that will not be handled as feature branches.", "items": { "type": "string" } }, "abandoned": { "type": [ "boolean", "string" ], "description": "Indicates whether this package has been abandoned, it can be boolean or a package name/URL pointing to a recommended alternative. Defaults to false." }, "_comment": { "type": [ "array", "string" ], "description": "A key to store comments in" } }, "definitions": { "authors": { "type": "array", "description": "List of authors that contributed to the package. This is typically the main maintainers, not the full list.", "items": { "type": "object", "additionalProperties": false, "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Full name of the author." }, "email": { "type": "string", "description": "Email address of the author.", "format": "email" }, "homepage": { "type": "string", "description": "Homepage URL for the author.", "format": "uri" }, "role": { "type": "string", "description": "Author's role in the project." } } } }, "autoload": { "type": "object", "description": "Description of how the package can be autoloaded.", "properties": { "psr-0": { "type": "object", "description": "This is a hash of namespaces (keys) and the directories they can be found in (values, can be arrays of paths) by the autoloader.", "additionalProperties": { "type": [ "string", "array" ], "items": { "type": "string" } } }, "psr-4": { "type": "object", "description": "This is a hash of namespaces (keys) and the PSR-4 directories they can map to (values, can be arrays of paths) by the autoloader.", "additionalProperties": { "type": [ "string", "array" ], "items": { "type": "string" } } }, "classmap": { "type": "array", "description": "This is an array of directories that contain classes to be included in the class-map generation process." }, "files": { "type": "array", "description": "This is an array of files that are always required on every request." }, "exclude-from-classmap": { "type": "array", "description": "This is an array of patterns to exclude from autoload classmap generation. (e.g. \"exclude-from-classmap\": [\"/test/\", \"/tests/\", \"/Tests/\"]" } } }, "repository": { "type": "object", "oneOf": [ { "$ref": "#/definitions/composer-repository" }, { "$ref": "#/definitions/vcs-repository" }, { "$ref": "#/definitions/path-repository" }, { "$ref": "#/definitions/artifact-repository" }, { "$ref": "#/definitions/pear-repository" }, { "$ref": "#/definitions/package-repository" } ] }, "composer-repository": { "type": "object", "required": [ "type", "url" ], "properties": { "type": { "type": "string", "enum": [ "composer" ] }, "url": { "type": "string" }, "options": { "type": "object", "additionalProperties": true }, "allow_ssl_downgrade": { "type": "boolean" }, "force-lazy-providers": { "type": "boolean" } } }, "vcs-repository": { "type": "object", "required": [ "type", "url" ], "properties": { "type": { "type": "string", "enum": [ "vcs", "github", "git", "gitlab", "git-bitbucket", "hg", "hg-bitbucket", "fossil", "perforce", "svn" ] }, "url": { "type": "string" }, "no-api": { "type": "boolean" }, "secure-http": { "type": "boolean" }, "svn-cache-credentials": { "type": "boolean" }, "trunk-path": { "type": [ "string", "boolean" ] }, "branches-path": { "type": [ "string", "boolean" ] }, "tags-path": { "type": [ "string", "boolean" ] }, "package-path": { "type": "string" }, "depot": { "type": "string" }, "branch": { "type": "string" }, "unique_perforce_client_name": { "type": "string" }, "p4user": { "type": "string" }, "p4password": { "type": "string" } } }, "path-repository": { "type": "object", "required": [ "type", "url" ], "properties": { "type": { "type": "string", "enum": [ "path" ] }, "url": { "type": "string" }, "options": { "type": "object", "properties": { "symlink": { "type": [ "boolean", "null" ] } }, "additionalProperties": true } } }, "artifact-repository": { "type": "object", "required": [ "type", "url" ], "properties": { "type": { "type": "string", "enum": [ "artifact" ] }, "url": { "type": "string" } } }, "pear-repository": { "type": "object", "required": [ "type", "url" ], "properties": { "type": { "type": "string", "enum": [ "pear" ] }, "url": { "type": "string" }, "vendor-alias": { "type": "string" } } }, "package-repository": { "type": "object", "required": [ "type", "package" ], "properties": { "type": { "type": "string", "enum": [ "package" ] }, "package": { "oneOf": [ { "$ref": "#/definitions/inline-package" }, { "type": "array", "items": { "$ref": "#/definitions/inline-package" } } ] } } }, "inline-package": { "type": "object", "required": [ "name", "version" ], "properties": { "name": { "type": "string", "description": "Package name, including 'vendor-name/' prefix." }, "type": { "type": "string" }, "target-dir": { "description": "DEPRECATED: Forces the package to be installed into the given subdirectory path. This is used for autoloading PSR-0 packages that do not contain their full path. Use forward slashes for cross-platform compatibility.", "type": "string" }, "description": { "type": "string" }, "keywords": { "type": "array", "items": { "type": "string" } }, "homepage": { "type": "string", "format": "uri" }, "version": { "type": "string" }, "time": { "type": "string" }, "license": { "type": [ "string", "array" ] }, "authors": { "$ref": "#/definitions/authors" }, "require": { "type": "object", "additionalProperties": { "type": "string" } }, "replace": { "type": "object", "additionalProperties": { "type": "string" } }, "conflict": { "type": "object", "additionalProperties": { "type": "string" } }, "provide": { "type": "object", "additionalProperties": { "type": "string" } }, "require-dev": { "type": "object", "additionalProperties": { "type": "string" } }, "suggest": { "type": "object", "additionalProperties": { "type": "string" } }, "extra": { "type": [ "object", "array" ], "additionalProperties": true }, "autoload": { "$ref": "#/definitions/autoload" }, "archive": { "type": [ "object" ], "properties": { "exclude": { "type": "array" } } }, "bin": { "type": [ "string", "array" ], "description": "A set of files, or a single file, that should be treated as binaries and symlinked into bin-dir (from config).", "items": { "type": "string" } }, "include-path": { "type": [ "array" ], "description": "DEPRECATED: A list of directories which should get added to PHP's include path. This is only present to support legacy projects, and all new code should preferably use autoloading.", "items": { "type": "string" } }, "source": { "type": "object", "required": [ "type", "url", "reference" ], "properties": { "type": { "type": "string" }, "url": { "type": "string" }, "reference": { "type": "string" }, "mirrors": { "type": "array" } } }, "dist": { "type": "object", "required": [ "type", "url" ], "properties": { "type": { "type": "string" }, "url": { "type": "string" }, "reference": { "type": "string" }, "shasum": { "type": "string" }, "mirrors": { "type": "array" } } } }, "additionalProperties": true } } }
o83854
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "deaths": { "type": "object", "properties": { "red": { "type": "number" }, "blue": { "type": "number" }, "green": { "type": "number" } } }, "kills": { "type": "object", "properties": { "red": { "type": "number" }, "blue": { "type": "number" }, "green": { "type": "number" } } }, "maps": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "number" }, "type": { "type": "string" }, "deaths": { "type": "object", "properties": { "red": { "type": "number" }, "blue": { "type": "number" }, "green": { "type": "number" } } }, "kills": { "type": "object", "properties": { "red": { "type": "number" }, "blue": { "type": "number" }, "green": { "type": "number" } } } }, "required": [ "id", "type", "deaths", "kills" ] } } }, "required": [ "id", "deaths", "kills", "maps" ] }, "properties": {}, "additionalProperties": false }
o45227
{ "description": "Local represents directly-attached storage with node affinity (Beta feature)", "properties": { "fsType": { "description": "Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a fileystem if unspecified.", "type": [ "string", "null" ] }, "path": { "description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).", "type": [ "string", "null" ] } }, "required": [ "path" ], "type": "object" }
kb_547_Normalized
{ "definitions": { "user": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when user was created", "format": "date-time", "type": [ "string" ] }, "id": { "description": "unique identifier of user", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/user/definitions/id" }, { "$ref": "#/definitions/user/definitions/name" } ] }, "name": { "description": "unique name of user", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when user was updated", "format": "date-time", "type": [ "string" ] } }, "description": "FIXME", "links": [ { "description": "Create a new user.", "href": "/users", "method": "POST", "rel": "create", "schema": { "properties": {}, "type": [ "object" ] }, "title": "Create" }, { "description": "Delete an existing user.", "href": "/users/{(%23%2Fdefinitions%2Fuser%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for existing user.", "href": "/users/{(%23%2Fdefinitions%2Fuser%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing users.", "href": "/users", "method": "GET", "rel": "instances", "title": "List" }, { "description": "Update an existing user.", "href": "/users/{(%23%2Fdefinitions%2Fuser%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": {}, "type": [ "object" ] }, "title": "Update" } ], "properties": { "created_at": { "$ref": "#/definitions/user/definitions/created_at" }, "id": { "$ref": "#/definitions/user/definitions/id" }, "name": { "$ref": "#/definitions/user/definitions/name" }, "updated_at": { "$ref": "#/definitions/user/definitions/updated_at" } }, "stability": "prototype", "strictProperties": true, "title": "FIXME - User", "type": [ "object" ] } }, "description": "例のAPI", "links": [ { "href": "http://api.example.com", "rel": "self" } ], "properties": { "user": { "$ref": "#/definitions/user" } }, "title": "Example API", "type": [ "object" ] }
o70306
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "rules": { "anyOf": [ { "type": "object", "minItems": 1 }, { "type": "array" } ], "_uniqueItems": true, "items": { "type": "string" } }, "generic": { "type": "string" } }, "required": [ "rules", "generic" ] }
o60839
{ "title": "heightModelInfo", "type": "object", "$schema": "http://json-schema.org/draft-04/schema", "description": "An object that defines the characteristics of the vertical coordinate system used by the web scene.", "properties": { "heightModel": { "type": "string", "description": "The surface type or height model of the vertical coordinate system.", "enum": [ "ellipsoidal", "gravity_related_height" ], "default": "ellipsoidal" }, "heightUnit": { "type": "string", "description": "The unit of the vertical coordinate system.<a href=\"#heightUnit\"><sup>1</sup></a>", "enum": [ "150-kilometers", "50-kilometers", "benoit-1895-b-chain", "clarke-foot", "clarke-link", "clarke-yard", "foot", "gold-coast-foot", "indian-1937-yard", "indian-yard", "meter", "sears-1922-truncated-chain", "sears-chain", "sears-foot", "sears-yard", "us-foot" ] }, "vertCRS": { "type": "string", "description": "(Optional) The datum realization of the vertical coordinate system." } }, "required": [ "heightModel", "heightUnit" ], "additionalProperties": false, "esriDocumentation": { "additionalInformation": "The height model info defines the characteristics of the vertical coordinate system used by the scene, and is used to avoid rendering layers that have incompatible vertical coordinate systems.\n\nA height model info is defined by a surface type, a vertical unit and an optional datum realization.<br><a id=\"unit\"><sup>1</sup></a>Supported units: `benoit-1895-b-chain`,`centimeter`,`clarke-foot`,`clarke-link`,`clarke-yard`,`decimeter`,`foot`,`gold-coast-foot`,`indian-1937-yard`,`indian-yard`,`kilometer`,`meter`,`millimeter`,`sears-1922-truncated-chain`,`sears-chain`,`sears-foot`,`sears-yard`,`us-foot`,`us-inch`,`us-mile`,`us-yard`", "examples": [ { "title": "heightModelInfo", "code": { "heightModelInfo": { "heightModel": "gravity_related_height", "heightUnit": "meter", "vertCRS": "EGM2008_Geoid" } } } ] } }
o90215
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "IOC-Country-Code": { "enum": [ "AFG", "AHO", "ALB", "ALG" ], "type": "string", "description": "Three-letter country code of 212 countries and areas, used by the International Olympic Committee (IOC)." } }, "properties": { "IOC-Country-Code": { "$ref": "#/definitions/IOC-Country-Code" } }, "required": [ "IOC-Country-Code" ] }
o41682
{ "title": "Feature", "description": "A MWF feature component's schema definition.", "type": "object", "oneOf": [ { "$ref": "#/definitions/left" }, { "$ref": "#/definitions/center" }, { "$ref": "#/definitions/right" } ], "required": [ "content" ], "properties": { "content": { "type": "object", "properties": { "heading": { "type": "string" }, "body": { "type": "string" }, "badge": { "type": "object", "properties": { "config": { "type": "object", "properties": { "size": { "type": "string", "enum": [ "small", "large" ] }, "type": { "type": "string", "enum": [ "highlight", "lowlight" ] } }, "required": [ "size", "type" ] }, "content": { "type": "object", "properties": { "text": { "type": "string" } }, "required": [ "text" ] } }, "required": [ "config", "content" ] }, "image": { "type": "object", "properties": { "vp6": { "type": "string" }, "vp5": { "type": "string" }, "vp4": { "type": "string" }, "vp3": { "type": "string" }, "vp2": { "type": "string" }, "vp1": { "type": "string" }, "alt": { "type": "string" } }, "required": [ "vp1", "vp2", "vp3", "vp4", "vp5", "vp6", "alt" ] }, "call-to-action": { "type": "object", "properties": { "content": { "type": "object", "properties": { "text": { "type": "string" }, "href": { "type": "string" } }, "required": [ "text", "href" ] } } } }, "required": [ "heading", "body", "image" ] } }, "definitions": { "left": { "properties": { "config": { "type": "object", "properties": { "align": { "type": "string", "enum": [ "left" ] } }, "required": [ "align" ] } }, "required": [ "config" ] }, "center": { "properties": { "config": { "type": "object", "properties": { "align": { "type": "string", "enum": [ "center" ] } }, "required": [ "align" ] } }, "required": [ "config" ] }, "right": { "properties": { "config": { "type": "object", "properties": { "align": { "type": "string", "enum": [ "right" ] } }, "required": [ "align" ] } }, "required": [ "config" ] } } }
o85188
{ "properties": { "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 event", "type": "string" } }, "required": [ "title", "start_datetime", "end_datetime", "location" ], "type": "object" }
create_calendar_event_c151e619
{ "properties": { "cpxinstanceavailable": { "readonly": true, "type": "integer" }, "cpxinstancetotal": { "readonly": true, "type": "integer" }, "enterprisebandwidthavailable": { "readonly": true, "type": "integer" }, "enterprisebandwidthtotal": { "readonly": true, "type": "integer" }, "enterprisecpuavailable": { "readonly": true, "type": "integer" }, "enterprisecputotal": { "readonly": true, "type": "integer" }, "instanceavailable": { "readonly": true, "type": "integer" }, "instancetotal": { "readonly": true, "type": "integer" }, "platinumbandwidthavailable": { "readonly": true, "type": "integer" }, "platinumbandwidthtotal": { "readonly": true, "type": "integer" }, "platinumcpuavailable": { "readonly": true, "type": "integer" }, "platinumcputotal": { "readonly": true, "type": "integer" }, "standardbandwidthavailable": { "readonly": true, "type": "integer" }, "standardbandwidthtotal": { "readonly": true, "type": "integer" }, "standardcpuavailable": { "readonly": true, "type": "integer" }, "standardcputotal": { "readonly": true, "type": "integer" }, "vpx100000eavailable": { "readonly": true, "type": "integer" }, "vpx100000etotal": { "readonly": true, "type": "integer" }, "vpx100000pavailable": { "readonly": true, "type": "integer" }, "vpx100000ptotal": { "readonly": true, "type": "integer" }, "vpx100000savailable": { "readonly": true, "type": "integer" }, "vpx100000stotal": { "readonly": true, "type": "integer" }, "vpx10000eavailable": { "readonly": true, "type": "integer" }, "vpx10000etotal": { "readonly": true, "type": "integer" }, "vpx10000pavailable": { "readonly": true, "type": "integer" }, "vpx10000ptotal": { "readonly": true, "type": "integer" }, "vpx10000savailable": { "readonly": true, "type": "integer" }, "vpx10000stotal": { "readonly": true, "type": "integer" }, "vpx1000eavailable": { "readonly": true, "type": "integer" }, "vpx1000etotal": { "readonly": true, "type": "integer" }, "vpx1000pavailable": { "readonly": true, "type": "integer" }, "vpx1000ptotal": { "readonly": true, "type": "integer" }, "vpx1000savailable": { "readonly": true, "type": "integer" }, "vpx1000stotal": { "readonly": true, "type": "integer" }, "vpx100eavailable": { "readonly": true, "type": "integer" }, "vpx100etotal": { "readonly": true, "type": "integer" }, "vpx100pavailable": { "readonly": true, "type": "integer" }, "vpx100ptotal": { "readonly": true, "type": "integer" }, "vpx100savailable": { "readonly": true, "type": "integer" }, "vpx100stotal": { "readonly": true, "type": "integer" }, "vpx10eavailable": { "readonly": true, "type": "integer" }, "vpx10etotal": { "readonly": true, "type": "integer" }, "vpx10pavailable": { "readonly": true, "type": "integer" }, "vpx10ptotal": { "readonly": true, "type": "integer" }, "vpx10savailable": { "readonly": true, "type": "integer" }, "vpx10stotal": { "readonly": true, "type": "integer" }, "vpx15000eavailable": { "readonly": true, "type": "integer" }, "vpx15000etotal": { "readonly": true, "type": "integer" }, "vpx15000pavailable": { "readonly": true, "type": "integer" }, "vpx15000ptotal": { "readonly": true, "type": "integer" }, "vpx15000savailable": { "readonly": true, "type": "integer" }, "vpx15000stotal": { "readonly": true, "type": "integer" }, "vpx1pavailable": { "readonly": true, "type": "integer" }, "vpx1ptotal": { "readonly": true, "type": "integer" }, "vpx1savailable": { "readonly": true, "type": "integer" }, "vpx1stotal": { "readonly": true, "type": "integer" }, "vpx2000pavailable": { "readonly": true, "type": "integer" }, "vpx2000ptotal": { "readonly": true, "type": "integer" }, "vpx200eavailable": { "readonly": true, "type": "integer" }, "vpx200etotal": { "readonly": true, "type": "integer" }, "vpx200pavailable": { "readonly": true, "type": "integer" }, "vpx200ptotal": { "readonly": true, "type": "integer" }, "vpx200savailable": { "readonly": true, "type": "integer" }, "vpx200stotal": { "readonly": true, "type": "integer" }, "vpx25000eavailable": { "readonly": true, "type": "integer" }, "vpx25000etotal": { "readonly": true, "type": "integer" }, "vpx25000pavailable": { "readonly": true, "type": "integer" }, "vpx25000ptotal": { "readonly": true, "type": "integer" }, "vpx25000savailable": { "readonly": true, "type": "integer" }, "vpx25000stotal": { "readonly": true, "type": "integer" }, "vpx25eavailable": { "readonly": true, "type": "integer" }, "vpx25etotal": { "readonly": true, "type": "integer" }, "vpx25pavailable": { "readonly": true, "type": "integer" }, "vpx25ptotal": { "readonly": true, "type": "integer" }, "vpx25savailable": { "readonly": true, "type": "integer" }, "vpx25stotal": { "readonly": true, "type": "integer" }, "vpx3000eavailable": { "readonly": true, "type": "integer" }, "vpx3000etotal": { "readonly": true, "type": "integer" }, "vpx3000pavailable": { "readonly": true, "type": "integer" }, "vpx3000ptotal": { "readonly": true, "type": "integer" }, "vpx3000savailable": { "readonly": true, "type": "integer" }, "vpx3000stotal": { "readonly": true, "type": "integer" }, "vpx40000eavailable": { "readonly": true, "type": "integer" }, "vpx40000etotal": { "readonly": true, "type": "integer" }, "vpx40000pavailable": { "readonly": true, "type": "integer" }, "vpx40000ptotal": { "readonly": true, "type": "integer" }, "vpx40000savailable": { "readonly": true, "type": "integer" }, "vpx40000stotal": { "readonly": true, "type": "integer" }, "vpx4000pavailable": { "readonly": true, "type": "integer" }, "vpx4000ptotal": { "readonly": true, "type": "integer" }, "vpx5000eavailable": { "readonly": true, "type": "integer" }, "vpx5000etotal": { "readonly": true, "type": "integer" }, "vpx5000pavailable": { "readonly": true, "type": "integer" }, "vpx5000ptotal": { "readonly": true, "type": "integer" }, "vpx5000savailable": { "readonly": true, "type": "integer" }, "vpx5000stotal": { "readonly": true, "type": "integer" }, "vpx500eavailable": { "readonly": true, "type": "integer" }, "vpx500etotal": { "readonly": true, "type": "integer" }, "vpx500pavailable": { "readonly": true, "type": "integer" }, "vpx500ptotal": { "readonly": true, "type": "integer" }, "vpx500savailable": { "readonly": true, "type": "integer" }, "vpx500stotal": { "readonly": true, "type": "integer" }, "vpx50eavailable": { "readonly": true, "type": "integer" }, "vpx50etotal": { "readonly": true, "type": "integer" }, "vpx50pavailable": { "readonly": true, "type": "integer" }, "vpx50ptotal": { "readonly": true, "type": "integer" }, "vpx50savailable": { "readonly": true, "type": "integer" }, "vpx50stotal": { "readonly": true, "type": "integer" }, "vpx5pavailable": { "readonly": true, "type": "integer" }, "vpx5ptotal": { "readonly": true, "type": "integer" }, "vpx5savailable": { "readonly": true, "type": "integer" }, "vpx5stotal": { "readonly": true, "type": "integer" }, "vpx8000eavailable": { "readonly": true, "type": "integer" }, "vpx8000etotal": { "readonly": true, "type": "integer" }, "vpx8000pavailable": { "readonly": true, "type": "integer" }, "vpx8000ptotal": { "readonly": true, "type": "integer" }, "vpx8000savailable": { "readonly": true, "type": "integer" }, "vpx8000stotal": { "readonly": true, "type": "integer" } }, "title": "nslicenseserverpool", "type": "object" }
o30769
{ "additionalProperties": false, "description": "Floating IP PTR", "properties": { "floatingip": { "additionalProperties": false, "properties": { "action": { "description": "Floating IP PTR Action", "enum": [ "CREATE", "DELETE", "UPDATE", "NONE" ], "readOnly": true, "type": [ "null", "string" ] }, "description": { "description": "Description for the PTR", "maxLength": 160, "type": [ "string", "null" ] }, "id": { "description": "Floating IP PTR identifier", "pattern": "^[A-Za-z0-9\\.\\-_]{1,100}:([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}$", "readOnly": true, "type": "string" }, "links": { "additionalProperties": false, "properties": { "self": { "format": "url", "type": "string" } }, "type": "object" }, "ptrdname": { "format": "hostname", "required:": true, "type": [ "string", "null" ] }, "status": { "description": "Floating IP PTR Status", "enum": [ "ACTIVE", "PENDING", "ERROR" ], "readOnly": true, "type": [ "null", "string" ] }, "ttl": { "description": "Default time to live", "maximum": 2147483647, "minimum": 0, "type": "integer" } }, "type": "object" } }, "required": [ "floatingip" ], "title": "floatingip" }
o55334
{ "$schema": "http://json-schema.org/draft-07/schema", "$comment": "https://mutagen.io/documentation/introduction/configuration", "definitions": { "sync": { "type": "object", "properties": { "alpha": { "type": "string" }, "beta": { "type": "string" }, "mode": { "type": "string", "description": "https://mutagen.io/documentation/synchronization#modes", "enum": [ "two-way-safe", "two-way-resolved", "one-way-safe", "one-way-replica" ], "default": "two-way-safe" }, "ignore": { "type": "object", "description": "https://mutagen.io/documentation/synchronization/ignores", "properties": { "paths": { "type": "array" }, "vcs": { "type": "boolean", "description": "https://mutagen.io/documentation/synchronization/version-control-systems", "default": true } }, "additionalProperties": false }, "permissions": { "type": "object", "properties": { "defaultFileMode": { "type": [ "string", "integer" ], "description": "https://mutagen.io/documentation/synchronization/permissions#permissions" }, "defaultDirectoryMode": { "type": [ "string", "integer" ], "description": "https://mutagen.io/documentation/synchronization/permissions#permissions" }, "defaultOwner": { "type": [ "string", "integer" ], "description": "https://mutagen.io/documentation/synchronization/permissions#owners-and-groups" }, "defaultGroup": { "type": [ "string", "integer" ], "description": "https://mutagen.io/documentation/synchronization/permissions#owners-and-groups" } }, "additionalProperties": false }, "watch": { "type": "object", "description": "https://mutagen.io/documentation/synchronization/watching", "properties": { "mode": { "type": "string", "description": "https://mutagen.io/documentation/synchronization/watching#modes", "enum": [ "portable", "force-poll", "no-watch" ] }, "pollingInterval": { "type": "integer", "description": "https://mutagen.io/documentation/synchronization/watching#polling-interval", "default": 10 } }, "additionalProperties": false }, "symlink": { "type": "string", "description": "https://mutagen.io/documentation/synchronization/symbolic-links", "enum": [ "ignore", "portable", "posix-raw" ], "default": "portable" }, "stageMode": { "type": "string", "description": "https://mutagen.io/documentation/synchronization/staging", "enum": [ "mutagen", "neighboring" ], "default": "mutagen" }, "probeMode": { "type": "string", "description": "https://mutagen.io/documentation/synchronization/probing-and-scanning", "enum": [ "probe", "assume" ], "default": "probe" }, "scanMode": { "type": "string", "description": "https://mutagen.io/documentation/synchronization/probing-and-scanning", "enum": [ "accelerated", "full" ], "default": "accelerated" }, "maxStagingFileSize": { "type": "string", "description": "https://mutagen.io/documentation/synchronization/size-limits", "default": 0 }, "maxEntryCount": { "type": "string", "description": "https://mutagen.io/documentation/synchronization/size-limits", "default": 0 } }, "additionalProperties": false }, "forward": { "type": "object", "properties": { "source": { "type": "string", "description": "https://mutagen.io/documentation/forwarding" }, "destination": { "type": "string", "description": "https://mutagen.io/documentation/forwarding" } }, "additionalProperties": false } }, "properties": { "beforeCreate": { "type": "array", "description": "https://mutagen.io/documentation/projects#setup-and-teardown" }, "afterCreate": { "type": "array", "description": "https://mutagen.io/documentation/projects#setup-and-teardown" }, "afterTerminate": { "type": "array", "description": "https://mutagen.io/documentation/projects#setup-and-teardown" }, "commands": { "type": "object", "description": "Finally, to help with creating common workflows, you can also define commands in projects using the commands section. These commands can be run using the mutagen project run command, for example:\n commands:\n web-shell: docker-compose exec web bash\n see https://mutagen.io/documentation/projects#custom-commands" }, "sync": { "type": "object", "description": "https://mutagen.io/documentation/synchronization", "patternProperties": { "^[_a-zA-Z][a-zA-Z0-9_-]*$": { "type": "object", "$ref": "#/definitions/sync" } }, "$ref": "#/definitions/sync" }, "forward": { "type": "object", "description": "https://mutagen.io/documentation/forwarding", "patternProperties": { "^[_a-zA-Z][a-zA-Z0-9_-]*$": { "type": "object", "$ref": "#/definitions/forward" } } } }, "additionalProperties": false }
o55320
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "description": "A unique identifier for the asset_folder.json" }, "type": { "type": "string", "description": "The json_api type for any asset_folder.json", "pattern": "^asset_folders$" }, "attributes": { "type": "object", "properties": { "meta_attributes": { "type": "object", "description": "Description for meta_attributes" }, "updated_at": { "type": "string", "description": "Description for updated_at" }, "created_at": { "type": "string", "description": "Description for created_at" }, "deleted_at": { "type": "null", "description": "Description for deleted_at" }, "name": { "type": "string", "description": "Description for name" }, "reference": { "type": "string", "description": "Description for reference" }, "children_count": { "type": "null", "description": "Description for children_count" }, "depth": { "type": "number", "description": "Description for depth" }, "lft": { "type": "number", "description": "Description for lft" }, "rgt": { "type": "number", "description": "Description for rgt" } } }, "relationships": { "type": "object", "properties": { "asset_files": { "type": "object", "properties": { "links": { "type": "object", "properties": { "self": { "type": "string" }, "related": { "type": "string" } }, "additionalProperties": false }, "data": { "oneOf": [ { "type": "object", "description": "The id and type form a pointer into the 'included' top level document property", "properties": { "id": { "type": "string" }, "type": { "type": "string" } }, "additionalProperties": false }, { "type": "array", "items": { "type": "object", "description": "The id and type form a pointer into the 'included' top level document property", "properties": { "id": { "type": "string" }, "type": { "type": "string" } }, "additionalProperties": false } } ] }, "meta": { "type": "object", "additionalProperties": true } } }, "sub_folders": { "type": "object", "properties": { "links": { "type": "object", "properties": { "self": { "type": "string" }, "related": { "type": "string" } }, "additionalProperties": false }, "data": { "oneOf": [ { "type": "object", "description": "The id and type form a pointer into the 'included' top level document property", "properties": { "id": { "type": "string" }, "type": { "type": "string" } }, "additionalProperties": false }, { "type": "array", "items": { "type": "object", "description": "The id and type form a pointer into the 'included' top level document property", "properties": { "id": { "type": "string" }, "type": { "type": "string" } }, "additionalProperties": false } } ] }, "meta": { "type": "object", "additionalProperties": true } } } } }, "links": { "type": "object", "properties": { "self": { "type": "string" } }, "additionalProperties": false }, "meta": { "type": "object", "additionalProperties": false } }, "definitions": {} }
o75283
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "display": { "type": "object", "properties": { "resource": { "type": "string", "format": "topic", "axRole": "inlet", "description": "The topic of the resource with content of a bower.json." }, "i18nHtmlText": { "type": [ "string", "object" ], "description": "The (internationalized) HTML link text.", "default": "Browse artifact repository" } } } } }
o9406
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "EnvSensor4 tempEvent Schema", "description": "defines the structure of a temperature event in degrees Fahrenheit ", "properties": { "temp": { "description": "temperature in degrees Fahrenheit", "type": "number", "minimum": -459.67, "default": 75.0 } }, "required": [ "temp" ] }
o21768
{ "properties": { "Id": { "_id": "Id", "type": "string" }, "Warnings": { "_id": "Warnings", "items": { "type": "string" }, "type": "array" } }, "required": [ "Id" ], "type": "object" }
o48244
{ "definitions": { "emergency_contact": { "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "create_payload": { "additionalProperties": false, "description": "Expected payload needed to create an emergency contact", "properties": { "emergency_contact": { "$ref": "#/definitions/emergency_contact/definitions/emergency_contact_payload" } }, "required": [ "emergency_contact" ], "type": [ "object" ] }, "create_response": { "$ref": "#/definitions/emergency_contact/definitions/emergency_contact_response" }, "email": { "description": "An emergency contact's email address", "example": "[email protected]", "format": "email", "type": [ "string", "null" ] }, "emergency_contact_payload": { "additionalProperties": false, "description": "Expected emergency contact content needed to create an emergency contact", "properties": { "email": { "$ref": "#/definitions/emergency_contact/definitions/email" }, "first_name": { "$ref": "#/definitions/emergency_contact/definitions/first_name" }, "last_name": { "$ref": "#/definitions/emergency_contact/definitions/last_name" }, "phone": { "$ref": "#/definitions/emergency_contact/definitions/phone" }, "relationship": { "$ref": "#/definitions/emergency_contact/definitions/relationship" } }, "required": [ "first_name", "last_name", "phone", "relationship" ], "type": [ "object" ] }, "emergency_contact_response": { "description": "Response to an emergency contact show request", "oneOf": [ { "additionalProperties": false, "description": "A successful response.", "properties": { "emergency_contact": { "$ref": "#/definitions/emergency_contact" }, "reference_id": { "$ref": "#/definitions/patient/definitions/reference_id" } }, "required": [ "reference_id", "emergency_contact" ], "type": [ "object" ] }, { "additionalProperties": false, "description": "A failed response.", "properties": { "errors": { "$ref": "#/definitions/patient/definitions/errors" }, "reference_id": { "$ref": "#/definitions/patient/definitions/reference_id" } }, "required": [ "reference_id", "errors" ], "type": [ "object" ] } ], "optionalProperties": { "emergency_contact": { "$ref": "#/definitions/emergency_contact" }, "errors": { "$ref": "#/definitions/patient/definitions/errors" } }, "properties": { "emergency_contact": { "$ref": "#/definitions/emergency_contact" }, "reference_id": { "$ref": "#/definitions/patient/definitions/reference_id" } }, "type": [ "object" ] }, "first_name": { "description": "the first name of the contact", "example": "Jane", "maxLength": 255, "type": [ "string", "null" ] }, "last_name": { "description": "the last name of the contact", "example": "Jackson", "maxLength": 255, "type": [ "string", "null" ] }, "phone": { "description": "An emergency contact's phone number", "example": "617-123-5555", "pattern": "^[0-9]{3}-[0-9]{3}-[0-9]{4}$", "type": [ "string", "null" ] }, "relationship": { "description": "The relationship to the patient.", "example": "Partner", "maxLength": 255, "type": [ "string", "null" ] }, "show_response": { "$ref": "#/definitions/emergency_contact/definitions/emergency_contact_response" } }, "description": "A Patient's Emergency Contact", "links": [ { "description": "Retrieve a patient's emergency contact", "href": "/patients/{(%23%2Fdefinitions%2Fpatient%2Fdefinitions%2Fidentity)}/emergency_contact", "http_header": { "X-API-KEY": "fb0d2f7a-9a15-4cce-8822-0e92d2a9a2a0", "X-API-SECRET": "98ba7951-bd19-4db2-a9c4-b25387f66f31" }, "method": "GET", "rel": "instance", "targetSchema": { "$ref": "#/definitions/emergency_contact/definitions/show_response" }, "title": "Show" }, { "description": "Creates a new Emergency Contact for a patient", "href": "/patients/{(%23%2Fdefinitions%2Fpatient%2Fdefinitions%2Fidentity)}/emergency_contact", "http_header": { "X-API-KEY": "fb0d2f7a-9a15-4cce-8822-0e92d2a9a2a0", "X-API-SECRET": "98ba7951-bd19-4db2-a9c4-b25387f66f31" }, "method": "POST", "rel": "create", "schema": { "$ref": "#/definitions/emergency_contact/definitions/create_payload" }, "targetSchema": { "$ref": "#/definitions/emergency_contact/definitions/create_response" }, "title": "Create" } ], "properties": { "email": { "$ref": "#/definitions/emergency_contact/definitions/email" }, "first_name": { "$ref": "#/definitions/emergency_contact/definitions/first_name" }, "last_name": { "$ref": "#/definitions/emergency_contact/definitions/last_name" }, "phone": { "$ref": "#/definitions/emergency_contact/definitions/phone" }, "relationship": { "$ref": "#/definitions/emergency_contact/definitions/relationship" } }, "required": [ "first_name", "last_name", "phone", "relationship" ], "title": "Emergency Contact", "type": [ "object" ] }, "location": { "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "address": { "additionalProperties": false, "description": "The location's address", "properties": { "city": { "$ref": "#/definitions/location/definitions/city" }, "state": { "$ref": "#/definitions/location/definitions/state" }, "street_line_1": { "$ref": "#/definitions/location/definitions/street_line_1" }, "street_line_2": { "$ref": "#/definitions/location/definitions/street_line_2" }, "zip": { "$ref": "#/definitions/location/definitions/zip" } }, "type": [ "object" ] }, "city": { "description": "the city of a street address", "example": "camden", "maxLength": 255, "minLength": 1, "type": [ "string" ] }, "error": { "description": "An error explaining why an action failed", "example": "Icis::Error(Couldn't find Location with 'id'=99)", "minLength": 1, "type": [ "string" ] }, "errors": { "description": "A collection of errors", "items": { "$ref": "#/definitions/location/definitions/error" }, "type": [ "array" ] }, "identity": { "$ref": "#/definitions/location/definitions/uid" }, "name": { "description": "the name of the location", "example": "HarkenHealth Wicker Park", "maxLength": 255, "minLength": 3, "type": [ "string" ] }, "phone": { "description": "A phone number for the location", "example": "617-123-5555", "pattern": "^[0-9]{3}-[0-9]{3}-[0-9]{4}$", "type": [ "string" ] }, "reference_id": { "description": "A unique identifer for the request. This can be useful for debuggin and logging.", "example": "517b00b9-a469-87a0-fdb2-65983f733c54", "format": "uuid", "type": [ "string" ] }, "show_response": { "description": "Response to a show request", "oneOf": [ { "additionalProperties": false, "description": "A success response to a show request.", "properties": { "location": { "$ref": "#/definitions/location" }, "reference_id": { "$ref": "#/definitions/location/definitions/reference_id" } }, "required": [ "reference_id", "location" ], "type": [ "object" ] }, { "additionalProperties": false, "description": "A failure response to a show request.", "properties": { "errors": { "$ref": "#/definitions/location/definitions/errors" }, "reference_id": { "$ref": "#/definitions/location/definitions/reference_id" } }, "required": [ "reference_id", "errors" ], "type": [ "object" ] } ], "properties": { "location": { "$ref": "#/definitions/location" }, "reference_id": { "$ref": "#/definitions/location/definitions/reference_id" } }, "type": [ "object" ] }, "state": { "description": "The state of a street address", "example": "MA", "maxLength": 2, "minLength": 2, "type": [ "string" ] }, "street_line_1": { "description": "first line of a street address", "example": "33 day st.", "maxLength": 255, "minLength": 1, "type": [ "string" ] }, "street_line_2": { "description": "second line of a street address", "example": "unit #333", "maxLength": 255, "minLength": 1, "type": [ "string" ] }, "uid": { "description": "unique identifier of a location", "example": "63268a3fd22b4e1b9d806bbc424b010b", "pattern": "^[0-9a-f]{32}$", "type": [ "string" ] }, "zip": { "description": "The zip of a street address", "example": "01232", "maxLength": 10, "minLength": 5, "type": [ "string" ] } }, "description": "A Location resource represents a physical location with an address", "links": [ { "description": "Retrieve a location", "href": "/locations/{(%23%2Fdefinitions%2Flocation%2Fdefinitions%2Fidentity)}", "http_header": { "X-API-KEY": "fb0d2f7a-9a15-4cce-8822-0e92d2a9a2a0", "X-API-SECRET": "98ba7951-bd19-4db2-a9c4-b25387f66f31" }, "method": "GET", "rel": "instance", "targetSchema": { "$ref": "#/definitions/location/definitions/show_response" }, "title": "Show" } ], "properties": { "address": { "$ref": "#/definitions/location/definitions/address" }, "name": { "$ref": "#/definitions/location/definitions/name" }, "phone": { "$ref": "#/definitions/location/definitions/phone" }, "uid": { "$ref": "#/definitions/location/definitions/uid" } }, "required": [ "uid", "name" ], "title": "Location", "type": [ "object" ] }, "patient": { "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "care_team": { "description": "A collection of staff members that, with the patient, make up the patient's care team", "items": { "$ref": "#/definitions/patient/definitions/staff_member" }, "type": [ "array" ] }, "dob": { "description": "the patient's date of birth", "example": "1960-01-09", "maxLength": 10, "minLength": 10, "type": [ "string" ] }, "error": { "description": "An error explaining why an action failed", "example": "Icis::Error(Couldn't find Location with 'id'=99)", "minLength": 1, "type": [ "string" ] }, "error_response": { "additionalProperties": false, "description": "Error response to a show or search request", "properties": { "errors": { "$ref": "#/definitions/patient/definitions/errors" }, "reference_id": { "$ref": "#/definitions/patient/definitions/reference_id" } }, "required": [ "reference_id", "errors" ], "type": [ "object" ] }, "errors": { "description": "A collection of errors", "items": { "$ref": "#/definitions/patient/definitions/error" }, "type": [ "array" ] }, "first_name": { "description": "the first name", "example": "Severus", "maxLength": 255, "minLength": 1, "type": [ "string" ] }, "guid": { "description": "unique identifier of a patient", "example": "265983f733c54517b00b9a46987a0fdb", "pattern": "^[0-9a-f]{32}$", "type": [ "string" ] }, "identity": { "$ref": "#/definitions/patient/definitions/guid" }, "last_name": { "description": "the last name", "example": "Snape", "maxLength": 255, "minLength": 1, "type": [ "string" ] }, "patient_app_shared": { "description": "Identifies if the patient app will have content if embedded.", "example": true, "type": [ "boolean" ] }, "patient_response": { "additionalProperties": false, "description": "Successful response to a show or search request", "properties": { "patient": { "$ref": "#/definitions/patient" }, "reference_id": { "$ref": "#/definitions/patient/definitions/reference_id" } }, "required": [ "reference_id", "patient" ], "type": [ "object" ] }, "practice": { "description": "The Practice to which the patient belongs.", "properties": { "uid": { "$ref": "#/definitions/practice/definitions/uid" } }, "required": [ "uid" ], "type": [ "object" ] }, "preferred_location": { "description": "The patient's preferred location to visit with Care Team.", "properties": { "uid": { "$ref": "#/definitions/location/definitions/uid" } }, "required": [ "uid" ], "type": [ "object" ] }, "primary_insurance_number": { "description": "The insurance member id", "example": "15004695201", "type": [ "string" ] }, "reference_id": { "description": "A unique identifer for the request. This can be useful for debuggin and logging.", "example": "517b00b9-a469-87a0-fdb2-65983f733c54", "format": "uuid", "type": [ "string" ] }, "search_payload": { "additionalProperties": false, "description": "The expected payload for a search request", "properties": { "dob": { "$ref": "#/definitions/patient/definitions/dob" }, "first_name": { "$ref": "#/definitions/patient/definitions/first_name" }, "last_name": { "$ref": "#/definitions/patient/definitions/last_name" }, "primary_insurance_number": { "$ref": "#/definitions/patient/definitions/primary_insurance_number" } }, "required": [ "primary_insurance_number", "dob", "first_name", "last_name" ], "type": [ "object" ] }, "show_response": { "additionalProperties": false, "description": "Result of a get request. Can be either a success or a failure.", "oneOf": [ { "$ref": "#/definitions/patient/definitions/patient_response" }, { "$ref": "#/definitions/patient/definitions/error_response" } ], "optionalProperties": { "patient": { "$ref": "#/definitions/patient" }, "reference_id": { "$ref": "#/definitions/patient/definitions/reference_id" } }, "properties": { "patient": { "$ref": "#/definitions/patient" }, "reference_id": { "$ref": "#/definitions/patient/definitions/reference_id" } }, "type": [ "object" ] }, "staff_member": { "description": "A Staff Member at a practice", "properties": { "uid": { "$ref": "#/definitions/staff_member/definitions/uid" } }, "required": [ "uid" ], "type": [ "object" ] } }, "description": "A Patient at a practice", "links": [ { "description": "Retrieve a patient", "href": "/patients/{(%23%2Fdefinitions%2Fpatient%2Fdefinitions%2Fidentity)}", "http_header": { "X-API-KEY": "fb0d2f7a-9a15-4cce-8822-0e92d2a9a2a0", "X-API-SECRET": "98ba7951-bd19-4db2-a9c4-b25387f66f31" }, "method": "GET", "rel": "instance", "targetSchema": { "$ref": "#/definitions/patient/definitions/show_response" }, "title": "Show" }, { "description": "Search for a patient", "href": "/patients/search", "http_header": { "X-API-KEY": "fb0d2f7a-9a15-4cce-8822-0e92d2a9a2a0", "X-API-SECRET": "98ba7951-bd19-4db2-a9c4-b25387f66f31" }, "method": "GET", "rel": "instance", "schema": { "$ref": "#/definitions/patient/definitions/search_payload" }, "targetSchema": { "$ref": "#/definitions/patient/definitions/show_response" }, "title": "Search" } ], "properties": { "care_team": { "$ref": "#/definitions/patient/definitions/care_team" }, "dob": { "$ref": "#/definitions/patient/definitions/dob" }, "first_name": { "$ref": "#/definitions/patient/definitions/first_name" }, "guid": { "$ref": "#/definitions/patient/definitions/guid" }, "last_name": { "$ref": "#/definitions/patient/definitions/last_name" }, "patient_app_shared": { "$ref": "#/definitions/patient/definitions/patient_app_shared" }, "practice": { "$ref": "#/definitions/patient/definitions/practice" }, "preferred_location": { "$ref": "#/definitions/patient/definitions/preferred_location" } }, "required": [ "guid", "first_name", "last_name", "dob" ], "title": "Patient", "type": [ "object" ] }, "practice": { "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "error": { "description": "An error explaining why an action failed", "example": "Icis::Error(Couldn't find Practice with 'id'=99)", "minLength": 1, "type": [ "string" ] }, "errors": { "description": "A collection of errors", "items": { "$ref": "#/definitions/practice/definitions/error" }, "type": [ "array" ] }, "get_response": { "description": "Response to a show request", "oneOf": [ { "additionalProperties": false, "description": "A success response to a show request.", "properties": { "practice": { "$ref": "#/definitions/practice" }, "reference_id": { "$ref": "#/definitions/practice/definitions/reference_id" } }, "required": [ "reference_id", "practice" ], "type": [ "object" ] }, { "additionalProperties": false, "description": "A failure response to a show request.", "properties": { "errors": { "$ref": "#/definitions/practice/definitions/errors" }, "reference_id": { "$ref": "#/definitions/practice/definitions/reference_id" } }, "required": [ "reference_id", "errors" ], "type": [ "object" ] } ], "properties": { "practice": { "$ref": "#/definitions/practice" }, "reference_id": { "$ref": "#/definitions/location/definitions/reference_id" } }, "type": [ "object" ] }, "identity": { "$ref": "#/definitions/practice/definitions/uid" }, "locations": { "description": "A collection of location resources associated with the practice.", "items": { "$ref": "#/definitions/location" }, "type": [ "array" ] }, "name": { "description": "the name of the practice", "example": "HarkenHealth Chicago", "maxLength": 255, "minLength": 3, "type": [ "string" ] }, "reference_id": { "description": "A unique identifer for the request. This can be useful for debuggin and logging.", "example": "517b00b9-a469-87a0-fdb2-65983f733c54", "format": "uuid", "type": [ "string" ] }, "uid": { "description": "unique identifier of a practice", "example": "f78ff4140b49430b9033ff1deb65d20b", "pattern": "^[0-9a-f]{32}$", "type": [ "string" ] } }, "description": "A Practice resource represents an entity with a shared staff across multiple locations.", "links": [ { "description": "Retrieve a practice", "href": "/practices/{(%23%2Fdefinitions%2Fpractice%2Fdefinitions%2Fidentity)}", "http_header": { "X-API-KEY": "fb0d2f7a-9a15-4cce-8822-0e92d2a9a2a0", "X-API-SECRET": "98ba7951-bd19-4db2-a9c4-b25387f66f31" }, "method": "GET", "rel": "instance", "targetSchema": { "$ref": "#/definitions/practice/definitions/get_response" }, "title": "Show" } ], "properties": { "locations": { "$ref": "#/definitions/practice/definitions/locations" }, "name": { "$ref": "#/definitions/practice/definitions/name" }, "uid": { "$ref": "#/definitions/practice/definitions/uid" } }, "required": [ "uid", "name" ], "title": "Practice", "type": [ "object" ] }, "staff_member": { "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "degree": { "description": "The degree level of the staff member", "example": "RN", "maxLength": 255, "type": [ "null", "string" ] }, "error": { "description": "An error explaining why an action failed", "example": "Icis::Error(Couldn't find Location with 'id'=99)", "minLength": 1, "type": [ "string" ] }, "errors": { "description": "A collection of errors", "items": { "$ref": "#/definitions/staff_member/definitions/error" }, "type": [ "array" ] }, "first_name": { "description": "the first name", "example": "Liz", "maxLength": 255, "minLength": 2, "type": [ "string" ] }, "identity": { "$ref": "#/definitions/staff_member/definitions/uid" }, "index_response": { "description": "Response to an index request", "oneOf": [ { "additionalProperties": false, "description": "A success response to an index request.", "properties": { "reference_id": { "$ref": "#/definitions/staff_member/definitions/reference_id" }, "staff_members": { "$ref": "#/definitions/staff_member/definitions/staff_members" } }, "required": [ "reference_id", "staff_members" ], "type": [ "object" ] }, { "additionalProperties": false, "description": "A failure response to an index request.", "properties": { "errors": { "$ref": "#/definitions/staff_member/definitions/errors" }, "reference_id": { "$ref": "#/definitions/staff_member/definitions/reference_id" } }, "required": [ "reference_id", "errors" ], "type": [ "object" ] } ], "properties": { "reference_id": { "$ref": "#/definitions/staff_member/definitions/reference_id" }, "staff_members": { "$ref": "#/definitions/staff_member/definitions/staff_members" } }, "type": [ "object" ] }, "last_name": { "description": "the last name", "example": "Lemon", "maxLength": 255, "minLength": 2, "type": [ "string" ] }, "location": { "description": "One of possibly may physical locations of a practice.", "properties": { "uid": { "$ref": "#/definitions/location/definitions/uid" } }, "required": [ "uid" ], "type": [ "object" ] }, "photo": { "description": "A photo", "example": "https://s3.amazonaws.com/snowflake-staging/photos/44/small.jpg", "format": "uri", "type": [ "string" ] }, "photos": { "additionalProperties": false, "description": "The staff member's photo in different dimensions", "properties": { "large": { "$ref": "#/definitions/staff_member/definitions/photo" }, "medium": { "$ref": "#/definitions/staff_member/definitions/photo" }, "small": { "$ref": "#/definitions/staff_member/definitions/photo" } }, "required": [ "small", "medium", "large" ], "type": [ "object" ] }, "reference_id": { "description": "A unique identifer for the request. This can be useful for debuggin and logging.", "example": "517b00b9-a469-87a0-fdb2-65983f733c54", "format": "uuid", "type": [ "string" ] }, "role": { "description": "The clinical role the staff member holds within the practice.", "enum": [ "Provider", "Health Coach", "Specialist", "ROBOT" ], "example": "Specialist", "type": [ "string" ] }, "show_response": { "description": "Response to an show request", "oneOf": [ { "additionalProperties": false, "description": "A success response to an index request.", "properties": { "reference_id": { "$ref": "#/definitions/staff_member/definitions/reference_id" }, "staff_member": { "$ref": "#/definitions/staff_member" } }, "required": [ "reference_id", "staff_member" ], "type": [ "object" ] }, { "additionalProperties": false, "description": "A failure response to an index request.", "properties": { "errors": { "$ref": "#/definitions/staff_member/definitions/errors" }, "reference_id": { "$ref": "#/definitions/staff_member/definitions/reference_id" } }, "required": [ "reference_id", "errors" ], "type": [ "object" ] } ], "properties": { "reference_id": { "$ref": "#/definitions/staff_member/definitions/reference_id" }, "staff_member": { "$ref": "#/definitions/staff_member" } }, "type": [ "object" ] }, "speciality": { "additionalProperties": false, "description": "The associated speciality if a staff member is a specialist.", "properties": { "name": { "$ref": "#/definitions/staff_member/definitions/speciality_name" }, "uid": { "$ref": "#/definitions/staff_member/definitions/uid" } }, "required": [ "uid", "name" ], "type": [ "object", "null" ] }, "speciality_name": { "description": "The speciality", "example": "Nutritionist", "maxLength": 255, "minLength": 2, "type": [ "string" ] }, "staff_members": { "description": "A collection of staff", "items": { "$ref": "#/definitions/staff_member" }, "type": [ "array" ] }, "suffix": { "description": "The suffix to use when displaying name (this can be used in addition to degree", "example": "MD", "maxLength": 255, "type": [ "null", "string" ] }, "uid": { "description": "unique identifier of a staff member", "example": "ef63894da35641189b3fc1bf5b931202", "pattern": "^[0-9a-f]{32}$", "type": [ "string" ] } }, "description": "A Staff Member at a practice", "links": [ { "description": "Retrieve a staff member", "href": "/staff_members/{(%23%2Fdefinitions%2Fstaff_member%2Fdefinitions%2Fidentity)}", "http_header": { "X-API-KEY": "fb0d2f7a-9a15-4cce-8822-0e92d2a9a2a0", "X-API-SECRET": "98ba7951-bd19-4db2-a9c4-b25387f66f31" }, "method": "GET", "rel": "instance", "targetSchema": { "$ref": "#/definitions/staff_member/definitions/show_response" }, "title": "Show" }, { "description": "Retrieve staff members", "href": "/staff_members", "http_header": { "X-API-KEY": "fb0d2f7a-9a15-4cce-8822-0e92d2a9a2a0", "X-API-SECRET": "98ba7951-bd19-4db2-a9c4-b25387f66f31" }, "method": "GET", "rel": "instances", "schema": { "properties": { "location_uid": { "$ref": "#/definitions/location/definitions/uid" }, "practice_uid": { "$ref": "#/definitions/practice/definitions/uid" }, "uids": { "items": { "$ref": "#/definitions/staff_member/definitions/uid" }, "type": [ "array" ] } }, "type": [ "object" ] }, "targetSchema": { "$ref": "#/definitions/staff_member/definitions/index_response" }, "title": "Index" } ], "properties": { "default_location": { "$ref": "#/definitions/staff_member/definitions/location" }, "degree": { "$ref": "#/definitions/staff_member/definitions/degree" }, "first_name": { "$ref": "#/definitions/staff_member/definitions/first_name" }, "last_name": { "$ref": "#/definitions/staff_member/definitions/last_name" }, "photos": { "$ref": "#/definitions/staff_member/definitions/photos" }, "role": { "$ref": "#/definitions/staff_member/definitions/role" }, "speciality": { "$ref": "#/definitions/staff_member/definitions/speciality" }, "suffix": { "$ref": "#/definitions/staff_member/definitions/suffix" }, "uid": { "$ref": "#/definitions/staff_member/definitions/uid" } }, "required": [ "uid", "first_name", "last_name", "role", "photos" ], "title": "Staff Member Resource", "type": [ "object" ] }, "state_of_health": { "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "created_at": { "description": "The time at which the value was stored in ICIS", "example": "1990-12-31T15:59:60-08:00", "format": "date-time", "type": [ "string" ] }, "identity": { "$ref": "#/definitions/state_of_health/definitions/uid" }, "reference_id": { "description": "A unique identifer for the request. This can be useful for debuggin and logging.", "example": "517b00b9-a469-87a0-fdb2-65983f733c54", "format": "uuid", "type": [ "string" ] }, "state_of_health_response": { "description": "Response to an state of health show request", "oneOf": [ { "additionalProperties": false, "description": "A successful response.", "properties": { "reference_id": { "$ref": "#/definitions/patient/definitions/reference_id" }, "state_of_health": { "$ref": "#/definitions/state_of_health" } }, "required": [ "reference_id", "state_of_health" ], "type": [ "object" ] }, { "additionalProperties": false, "description": "A failed response.", "properties": { "errors": { "$ref": "#/definitions/patient/definitions/errors" }, "reference_id": { "$ref": "#/definitions/patient/definitions/reference_id" } }, "required": [ "reference_id", "errors" ], "type": [ "object" ] } ], "properties": { "reference_id": { "$ref": "#/definitions/patient/definitions/reference_id" }, "state_of_health": { "$ref": "#/definitions/state_of_health" } }, "type": [ "object" ] }, "uid": { "description": "unique identifier of a state of health recording", "example": "bebe83f733c54517b00bbebe987a0fdb", "pattern": "^[0-9a-f]{32}$", "type": [ "string" ] }, "value": { "description": "A number between 1-10.", "example": 5, "maxValue": 10, "minValue": 1, "type": [ "integer" ] } }, "description": "A StateOfHealth Resource for a Patient.", "links": [ { "description": "Retrieve a patient's latest State of Health", "href": "/patients/{(%23%2Fdefinitions%2Fpatient%2Fdefinitions%2Fidentity)}/state_of_health", "http_header": { "X-API-KEY": "fb0d2f7a-9a15-4cce-8822-0e92d2a9a2a0", "X-API-SECRET": "98ba7951-bd19-4db2-a9c4-b25387f66f31" }, "method": "GET", "rel": "instance", "targetSchema": { "$ref": "#/definitions/state_of_health/definitions/state_of_health_response" }, "title": "State of Health Show" }, { "description": "Creates a new State of Health resourse for a patient", "href": "/patients/{(%23%2Fdefinitions%2Fpatient%2Fdefinitions%2Fidentity)}/state_of_health", "method": "POST", "rel": "create", "schema": { "additionalProperties": false, "properties": { "value": { "$ref": "#/definitions/state_of_health/definitions/value" } }, "required": [ "value" ], "type": [ "object" ] }, "targetSchema": { "$ref": "#/definitions/state_of_health/definitions/state_of_health_response" }, "title": "State of Health Create" } ], "properties": { "created_at": { "$ref": "#/definitions/state_of_health/definitions/created_at" }, "value": { "$ref": "#/definitions/state_of_health/definitions/value" } }, "required": [ "value" ], "title": "State of Health", "type": [ "object" ] } }, "description": "ICIS API v20150918", "links": [ { "href": "https://api.icisapp.com/v20150918", "rel": "self" } ], "properties": { "emergency_contact": { "$ref": "#/definitions/emergency_contact" }, "location": { "$ref": "#/definitions/location" }, "patient": { "$ref": "#/definitions/patient" }, "practice": { "$ref": "#/definitions/practice" }, "staff_member": { "$ref": "#/definitions/staff_member" }, "state_of_health": { "$ref": "#/definitions/state_of_health" } }, "title": "ICIS API v20150918", "type": [ "object" ] }
o7515
{ "id": "http://schemas.gdbots.io/json-schema/gdbots/forms/field/weight-field/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "_schema": { "type": "string", "pattern": "^pbj:([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+):([0-9]+-[0-9]+-[0-9]+)$", "default": "pbj:gdbots:forms:field:weight-field:1-0-0" }, "name": { "type": "string", "pattern": "^[a-zA-Z_]{1}[\\w-]*$", "description": "A unique identifier (within the form) for the field. This value is not shown to the user and should NOT change once set." }, "maps_to": { "type": "string", "default": "cf", "pattern": "^[a-zA-Z_]{1}\\w*$", "description": "The name of the schema field the answer will map to. By default this will go to the \"cf\" field which is a \"dynamic-field\" list containing all answers filled out on the form (ref \"gdbots:forms:mixin:send-submission\")." }, "label": { "type": "string", "minLength": 0, "maxLength": 255, "description": "The main text for the question/field." }, "placeholder": { "type": "string", "minLength": 0, "maxLength": 255 }, "description": { "type": "string", "minLength": 0, "maxLength": 65535, "description": "A short description to better explain this field." }, "is_required": { "type": "boolean" }, "link_text": { "type": "string", "minLength": 0, "maxLength": 255, "description": "The text that will replace the token \"{link}\" within the label or description." }, "link_url": { "type": "string", "pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$", "description": "The URL to use for the replaced token \"{link}\" within the label or description." }, "pii_impact": { "type": "string", "enum": [ "unknown", "high", "moderate", "low" ] }, "weight_units": { "type": "string", "default": "pounds", "pattern": "^(kilograms|pounds)$" }, "min_weight": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535, "description": "The person's minimum physical weight recorded in pounds or kilograms." }, "max_weight": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535, "description": "The person's maximum physical weight recorded in pounds or kilograms." } }, "required": [ "_schema", "name" ], "additionalProperties": false }
o42598
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "responseType": { "description": "Response type, as defined by the Open311/GeoReport2 standard.", "type": "string", "enum": [ "realtime", "batch", "blackbox" ] }, "service": { "description": "All requests are for a Service.", "type": "object", "properties": { "id": { "description": "The id must be unique", "type": "number", "minimum": 1 }, "name": { "description": "Title of the Service.", "type": "string" }, "responseType": { "description": "Response type, as defined by the Open311/GeoReport2 standard. This overrides anything set at the Provider level.", "$ref": "#/definitions/responseType" }, "group": { "description": "The group this Service request type belongs to.", "type": "string" } }, "required": [ "id", "name", "group" ] }, "emailCfg": { "description": "Email configuration: to, from, subject, and template.", "type": "object", "properties": { "to": { "description": "Email will be sent to this address(es).", "type": "array", "items": { "type": "string" } }, "from": { "description": "Email marked as being sent by this address and sender.", "type": "array", "items": { "description": "The first string is the sender address, the second string is the sender name.", "type": "string" } }, "subject": { "description": "The subject line of the email.", "type": "string" }, "template": { "description": "The Go template to use to format the email. This is the path and filename of the template file.", "type": "string" } } }, "provider": { "description": "A specific Service Provider interface.", "type": "object", "properties": { "id": { "description": "A number uniquely identifying the Service Provider. This is only used within the Gateway system, and must be unique and unchanging. New values should be placed numerically ABOVE existing values. Changing the values will confuse any issue ID's that may be stored in a user device.", "type": "number", "minimum": 1 }, "name": { "description": "Identifies the Service Provider instance. This should be unique, as it will be used in error and log messages.", "type": "string" }, "url": { "description": "The URL of the Service Provider interface.", "type": "string" }, "apiVersion": { "description": "The API version of the Service Provider interface. Not currently used.", "type": "string" }, "key": { "description": "The API key to access the Service Provider interface.", "type": "string" }, "responseType": { "description": "Response type, as defined by the Open311/GeoReport2 standard. This sets the default value for the Provider, which can be overridden at the Service level.", "$ref": "#/definitions/responseType" }, "email": { "description": "The email configuration for this Provider. Only applies to the Email adapter.", "$ref": "#/definitions/emailCfg" }, "services": { "description": "The Services of the Provider.", "type": "array", "items": { "$ref": "#/definitions/service" } } }, "required": [ "id", "name", "responseType", "services" ] }, "serviceArea": { "description": "A Service Area, having one or more Service Providers.", "type": "object", "properties": { "name": { "description": "Name of the Area.", "type": "string" }, "providers": { "description": "The list of all Providers for this Area.", "type": "array", "items": { "$ref": "#/definitions/provider" } } }, "required": [ "name", "providers" ] } }, "properties": { "adapter": { "description": "Basic configuration info for the Adapter", "type": "object", "properties": { "name": { "description": "Identifies the Adapter to the Engine. This must match the Engine configuration file.", "type": "string" }, "type": { "description": "The type of Adapter - e.g. 'CitySourced', 'Email', etc.", "type": "string" }, "address": { "description": "The IP address and port number over which the Adapter will communicate with the Engine.", "type": "string" } }, "required": [ "name", "type", "address" ] }, "monitor": { "description": "Configuration data for the System Monitor.", "type": "object", "properties": { "address": { "description": "IP and port of the system monitor.", "type:": "string" } }, "required": [ "address" ] }, "serviceGroups": { "description": "The list of all top level categories for all Services. These will be referenced in the serviceAreas.", "type": "array", "items": { "type": "string" } }, "serviceAreas": { "description": "The list of all geographic areas the Adapter services, including the list of all services for each area.", "additionalProperties": { "$ref": "#/definitions/serviceArea" } } } }
o32921
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "paste": { "type": "object", "required": [ "resource" ], "properties": { "resource": { "type": "string", "format": "topic" }, "target": { "type": "string" }, "parameter": { "type": "string" } } }, "create": { "type": "object", "properties": { "onActions": { "type": "array", "default": [], "items": { "type": "string", "format": "topic" } } } }, "update": { "type": "object", "properties": { "onActions": { "type": "array", "default": [], "items": { "type": "string", "format": "topic" } } } }, "reset": { "type": "object", "properties": { "onActions": { "type": "array", "default": [], "items": { "type": "string", "format": "topic" } } } }, "flags": { "description": "Flags to set/clear depending on the (absence of a) paste mime-type.", "type": "array", "default": [], "items": { "type": "object", "required": [ "flag" ], "properties": { "flag": { "type": "string", "format": "topic" }, "mimeType": { "type": [ "string", "null" ], "default": null }, "condition": { "type": [ "string", "null" ], "default": null, "enum": [ "DIRTY", "CREATED", "AVAILABLE", "EMPTY", null ] } } } } } }
o89616
{ "definitions": { "infection": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when item was created", "type": [ "string" ] }, "id": { "description": "unique identifier of infection", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/infection/definitions/id" } ] }, "reporter_id": { "description": "unique identifier of item owner", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "survivor_id": { "description": "unique identifier of item owner", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when item was updated", "type": [ "string" ] } }, "description": "Infection reports of survivors, when a survivor is reported as infected 3 times, he/she is considered a zombie and therefore cannot trade or interact anymore.", "links": [ { "description": "Report another survivor as infected, only works when logged.", "href": "/infections/{(%23%2Fdefinitions%2Finfection%2Fdefinitions%2Fidentity)}", "method": "POST", "rel": "self", "title": "Create" } ], "properties": { "created_at": { "$ref": "#/definitions/infection/definitions/created_at" }, "id": { "$ref": "#/definitions/infection/definitions/id" }, "reporter_id": { "$ref": "#/definitions/infection/definitions/reporter_id" }, "survivor_id": { "$ref": "#/definitions/infection/definitions/survivor_id" }, "updated_at": { "$ref": "#/definitions/infection/definitions/updated_at" } }, "stability": "prototype", "strictProperties": true, "title": "Infection", "type": [ "object" ] }, "item": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when item was created", "format": "date-time", "type": [ "string" ] }, "id": { "description": "unique identifier of item", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/item/definitions/id" } ] }, "item_value": { "description": "value of item", "readOnly": true, "type": [ "number" ] }, "name": { "description": "unique name of item", "readOnly": true, "type": [ "string" ] }, "survivor_id": { "description": "unique identifier of item owner", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when item was updated", "format": "date-time", "type": [ "string" ] } }, "description": "Items - Water, food, medicataion or ammunition of a survivor", "links": [ { "description": "Info for existing item.", "href": "/items/{(%23%2Fdefinitions%2Fitem%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" } ], "properties": { "created_at": { "$ref": "#/definitions/item/definitions/created_at" }, "id": { "$ref": "#/definitions/item/definitions/id" }, "item_value": { "$ref": "#/definitions/item/definitions/item_value" }, "name": { "$ref": "#/definitions/item/definitions/name" }, "survivor_id": { "$ref": "#/definitions/item/definitions/survivor_id" }, "updated_at": { "$ref": "#/definitions/item/definitions/updated_at" } }, "stability": "prototype", "strictProperties": true, "title": "Item", "type": [ "object" ] }, "survivor": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "age": { "description": "age of survivor", "readOnly": false, "type": [ "integer" ] }, "created_at": { "description": "when survivor was created", "format": "date-time", "type": [ "string" ] }, "gender": { "description": "gender of survivor", "readOnly": false, "type": [ "string" ] }, "id": { "description": "unique identifier of survivor", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/survivor/definitions/id" }, { "$ref": "#/definitions/survivor/definitions/name" } ] }, "infections": { "description": "infections of survivor", "readOnly": false, "type": [ "array", "null" ] }, "items": { "description": "items of survivor", "readOnly": true, "type": [ "array", "null" ] }, "lat": { "description": "latitude of survivor", "readOnly": false, "type": [ "number", "null" ] }, "lng": { "description": "longitude of survivor", "readOnly": false, "type": [ "number", "null" ] }, "name": { "description": "unique name of survivor", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when survivor was updated", "format": "date-time", "type": [ "string" ] } }, "description": "User of the system, surviving on the zombie-crawled wasteland. When with pending trades to accept or review a pending_trade HTTP header will be attached to all requests", "links": [ { "description": "Create a new survivor.", "href": "/survivors", "method": "POST", "rel": "create", "schema": { "properties": {}, "type": [ "null", "object" ] }, "title": "Create" }, { "description": "Delete an existing survivor.", "href": "/survivors/{(%23%2Fdefinitions%2Fsurvivor%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for existing survivor.", "href": "/survivors/{(%23%2Fdefinitions%2Fsurvivor%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing survivors.", "href": "/survivors", "method": "GET", "rel": "instances", "title": "List" }, { "description": "Receives reports of population status, including - healthy percentage, infected percentage, and totals", "href": "/reports/status", "method": "GET", "rel": "reports", "title": "Survivors status" }, { "description": "Receives reports of items status, including - Average amount of each kind of resource by survivor (e.g. 5 waters per user) and Points lost because of infected survivor. et. al.\",", "href": "/reports/items", "method": "GET", "rel": "items report", "title": "Items status" }, { "description": "Update an existing survivor.", "href": "/survivors/{(%23%2Fdefinitions%2Fsurvivor%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": {}, "type": [ "null", "object" ] }, "title": "Update" } ], "properties": { "age": { "$ref": "#/definitions/survivor/definitions/age" }, "created_at": { "$ref": "#/definitions/survivor/definitions/created_at" }, "gender": { "$ref": "#/definitions/survivor/definitions/gender" }, "id": { "$ref": "#/definitions/survivor/definitions/id" }, "infections": { "$ref": "#/definitions/survivor/definitions/infections" }, "items": { "$ref": "#/definitions/survivor/definitions/items" }, "lat": { "$ref": "#/definitions/survivor/definitions/lat" }, "lng": { "$ref": "#/definitions/survivor/definitions/lng" }, "name": { "$ref": "#/definitions/survivor/definitions/name" }, "updated_at": { "$ref": "#/definitions/survivor/definitions/updated_at" } }, "stability": "prototype", "strictProperties": true, "title": "Survivor", "type": [ "object" ] }, "trade": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "accepted": { "description": "boolean to indicate acceptance of trade by :to recipient", "format": "uuid", "readOnly": true, "type": [ "boolean", "null" ] }, "created_at": { "description": "when trade was created", "type": [ "string" ] }, "from_items": { "description": "items from the origin of transaction, represented by 'items' array of JSON Item objects", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of trade", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/trade/definitions/id" } ] }, "reviewed": { "description": "boolean to indicate review of trade by 'from' recipient and, after value is set to true it's items are exchanged", "format": "uuid", "readOnly": true, "type": [ "boolean", "null" ] }, "to": { "description": "survivor recipient of the trade, will be warned of pending trade through pending_trade HTTP header on every logged request, until it is marked as :accepted and :reviewed", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "to_items": { "description": "items added to trade with :from_items :owner, represented by 'items' array of JSON Item objects. It's owner will be warned of pending trade through pending_trade HTTP header on every logged request, until it is marked as :accepted and :reviewed", "format": "uuid", "readOnly": true, "type": [ "string", "null" ] }, "updated_at": { "description": "when trade was updated", "type": [ "string" ] } }, "description": "Represents the transaction of items between survivors, while a survivor has a trade that hasn't been marked as :accepted and :reviewed it will receive all logged on requests marked with a 'pending_trade' HTTP header, which contains the trade's information as JSON", "links": [ { "description": "Create a new trade, at this point, only the attributes :to and :from_items must to be passed. After it's creation both users will receive all responses marked with pending_trade HHTP header, containing the data for this trade, until marked as :accepted and :reviewed.", "href": "/trades", "method": "POST", "rel": "create", "schema": { "properties": { "from_items": { "$ref": "#/definitions/trade/definitions/from_items" }, "to": { "$ref": "#/definitions/trade/definitions/to" } }, "type": [ "object", "null" ] }, "title": "Create" }, { "description": "Info for existing trade.", "href": "/trades/{(%23%2Fdefinitions%2Ftrade%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing trades.", "href": "/trades", "method": "GET", "rel": "instances", "title": "List" }, { "description": "Delete an existing trade, only possible if logged survivor is one the :to or :from_items survivors and if trade isn't accepted and reviewed.", "href": "/trades/{(%23%2Fdefinitions%2Ftrade%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Update an existing trade, at this point there are 2 options for trade update 1 - The :to survivor is replying with :accepted and :to_items 2 - The survivor that owns :from_survivor is replying with :reviewed, so that the trade can be completed", "href": "/trades/{(%23%2Fdefinitions%2Ftrade%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": { "accepted": { "$ref": "#/definitions/trade/definitions/accepted" }, "from_items": { "$ref": "#/definitions/trade/definitions/from_items" }, "reviewed": { "$ref": "#/definitions/trade/definitions/reviewed" }, "to": { "$ref": "#/definitions/trade/definitions/to" }, "to_items": { "$ref": "#/definitions/trade/definitions/to_items" } }, "type": [ "object", "null" ] }, "title": "Update" } ], "properties": { "accepted": { "$ref": "#/definitions/trade/definitions/accepted" }, "created_at": { "$ref": "#/definitions/trade/definitions/created_at" }, "from_items": { "$ref": "#/definitions/trade/definitions/from_items" }, "id": { "$ref": "#/definitions/trade/definitions/id" }, "reviewed": { "$ref": "#/definitions/trade/definitions/reviewed" }, "to": { "$ref": "#/definitions/trade/definitions/to" }, "to_items": { "$ref": "#/definitions/trade/definitions/to_items" }, "updated_at": { "$ref": "#/definitions/trade/definitions/updated_at" } }, "stability": "prototype", "strictProperties": true, "title": "Trade", "type": [ "object" ] } }, "description": "Social-zombie is a system to share resources between non-infected humans via API.", "links": [ { "href": "https://github.com/ErvlahouS/social-zombie", "rel": "self" } ], "properties": { "infection": { "$ref": "#/definitions/infection" }, "item": { "$ref": "#/definitions/item" }, "survivor": { "$ref": "#/definitions/survivor" }, "trade": { "$ref": "#/definitions/trade" } }, "title": "Social-Zombie", "type": [ "object" ] }
o5460
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Character Ad", "description": "A WoWFinder Character Ad", "type": "object", "properties": { "updated": { "type": "integer" }, "lfg": { "type": "boolean", "default": false }, "languages": { "type": "array", "items": { "type": "string", "enum": [ "en", "de", "fr", "es", "ru", "bg", "zh", "hr", "cs", "da", "nl", "et", "fi", "el", "he", "hu", "it", "ja", "ko", "lv", "lt", "no", "pl", "pt", "ro", "sl", "sv", "tw", "tr" ] } }, "btag_display": { "type": "boolean", "default": false }, "description": { "type": "string" }, "transfert": { "type": "boolean", "default": false }, "role": { "type": "object", "properties": { "tank": { "type": "boolean", "default": false }, "melee_dps": { "type": "boolean", "default": false }, "ranged_dps": { "type": "boolean", "default": false }, "heal": { "type": "boolean", "default": false } } }, "raids_per_week": { "type": "object", "properties": { "min": { "type": "integer", "default": 1, "min": 1, "max": 7 }, "max": { "type": "integer", "default": 7, "min": 1, "max": 7 } } }, "timezone": { "type": "string", "default": "Europe/London", "enum": [ "America/Chicago", "America/Los_Angeles", "America/New_York", "America/Denver", "America/Sao_Paulo", "Australia/Melbourne", "Asia/Seoul", "Asia/Taipei", "Europe/London", "Europe/Paris", "Europe/Berlin", "Africa/Johannesburg", "Europe/Madrid", "Europe/Lisbon", "Europe/Moscow", "US/Hawaii" ] }, "play_time": { "type": "object", "properties": { "monday": { "type": "object", "properties": { "play": { "type": "boolean", "default": false }, "start": { "type": "object", "properties": { "hour": { "type": "integer", "default": 0 }, "hourUTC": { "type": "integer" }, "min": { "type": "integer", "default": 0 } } }, "end": { "type": "object", "properties": { "hour": { "type": "integer", "default": 0 }, "hourUTC": { "type": "integer" }, "min": { "type": "integer", "default": 0 } } } } }, "tuesday": { "type": "object", "properties": { "play": { "type": "boolean", "default": false }, "start": { "type": "object", "properties": { "hour": { "type": "integer", "default": 0 }, "hourUTC": { "type": "integer" }, "min": { "type": "integer", "default": 0 } } }, "end": { "type": "object", "properties": { "hour": { "type": "integer", "default": 0 }, "hourUTC": { "type": "integer" }, "min": { "type": "integer", "default": 0 } } } } }, "wednesday": { "type": "object", "properties": { "play": { "type": "boolean", "default": false }, "start": { "type": "object", "properties": { "hour": { "type": "integer", "default": 0 }, "hourUTC": { "type": "integer" }, "min": { "type": "integer", "default": 0 } } }, "end": { "type": "object", "properties": { "hour": { "type": "integer", "default": 0 }, "hourUTC": { "type": "integer" }, "min": { "type": "integer", "default": 0 } } } } }, "thursday": { "type": "object", "properties": { "play": { "type": "boolean", "default": false }, "start": { "type": "object", "properties": { "hour": { "type": "integer", "default": 0 }, "hourUTC": { "type": "integer" }, "min": { "type": "integer", "default": 0 } } }, "end": { "type": "object", "properties": { "hour": { "type": "integer", "default": 0 }, "hourUTC": { "type": "integer" }, "min": { "type": "integer", "default": 0 } } } } }, "friday": { "type": "object", "properties": { "play": { "type": "boolean", "default": false }, "start": { "type": "object", "properties": { "hour": { "type": "integer", "default": 0 }, "hourUTC": { "type": "integer" }, "min": { "type": "integer", "default": 0 } } }, "end": { "type": "object", "properties": { "hour": { "type": "integer", "default": 0 }, "hourUTC": { "type": "integer" }, "min": { "type": "integer", "default": 0 } } } } }, "saturday": { "type": "object", "properties": { "play": { "type": "boolean", "default": false }, "start": { "type": "object", "properties": { "hour": { "type": "integer", "default": 0 }, "hourUTC": { "type": "integer" }, "min": { "type": "integer", "default": 0 } } }, "end": { "type": "object", "properties": { "hour": { "type": "integer", "default": 0 }, "hourUTC": { "type": "integer" }, "min": { "type": "integer", "default": 0 } } } } }, "sunday": { "type": "object", "properties": { "play": { "type": "boolean", "default": false }, "start": { "type": "object", "properties": { "hour": { "type": "integer", "default": 0 }, "hourUTC": { "type": "integer" }, "min": { "type": "integer", "default": 0 } } }, "end": { "type": "object", "properties": { "hour": { "type": "integer", "default": 0 }, "hourUTC": { "type": "integer" }, "min": { "type": "integer", "default": 0 } } } } } } } } }
o85250
{ "title": "Tree", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "autoIncRowNum": { "type": "integer" }, "maxSiblings": { "type": "integer", "minimum": 1 } }, "required": [ "autoIncRowNum", "maxSiblings" ] }
o91003
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://localhost:3000/schemas/get-client-request.json#", "title": "Get client request", "type": "object", "additionalProperties": false, "required": [ "id" ], "properties": { "id": { "type": "string", "minLength": 1, "description": "Cannot be an empty string" } } }
o20459
{ "additionalProperties": true, "description": "Schema for a SendGrid spam report event. Property descriptions derived from the SendGrid documentation: https://sendgrid.com/docs/for-developers/tracking-events/event/", "properties": { "asm_group_id": { "description": "The ID of the unsubscribe group the recipient\u2019s email address is included in. ASM IDs correspond to the ID that is returned when you create an unsubscribe group.", "maximum": 32767, "minimum": 0, "type": "integer" }, "category": { "description": "Categories are custom tags that you set for the purpose of organizing your emails. Categories can be set as an array or string, and they will be returned as such when posted in your event endpoint.", "items": { "type": "string" }, "type": [ "array", "string" ] }, "email": { "_format": "email", "description": "The email address of the recipient", "type": "string" }, "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" }, "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" } }, "self": { "format": "jsonschema", "name": "spamreport", "vendor": "com.sendgrid", "version": "2-0-0" }, "type": "object" }
sp_197_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "edges": { "type": "array", "items": { "type": "object", "properties": { "source": { "type": "string", "default": "nodesource" }, "group": { "type": "array", "items": {} }, "target": { "type": "string", "default": "nodetarget" }, "view": { "type": "string", "default": "VS" } }, "required": [ "source", "group", "target", "view" ] } }, "vertices": { "type": "array", "items": { "type": "object", "properties": { "info": { "type": "object", "properties": { "type": { "type": "string", "default": "OF Controller" }, "property": { "type": "object", "properties": { "custom_label": { "type": "string", "default": "" } }, "required": [ "custom_label" ] }, "group": { "type": "array", "items": {} } }, "required": [ "type", "property", "group" ] }, "id": { "type": "string", "default": "ctr1" } }, "required": [ "info", "id" ] } } }, "required": [ "edges", "vertices" ] }
o78895
{ "additionalProperties": true, "properties": { "asm_group_id": { "maximum": 32767, "minimum": 0, "type": "integer" }, "category": { "items": { "type": "string" }, "type": [ "array", "string" ] }, "email": { "type": "string" }, "ip": { "_format": "ipv4", "type": "string" }, "newsletter": { "additionalProperties": true, "properties": { "newsletter_id": { "type": "string" }, "newsletter_send_id": { "type": "string" }, "newsletter_user_list_id": { "type": "string" } }, "type": "object" }, "sg_event_id": { "type": "string" }, "sg_message_id": { "type": "string" }, "smtp-id": { "type": "string" }, "timestamp": { "_format": "date-time", "type": "string" }, "useragent": { "type": "string" } }, "self": { "format": "jsonschema", "name": "open", "vendor": "com.sendgrid", "version": "1-0-0" }, "type": "object" }
sp_192_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "EC2 manifest", "type": "object", "properties": { "virtualization": { "enum": [ "pvm", "hvm" ] }, "image": { "type": "object", "properties": { "description": { "type": "string" } } }, "credentials": { "type": "object", "properties": { "access-key": { "type": "string" }, "secret-key": { "type": "string" } } }, "system": { "type": "object", "properties": { "bootloader": { "type": "string", "enum": [ "pvgrub", "extlinux" ] } } }, "volume": { "type": "object", "properties": { "backing": { "enum": [ "ebs", "s3" ] }, "partitions": { "type": "object", "properties": { "type": { "enum": [ "none", "msdos" ] } } } }, "required": [ "backing" ] } }, "required": [ "image" ] }
o27361
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": true, "properties": { "timestamp_arrive": { "type": [ "string", "null" ] }, "timestamp_depart": { "type": [ "string", "null" ] }, "commentaire": { "type": [ "string", "null" ] }, "saisie_cpe": { "type": "boolean" }, "id_eleve": { "type": "string" }, "id_appel": { "type": "integer" }, "id_type": { "type": "integer" }, "id_pj": { "type": [ "integer", "null" ] }, "id_motif": { "type": [ "integer", "null" ] } }, "required": [ "saisie_cpe", "id_eleve", "id_appel", "id_type" ] }
o12254
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "bulk_publishing": { "type": "boolean" }, "links": { "type": "object", "additionalProperties": false, "properties": { "facet_groups": { "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links.", "$ref": "#/definitions/guid_list" }, "facet_values": { "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups.", "$ref": "#/definitions/guid_list" }, "finder": { "description": "Powers links from content back to finders the content is surfaced on", "$ref": "#/definitions/guid_list" }, "government": { "description": "The government associated with this document", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "lead_organisations": { "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array.", "$ref": "#/definitions/guid_list" }, "mainstream_browse_pages": { "description": "Powers the /browse section of the site. These are known as sections in some legacy apps.", "$ref": "#/definitions/guid_list" }, "meets_user_needs": { "description": "The user needs this piece of content meets.", "$ref": "#/definitions/guid_list" }, "ordered_related_items": { "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger.", "$ref": "#/definitions/guid_list" }, "ordered_related_items_overrides": { "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation.", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "All organisations linked to this content item. This should include lead organisations.", "$ref": "#/definitions/guid_list" }, "original_primary_publishing_organisation": { "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/guid_list" }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "people": { "description": "People that are associated with this document, typically the person part of a role association", "$ref": "#/definitions/guid_list" }, "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" }, "primary_publishing_organisation": { "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "related_policies": { "$ref": "#/definitions/guid_list" }, "roles": { "description": "Government roles that are associated with this document, typically the role part of a role association", "$ref": "#/definitions/guid_list" }, "speaker": { "description": "A speaker that has a GOV.UK profile", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "suggested_ordered_related_items": { "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test.", "$ref": "#/definitions/guid_list" }, "taxons": { "description": "Prototype-stage taxonomy label for this content item", "$ref": "#/definitions/guid_list" }, "topical_events": { "$ref": "#/definitions/guid_list" }, "topics": { "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps.", "$ref": "#/definitions/guid_list" }, "world_locations": { "$ref": "#/definitions/guid_list" } } }, "previous_version": { "type": "string" } }, "definitions": { "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true } } }
o21381
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "General Config", "type": "object", "properties": { "apiVersion": { "enum": [ "v1beta1", "v1.0", "v1" ] }, "metadata": { "type": "object", "properties": { "userAgent": { "type": "string", "minLength": 3, "maxLength": 30 } } }, "spec": { "type": "object", "properties": { "registrarIntf": { "enum": [ "Internal", "External", "internal", "external" ] }, "bindAddr": { "type": "string" }, "externAddr": { "type": "string" }, "localnets": { "type": "array", "items": { "type": "string" }, "minItems": 1, "_uniqueItems": true }, "recordRoute": { "type": "boolean" }, "addressInfo": { "type": "array", "items": { "type": "string" }, "minItems": 1, "_uniqueItems": true }, "restService": { "type": "object", "properties": { "unsecured": { "type": "boolean" }, "port": { "type": "integer" }, "maxThreads": { "type": "integer" }, "minThreads": { "type": "integer", "minimum": 1 }, "timeOutMillis": { "type": "integer", "minimum": 0 }, "bindAddr": { "type": "string" }, "keyStore": { "type": "string" }, "trustStore": { "type": "string" }, "keyStorePassword": { "type": "string" }, "trustStorePassword": { "type": "string" } } }, "dataSource": { "type": "object", "properties": { "provider": { "type": "string" } }, "required": [ "provider" ] }, "securityContext": { "type": "object", "properties": { "debugging": { "type": "boolean" }, "keyStore": { "type": "string" }, "trustStore": { "type": "string" }, "keyStorePassword": { "type": "string" }, "keyStoreType": { "enum": [ "jks", "pkcs12" ] }, "client": { "type": "object", "properties": { "protocols": { "type": "array", "items": { "enum": [ "TLSv1.2", "TLSv1.1", "TLSv1", "SSLv3" ] } }, "authType": { "enum": [ "Default", "Enabled", "Want", "Disabled", "DisabledAll" ] } } } }, "required": [ "keyStore", "trustStore", "keyStorePassword", "keyStoreType" ] }, "accessControlList": { "type": "object", "properties": { "allow": { "type": "array", "items": { "type": "string" }, "minItems": 1, "_uniqueItems": true }, "deny": { "type": "array", "items": { "type": "string" }, "minItems": 1, "_uniqueItems": true } } }, "transport": { "type": "array", "items": { "type": "object", "properties": { "bindAddr": { "type": "string" }, "port": { "type": "integer", "minimum": 1 }, "protocol": { "enum": [ "udp", "tcp", "tls", "sctp", "ws", "wss" ] } }, "required": [ "protocol", "port" ], "minItems": 1, "_uniqueItems": true }, "minItems": 1, "_uniqueItems": true } } } }, "required": [ "apiVersion", "spec" ] }
o68598
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "experienceVersionId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "createdById": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "createdByType": { "type": "string", "enum": [ "flow", "user", "apiToken" ] }, "lastUpdated": { "type": "string", "format": "date-time" }, "endpointDefaultCors": { "type": "boolean" }, "version": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "attachedDomains": { "type": "array", "items": { "type": "object", "properties": { "domainName": { "type": "string", "maxLength": 1024, "minLength": 3 }, "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } } }, "attachedSlugs": { "type": "array", "items": { "type": "object", "properties": { "slug": { "type": "string" }, "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } } } } }
o9891
{ "properties": { "billing_address": { "description": "The billing address of the client", "type": "string" }, "client_name": { "description": "The name of the client", "type": "string" }, "items": { "items": { "properties": { "description": { "description": "The description of the item", "type": "string" }, "price": { "description": "The price of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "description", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "client_name", "billing_address", "items" ], "type": "object" }
generate_invoice_9fce2002
{ "$id": "https://raw.githubusercontent.com/edertone/TurboBuilder/master/TurboBuilder-Node/src/main/resources/json-schema/turbodepot.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "title": "turbodepot.json schema", "required": [ "$schema", "depots", "sources" ], "additionalProperties": false, "properties": { "$schema": { "type": "string", "description": "Url to the json schema definition to validate this file", "enum": [ "https://raw.githubusercontent.com/edertone/TurboBuilder/master/TurboBuilder-Node/src/main/resources/json-schema/turbodepot.schema.json" ] }, "depots": { "type": "array", "description": "", "items": { "type": "object", "description": "", "required": [ "name", "storageFolderPath", "tmpFiles", "localizedFiles", "logs", "objects", "googleDrive", "users" ], "additionalProperties": false, "properties": { "name": { "type": "string", "description": "" }, "storageFolderPath": { "type": "string", "description": "The full file system path to the root of the storage folder (if used)" }, "tmpFiles": { "type": "object", "description": "Defines the setup for the storage of temporary files into this depot instance", "required": [ "source" ], "additionalProperties": false, "properties": { "source": { "type": "string", "description": "The name for a source that will be used to store and read the temporary files" } } }, "localizedFiles": { "type": "object", "description": "Defines the setup for the storage of localized files into this depot instance", "required": [ "source" ], "additionalProperties": false, "properties": { "source": { "type": "string", "description": "The name for a source that will be used to store and read the localized files" }, "locales": { "type": "array", "description": "The list of locales that will be used to perform translations on the item names. Sorted by preference, like: 'en_US', 'es_ES' (see TurboCommons LocalizedFilesManager constructor docs for more info)" }, "locations": { "type": "array", "description": "A list (sorted by preference) where each item defines a translations location (see TurboCommons LocalizedFilesManager constructor docs for more info)" }, "failIfKeyNotFound": { "type": "boolean", "description": "True to throw an exception if any localization key is not found (see TurboCommons LocalizedFilesManager constructor docs for more info)" } } }, "logs": { "type": "object", "description": "Defines the setup for the storage of logs into this depot instance", "required": [ "source" ], "additionalProperties": false, "properties": { "source": { "type": "string", "description": "The name for a source that will be used to store and read the logs" } } }, "objects": { "type": "object", "description": "", "required": [ "source" ], "additionalProperties": false, "properties": { "source": { "type": "string", "description": "" } } }, "googleDrive": { "type": "object", "description": "Defines the setup for the google drive client", "required": [ "accountCredentialsPath", "apiClientRoot", "cacheRootPath", "cacheZone", "listsTimeToLive", "filesTimeToLive" ], "additionalProperties": false, "properties": { "accountCredentialsPath": { "type": "string", "description": "A full file system path to the file that contains the service account credentials that will be used to authenticate with the google drive API" }, "apiClientRoot": { "type": "string", "description": "A full file system path to the root of the google-api-php-client library. See GoogleDriveManager class for more info" }, "cacheRootPath": { "type": "string", "description": "A full file system path to the root of the folder where the cached google drive files will be stored. Set it to empty string to disable local cache. See GoogleDriveManager class for more info" }, "cacheZone": { "type": "string", "description": "The name for the cache zone where the google drive cached files will be stored. See GoogleDriveManager class for more info" }, "listsTimeToLive": { "type": "integer", "description": "Defines the number of seconds after which the operations related to listing files and folder cache data will be deleted. Set it to 0 to for an infinite time. (1 hour = 3600 seconds, 1 day = 86400 seconds, 1 month = 2592000, 1 year = 31536000)" }, "filesTimeToLive": { "type": "integer", "description": "Defines the number of seconds after which the operations related to getting files content cache data will be deleted. Set it to 0 to for an infinite time. (1 hour = 3600 seconds, 1 day = 86400 seconds, 1 month = 2592000, 1 year = 31536000)" } } }, "users": { "type": "object", "description": "Defines the setup for the storage of users into this depot instance", "required": [ "source", "prefix", "tokenLifeTime", "isTokenLifeTimeRecycled" ], "additionalProperties": false, "properties": { "source": { "type": "string", "description": "The name for a source that will be used to store and read the users" }, "prefix": { "type": "string", "description": "The prefix to use with database table names for all the user related database tables. This will help with avoiding table name collisions on a database" }, "tokenLifeTime": { "type": "integer", "description": "Defines the number of seconds that user tokens will be active since they are created. After the number of seconds has passed, tokens will expire and a login will be necessary to obtain a new token" }, "isTokenLifeTimeRecycled": { "type": "boolean", "description": "If set to true, every time a token is validated the lifetime will be restarted to the configured token lifetime. So the token lifetime will start counting again after the last token validation has been performed. So with a 10 minutes token lifetime if we perform 2 token validations in 5 minutes, the time will still be 10 minutes after the last validation's been performed." } } } } } }, "sources": { "type": "object", "description": "Defines the destinations where the data will be saved and read", "required": [], "additionalProperties": false, "properties": { "fileSystem": { "type": "array", "description": "Defines a source that stores all data using OS files and folders", "items": { "type": "object", "description": "", "required": [ "name", "path" ], "additionalProperties": false, "properties": { "name": { "type": "string", "description": "A name we want to use as an alias for this file system source" }, "path": { "type": "string", "description": "An absolute path that points to the root of this file system source. This is where the data will be stored when we use this source alias on our depots" } } } }, "mariadb": { "type": "array", "description": "Defines a source that stores all data using a MariaDb or Mysql (legacy) database storage engine", "items": { "type": "object", "description": "", "required": [ "name", "host", "database", "user", "password" ], "additionalProperties": false, "properties": { "name": { "type": "string", "description": "A name we want to use as an alias for this database source" }, "host": { "type": "string", "description": "The host where database is found. Usually localhost if the db is on the same machine, but may be any ip or hostname where db may be found" }, "database": { "type": "string", "description": "The name for the database to which this source will be connected" }, "user": { "type": "string", "description": "The user name that will be used to connect to this source's database" }, "password": { "type": "string", "description": "The password to use with the user when connecting to database" } } } }, "sqLite": { "type": "array", "description": "Defines a source that stores all data using an SQLite database storage engine", "items": { "type": "object", "description": "", "required": [ "name", "path", "prefix" ], "additionalProperties": false, "properties": { "name": { "type": "string", "description": "" }, "path": { "type": "string", "description": "" }, "prefix": { "type": "string", "description": "" } } } } } } } }
o38404
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "stacks": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "label": { "type": "string" }, "rows": { "type": "integer" }, "columns": { "type": "integer" }, "size": { "type": "integer" }, "plates": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "label": { "type": "string" }, "descriptor": { "type": "string" }, "rows": { "type": "integer" }, "columns": { "type": "integer" }, "size": { "type": "integer" }, "wellsets": { "type": "array", "items": { "type": "object", "properties": { "label": { "type": "string" }, "size": { "type": "integer" }, "wells": { "type": "array", "items": { "type": "string" } } }, "required": [ "label", "size", "wells" ] } }, "wells": { "type": "array", "items": { "type": "object", "properties": { "index": { "type": "string" }, "values": { "type": "array", "items": { "type": "number" } } }, "required": [ "index", "values" ] } } }, "required": [ "type", "label", "descriptor", "rows", "columns", "size", "wellsets", "wells" ] } } }, "required": [ "type", "label", "rows", "columns", "size", "plates" ] } } }, "required": [ "stacks" ] }
o49234
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "keywords_tagging_details": { "type": "object", "description": "Details computed by KeywordsTagging worker", "properties": { "description": { "type": "object", "additionalProperties": true }, "keywords": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false } }, "type": "object", "description": "Result of KeywordsTagging worker", "properties": { "schema": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the schema", "pattern": "^[a-zA-Z0-9_]+$" }, "version": { "type": "string", "description": "Version of the schema", "pattern": "^[0-9]+-[0-9]+-[0-9]+$" }, "url": { "type": "string", "description": "Full URL of the schema", "format": "uri" } }, "required": [ "name", "version" ], "additionalProperties": false }, "_release": { "type": "string", "description": "Unique release id in form of \"ecosystem:package:version\"" }, "status": { "type": "string", "enum": [ "success", "error" ] }, "details": { "$ref": "#/definitions/keywords_tagging_details" }, "summary": { "type": "array", "items": { "type": "string" } } }, "required": [ "status", "details", "summary" ], "additionalProperties": false, "title": "keywords_tagging-v1-0-0" }
o60983
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "definitions": { "cidr": { "type": "string", "description": "a single block of IP addresses in CIDR format (e.g. 102.33.52.0/255). Apps may assume that anyone browsing from these addresses would be given the role 'internal' were they to authenticate as principal type of candidate, i.e. this is within a corporate network" }, "internalIPs": { "type": "array", "items": { "$ref": "#/definitions/cidr" } } }, "additionalProperties": false, "properties": { "name": { "type": "string", "description": "name of the tenant" }, "contactEmail": { "type": "string", "_format": "email", "description": "contact address for the person in charge of this tenant" }, "shortCode": { "type": "string", "description": "a short, lower case identifier for the tenant, e.g. acme" }, "type": { "enum": [ "PRODUCTION", "SANDBOX" ], "description": "The type of tenant, i.e. sandbox or not. Apps may behave differently when installed in a sandbox, e.g. not send email." }, "country": { "description": "tenant's default country, in ISO 3166-1 alpha-2 form", "enum": [ "AC", "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AN", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BM", "BN", "BO", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "ST", "SV", "SY", "SZ", "TA", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW" ] }, "timeZone": { "type": "string", "description": "the default timezone for the tenant's principals, as per https://en.wikipedia.org/wiki/Tz_database" }, "logoUrl": { "type": "string", "_format": "uri", "description": "url for the tenant's logo" }, "internalIPs": { "$ref": "#/definitions/internalIPs" }, "privacyPolicyUrl": { "type": "string", "_format": "uri", "description": "url for the tenant's privacy policy" } }, "required": [ "name", "shortCode", "type", "contactEmail" ] }
o79492
{ "$schema": "http://json-schema.org/draft-04/schema", "title": "DocFx configuraton file", "type": "object", "properties": { "metadata": { "$ref": "#/definitions/metadataConfig" }, "build": { "$ref": "#/definitions/buildConfig" } }, "definitions": { "buildConfig": { "type": "object", "properties": { "content": { "$ref": "#/definitions/fileMappingContent" }, "resource": { "$ref": "#/definitions/fileMappingResource" }, "overwrite": { "$ref": "#/definitions/fileMappingOverwrite" }, "externalReference": { "$ref": "#/definitions/fileMappingExternalReferences" }, "xref": { "$ref": "#/definitions/xref" }, "dest": { "type": "string" }, "globalMetadata": { "type": "object", "additionalProperties": true, "description": "Contains metadata that will be applied to every file, in key-value pair format." }, "globalMetadataFiles": { "$ref": "#/definitions/globalMetadataFiles" }, "fileMetadata": { "type": "object", "additionalProperties": true, "description": "Contains metadata that will be applied to specific files." }, "fileMetadataFiles": { "$ref": "#/definitions/fileMetadataFiles" }, "template": { "$ref": "#/definitions/template" }, "theme": { "$ref": "#/definitions/theme" }, "postProcessors": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "serve": { "type": "boolean" }, "force": { "type": "boolean" }, "port": { "type": "string" }, "exportRawModel": { "type": "boolean", "description": "If set to true, data model to run template script will be extracted in `.raw.json` extension." }, "rawModelOutputFolder": { "type": "string", "description": "Specify the output folder for the raw model. If not set, the raw model will be generated to the same folder as the output documentation." }, "exportViewModel": { "type": "boolean", "description": "If set to true, data model to apply template will be extracted in `.view.json` extension." }, "viewModelOutputFolder": { "type": "string", "description": "Specify the output folder for the view model. If not set, the view model will be generated to the same folder as the output documentation." }, "dryRun": { "type": "boolean", "description": "If set to true, template will not be actually applied to the documents. This option is always used with `--exportRawModel` or `--exportViewModel`, so that only raw model files or view model files are generated." }, "maxParallelism": { "type": "integer", "minimum": 0, "description": "Set the max parallelism, 0 (default) is same as the count of CPU cores." }, "markdownEngineName": { "type": "string", "description": "Set the name of markdown engine, default is dfm, and another build-in engine is gfm." }, "markdownEngineProperties": { "type": "object", "additionalProperties": true, "description": "Set the parameters for markdown engine." }, "noLangKeyword": { "type": "boolean", "description": "Disable default lang keyword, e.g. `null`." }, "keepFileLink": { "type": "boolean" }, "cleanupCacheHistory": { "type": "boolean" }, "disableGitFeatures": { "type": "boolean" }, "intermediateFolder": { "type": "string" }, "changesFile": { "type": "string" } }, "description": "Build section defines configuration values for the build command.", "additionalProperties": false }, "metadataConfig": { "type": "array", "items": { "$ref": "#/definitions/metadataConfigItem" }, "description": "Metadata section defines an array of source projects and their output folder." }, "metadataConfigItem": { "type": "object", "properties": { "src": { "$ref": "#/definitions/fileMappingSrc" }, "dest": { "type": "string", "description": "Defines the output folder of the generated metadata files." }, "force": { "type": "boolean", "description": "If set to true, it would disable incremental build." }, "shouldSkipMarkup": { "type": "boolean", "description": "If set to true, DocFX would not render triple-slash-comments in source code as markdown." }, "raw": { "type": "boolean" }, "filter": { "type": "string", "description": "Defines the filter configuration file." }, "useCompatibilityFileName": { "type": "boolean", "description": " If set to true, DocFX would keep ` in comment id instead of replacing it with." }, "properties": { "type": "object", "properties": { "TargetFramework": { "type": "string" } } } }, "additionalProperties": false, "required": [ "src", "dest" ] }, "fileMappingContent": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } }, { "type": "array", "items": { "$ref": "#/definitions/fileMappingItem" } } ], "description": "Contains all the files to generate documentation, including metadata `yml` files and conceptual `md` files." }, "fileMappingResource": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } }, { "type": "array", "items": { "$ref": "#/definitions/fileMappingItem" } } ], "description": "Contains all the resource files that conceptual and metadata files dependent on, e.g. image files." }, "fileMappingOverwrite": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } }, { "type": "array", "items": { "$ref": "#/definitions/fileMappingItem" } } ], "description": "Contains all the conceputal files which contains yaml header with `uid` and is intended to override the existing metadata `yml` files." }, "fileMappingExternalReferences": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } }, { "type": "array", "items": { "$ref": "#/definitions/fileMappingItem" } } ], "description": "[Obsoleted] Contains `rpk` files that define the external references." }, "fileMappingSrc": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } }, { "type": "array", "items": { "$ref": "#/definitions/fileMappingItem" } } ], "description": "Defines the source projects to have metadata generated." }, "fileMappingItem": { "type": "object", "properties": { "name": { "type": "string", "description": "The name of current item, the value is not used for now." }, "files": { "$ref": "#/definitions/files" }, "exclude": { "$ref": "#/definitions/exclude" }, "src": { "type": "string", "description": "Defines the root folder for the source files, it has the same meaning as `cwd`" }, "cwd": { "type": "string", "description": "[Obsoleted] Defines the root folder for the source files, it has the same meaning as `src`" }, "dest": { "type": "string", "description": "The destination folder for the files if copy/transform is used." }, "version": { "type": "string", "description": "Version name for the current file-mapping item.\nIf not set, treat the current file-mapping item as in default version.\nMappings with the same version name will be built together.\nCross reference doesn't support cross different versions." }, "rootTocPath": { "type": "string", "description": "The Root TOC Path used for navbar in current version, relative to output root.\nIf not set, will use the toc in output root in current version if exists." }, "case": { "type": "boolean", "description": "Pattern match will be case sensitive.\nBy default the pattern is case insensitive." }, "noNegate": { "type": "boolean", "description": "Disable pattern begin with `!` to mean negate.\nBy default the usage is enabled." }, "noExpand": { "type": "boolean", "description": "Disable `{a,b}c` => `[\"ac\", \"bc\"]`. By default the usage is enabled." }, "noEscape": { "type": "boolean", "description": "Disable the usage of `\\` to escape values.\nBy default the usage is enabled." }, "noGlobStar": { "type": "boolean", "description": "Disable the usage of `**` to match everything including `/` when it is the beginning of the pattern or is after `/`.\nBy default the usage is enable." }, "dot": { "type": "boolean", "description": "Allow files start with `.` to be matched even if `.` is not explicitly specified in the pattern.\nBy default files start with `.` will not be matched by `*` unless the pattern starts with `.`." } }, "additionalProperties": false, "required": [ "files" ] }, "xref": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ], "description": "Specifies the urls of xrefmap used by content files. Currently, it supports following scheme: http, https, ftp, file, embedded." }, "globalMetadataFiles": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ], "description": "Specify a list of JSON file path containing globalMetadata settings, as similar to `{\"key\":\"value\"}`." }, "fileMetadataFiles": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ], "description": "Specify a list of JSON file path containing fileMetadata settings, as similar to `{\"key\":\"value\"}`." }, "template": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ], "description": "The latter ones will override the former ones if the name of the file inside the template collides. If ommited, embedded default template will be used." }, "theme": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ], "description": "The themes applied to the documentation. Theme is used to customize the styles generated by `template`. It can be a string or an array. The latter ones will override the former ones if the name of the file inside the template collides. If ommited, no theme will be applied, the default theme inside the template will be used." }, "files": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ], "description": "The file glob pattern collection, with path relative to property `src`/`cwd` if value is set." }, "exclude": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ], "description": "The file glob pattern collection for files that should be excluded, with path relative to property `src`/`cwd` if value is set." } } }
o66267
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "ico", "description": "An ico atom", "type": "object", "properties": { "icon": { "description": "The short name of the icon", "enum": [ "arrow-right", "chevron-up", "close", "exit-search", "expert-tool-user", "flag-ch", "flag-de", "flag-fr", "heading", "icon-info", "icon-info-circle", "icon-remove-tag", "lightbox-close", "lightbox-open", "nitro", "nitro-full" ] } }, "required": [ "icon" ], "dependencies": {} }
o62759
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "required": [ "name", "password", "gid", "users" ], "properties": { "name": { "type": "string", "minLength": 1 }, "password": { "type": "string" }, "gid": { "type": [ "integer", "null" ], "minimum": 0 }, "users": { "type": "array", "items": { "type": "string", "minLength": 1 } } } } }
o65921
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_CSINode": { "description": "DEPRECATED - This group version of CSINode is deprecated by storage/v1/CSINode. See the release notes for more information. CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.", "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": [ "CSINode" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "metadata.name must be the Kubernetes node name." }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_CSINodeSpec", "description": "spec is the specification of CSINode" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "CSINode", "version": "v1beta1" } ] }, "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_CSINodeSpec": { "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", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" } }, "required": [ "drivers" ], "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" }, "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": "CSINodeList is a collection of CSINode 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": [ "storage.k8s.io/v1beta1" ], "type": [ "string", "null" ] }, "items": { "description": "items is the list of CSINode", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_CSINode" }, "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": [ "CSINodeList" ], "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": "storage.k8s.io", "kind": "CSINodeList", "version": "v1beta1" } ] }
kb_175_Normalized
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": { "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.", "properties": { "effect": { "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", "type": "string" }, "key": { "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", "type": "string" }, "operator": { "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", "type": "string" }, "tolerationSeconds": { "_format": "int64", "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", "type": "integer" }, "value": { "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", "type": "string" } }, "type": "object" } }, "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.", "properties": { "nodeSelector": { "additionalProperties": { "type": [ "string", "null" ] }, "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.", "type": [ "object", "null" ] }, "tolerations": { "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration" }, "type": [ "array", "null" ], "x-kubernetes-list-type": "atomic" } }, "type": "object" }
kb_928_Normalized
{ "description": "ExternalDocumentation allows referencing an external resource for extended documentation.", "properties": { "description": { "type": [ "string", "null" ] }, "url": { "type": [ "string", "null" ] } }, "type": "object" }
kb_341_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "eventIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } }, "updates": { "title": "Event Patch", "description": "Schema for the body of an Event modification request", "type": "object", "properties": { "state": { "type": "string", "enum": [ "new", "acknowledged", "resolved" ] }, "comment": { "type": "string", "maxLength": 32767 }, "data": {}, "eventTags": { "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false } }, "additionalProperties": false } }, "additionalProperties": false }
o9807
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "version": { "type": "integer" }, "id": { "type": "string" }, "ports": { "type": "array", "items": { "title": "port", "type": "object", "properties": { "pin": { "type": "integer" }, "label": { "type": "string" }, "defaultDuration": { "type": "integer" } } } }, "switches": { "type": "array", "items": { "title": "switch", "type": "object", "properties": { "label": { "type": "string" }, "enabled": { "type": "boolean" }, "size": { "type": "integer" }, "states": { "type": "array", "items": { "title": "state", "type": "object", "properties": { "label": { "type": "string" }, "portStates": { "type": "object", "properties": {} }, "otherSwitchEnables": { "type": "object", "properties": {} }, "otherSwitchStates": { "type": "object", "properties": {} } } } } } } }, "sensors": { "type": "array", "items": {} } }, "required": [ "version", "id", "ports", "switches", "sensors" ] }
o71847
{ "properties": { "customer_name": { "description": "The name of the customer", "type": "string" }, "price": { "description": "The price per unit", "type": "number" }, "product_name": { "description": "The name of the product or service", "type": "string" }, "quantity": { "description": "The quantity of the product or service", "type": "integer" }, "tax_rate": { "description": "The tax rate", "type": "number" } }, "required": [ "customer_name", "product_name", "quantity", "price", "tax_rate" ], "type": "object" }
generate_invoice_cda7de78
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "integration": { "properties": { "is_active": { "type": "boolean" }, "name": { "enum": [ "hipchat", "hub", "mailgun", "nexmo", "postmark", "slack", "twilio" ] } }, "required": [ "name" ], "additionalProperties": true } }, "required": [ "integration" ], "additionalProperties": false }
o58913
{ "properties": { "length": { "description": "The length of the password", "type": "integer" }, "lowercase_letters": { "description": "Whether to include lowercase letters", "type": "boolean" }, "numbers": { "description": "Whether to include numbers", "type": "boolean" }, "special_characters": { "description": "Whether to include special characters", "type": "boolean" }, "uppercase_letters": { "description": "Whether to include uppercase letters", "type": "boolean" } }, "required": [ "length", "uppercase_letters", "lowercase_letters", "numbers", "special_characters" ], "type": "object" }
generate_random_password_8cf128ad
{ "additionalProperties": false, "properties": { "dimensions": { "items": { "type": "string" }, "type": "array" }, "filters": { "items": { "type": "string" }, "type": "array" }, "id": { "pattern": "^[a-z0-9:]+$", "type": "string" }, "metric": { "pattern": "^[A-Za-z:]+$", "type": "string" } }, "required": [ "metric" ], "title": "Google Analytics Trending Collector Query", "type": "object" }
o21479
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": { "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.", "properties": { "effect": { "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", "type": "string" }, "key": { "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", "type": "string" }, "operator": { "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", "type": "string" }, "tolerationSeconds": { "_format": "int64", "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", "type": "integer" }, "value": { "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1beta1_Overhead": { "description": "Overhead structure represents the resource overhead associated with running a pod.", "properties": { "podFixed": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "PodFixed represents the fixed resource overhead associated with running a pod.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1beta1_Scheduling": { "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.", "properties": { "nodeSelector": { "additionalProperties": { "type": "string" }, "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.", "type": "object" }, "tolerations": { "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration" }, "type": "array", "x-kubernetes-list-type": "atomic" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "node.k8s.io/v1beta1" ], "type": [ "string", "null" ] }, "handler": { "description": "Handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must conform to the DNS Label (RFC 1123) requirements, and is immutable.", "type": [ "string", "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": [ "RuntimeClass" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "overhead": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1beta1_Overhead", "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.15, and is only honored by servers that enable the PodOverhead feature." }, "scheduling": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1beta1_Scheduling", "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes." } }, "required": [ "handler" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "node.k8s.io", "kind": "RuntimeClass", "version": "v1beta1" } ] }
kb_897_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "anyOf": [ { "required": [ "id", "layerType", "title", "url" ] }, { "required": [ "id", "layerType", "path", "title" ] } ], "description": "Tiled Elevation Layer is a tile layer used for rendering elevation.", "esriDocumentation": { "examples": [ { "code": { "ground": { "layers": [ { "id": "globalElevation", "layerType": "ArcGISTiledElevationServiceLayer", "title": "Terrain3D", "url": "http://elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer", "visibility": true } ] } }, "description": "Live sample web scene showing [elevationLayers](https://www.arcgis.com/home/webscene/viewer.html?webscene=a06aa4a2e4264b789686e66a75d863ca)", "schema": "ground_schema.json", "title": "Tiled Elevation Layer" } ] }, "properties": { "id": { "description": "A unique identifying string for the layer", "type": "string" }, "itemId": { "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.", "type": "string" }, "layerType": { "description": "String indicating the layer type", "enum": [ "ArcGISTiledElevationServiceLayer" ], "type": "string" }, "listMode": { "description": "To show or hide the elevation layer in the layer list", "enum": [ "hide", "show" ], "type": "string" }, "path": { "description": "For offline data, a path to a tile package containing elevation data. A URI format is used, starting with `file:` followed by a file system path with an extension of `.tpk` or `.tpkx`. A relative path must be from the file which defines the layer. For example `file:../p20/portland.tpk`.", "pattern": "^file:.+\\.tpkx?$", "type": "string" }, "title": { "description": "A user-friendly string title for the layer that can be used in a table of contents. If this is not included, a title is derived from the service.", "type": "string" }, "url": { "_format": "uri", "description": "The URL to the layer.If the layer is not from a web service but rather a feature collection, then the url property is omitted", "type": "string" }, "visibility": { "default": true, "description": "Boolean property determining whether the layer is initially visible in the web scene.", "type": "boolean" } }, "title": "Tiled Elevation Layer", "type": "object" }
o90322
{ "properties": { "linkerd-viz": { "properties": { "cpus": { "default": 1.0, "description": "CPU shares to allocate to linkerd-viz.", "minimum": 1.0, "type": "number" }, "mem": { "default": 512.0, "description": "Memory (MB) to allocate to linkerd-viz.", "minimum": 512.0, "type": "number" }, "public-port": { "default": 3000, "description": "Public port. The port to access the linkerd-viz dashboard.", "type": "integer" }, "resource-role": { "default": "slave_public", "description": "The accepted resource role. By default, this will deploy to an agent with the \"slave_public\" role.", "type": "string" }, "stats-port": { "default": 9090, "description": "Stats port. The port gives the dashboard access to the backend stats server.", "type": "integer" } }, "required": [ "cpus", "mem", "public-port", "resource-role", "stats-port" ], "type": "object" } }, "required": [ "linkerd-viz" ], "type": "object" }
o90718
{ "description": "IngressTLS describes the transport layer security associated with an Ingress.", "properties": { "hosts": { "description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "secretName": { "description": "SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.", "type": [ "string", "null" ] } }, "type": "object" }
kb_462_Normalized
{ "properties": { "grades": { "items": { "properties": { "course": { "description": "The name of the course", "type": "string" }, "credit_hours": { "description": "The number of credit hours for the course", "type": "number" }, "grade": { "description": "The letter grade for the course", "enum": [ "A", "B", "C", "D", "F" ], "type": "string" } }, "required": [ "course", "grade", "credit_hours" ], "type": "object" }, "type": "array" } }, "required": [ "grades" ], "type": "object" }
calculate_gpa_d331abe4
{ "additionalProperties": false, "description": "", "properties": { "day": { "maximum": 31, "minimum": 1, "type": "integer" }, "hour": { "maximum": 23, "minimum": 0, "type": "integer" }, "minute": { "maximum": 59, "minimum": 0, "type": "integer" }, "month": { "maximum": 12, "minimum": 1, "type": "integer" }, "second": { "maximum": 59, "minimum": 0, "type": "integer" }, "timezone": { "default": "UTC", "type": "string" }, "year": { "type": "integer" } }, "title": "date_time", "type": "object" }
o28260
{ "additionalProperties": false, "definitions": { "comparison": { "enum": [ "=", "!=", "==", "!==", "<=", ">=", "<", ">", "starts", "ends", "contains", "regex", "not_starts", "not_ends", "not_contains", "not_regex", "in_array", "not_in_array" ], "type": "string" }, "oid_group": { "oneOf": [ { "pattern": "^(\\.\\d+)+\\.?$", "type": "string" }, { "items": { "pattern": "^(\\.\\d+)+\\.?$", "type": "string" }, "type": "array" } ] }, "regex_group": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "snmpget": { "additionalProperties": false, "properties": { "mib": { "type": "string" }, "mib_dir": { "type": "string" }, "oid": { "type": "string" }, "op": { "$ref": "#/definitions/comparison" }, "options": { "pattern": "^-", "type": "string" }, "value": { "anyOf": [ { "type": [ "boolean", "string" ] }, { "items": { "type": "string" }, "type": "array" } ] } }, "required": [ "oid", "value" ], "type": "object" }, "string_group": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] } }, "properties": { "bad_hrSystemUptime": { "type": "boolean" }, "bad_if": { "items": { "type": "string" }, "type": "array" }, "bad_ifXEntry": { "items": { "type": "string" }, "type": "array" }, "bad_if_regexp": { "$ref": "#/definitions/regex_group" }, "bad_iftype": { "items": { "type": "string" }, "type": "array" }, "bad_snmpEngineTime": { "type": "boolean" }, "bad_uptime": { "type": "boolean" }, "discovery": { "items": { "additionalProperties": false, "minProperties": 1, "properties": { "snmpget": { "$ref": "#/definitions/snmpget" }, "snmpget_except": { "$ref": "#/definitions/snmpget" }, "sysDescr": { "$ref": "#/definitions/string_group" }, "sysDescr_except": { "$ref": "#/definitions/string_group" }, "sysDescr_regex": { "$ref": "#/definitions/regex_group" }, "sysDescr_regex_except": { "$ref": "#/definitions/regex_group" }, "sysObjectID": { "$ref": "#/definitions/oid_group" }, "sysObjectID_except": { "$ref": "#/definitions/oid_group" }, "sysObjectID_regex": { "$ref": "#/definitions/regex_group" }, "sysObjectID_regex_except": { "$ref": "#/definitions/regex_group" } }, "type": "object" }, "type": "array" }, "discovery_modules": { "additionalProperties": false, "properties": { "applications": { "type": "boolean" }, "arp-table": { "type": "boolean" }, "bgp-peers": { "type": "boolean" }, "charge": { "type": "boolean" }, "cisco-cef": { "type": "boolean" }, "cisco-mac-accounting": { "type": "boolean" }, "cisco-otv": { "type": "boolean" }, "cisco-pw": { "type": "boolean" }, "cisco-sla": { "type": "boolean" }, "cisco-vrf-lite": { "type": "boolean" }, "discovery-protocols": { "type": "boolean" }, "diskio": { "type": "boolean" }, "entity-physical": { "type": "boolean" }, "fdb-table": { "type": "boolean" }, "hr-device": { "type": "boolean" }, "ip6-addresses": { "type": "boolean" }, "ipmi": { "type": "boolean" }, "ipv4-addresses": { "type": "boolean" }, "ipv6-address": { "type": "boolean" }, "ipv6-addresses": { "type": "boolean" }, "junose-atm-vp": { "type": "boolean" }, "libvirt-vminfo": { "type": "boolean" }, "loadbalancers": { "type": "boolean" }, "mef": { "type": "boolean" }, "mempools": { "type": "boolean" }, "ntp": { "type": "boolean" }, "ospf": { "type": "boolean" }, "ports": { "type": "boolean" }, "ports-stack": { "type": "boolean" }, "processors": { "type": "boolean" }, "sensors": { "type": "boolean" }, "services": { "type": "boolean" }, "storage": { "type": "boolean" }, "stp": { "type": "boolean" }, "toner": { "type": "boolean" }, "ucd-diskio": { "type": "boolean" }, "ucd-mib": { "type": "boolean" }, "vlans": { "type": "boolean" }, "vmware-vminfo": { "type": "boolean" }, "vrf": { "type": "boolean" }, "wireless": { "type": "boolean" } }, "type": "object" }, "empty_ifdescr": { "type": "boolean" }, "good_if": { "items": { "type": "string" }, "type": "array" }, "group": { "type": "string" }, "icon": { "type": "string" }, "icons": { "items": { "type": "string" }, "type": "array" }, "ifXmcbc": { "type": "boolean" }, "ifname": { "type": "boolean" }, "ignore_mount_string": { "items": { "type": "string" }, "type": "array" }, "mib_dir": { "$ref": "#/definitions/string_group" }, "nobulk": { "type": "boolean" }, "os": { "type": "string" }, "over": { "items": { "additionalProperties": false, "properties": { "graph": { "type": "string" }, "text": { "type": "string" } }, "required": [ "graph", "text" ], "type": "object" }, "type": "array" }, "poller_modules": { "additionalProperties": false, "properties": { "applications": { "type": "boolean" }, "arp-table": { "type": "boolean" }, "aruba-controller": { "type": "boolean" }, "bgp-peers": { "type": "boolean" }, "cipsec-tunnels": { "type": "boolean" }, "cisco-ace-loadbalancer": { "type": "boolean" }, "cisco-ace-serverfarms": { "type": "boolean" }, "cisco-asa-firewall": { "type": "boolean" }, "cisco-cbqos": { "type": "boolean" }, "cisco-cef": { "type": "boolean" }, "cisco-ipsec-flow-monitor": { "type": "boolean" }, "cisco-mac-accounting": { "type": "boolean" }, "cisco-otv": { "type": "boolean" }, "cisco-remote-access-monitor": { "type": "boolean" }, "cisco-sla": { "type": "boolean" }, "cisco-voice": { "type": "boolean" }, "cisco-vpdn": { "type": "boolean" }, "cisco-vrf-lite": { "type": "boolean" }, "entity-physical": { "type": "boolean" }, "fdb-table": { "type": "boolean" }, "hr-mib": { "type": "boolean" }, "ipSystemStats": { "type": "boolean" }, "ipmi": { "type": "boolean" }, "junose-atm-vp": { "type": "boolean" }, "libvirt-vminfo": { "type": "boolean" }, "loadbalancers": { "type": "boolean" }, "mef": { "type": "boolean" }, "mempools": { "type": "boolean" }, "mib": { "type": "boolean" }, "netscaler-vsvr": { "type": "boolean" }, "netstats": { "type": "boolean" }, "ntp": { "type": "boolean" }, "ospf": { "type": "boolean" }, "ports": { "type": "boolean" }, "processors": { "type": "boolean" }, "services": { "type": "boolean" }, "storage": { "type": "boolean" }, "stp": { "type": "boolean" }, "tnms-nbi": { "type": "boolean" }, "toner": { "type": "boolean" }, "ucd-diskio": { "type": "boolean" }, "ucd-mib": { "type": "boolean" }, "vlans": { "type": "boolean" }, "vmware-vminfo": { "type": "boolean" }, "wifi": { "type": "boolean" }, "wireless": { "type": "boolean" } }, "type": "object" }, "processor_stacked": { "type": "boolean" }, "register_mibs": { "type": "object" }, "rfc1628_compat": { "type": "boolean" }, "snmp_max_oid": { "type": "string" }, "text": { "type": "string" }, "type": { "type": "string" } }, "required": [ "os", "text", "type" ], "type": "object" }
o70296
{ "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", "null" ] }, "readOnly": { "description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.", "type": [ "boolean", "null" ] } }, "type": "object" }
kb_15_Normalized
{ "properties": { "artifactresolutionserviceurl": { "type": "string" }, "attribute1": { "type": "string" }, "attribute10": { "type": "string" }, "attribute11": { "type": "string" }, "attribute12": { "type": "string" }, "attribute13": { "type": "string" }, "attribute14": { "type": "string" }, "attribute15": { "type": "string" }, "attribute16": { "type": "string" }, "attribute2": { "type": "string" }, "attribute3": { "type": "string" }, "attribute4": { "type": "string" }, "attribute5": { "type": "string" }, "attribute6": { "type": "string" }, "attribute7": { "type": "string" }, "attribute8": { "type": "string" }, "attribute9": { "type": "string" }, "attributeconsumingserviceindex": { "type": "integer" }, "attributes": { "type": "string" }, "audience": { "type": "string" }, "authnctxclassref": { "enum": [ "InternetProtocol", "InternetProtocolPassword", "Kerberos", "MobileOneFactorUnregistered", "MobileTwoFactorUnregistered", "MobileOneFactorContract", "MobileTwoFactorContract", "Password", "PasswordProtectedTransport", "PreviousSession", "X509", "PGP", "SPKI", "XMLDSig", "Smartcard", "SmartcardPKI", "SoftwarePKI", "Telephony", "NomadTelephony", "PersonalTelephony", "AuthenticatedTelephony", "SecureRemotePassword", "TLSClient", "TimeSyncToken", "Unspecified", "Windows" ], "type": "object" }, "customauthnctxclassref": { "type": "string" }, "defaultauthenticationgroup": { "type": "string" }, "digestmethod": { "enum": [ "SHA1", "SHA256" ], "type": "string" }, "enforceusername": { "enum": [ "ON", "OFF" ], "type": "string" }, "forceauthn": { "enum": [ "ON", "OFF" ], "type": "string" }, "groupnamefield": { "type": "string" }, "logoutbinding": { "enum": [ "REDIRECT", "POST" ], "type": "string" }, "logouturl": { "type": "string" }, "metadataimportstatus": { "enum": [ "INIT", "SUCCESS", "FAIL" ], "readonly": true, "type": "string" }, "metadatarefreshinterval": { "type": "integer" }, "metadataurl": { "type": "string" }, "name": { "type": "string" }, "requestedauthncontext": { "enum": [ "exact", "minimum", "maximum", "better" ], "type": "string" }, "samlacsindex": { "type": "integer" }, "samlbinding": { "enum": [ "REDIRECT", "POST", "ARTIFACT" ], "type": "string" }, "samlidpcertname": { "type": "string" }, "samlissuername": { "type": "string" }, "samlredirecturl": { "type": "string" }, "samlrejectunsignedassertion": { "enum": [ "ON", "OFF", "STRICT" ], "type": "string" }, "samlsigningcertname": { "type": "string" }, "samltwofactor": { "enum": [ "ON", "OFF" ], "type": "string" }, "samluserfield": { "type": "string" }, "sendthumbprint": { "enum": [ "ON", "OFF" ], "type": "string" }, "signaturealg": { "enum": [ "RSA-SHA1", "RSA-SHA256" ], "type": "string" }, "skewtime": { "type": "integer" }, "storesamlresponse": { "enum": [ "ON", "OFF" ], "type": "string" } }, "title": "authenticationsamlaction", "type": "object" }
o30141
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "applies_to_all_organisations": { "description": "Whether all linked organisations meet this need", "type": "boolean" }, "benefit": { "description": "Why the user wants to do it", "type": "string" }, "change_history": { "$ref": "#/definitions/change_history" }, "goal": { "description": "What the user wants to do", "type": "string" }, "impact": { "description": "Impact of GOV.UK not doing this", "type": "string" }, "justifications": { "description": "How this need fits in the proposition for GOV.UK", "items": { "type": "string" }, "type": "array" }, "legislation": { "description": "Legislation that underpins this need", "type": "string" }, "met_when": { "description": "Provides criteria that define when this user need has been met", "items": { "type": "string" }, "type": "array" }, "need_id": { "description": "Six digit id which used to be the primary id for Needs. Still being displayed in Maslow and Info-Frontend, but likely to be deprecated in the future.", "type": "string" }, "other_evidence": { "description": "Any other evidence to support this need, ie. user research, campaigns, user demand", "type": "string" }, "role": { "description": "The type of user, such as a small business, a tax agent, a healthcare practitioner", "type": "string" }, "yearly_need_views": { "description": "Number of pageviews specific to this need generated each year", "type": "integer" }, "yearly_searches": { "description": "Number of searches specific to this need carried out each year", "type": "integer" }, "yearly_site_views": { "description": "Number of yearly pageviews of the whole site of the requester", "type": "integer" }, "yearly_user_contacts": { "description": "Number of user contacts received about this need each year. Includes calls to contact centres, emails, customer service tickets", "type": "integer" } }, "required": [ "role", "goal", "benefit" ], "type": "object" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "govuk_request_id": { "type": [ "string", "null" ] }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "guid_list": { "items": { "$ref": "#/definitions/guid" }, "type": "array", "_uniqueItems": true }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "payload_version": { "description": "Counter to indicate when the payload was generated", "type": "integer" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "route": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } }, "required": [ "path", "type" ], "type": "object" }, "routes": { "items": { "$ref": "#/definitions/route" }, "minItems": 1, "type": "array" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "content_purpose_document_supertype": { "description": "DEPRECATED. Use `content_purpose_subgroup`.", "type": "string" }, "content_purpose_subgroup": { "description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.", "type": "string" }, "content_purpose_supergroup": { "description": "Document supergroup grouping documents by a purpose", "type": "string" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "need" ], "type": "string" }, "email_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "expanded_links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "level_one_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "mainstream_browse_pages": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The user needs this piece of content meets." }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The parent content item.", "maxItems": 1 }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policy_areas": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "suggested_ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Prototype-stage taxonomy label for this content item" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "government_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "govuk_request_id": { "$ref": "#/definitions/govuk_request_id" }, "links": { "additionalProperties": false, "properties": { "facet_groups": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/guid_list", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/guid_list", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "mainstream_browse_pages": { "$ref": "#/definitions/guid_list", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/guid_list", "description": "The user needs this piece of content meets." }, "ordered_related_items": { "$ref": "#/definitions/guid_list", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/guid_list", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/guid_list", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/guid_list", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/guid_list", "description": "The parent content item.", "maxItems": 1 }, "policy_areas": { "$ref": "#/definitions/guid_list", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/guid_list", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "suggested_ordered_related_items": { "$ref": "#/definitions/guid_list", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage taxonomy label for this content item" }, "topics": { "$ref": "#/definitions/guid_list", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "navigation_document_supertype": { "description": "Document type grouping powering the new taxonomy-based navigation pages", "type": "string" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "payload_version": { "$ref": "#/definitions/payload_version" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "redirects": { "additionalItems": false, "items": {}, "type": "array" }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "enum": [ "need" ], "type": "string" }, "search_user_need_document_supertype": { "description": "Document supertype grouping core and government documents", "type": "string" }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" }, "user_journey_document_supertype": { "description": "Document type grouping powering analytics of user journeys", "type": "string" }, "user_need_document_supertype": { "description": "DEPRECATED. Use `content_purpose_document_supertype`.", "type": "string" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "required": [ "analytics_identifier", "base_path", "content_id", "description", "details", "document_type", "email_document_supertype", "expanded_links", "first_published_at", "government_document_supertype", "govuk_request_id", "links", "locale", "navigation_document_supertype", "payload_version", "phase", "public_updated_at", "publishing_app", "redirects", "rendering_app", "routes", "schema_name", "title", "update_type", "user_journey_document_supertype" ], "type": "object" }
o21300
{ "oneOf": [ { "required": [ "radius" ] }, { "required": [ "length", "width" ] }, { "required": [ "base", "height" ] } ], "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "shape": { "description": "The type of geometric shape", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_7003196f
{ "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" ], "type": "object" }, "shape": { "description": "The type of shape, e.g. circle, rectangle, triangle", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_44045e11
{ "properties": { "departure_date": { "description": "The departure date of the flight", "format": "date", "type": "string" }, "destination": { "description": "The destination of the flight", "type": "string" }, "origin": { "description": "The origin of the flight", "type": "string" }, "passenger_count": { "description": "The number of passengers", "type": "integer" }, "return_date": { "description": "The return date of the flight (optional)", "format": "date", "type": "string" } }, "required": [ "origin", "destination", "departure_date", "passenger_count" ], "type": "object" }
book_flight_22ba5334
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Toronto Mesh Nodes", "type": "array", "items": { "title": "Node Detail", "type": "object", "required": [ "name", "latitude", "longitude", "status", "dateAdded" ], "properties": { "name": { "type": "string" }, "latitude": { "type": "number" }, "longitude": { "type": "number" }, "cardinalDirection": { "type": "string", "enum": [ "North", "North East", "East", "South East", "South", "South West", "West", "North West", "Omni", "None" ] }, "cardinalDirectionAntenna": { "type": "string", "enum": [ "North", "North East", "East", "South East", "South", "South West", "West", "North West", "Omni" ] }, "IPV6Address": { "type": "string", "_format": "ipv6" }, "status": { "type": "string", "enum": [ "proposed", "active" ] }, "dateAdded": { "type": "string", "_format": "date-time" } } } }
o81742
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference": { "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace", "properties": { "name": { "description": "Name is unique within a namespace to reference a secret resource.", "type": "string" }, "namespace": { "description": "Namespace defines the space within which the secret name must be unique.", "type": "string" } }, "type": "object" } }, "description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { "description": "Driver is the name of the driver to use for this volume.", "type": [ "string", "null" ] }, "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", "null" ] }, "options": { "additionalProperties": { "type": [ "string", "null" ] }, "description": "Optional: Extra command options if any.", "type": [ "object", "null" ] }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": [ "boolean", "null" ] }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ "driver" ], "type": "object" }
kb_354_Normalized
{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "pred": { "type": "object", "description": "Prediction for season onset", "properties": { "point": { "description": "Point value of the prediction", "type": "number" }, "high": { "description": "High values for the confidence interval ranges", "type": "array", "items": { "type": "number" } }, "low": { "description": "Low values for the confidence interval ranges", "type": "array", "items": { "type": "number" } } }, "required": [ "point" ] } }, "title": "Model", "description": "A model with data for timeChart", "type": "object", "properties": { "id": { "description": "Short unique identifier for the model", "type": "string" }, "pinned": { "description": "Whether to pin this model in legend", "type": "boolean" }, "meta": { "description": "Metadata for the model", "type": "object", "properties": { "description": { "description": "Text with description of the model to show on tooltips", "type": "string" }, "name": { "description": "Full name of the model", "type": "string" }, "url": { "description": "Url for getting more details about the model", "type": "string", "format": "uri" } }, "required": [ "description", "name" ] }, "style": { "description": "Style settings for the model", "type": "object", "properties": { "color": { "description": "Base color for the model, by default this comes from the internal palette", "type": "string" }, "point": { "description": "CSS styles for dots in the line", "type": "object" }, "area": { "description": "CSS styles for the confidence area", "type": "object" }, "line": { "description": "CSS styles for the main line", "type": "object" } } }, "predictions": { "description": "Prediction array for each time point", "type": "array", "items": { "description": "Set of predictions for one time point", "type": [ "object", "null" ], "properties": { "onsetTime": { "$ref": "#/definitions/pred" }, "peakTime": { "$ref": "#/definitions/pred" }, "peakValue": { "$ref": "#/definitions/pred" }, "dataVersionTime": { "description": "Time specifying the data available for that prediction" }, "series": { "description": "Time ahead predictions", "type": "array", "items": { "$ref": "#/definitions/pred" } } }, "required": [ "series" ] } } }, "required": [ "id", "meta", "predictions" ] }
o69885
{ "properties": { "include_numbers": { "description": "Include numbers in the password", "type": "boolean" }, "include_symbols": { "description": "Include symbols in the password", "type": "boolean" }, "include_uppercase": { "description": "Include uppercase letters in the password", "type": "boolean" }, "length": { "description": "The length of the password", "type": "integer" } }, "required": [ "length", "include_uppercase", "include_numbers", "include_symbols" ], "type": "object" }
generate_random_password_45303cd6
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "GameBaseVariantRank": { "type": "integer" }, "NumberOfMatchesCompleted": { "type": "integer" }, "GameBaseVariantId": { "type": "string" }, "NumberOfMatchesWon": { "type": "integer" } }, "required": [ "GameBaseVariantRank", "NumberOfMatchesCompleted", "GameBaseVariantId", "NumberOfMatchesWon" ] }
o43234
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Product_FinishedProduct", "description": "Product_FinishedProduct", "properties": { "id": { "type": "string", "title": "Identifier", "minLength": 24, "maxLength": 24, "description": "Unique System generated Identifier" }, "createdAt": { "type": "integer", "title": "Created At", "minimum": 0, "maximum": 4105172262000, "description": "Created At, epoch time" }, "updatedAt": { "type": "integer", "title": "Updated At", "minimum": 0, "maximum": 4105172262000, "description": "Last Updated , epoch time" }, "properties": { "type": "object", "title": "Properties", "description": "Temporal Properties", "properties": {} }, "description": { "type": "string", "title": "Description schema.", "description": "Description of this Object" }, "name": { "type": "string", "title": "Name", "description": "Name of Object" }, "tags": { "type": "array", "title": "Tags schema.", "description": "A list of Tags for searching", "items": { "type": "string", "title": "Tag", "description": "A Tag." } }, "identifiers": { "type": "object", "title": "Identifiers", "description": "External Identifiers", "properties": { "gtin": { "title": "GTIN", "description": "A Global Trade Item Number (GTIN) is the 14 digit GS1 Identification Key used to identify products. The key comprises a GS1 Company Prefix followed by an Item Reference Number and a Check Digit. See http://www.gs1.org/gtin for more details.", "type": "string" }, "sku": { "title": "sku", "description": "A Customer SKU number " } }, "required": [ "gtin", "sku" ] }, "customFields": { "type": "object", "title": "CustomFields", "description": "Additional Data About this Object", "properties": { "additionalProductClassification": { "title": "Has Additional Product Classification", "description": "Relates to a set of additional product classification details", "type": "object" }, "additionalProductDescription": { "title": "Additional Product Description", "description": "Additional variants necessary to communicate to the industry to help define the product. Multiple variants can be established for each GTIN for e.g. Style, Colour, and Fragrance .", "type": "string" }, "additive": { "title": "Has Additive", "description": "Relates to details about any additives that a product may contain.", "type": "object" }, "audioFile": { "title": "Has Audio File", "description": "Link to a file containing an audio clip which is relevant to the product. Examples are commercials, or instructional/ how to use audio files.", "type": "object" }, "awardPrize": { "title": "Has Award Prize", "description": "An award or prize given to the product.", "type": "object" }, "brandOwner": { "title": "Has Brand Owner", "description": "The brand owner of the product. The organization that is responsible for allocating the GTIN to the product.", "type": "object" }, "certification": { "title": "Has Certification", "description": "Information on certification to which the product complies.", "type": "object" }, "colourCode": { "title": "Has Colour Code", "description": "Relates to a set of details about the colour code for a product", "type": "object" }, "colourDescription": { "title": "Colour Description", "description": "A description of the colour of an object.", "type": "string" }, "consumerHandlingStorage": { "title": "Has Consumer Handling Storage", "description": "Link to a website, file, or image containing the manufacturer's recommendations for how the consumer or end user should store and handle the product.", "type": "object" }, "consumerPackageDisclaimer": { "title": "Consumer Package Disclaimer", "description": "Additional information that should be used in advertising and in displaying.", "type": "string" }, "consumerSafetyInformation": { "title": "Consumer Safety Information", "description": "Information on consumer safety regarding the product.", "type": "string" }, "consumerSalesCondition": { "title": "Consumer Sales Condition Code", "description": "A code indicating restrictions imposed on the product regarding how it can be sold to the consumer for example Prescription Required.", "type": "object" }, "consumerStorageInstructions": { "title": "Consumer Storage Instructions", "description": "Expresses in text the consumer storage instructions of a product which are normally held on the label or accompanying the product. This information may or may not be labelled on the pack.", "type": "string" }, "consumerUsageInstructions": { "title": "Consumer Usage Instructions", "description": "Free text containing the usage instructions of a product, which are normally held on the label or accompanying the product. This information may or may not be labelled on the pack.", "type": "string" }, "countryOfAssembly": { "title": "Has Country Of Assembly", "description": "The place where product is assembled.", "type": "object" }, "countryOfLastProcessing": { "title": "Has Country Of Last Processing", "description": "The place where the product or ingredient was last processed and tested before importation.", "type": "object" }, "countryOfOrigin": { "title": "Has Country Of Origin", "description": "Code indicating the country of origin of the product.", "type": "object" }, "countryOfOriginStatement": { "title": "Country Of Origin Statement", "description": "A description of the geographic area the item may have originated from or has been processed.", "type": "string" }, "customerSupportCentre": { "title": "Has Customer Support Centre", "description": "The organization which provides product support to the trading partner organization to which merchandise is sold.", "type": "object" }, "dependentProprietaryProduct": { "title": "Has Dependent Proprietary Product", "description": "Dependent products are products which are required to make the current product functional.", "type": "object" }, "descriptiveSize": { "title": "Descriptive Size", "description": "An alphanumeric size factor the brand owner wishes to communicate to the consumer. IE Jumbo, Capri, Full Length, Maxi.", "type": "string" }, "equivalentProduct": { "title": "Has Equivalent Product", "description": "A product which can be substituted for the product based on supplier-defined functional equivalence to the product.", "type": "object" }, "functionalName": { "title": "Functional Name", "description": "Describes use of the product or service by the consumer. Should help clarify the product classification associated with the GTIN.", "type": "string" }, "gpcCategoryCode": { "title": "GPC Category Code", "description": "8-digit code (GPC Brick Value) specifying a product category according to the GS1 Global Product Classification (GPC) standard. For more information see http://www.gs1.org/gpc", "type": "string" }, "gpcCategoryDescription": { "title": "GPC Category Description", "description": "A description of the code specifying a product category according to the GS1 Global Product Classification (GPC) standard.", "type": "string" }, "grossWeight": { "title": "Gross Weight", "description": "Used to identify the gross weight of the product. The gross weight includes all packaging materials of the product. At pallet level the productGrossWeight includes the weight of the pallet itself. For example, 200 GRM, value - total pounds, total grams, etc.", "type": "object" }, "growingMethod": { "title": "Growing Method", "description": "The process through which fresh produce is grown and cultivated.", "type": "object" }, "healthClaimDescription": { "title": "Health Claim", "description": "A description of health claims according to regulations of the target market.", "type": "string" }, "image": { "title": "Has Product Image", "description": "Link to a file containing a visual representation of the product.", "type": "object" }, "inPackageDepth": { "title": "In Package Depth", "description": "The depth of the product in its packaging, as measured according to the GS1 Package Measurement Rules. See http://www.gs1.org/package-measurement-rules-implementation-guide for more details.", "type": "object" }, "inPackageDiameter": { "title": "In Package Diameter", "description": "The measurement of the diameter of the product in its package at its largest point. For example, 165 MMT.", "type": "object" }, "inPackageHeight": { "title": "In Package Height", "description": "The height of the product in the package, as measured according to the GS1 Package Measurement Rules. See http://www.gs1.org/package-measurement-rules-implementation-guide for more details.", "type": "object" }, "inPackageWidth": { "title": "In Package Width", "description": "The width of the product in the package, as measured according to the GS1 Package Measurement Rules. See http://www.gs1.org/package-measurement-rules-implementation-guide for more details.", "type": "object" }, "includedAccessories": { "title": "Included Accessories", "description": "Any included object or device not part of the core product itself but which adds to its functionality or use.", "type": "string" }, "instructionsForUse": { "title": "Has Instructions For Use", "description": "Link to a file containing the Instructions For Use.", "type": "object" }, "isProductRecalled": { "title": "Is Product Recalled", "description": "An indicator for the product to determine if the Manufacturer or Supplier has recalled the product.", "type": "boolean" }, "manufacturer": { "title": "Has Manufacturer", "description": "The organization that produces the item.", "type": "object" }, "manufacturersWarranty": { "title": "Has Manufacturer's Warranty", "description": "The warranty associated with the product.", "type": "object" }, "manufacturingPlant": { "title": "Has Manufacturing Plant", "description": "A physical location consisting of one or more buildings with facilities for manufacturing.", "type": "object" }, "netContent": { "title": "Net Content", "description": "The quantity of the product contained by a package, usually as claimed on the label. Indicates the net content of the total product. For fixed value products use the value claimed on the package, to avoid variable fill rate issue that arises with some product which are sold by volume or weight, and whose actual content may vary slightly from batch to batch.", "type": "object" }, "netWeight": { "title": "Net Weight", "description": "Used to identify the net weight of the product. Net Weight excludes all packaging material, including the packaging material of all lower-level GTINs. Example:11.5 kgm.", "type": "object" }, "organicClaim": { "title": "Has Organic Claim", "description": "Relates to an organic claim about the product", "type": "object" }, "outOfPackageDepth": { "title": "Out of Package Depth", "description": "The depth of the product out of its packaging, as measured according to the GS1 Package Measurement Rules. See http://www.gs1.org/package-measurement-rules-implementation-guide for more details.", "type": "object" }, "outOfPackageDiameter": { "title": "Out of Package Diameter", "description": "The measurement of the diameter of the product out of its package at its largest point. For example, 165 MMT.", "type": "object" }, "outOfPackageHeight": { "title": "Out of Package Height", "description": "The height of the product out of the package, as measured according to the GS1 Package Measurement Rules. See http://www.gs1.org/package-measurement-rules-implementation-guide for more details.", "type": "object" }, "outOfPackageWidth": { "title": "Out of Package Width", "description": "The width of the product out of the package, as measured according to the GS1 Package Measurement Rules. See http://www.gs1.org/package-measurement-rules-implementation-guide for more details.", "type": "object" }, "packaging": { "title": "Has Packaging", "description": "Details on the packaging for a product including type, weight and materials.", "type": "object" }, "packagingMarkedLabelAccreditation": { "title": "Accreditation Code", "description": "A marking that the product received recognition, endorsement, certification by following guidelines by the label issuing agency. This does not represent claims for regulatory purposes on products such as free from markings.", "type": "object" }, "primaryAlternateProduct": { "title": "Has Primary Alternate Product", "description": "A product that is similar to the current product but is not exact match. Same form fit function, e.g. same product different colour, different package size, better quality.", "type": "object" }, "productFeatureBenefit": { "title": "Product Feature Benefit", "description": "Element for consumer facing marketing content to describe the key features or benefits of the style suitable for display purposes.", "type": "string" }, "productFormDescription": { "title": "Product Form Description", "description": "The physical form or shape of the product. Used, for example, in pharmaceutical industry to indicate the formulation of the product. Defines the form the product takes and is distinct from the form of the packaging.", "type": "string" }, "productID": { "title": "Product ID", "description": "Additional means to the Global Trade Item Number to identify a product.", "type": "string" }, "productMarketingMessage": { "title": "Product Marketing Message", "description": "Marketing message associated with the product. Consumer-friendly marketing detailed description of the product.", "type": "string" }, "productRange": { "title": "Product Range", "description": "A name, used by a Brand Owner, that span multiple consumer categories or uses. E.g. (Waist Watchers).", "type": "string" }, "productionVariantDescription": { "title": "Production Variant Description", "description": "Free text assigned by the manufacturer to describe the production variant. Examples are: package series X, package series Y.", "type": "string" }, "productionVariantEffectiveDateTime": { "title": "Production Variant Effective Date Time", "description": " A vaild epoch timestamp", "type": "number", "minimum": -2206368037000, "maximum": 4100000000000 }, "provenanceStatement": { "title": "Provenance Statement", "description": "Free text description of the region or place the product originates from. This is to be specifically used to specify areas such as cities, mountain ranges, regions. Examples: Made in the Thuringen Mountains, Made in Paris, From the Napa Valley.", "type": "string" }, "recipeWebsite": { "title": "Has Recipe Website", "description": "Link to a website containing recipes associated with the product.", "type": "object" }, "referencedFile": { "title": "Has Referenced File", "description": "Link to a file or website containing additional information on product.", "type": "object" }, "regulatedProductName": { "title": "Regulated Product Name", "description": "The prescribed, regulated or generic product name or denomination that describes the true nature of the product. For example for a food product in order to distinguish it from other foods according to country specific regulations.", "type": "string" }, "replacedByProduct": { "title": "Has Replaced By Product", "description": "The product which permanently replaces the current product. This product is sent in the record for the original item that is being replaced.", "type": "object" }, "replacedProduct": { "title": "Has Replaced Product", "description": "Indicates the product identification of an item that is being permanently replaced by this product.", "type": "object" }, "sizeCode": { "title": "Size Code", "description": "Links a product to one or more groupings of gs1:SizeCodeDetails representing the size value from a specified code list.", "type": "object" }, "supplierSpecifiedMinimumConsumerStorageDays": { "title": "Supplier Specified Minimum Consumer Storage Days", "description": "Represents the number of days between a product's sell by date and its use by date.", "type": "integer" }, "targetMarket": { "title": "Has Target Market", "description": "Relates to a set of target market details (product release date and associated countries)", "type": "object" }, "variantDescription": { "title": "Variant Description", "description": "Free text field used to identify the variant of the product. Variants are the distinguishing characteristics that differentiate products with the same brand and size including such things as the particular flavour, fragrance, taste.", "type": "string" }, "warningCopyDescription": { "title": "Warning Copy Description", "description": "Warning information is additional information that outlines special requirements, warning and caution information printed on the package.", "type": "string" }, "allergenSpecificationAgency": { "title": "Allergen Specification Agency", "description": "The agency or other organization that defines or manages the criteria for allergen containment.", "type": "string" }, "allergenSpecificationName": { "title": "Allergen Specification Name", "description": "Free text field containing the name and version of the regulation or standard that defines the criteria of allergen containment.", "type": "string" }, "allergenStatement": { "title": "Allergen Statement", "description": "Textual description of the presence or absence of allergens as governed by local rules and regulations, specified as one string.", "type": "string" }, "biotinPerNutrientBasis": { "title": "Biotin Per Nutrient Basis Quantity", "description": "Biotin Acid per specified nutrient basis quantity.", "type": "object" }, "calciumPerNutrientBasis": { "title": "Calcium Per Nutrient Basis Quantity", "description": "Calcium per specified nutrient basis quantity.", "type": "object" }, "carbohydratesPerNutrientBasis": { "title": "Carbohydrates Per Nutrient Basis Quantity", "description": "Carbohydrates per specified nutrient basis quantity.", "type": "object" }, "chloridePerNutrientBasis": { "title": "Chloride Per Nutrient Basis Quantity", "description": "Chloride per specified nutrient basis quantity.", "type": "object" }, "cholesterolPerNutrientBasis": { "title": "Cholesterol Per Nutrient Basis Quantity", "description": "Cholesterol per specified nutrient basis quantity.", "type": "object" }, "chromiumPerNutrientBasis": { "title": "Chromium Per Nutrient Basis Quantity", "description": "Chromium per specified nutrient basis quantity.", "type": "object" }, "copperPerNutrientBasis": { "title": "Copper Per Nutrient Basis Quantity", "description": "Copper per specified nutrient basis quantity.", "type": "object" }, "dietCode": { "title": "Diet Code", "description": "Links to multiple pairs of gs1:DietTypeCode and diet type sub code (free-form text string).", "type": "object" }, "dietTypeDescription": { "title": "Diet Type Description", "description": "Free text for indication of diet not stated in the list of diets.", "type": "string" }, "drainedWeight": { "title": "Drained Weight", "description": "The weight of the product when drained of its liquid. For example 225 GRM, Jar of pickles in vinegar.", "type": "object" }, "energyFromFatPerNutrientBasis": { "title": "Energy from Fat Per Nutrient Basis Quantity", "description": "Energy from Fat per specified nutrient basis quantity.", "type": "object" }, "energyPerNutrientBasis": { "title": "Energy Per Nutrient Basis Quantity", "description": "Energy Per specified nutrient basis quantity.", "type": "object" }, "fatPerNutrientBasis": { "title": "Fat Per Nutrient Basis Quantity", "description": "Fat per specified nutrient basis quantity.", "type": "object" }, "fibrePerNutrientBasis": { "title": "Fibre Per Nutrient Basis Quantity", "description": "Fibre per specified nutrient basis quantity.", "type": "object" }, "fluoridePerNutrientBasis": { "title": "Fluoride Per Nutrient Basis Quantity", "description": "Fluoride per specified nutrient basis quantity.", "type": "object" }, "folicAcidPerNutrientBasis": { "title": "Folic Acid Per Nutrient Basis Quantity", "description": "Folic Acid per specified nutrient basis quantity.", "type": "object" }, "foodBeverageRefrigerationClaim": { "title": "Food Beverage Refrigeration Claim", "description": "Identifies whether or not the product requires refrigeration.", "type": "object" }, "foodBeverageTargetUse": { "title": "Food Beverage Target Use", "description": "The type of meal the food or beverage product is targeted to for example Breakfast.", "type": "object" }, "geneticallyModifiedDeclaration": { "title": "Genetically Modified Declaration Code", "description": "A statement of the presence or absence of genetically modified protein or DNA.", "type": "object" }, "hasAllergen": { "title": "Has Allergen", "description": "Relates to details about allergens", "type": "object" }, "ingredient": { "title": "Has Food And Beverage Ingredient Information", "description": "Links to information about ingredients of a specific Food/Beverage/Tobacco product.", "type": "object" }, "ingredientOfConcern": { "title": "Ingredient of Concern", "description": "Indicates a claim to an ingredient, considered to be a concern for regulatory or other reasons, and which is 'contained' within the product but may not need to specify the amount whether approximate, or an accurate measurement be given.", "type": "string" }, "ingredientStatement": { "title": "Ingredient Statement", "description": "Information on the constituent ingredient make up of the product specified as one string.", "type": "string" }, "iodinePerNutrientBasis": { "title": "Iodine Per Nutrient Basis Quantity", "description": "Iodine per specified nutrient basis quantity.", "type": "object" }, "ironPerNutrientBasis": { "title": "Iron Per Nutrient Basis Quantity", "description": "Iron per specified nutrient basis quantity.", "type": "object" }, "irradiatedCode": { "title": "Irradiated Code", "description": "Indicates if radiation has been applied to the product.", "type": "object" }, "isInstant": { "title": "Is Instant", "description": "Determines whether the product is instant.", "type": "object" }, "isSliced": { "title": "Is Sliced", "description": "Determines whether the product comes pre-sliced.", "type": "object" }, "juiceContentPercent": { "title": "Juice Content Percent", "description": "The fruit juice content of the product expressed as a percentage.", "type": "object" }, "magnesiumPerNutrientBasis": { "title": "Magnesium Per Nutrient Basis Quantity", "description": "Magnesium per specified nutrient basis quantity.", "type": "object" }, "manganesePerNutrientBasis": { "title": "Manganese Per Nutrient Basis Quantity", "description": "Manganese per specified nutrient basis quantity.", "type": "object" }, "molybdenumPerNutrientBasis": { "title": "Molybdenum Per Nutrient Basis Quantity", "description": "Molybdenum per specified nutrient basis quantity.", "type": "object" }, "monounsaturatedFatPerNutrientBasis": { "title": "Monounsaturated Fat Per Nutrient Basis Quantity", "description": "Monounsaturated fat per specified nutrient basis quantity.", "type": "object" }, "niacinPerNutrientBasis": { "title": "Niacin Per Nutrient Basis Quantity", "description": "Niacin per specified nutrient basis quantity.", "type": "object" }, "numberOfServingsPerPackage": { "title": "Number of Servings Per Package", "description": "The total number of servings contained in the package.", "type": "object" }, "numberOfServingsPerPackageMeasurementPrecision": { "title": "Number of Servings Per Package Measurement Precision", "description": "Code indicating whether the number of servings per package is exact or approximate.", "type": "object" }, "numberOfServingsRangeDescription": { "title": "Number of Servings Range Description", "description": "A free text field specifying a range for the number of servings contained in the package.", "type": "string" }, "nutrientBasisQuantity": { "title": "Nutrient Basis Quantity", "description": "Quantity on which the nutrient information has been based; for example, per 100 grams. When specified, nutrientBasisQuantity establishes the basis for all contained nutrient records.", "type": "object" }, "nutrientBasisQuantityType": { "title": "Nutrient Basis Quantity Type Code", "description": "The type of quantity specified in the nutrientBasisQuantity for example measurement, serving size, or container. This is used in conjunction with the nutrientBasisQuantity.", "type": "object" }, "nutrientMeasurementPrecision": { "title": "Nutrient Measurement Precision", "description": "The Code indicating whether the specified nutrient content is exact or approximate.", "type": "object" }, "nutritionalClaim": { "title": "Nutritional Claim Code", "description": "Code indicating a nutritional claim applicable to the product, for example FAT_FREE.", "type": "object" }, "nutritionalClaimStatement": { "title": "Nutritional Claim Statement", "description": "Free text field for any additional nutritional claims.", "type": "string" }, "packagingMarkedDietAllergenType": { "title": "Packaging Marked Diet Allergen Type Code", "description": "Indication of which dietary or allergen marks are on the package.", "type": "object" }, "packagingMarkedFreeFrom": { "title": "Packaging Marked Free From Code", "description": "Indication of the food ingredients that the package is marked free from.", "type": "object" }, "pantothenicAcidPerNutrientBasis": { "title": "Pantothenic Acid Per Nutrient Basis Quantity", "description": "Pantothenic Acid per specified nutrient basis quantity.", "type": "object" }, "phosphorusPerNutrientBasis": { "title": "Phosphorus Per Nutrient Basis Quantity", "description": "Phosphorus per specified nutrient basis quantity.", "type": "object" }, "polyolsPerNutrientBasis": { "title": "Polyols Per Nutrient Basis Quantity", "description": "Polyols per specified nutrient basis quantity.", "type": "object" }, "polyunsaturatedFatPerNutrientBasis": { "title": "Polyunsaturated Fat Per Nutrient Basis Quantity", "description": "Polyunsaturated fat per specified nutrient basis quantity.", "type": "object" }, "potassiumPerNutrientBasis": { "title": "Potassium Per Nutrient Basis Quantity", "description": "Potassium per specified nutrient basis quantity.", "type": "object" }, "preparationInformation": { "title": "Has Food And Beverage Preparation Information", "description": "Links to information about how to prepare a specific Food/Beverage/Tobacco product.", "type": "object" }, "preservationTechnique": { "title": "Preservation Technique", "description": "Code indicating the preservation technique used to preserve the product from deterioration, for example, BRINING.", "type": "object" }, "proteinPerNutrientBasis": { "title": "Protein Per Nutrient Basis Quantity", "description": "Protein per specified nutrient basis quantity.", "type": "object" }, "reheatingClaim": { "title": "Reheating Claim", "description": "Indicates, with reference to the product branding, labelling or packaging whether a food product which is ready to eat can be reheated if required prior to consumption.", "type": "object" }, "riboflavinPerNutrientBasis": { "title": "Riboflavin Per Nutrient Basis Quantity", "description": "Riboflavin per specified nutrient basis quantity.", "type": "object" }, "saltPerNutrientBasis": { "title": "Salt Per Nutrient Basis Quantity", "description": "Salt per specified nutrient basis quantity.", "type": "object" }, "saturatedFatPerNutrientBasis": { "title": "Saturated Fat Per Nutrient Basis Quantity", "description": "Saturated fat per specified nutrient basis quantity.", "type": "object" }, "seleniumPerNutrientBasis": { "title": "Selenium Per Nutrient Basis Quantity", "description": "Selenium per specified nutrient basis quantity.", "type": "object" }, "servingSize": { "title": "Serving Size", "description": "Measurement value specifying the serving size in which the information per nutrient has been stated. Example: Per 100 GRM.", "type": "object" }, "servingSizeDescription": { "title": "Serving Size Description", "description": "A free text field specifying the serving size for which the nutrient information has been stated for example: per 1/3 cup (42 g).", "type": "string" }, "servingSuggestion": { "title": "Serving Suggestion", "description": "Free text field for serving suggestion.", "type": "string" }, "sodiumPerNutrientBasis": { "title": "Sodium Per Nutrient Basis Quantity", "description": "Sodium per specified nutrient basis quantity.", "type": "object" }, "sourceAnimal": { "title": "Source Animal Code", "description": "Code indicating the source of raw material used to produce the food product, for example a GOAT for milk.", "type": "object" }, "starchPerNutrientBasis": { "title": "Starch Per Nutrient Basis Quantity", "description": "Starch per specified nutrient basis quantity.", "type": "object" }, "sugarsPerNutrientBasis": { "title": "Sugars Per Nutrient Basis Quantity", "description": "Sugars per specified nutrient basis quantity.", "type": "object" }, "thiaminPerNutrientBasis": { "title": "Thiamin Per Nutrient Basis Quantity", "description": "Thiamin per specified nutrient basis quantity.", "type": "object" }, "transFatPerNutrientBasis": { "title": "Trans Fat Per Nutrient Basis Quantity", "description": "Trans Fat per specified nutrient basis quantity.", "type": "object" }, "vitaminAPerNutrientBasis": { "title": "Vitamin A Per Nutrient Basis Quantity", "description": "Vitamin A per specified nutrient basis quantity.", "type": "object" }, "vitaminB12PerNutrientBasis": { "title": "Vitamin B12 Per Nutrient Basis Quantity", "description": "Vitamin B12 per specified nutrient basis quantity.", "type": "object" }, "vitaminB6PerNutrientBasis": { "title": "Vitamin B6 Per Nutrient Basis Quantity", "description": "Vitamin B6 per specified nutrient basis quantity.", "type": "object" }, "vitaminCPerNutrientBasis": { "title": "Vitamin C Per Nutrient Basis Quantity", "description": "Vitamin C per specified nutrient basis quantity.", "type": "object" }, "vitaminDPerNutrientBasis": { "title": "Vitamin D Per Nutrient Basis Quantity", "description": "Vitamin D per specified nutrient basis quantity.", "type": "object" }, "vitaminEPerNutrientBasis": { "title": "Vitamin E Per Nutrient Basis Quantity", "description": "Vitamin E per specified nutrient basis quantity.", "type": "object" }, "vitaminKPerNutrientBasis": { "title": "Vitamin K Per Nutrient Basis Quantity", "description": "Vitamin K per specified nutrient basis quantity.", "type": "object" }, "zincPerNutrientBasis": { "title": "Zinc Per Nutrient Basis Quantity", "description": "Zinc per specified nutrient basis quantity.", "type": "object" }, "alcoholicBeverageSubregion": { "title": "Alcoholic Beverage Sub-region", "description": "A legally defined geographical region where the grapes for a wine were grown also known as an appellation. It is recommended to populate this property with an ISO 3166-2 code to indicate country and subdivision.", "type": "string" }, "beverageVintage": { "title": "Beverage Vintage", "description": "The year in which the majority of ingredients are harvested and/or the alcoholic beverage is produced. Determination as to whether the vintage year is the harvest date or production date is according to requirements in the Target Market.", "type": "string" }, "isCarbonated": { "title": "Is Carbonated", "description": "Used to identify whether or not a beverage product is naturally effervescent or has been made effervescent by the addition of carbon dioxide gas.", "type": "object" }, "isDecaffeinated": { "title": "Is Decaffeinated", "description": "The descriptive term that is used by the product manufacturer to identify whether or not the product contains caffeine.", "type": "object" }, "isFromConcentrate": { "title": "Is From Concentrate", "description": "Used to identify whether or not the product claims to be made from a concentrated formulation.", "type": "object" }, "isVintage": { "title": "Is Vintage", "description": "Identifies whether the product makes claim to being vintage.", "type": "object" }, "percentageOfAlcoholByVolume": { "title": "Percentage of Alcohol Per Volume", "description": "The percentage of alcohol contained in product.", "type": "object" }, "vintner": { "title": "Vintner", "description": "The person hired by a winery or wine company who is responsible for many of the processes in the preparation, taste and quality of the wine produced. The science of wine making is referred to as oenology. The vintner is the oenologist.", "type": "string" } } }, "brand": { "title": "brand", "description": "The brand of the product that appears on the consumer package.", "type": "string" }, "url": { "title": "URL", "description": " A Vaild Url (this is a simple one, there are more complex axamples but good for now)", "type": "string", "minLength": 6, "pattern": "^(http|https)://" }, "categories": { "title": "categories", "description": "Used for searching", "type": "array" }, "photos": { "title": "photos", "description": "Pictures of the Product", "type": "array" } }, "required": [ "name", "identifiers" ] }
o39532
{ "additionalProperties": false, "definitions": { "constraints": { "service": { "anyOf": [ { "required": [ "build" ] }, { "required": [ "image" ] } ], "id": "#/definitions/constraints/service", "properties": { "build": { "required": [ "context" ] } } } }, "deployment": { "additionalProperties": false, "id": "#/definitions/deployment", "properties": { "labels": { "$ref": "#/definitions/list_or_dict" }, "mode": { "type": "string" }, "placement": { "additionalProperties": false, "properties": { "constraints": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "replicas": { "type": "integer" }, "resources": { "properties": { "limits": { "$ref": "#/definitions/resource" }, "reservations": { "$ref": "#/definitions/resource" } }, "type": "object" }, "restart_policy": { "additionalProperties": false, "properties": { "condition": { "type": "string" }, "delay": { "_format": "duration", "type": "string" }, "max_attempts": { "type": "integer" }, "window": { "_format": "duration", "type": "string" } }, "type": "object" }, "update_config": { "additionalProperties": false, "properties": { "delay": { "_format": "duration", "type": "string" }, "failure_action": { "type": "string" }, "max_failure_ratio": { "type": "number" }, "monitor": { "_format": "duration", "type": "string" }, "parallelism": { "type": "integer" } }, "type": "object" } }, "type": [ "object", "null" ] }, "healthcheck": { "additionalProperties": false, "id": "#/definitions/healthcheck", "properties": { "disable": { "type": "boolean" }, "interval": { "type": "string" }, "retries": { "type": "number" }, "test": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "timeout": { "type": "string" } }, "type": "object" }, "list_of_strings": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "list_or_dict": { "oneOf": [ { "additionalProperties": false, "patternProperties": { ".+": { "type": [ "string", "number", "null" ] } }, "type": "object" }, { "items": { "type": "string" }, "type": "array", "_uniqueItems": true } ] }, "network": { "additionalProperties": false, "id": "#/definitions/network", "properties": { "driver": { "type": "string" }, "driver_opts": { "patternProperties": { "^.+$": { "type": [ "string", "number" ] } }, "type": "object" }, "external": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "type": [ "boolean", "object" ] }, "internal": { "type": "boolean" }, "ipam": { "additionalProperties": false, "properties": { "config": { "items": { "additionalProperties": false, "properties": { "subnet": { "type": "string" } }, "type": "object" }, "type": "array" }, "driver": { "type": "string" } }, "type": "object" }, "labels": { "$ref": "#/definitions/list_or_dict" } }, "type": [ "object", "null" ] }, "plugin": { "id": "#/definitions/plugin", "properties": { "options": { "$ref": "#/definitions/list_or_dict" }, "version": { "type": "string" } }, "type": "object" }, "resource": { "additionalProperties": false, "id": "#/definitions/resource", "properties": { "cpus": { "type": "string" }, "memory": { "type": "string" } }, "type": "object" }, "service": { "additionalProperties": false, "id": "#/definitions/service", "properties": { "build": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "args": { "$ref": "#/definitions/list_or_dict" }, "context": { "type": "string" }, "dockerfile": { "type": "string" } }, "type": "object" } ] }, "cap_add": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "cap_drop": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "cgroup_parent": { "type": "string" }, "command": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "container_name": { "type": "string" }, "depends_on": { "$ref": "#/definitions/list_of_strings" }, "deploy": { "$ref": "#/definitions/deployment" }, "devices": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "dns": { "$ref": "#/definitions/string_or_list" }, "dns_search": { "$ref": "#/definitions/string_or_list" }, "domainname": { "type": "string" }, "entrypoint": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "env_file": { "$ref": "#/definitions/string_or_list" }, "environment": { "$ref": "#/definitions/list_or_dict" }, "expose": { "items": { "format": "expose", "type": [ "string", "number" ] }, "type": "array", "_uniqueItems": true }, "external_links": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "extra_hosts": { "$ref": "#/definitions/list_or_dict" }, "healthcheck": { "$ref": "#/definitions/healthcheck" }, "hostname": { "type": "string" }, "image": { "type": "string" }, "ipc": { "type": "string" }, "labels": { "$ref": "#/definitions/list_or_dict" }, "links": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "logging": { "additionalProperties": false, "properties": { "driver": { "type": "string" }, "options": { "patternProperties": { "^.+$": { "type": [ "string", "number", "null" ] } }, "type": "object" } }, "type": "object" }, "mac_address": { "type": "string" }, "network_mode": { "type": "string" }, "networks": { "oneOf": [ { "$ref": "#/definitions/list_of_strings" }, { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9._-]+$": { "oneOf": [ { "additionalProperties": false, "properties": { "aliases": { "$ref": "#/definitions/list_of_strings" }, "ipv4_address": { "type": "string" }, "ipv6_address": { "type": "string" } }, "type": "object" }, { "type": "null" } ] } }, "type": "object" } ] }, "pid": { "type": [ "string", "null" ] }, "ports": { "items": { "format": "ports", "type": [ "string", "number" ] }, "type": "array", "_uniqueItems": true }, "privileged": { "type": "boolean" }, "read_only": { "type": "boolean" }, "restart": { "type": "string" }, "security_opt": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "shm_size": { "type": [ "number", "string" ] }, "stdin_open": { "type": "boolean" }, "stop_grace_period": { "_format": "duration", "type": "string" }, "stop_signal": { "type": "string" }, "sysctls": { "$ref": "#/definitions/list_or_dict" }, "tmpfs": { "$ref": "#/definitions/string_or_list" }, "tty": { "type": "boolean" }, "ulimits": { "patternProperties": { "^[a-z]+$": { "oneOf": [ { "type": "integer" }, { "additionalProperties": false, "properties": { "hard": { "type": "integer" }, "soft": { "type": "integer" } }, "required": [ "soft", "hard" ], "type": "object" } ] } }, "type": "object" }, "user": { "type": "string" }, "userns_mode": { "type": "string" }, "volumes": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "working_dir": { "type": "string" } }, "type": "object" }, "string_or_list": { "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/list_of_strings" } ] }, "volume": { "additionalProperties": false, "id": "#/definitions/volume", "properties": { "driver": { "type": "string" }, "driver_opts": { "patternProperties": { "^.+$": { "type": [ "string", "number" ] } }, "type": "object" }, "external": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "type": [ "boolean", "object" ] }, "labels": { "$ref": "#/definitions/list_or_dict" } }, "type": [ "object", "null" ] } }, "properties": { "networks": { "id": "#/properties/networks", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/network" } }, "type": "object" }, "plugins": { "additionalProperties": false, "id": "#/properties/plugins", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/plugin" } }, "type": "object" }, "services": { "additionalProperties": false, "id": "#/properties/services", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/service" } }, "type": "object" }, "version": { "type": "string" }, "volumes": { "additionalProperties": false, "id": "#/properties/volumes", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/volume" } }, "type": "object" } }, "required": [ "version" ], "type": "object" }
o6084
{ "additionalProperties": false, "definitions": { "fileReplacement": { "oneOf": [ { "additionalProperties": false, "properties": { "replaceWith": { "type": "string" }, "src": { "type": "string" } }, "required": [ "src", "replaceWith" ], "type": "object" }, { "additionalProperties": false, "properties": { "replace": { "type": "string" }, "with": { "type": "string" } }, "required": [ "replace", "with" ], "type": "object" } ] } }, "description": "Universal target options for Build Facade.", "properties": { "browserTarget": { "description": "Target to browser.", "type": "string" }, "bundleDependenciesWhitelist": { "description": "DEPRECATED use \"externalDependencies\" in server builder", "items": { "type": "string" }, "type": "array" }, "deleteOutputPath": { "default": true, "description": "Delete the output path before building.", "type": "boolean" }, "fileLoaderEmitFile": { "default": false, "description": "DEPRECATED server builder doesn't emit any file since angular v9", "type": "boolean" }, "fileReplacements": { "default": [], "description": "Replace files with other files in the build.", "items": { "$ref": "#/definitions/fileReplacement" }, "type": "array" }, "partialBrowserConfig": { "description": "Partial webpack config for browser.", "type": "string" }, "partialServerConfig": { "description": "Partial webpack config for server.", "type": "string" }, "serverTarget": { "description": "Target to server.", "type": "string" }, "verbose": { "default": false, "description": "Adds more details to output logging.", "type": "boolean" } }, "required": [ "browserTarget", "serverTarget" ], "title": "Universal Target", "type": "object" }
o39137
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "status": { "type": "string", "enum": [ "active", "inactive" ] }, "description": { "type": "string", "maxLength": 32767 }, "filterType": { "oneOf": [ { "type": "string", "enum": [ "all", "whitelist", "blacklist" ] }, { "type": "string", "enum": [ "none" ] } ] }, "pubTopics": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "subTopics": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } } }, "additionalProperties": false }
o9783
{ "properties": { "dimensions": { "dependencies": { "base": [ "triangle" ], "height": [ "triangle" ], "length": [ "rectangle" ], "radius": [ "circle" ], "shape": [ "rectangle", "circle", "triangle" ], "width": [ "rectangle" ] }, "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "radius", "base", "height" ], "type": "object" }, "shape": { "description": "The shape for which to calculate the area", "enum": [ "rectangle", "circle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_32f30fb2
{ "$schema": "http://json-schema.org/draft-04/schema#", "allOf": [ { "$ref": "#/definitions/compilerOptionsDefinition" }, { "$ref": "#/definitions/compileOnSaveDefinition" }, { "$ref": "#/definitions/typeAcquisitionDefinition" }, { "$ref": "#/definitions/extendsDefinition" }, { "$ref": "#/definitions/watchOptionsDefinition" }, { "$ref": "#/definitions/buildOptionsDefinition" }, { "anyOf": [ { "$ref": "#/definitions/filesDefinition" }, { "$ref": "#/definitions/excludeDefinition" }, { "$ref": "#/definitions/includeDefinition" }, { "$ref": "#/definitions/referencesDefinition" } ] } ], "definitions": { "//": { "explainer": "https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#overview", "reference": "https://www.typescriptlang.org/tsconfig", "reference metadata": "https://github.com/microsoft/TypeScript-Website/blob/v2/packages/tsconfig-reference/scripts/tsconfigRules.ts" }, "filesDefinition": { "properties": { "files": { "description": "If no 'files' or 'include' property is present in a tsconfig.json, the compiler defaults to including all files in the containing directory and subdirectories except those specified by 'exclude'. When a 'files' property is specified, only those files and those specified by 'include' are included.", "type": "array", "uniqueItems": true, "items": { "type": "string" } } } }, "excludeDefinition": { "properties": { "exclude": { "description": "Specifies a list of files to be excluded from compilation. The 'exclude' property only affects the files included via the 'include' property and not the 'files' property. Glob patterns require TypeScript version 2.0 or later.", "type": "array", "uniqueItems": true, "items": { "type": "string" } } } }, "includeDefinition": { "properties": { "include": { "description": "Specifies a list of glob patterns that match files to be included in compilation. If no 'files' or 'include' property is present in a tsconfig.json, the compiler defaults to including all files in the containing directory and subdirectories except those specified by 'exclude'. Requires TypeScript version 2.0 or later.", "type": "array", "uniqueItems": true, "items": { "type": "string" } } } }, "compileOnSaveDefinition": { "properties": { "compileOnSave": { "description": "Enable Compile-on-Save for this project.", "type": "boolean" } } }, "extendsDefinition": { "properties": { "extends": { "description": "Path to base configuration file to inherit from (requires TypeScript version 2.1 or later), or array of base files, with the rightmost files having the greater priority (requires TypeScript version 5.0 or later).", "oneOf": [ { "default": "", "type": "string" }, { "default": [], "items": { "type": "string" }, "type": "array" } ] } } }, "buildOptionsDefinition": { "properties": { "buildOptions": { "properties": { "dry": { "description": "~", "type": "boolean", "default": false }, "force": { "description": "Build all projects, including those that appear to be up to date", "type": "boolean", "default": false, "markdownDescription": "Build all projects, including those that appear to be up to date\n\nSee more: https://www.typescriptlang.org/tsconfig#force" }, "verbose": { "description": "Enable verbose logging", "type": "boolean", "default": false, "markdownDescription": "Enable verbose logging\n\nSee more: https://www.typescriptlang.org/tsconfig#verbose" }, "incremental": { "description": "Save .tsbuildinfo files to allow for incremental compilation of projects.", "type": "boolean", "default": false, "markdownDescription": "Save .tsbuildinfo files to allow for incremental compilation of projects.\n\nSee more: https://www.typescriptlang.org/tsconfig#incremental" }, "assumeChangesOnlyAffectDirectDependencies": { "description": "Have recompiles in projects that use `incremental` and `watch` mode assume that changes within a file will only affect files directly depending on it.", "type": "boolean", "default": false, "markdownDescription": "Have recompiles in projects that use `incremental` and `watch` mode assume that changes within a file will only affect files directly depending on it.\n\nSee more: https://www.typescriptlang.org/tsconfig#assumeChangesOnlyAffectDirectDependencies" }, "traceResolution": { "description": "Log paths used during the `moduleResolution` process.", "type": "boolean", "default": false, "markdownDescription": "Log paths used during the `moduleResolution` process.\n\nSee more: https://www.typescriptlang.org/tsconfig#traceResolution" } } } } }, "watchOptionsDefinition": { "properties": { "watchOptions": { "type": "object", "description": "Settings for the watch mode in TypeScript.", "properties": { "force": { "description": "~", "type": "string" }, "watchFile": { "description": "Specify how the TypeScript watch mode works.", "type": "string", "markdownDescription": "Specify how the TypeScript watch mode works.\n\nSee more: https://www.typescriptlang.org/tsconfig#watchFile" }, "watchDirectory": { "description": "Specify how directories are watched on systems that lack recursive file-watching functionality.", "type": "string", "markdownDescription": "Specify how directories are watched on systems that lack recursive file-watching functionality.\n\nSee more: https://www.typescriptlang.org/tsconfig#watchDirectory" }, "fallbackPolling": { "description": "Specify what approach the watcher should use if the system runs out of native file watchers.", "type": "string", "markdownDescription": "Specify what approach the watcher should use if the system runs out of native file watchers.\n\nSee more: https://www.typescriptlang.org/tsconfig#fallbackPolling" }, "synchronousWatchDirectory": { "description": "Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively.", "type": "boolean", "markdownDescription": "Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively.\n\nSee more: https://www.typescriptlang.org/tsconfig#synchronousWatchDirectory" }, "excludeFiles": { "description": "Remove a list of files from the watch mode's processing.", "type": "array", "uniqueItems": true, "items": { "type": "string" }, "markdownDescription": "Remove a list of files from the watch mode's processing.\n\nSee more: https://www.typescriptlang.org/tsconfig#excludeFiles" }, "excludeDirectories": { "description": "Remove a list of directories from the watch process.", "type": "array", "uniqueItems": true, "items": { "type": "string" }, "markdownDescription": "Remove a list of directories from the watch process.\n\nSee more: https://www.typescriptlang.org/tsconfig#excludeDirectories" } } } } }, "compilerOptionsDefinition": { "properties": { "compilerOptions": { "type": "object", "description": "Instructs the TypeScript compiler how to compile .ts files.", "properties": { "allowArbitraryExtensions": { "description": "Enable importing files with any extension, provided a declaration file is present.", "type": "boolean", "markdownDescription": "Enable importing files with any extension, provided a declaration file is present.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowImportingTsExtensions" }, "allowImportingTsExtensions": { "description": "Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set.", "type": "boolean", "markdownDescription": "Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowImportingTsExtensions" }, "charset": { "description": "No longer supported. In early versions, manually set the text encoding for reading files.", "type": "string", "markdownDescription": "No longer supported. In early versions, manually set the text encoding for reading files.\n\nSee more: https://www.typescriptlang.org/tsconfig#charset" }, "composite": { "description": "Enable constraints that allow a TypeScript project to be used with project references.", "type": "boolean", "default": true, "markdownDescription": "Enable constraints that allow a TypeScript project to be used with project references.\n\nSee more: https://www.typescriptlang.org/tsconfig#composite" }, "customConditions": { "description": "Conditions to set in addition to the resolver-specific defaults when resolving imports.", "type": "array", "uniqueItems": true, "items": { "type": "string" }, "markdownDescription": "Conditions to set in addition to the resolver-specific defaults when resolving imports.\n\nSee more: https://www.typescriptlang.org/tsconfig#customConditions" }, "declaration": { "description": "Generate .d.ts files from TypeScript and JavaScript files in your project.", "type": "boolean", "default": false, "markdownDescription": "Generate .d.ts files from TypeScript and JavaScript files in your project.\n\nSee more: https://www.typescriptlang.org/tsconfig#declaration" }, "declarationDir": { "description": "Specify the output directory for generated declaration files.", "type": ["string", "null"], "markdownDescription": "Specify the output directory for generated declaration files.\n\nSee more: https://www.typescriptlang.org/tsconfig#declarationDir" }, "diagnostics": { "description": "Output compiler performance information after building.", "type": "boolean", "markdownDescription": "Output compiler performance information after building.\n\nSee more: https://www.typescriptlang.org/tsconfig#diagnostics" }, "disableReferencedProjectLoad": { "description": "Reduce the number of projects loaded automatically by TypeScript.", "type": "boolean", "markdownDescription": "Reduce the number of projects loaded automatically by TypeScript.\n\nSee more: https://www.typescriptlang.org/tsconfig#disableReferencedProjectLoad" }, "noPropertyAccessFromIndexSignature": { "description": "Enforces using indexed accessors for keys declared using an indexed type", "type": "boolean", "markdownDescription": "Enforces using indexed accessors for keys declared using an indexed type\n\nSee more: https://www.typescriptlang.org/tsconfig#noPropertyAccessFromIndexSignature" }, "emitBOM": { "description": "Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files.", "type": "boolean", "default": false, "markdownDescription": "Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files.\n\nSee more: https://www.typescriptlang.org/tsconfig#emitBOM" }, "emitDeclarationOnly": { "description": "Only output d.ts files and not JavaScript files.", "type": "boolean", "default": false, "markdownDescription": "Only output d.ts files and not JavaScript files.\n\nSee more: https://www.typescriptlang.org/tsconfig#emitDeclarationOnly" }, "exactOptionalPropertyTypes": { "description": "Differentiate between undefined and not present when type checking", "type": "boolean", "default": false, "markdownDescription": "Differentiate between undefined and not present when type checking\n\nSee more: https://www.typescriptlang.org/tsconfig#exactOptionalPropertyTypes" }, "incremental": { "description": "Enable incremental compilation. Requires TypeScript version 3.4 or later.", "type": "boolean" }, "tsBuildInfoFile": { "description": "Specify the folder for .tsbuildinfo incremental compilation files.", "default": ".tsbuildinfo", "type": "string", "markdownDescription": "Specify the folder for .tsbuildinfo incremental compilation files.\n\nSee more: https://www.typescriptlang.org/tsconfig#tsBuildInfoFile" }, "inlineSourceMap": { "description": "Include sourcemap files inside the emitted JavaScript.", "type": "boolean", "default": false, "markdownDescription": "Include sourcemap files inside the emitted JavaScript.\n\nSee more: https://www.typescriptlang.org/tsconfig#inlineSourceMap" }, "inlineSources": { "description": "Include source code in the sourcemaps inside the emitted JavaScript.", "type": "boolean", "default": false, "markdownDescription": "Include source code in the sourcemaps inside the emitted JavaScript.\n\nSee more: https://www.typescriptlang.org/tsconfig#inlineSources" }, "jsx": { "description": "Specify what JSX code is generated.", "enum": [ "preserve", "react", "react-jsx", "react-jsxdev", "react-native" ] }, "reactNamespace": { "description": "Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit.", "type": "string", "default": "React", "markdownDescription": "Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit.\n\nSee more: https://www.typescriptlang.org/tsconfig#reactNamespace" }, "jsxFactory": { "description": "Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'", "type": "string", "default": "React.createElement", "markdownDescription": "Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'\n\nSee more: https://www.typescriptlang.org/tsconfig#jsxFactory" }, "jsxFragmentFactory": { "description": "Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'.", "type": "string", "default": "React.Fragment", "markdownDescription": "Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'.\n\nSee more: https://www.typescriptlang.org/tsconfig#jsxFragmentFactory" }, "jsxImportSource": { "description": "Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx`.", "type": "string", "default": "react", "markdownDescription": "Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx`.\n\nSee more: https://www.typescriptlang.org/tsconfig#jsxImportSource" }, "listFiles": { "description": "Print all of the files read during the compilation.", "type": "boolean", "default": false, "markdownDescription": "Print all of the files read during the compilation.\n\nSee more: https://www.typescriptlang.org/tsconfig#listFiles" }, "mapRoot": { "description": "Specify the location where debugger should locate map files instead of generated locations.", "type": "string", "markdownDescription": "Specify the location where debugger should locate map files instead of generated locations.\n\nSee more: https://www.typescriptlang.org/tsconfig#mapRoot" }, "module": { "description": "Specify what module code is generated.", "type": "string", "anyOf": [ { "enum": [ "CommonJS", "AMD", "System", "UMD", "ES6", "ES2015", "ES2020", "ESNext", "None", "ES2022", "Node16", "NodeNext" ] }, { "pattern": "^([Cc][Oo][Mm][Mm][Oo][Nn][Jj][Ss]|[AaUu][Mm][Dd]|[Ss][Yy][Ss][Tt][Ee][Mm]|[Ee][Ss]([356]|20(1[567]|2[02])|[Nn][Ee][Xx][Tt])|[Nn][Oo][dD][Ee]16|[Nn][Oo][Dd][Ee][Nn][Ee][Xx][Tt]|[Nn][Oo][Nn][Ee])$" } ], "markdownDescription": "Specify what module code is generated.\n\nSee more: https://www.typescriptlang.org/tsconfig#module" }, "moduleResolution": { "description": "Specify how TypeScript looks up a file from a given module specifier.", "type": "string", "anyOf": [ { "enum": ["classic", "node", "node16", "nodenext", "bundler"] }, { "pattern": "^(([Nn]ode)|([Nn]ode16)|([Nn]ode[Nn]ext)|([Cc]lassic)|([Bb]undler))$" } ], "default": "classic", "markdownDescription": "Specify how TypeScript looks up a file from a given module specifier.\n\nSee more: https://www.typescriptlang.org/tsconfig#moduleResolution" }, "newLine": { "description": "Set the newline character for emitting files.", "type": "string", "anyOf": [ { "enum": ["crlf", "lf"] }, { "pattern": "^(CRLF|LF|crlf|lf)$" } ], "markdownDescription": "Set the newline character for emitting files.\n\nSee more: https://www.typescriptlang.org/tsconfig#newLine" }, "noEmit": { "description": "Disable emitting file from a compilation.", "type": "boolean", "default": false, "markdownDescription": "Disable emitting file from a compilation.\n\nSee more: https://www.typescriptlang.org/tsconfig#noEmit" }, "noEmitHelpers": { "description": "Disable generating custom helper functions like `__extends` in compiled output.", "type": "boolean", "default": false, "markdownDescription": "Disable generating custom helper functions like `__extends` in compiled output.\n\nSee more: https://www.typescriptlang.org/tsconfig#noEmitHelpers" }, "noEmitOnError": { "description": "Disable emitting files if any type checking errors are reported.", "type": "boolean", "default": false, "markdownDescription": "Disable emitting files if any type checking errors are reported.\n\nSee more: https://www.typescriptlang.org/tsconfig#noEmitOnError" }, "noImplicitAny": { "description": "Enable error reporting for expressions and declarations with an implied `any` type..", "type": "boolean", "markdownDescription": "Enable error reporting for expressions and declarations with an implied `any` type..\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitAny" }, "noImplicitThis": { "description": "Enable error reporting when `this` is given the type `any`.", "type": "boolean", "markdownDescription": "Enable error reporting when `this` is given the type `any`.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitThis" }, "noUnusedLocals": { "description": "Enable error reporting when a local variables aren't read.", "type": "boolean", "default": false, "markdownDescription": "Enable error reporting when a local variables aren't read.\n\nSee more: https://www.typescriptlang.org/tsconfig#noUnusedLocals" }, "noUnusedParameters": { "description": "Raise an error when a function parameter isn't read", "type": "boolean", "default": false, "markdownDescription": "Raise an error when a function parameter isn't read\n\nSee more: https://www.typescriptlang.org/tsconfig#noUnusedParameters" }, "noLib": { "description": "Disable including any library files, including the default lib.d.ts.", "type": "boolean", "default": false, "markdownDescription": "Disable including any library files, including the default lib.d.ts.\n\nSee more: https://www.typescriptlang.org/tsconfig#noLib" }, "noResolve": { "description": "Disallow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should add to a project.", "type": "boolean", "default": false, "markdownDescription": "Disallow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should add to a project.\n\nSee more: https://www.typescriptlang.org/tsconfig#noResolve" }, "noStrictGenericChecks": { "description": "Disable strict checking of generic signatures in function types.", "type": "boolean", "default": false, "markdownDescription": "Disable strict checking of generic signatures in function types.\n\nSee more: https://www.typescriptlang.org/tsconfig#noStrictGenericChecks" }, "skipDefaultLibCheck": { "description": "Skip type checking .d.ts files that are included with TypeScript.", "type": "boolean", "default": false, "markdownDescription": "Skip type checking .d.ts files that are included with TypeScript.\n\nSee more: https://www.typescriptlang.org/tsconfig#skipDefaultLibCheck" }, "skipLibCheck": { "description": "Skip type checking all .d.ts files.", "type": "boolean", "default": false, "markdownDescription": "Skip type checking all .d.ts files.\n\nSee more: https://www.typescriptlang.org/tsconfig#skipLibCheck" }, "outFile": { "description": "Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output.", "type": "string", "markdownDescription": "Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output.\n\nSee more: https://www.typescriptlang.org/tsconfig#outFile" }, "outDir": { "description": "Specify an output folder for all emitted files.", "type": "string", "markdownDescription": "Specify an output folder for all emitted files.\n\nSee more: https://www.typescriptlang.org/tsconfig#outDir" }, "preserveConstEnums": { "description": "Disable erasing `const enum` declarations in generated code.", "type": "boolean", "default": false, "markdownDescription": "Disable erasing `const enum` declarations in generated code.\n\nSee more: https://www.typescriptlang.org/tsconfig#preserveConstEnums" }, "preserveSymlinks": { "description": "Disable resolving symlinks to their realpath. This correlates to the same flag in node.", "type": "boolean", "default": false, "markdownDescription": "Disable resolving symlinks to their realpath. This correlates to the same flag in node.\n\nSee more: https://www.typescriptlang.org/tsconfig#preserveSymlinks" }, "preserveValueImports": { "description": "Preserve unused imported values in the JavaScript output that would otherwise be removed", "type": "boolean", "default": false, "markdownDescription": "Preserve unused imported values in the JavaScript output that would otherwise be removed\n\nSee more: https://www.typescriptlang.org/tsconfig#preserveValueImports" }, "preserveWatchOutput": { "description": "Disable wiping the console in watch mode", "type": "boolean", "markdownDescription": "Disable wiping the console in watch mode\n\nSee more: https://www.typescriptlang.org/tsconfig#preserveWatchOutput" }, "pretty": { "description": "Enable color and formatting in output to make compiler errors easier to read", "type": "boolean", "default": true, "markdownDescription": "Enable color and formatting in output to make compiler errors easier to read\n\nSee more: https://www.typescriptlang.org/tsconfig#pretty" }, "removeComments": { "description": "Disable emitting comments.", "type": "boolean", "default": false, "markdownDescription": "Disable emitting comments.\n\nSee more: https://www.typescriptlang.org/tsconfig#removeComments" }, "rootDir": { "description": "Specify the root folder within your source files.", "type": "string", "markdownDescription": "Specify the root folder within your source files.\n\nSee more: https://www.typescriptlang.org/tsconfig#rootDir" }, "isolatedModules": { "description": "Ensure that each file can be safely transpiled without relying on other imports.", "type": "boolean", "default": false, "markdownDescription": "Ensure that each file can be safely transpiled without relying on other imports.\n\nSee more: https://www.typescriptlang.org/tsconfig#isolatedModules" }, "sourceMap": { "description": "Create source map files for emitted JavaScript files.", "type": "boolean", "default": false, "markdownDescription": "Create source map files for emitted JavaScript files.\n\nSee more: https://www.typescriptlang.org/tsconfig#sourceMap" }, "sourceRoot": { "description": "Specify the root path for debuggers to find the reference source code.", "type": "string", "markdownDescription": "Specify the root path for debuggers to find the reference source code.\n\nSee more: https://www.typescriptlang.org/tsconfig#sourceRoot" }, "suppressExcessPropertyErrors": { "description": "Disable reporting of excess property errors during the creation of object literals.", "type": "boolean", "default": false, "markdownDescription": "Disable reporting of excess property errors during the creation of object literals.\n\nSee more: https://www.typescriptlang.org/tsconfig#suppressExcessPropertyErrors" }, "suppressImplicitAnyIndexErrors": { "description": "Suppress `noImplicitAny` errors when indexing objects that lack index signatures.", "type": "boolean", "default": false, "markdownDescription": "Suppress `noImplicitAny` errors when indexing objects that lack index signatures.\n\nSee more: https://www.typescriptlang.org/tsconfig#suppressImplicitAnyIndexErrors" }, "stripInternal": { "description": "Disable emitting declarations that have `@internal` in their JSDoc comments.", "type": "boolean", "markdownDescription": "Disable emitting declarations that have `@internal` in their JSDoc comments.\n\nSee more: https://www.typescriptlang.org/tsconfig#stripInternal" }, "target": { "description": "Set the JavaScript language version for emitted JavaScript and include compatible library declarations.", "type": "string", "default": "ES3", "anyOf": [ { "enum": [ "ES3", "ES5", "ES6", "ES2015", "ES2016", "ES2017", "ES2018", "ES2019", "ES2020", "ES2021", "ES2022", "ES2023", "ESNext" ] }, { "pattern": "^([Ee][Ss]([356]|(20(1[56789]|2[0123]))|[Nn][Ee][Xx][Tt]))$" } ], "markdownDescription": "Set the JavaScript language version for emitted JavaScript and include compatible library declarations.\n\nSee more: https://www.typescriptlang.org/tsconfig#target" }, "useUnknownInCatchVariables": { "description": "Default catch clause variables as `unknown` instead of `any`.", "type": "boolean", "default": false, "markdownDescription": "Default catch clause variables as `unknown` instead of `any`.\n\nSee more: https://www.typescriptlang.org/tsconfig#useUnknownInCatchVariables" }, "watch": { "description": "Watch input files.", "type": "boolean" }, "fallbackPolling": { "description": "Specify the polling strategy to use when the system runs out of or doesn't support native file watchers. Requires TypeScript version 3.8 or later.", "enum": [ "fixedPollingInterval", "priorityPollingInterval", "dynamicPriorityPolling", "fixedInterval", "priorityInterval", "dynamicPriority", "fixedChunkSize" ] }, "watchDirectory": { "description": "Specify the strategy for watching directories under systems that lack recursive file-watching functionality. Requires TypeScript version 3.8 or later.", "enum": [ "useFsEvents", "fixedPollingInterval", "dynamicPriorityPolling", "fixedChunkSizePolling" ], "default": "useFsEvents" }, "watchFile": { "description": "Specify the strategy for watching individual files. Requires TypeScript version 3.8 or later.", "enum": [ "fixedPollingInterval", "priorityPollingInterval", "dynamicPriorityPolling", "useFsEvents", "useFsEventsOnParentDirectory", "fixedChunkSizePolling" ], "default": "useFsEvents" }, "experimentalDecorators": { "description": "Enable experimental support for TC39 stage 2 draft decorators.", "type": "boolean", "markdownDescription": "Enable experimental support for TC39 stage 2 draft decorators.\n\nSee more: https://www.typescriptlang.org/tsconfig#experimentalDecorators" }, "emitDecoratorMetadata": { "description": "Emit design-type metadata for decorated declarations in source files.", "type": "boolean", "markdownDescription": "Emit design-type metadata for decorated declarations in source files.\n\nSee more: https://www.typescriptlang.org/tsconfig#emitDecoratorMetadata" }, "allowUnusedLabels": { "description": "Disable error reporting for unused labels.", "type": "boolean", "markdownDescription": "Disable error reporting for unused labels.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowUnusedLabels" }, "noImplicitReturns": { "description": "Enable error reporting for codepaths that do not explicitly return in a function.", "type": "boolean", "default": false, "markdownDescription": "Enable error reporting for codepaths that do not explicitly return in a function.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitReturns" }, "noUncheckedIndexedAccess": { "description": "Add `undefined` to a type when accessed using an index.", "type": "boolean", "markdownDescription": "Add `undefined` to a type when accessed using an index.\n\nSee more: https://www.typescriptlang.org/tsconfig#noUncheckedIndexedAccess" }, "noFallthroughCasesInSwitch": { "description": "Enable error reporting for fallthrough cases in switch statements.", "type": "boolean", "default": false, "markdownDescription": "Enable error reporting for fallthrough cases in switch statements.\n\nSee more: https://www.typescriptlang.org/tsconfig#noFallthroughCasesInSwitch" }, "noImplicitOverride": { "description": "Ensure overriding members in derived classes are marked with an override modifier.", "type": "boolean", "default": false, "markdownDescription": "Ensure overriding members in derived classes are marked with an override modifier.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitOverride" }, "allowUnreachableCode": { "description": "Disable error reporting for unreachable code.", "type": "boolean", "markdownDescription": "Disable error reporting for unreachable code.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowUnreachableCode" }, "forceConsistentCasingInFileNames": { "description": "Ensure that casing is correct in imports.", "type": "boolean", "default": false, "markdownDescription": "Ensure that casing is correct in imports.\n\nSee more: https://www.typescriptlang.org/tsconfig#forceConsistentCasingInFileNames" }, "generateCpuProfile": { "description": "Emit a v8 CPU profile of the compiler run for debugging.", "type": "string", "default": "profile.cpuprofile", "markdownDescription": "Emit a v8 CPU profile of the compiler run for debugging.\n\nSee more: https://www.typescriptlang.org/tsconfig#generateCpuProfile" }, "baseUrl": { "description": "Specify the base directory to resolve non-relative module names.", "type": "string", "markdownDescription": "Specify the base directory to resolve non-relative module names.\n\nSee more: https://www.typescriptlang.org/tsconfig#baseUrl" }, "paths": { "description": "Specify a set of entries that re-map imports to additional lookup locations.", "type": "object", "additionalProperties": { "type": "array", "uniqueItems": true, "items": { "type": "string", "description": "Path mapping to be computed relative to baseUrl option." } }, "markdownDescription": "Specify a set of entries that re-map imports to additional lookup locations.\n\nSee more: https://www.typescriptlang.org/tsconfig#paths" }, "plugins": { "description": "Specify a list of language service plugins to include.", "type": "array", "items": { "type": "object", "properties": { "name": { "description": "Plugin name.", "type": "string" } } }, "markdownDescription": "Specify a list of language service plugins to include.\n\nSee more: https://www.typescriptlang.org/tsconfig#plugins" }, "rootDirs": { "description": "Allow multiple folders to be treated as one when resolving modules.", "type": "array", "uniqueItems": true, "items": { "type": "string" }, "markdownDescription": "Allow multiple folders to be treated as one when resolving modules.\n\nSee more: https://www.typescriptlang.org/tsconfig#rootDirs" }, "typeRoots": { "description": "Specify multiple folders that act like `./node_modules/@types`.", "type": "array", "uniqueItems": true, "items": { "type": "string" }, "markdownDescription": "Specify multiple folders that act like `./node_modules/@types`.\n\nSee more: https://www.typescriptlang.org/tsconfig#typeRoots" }, "types": { "description": "Specify type package names to be included without being referenced in a source file.", "type": "array", "uniqueItems": true, "items": { "type": "string" }, "markdownDescription": "Specify type package names to be included without being referenced in a source file.\n\nSee more: https://www.typescriptlang.org/tsconfig#types" }, "traceResolution": { "description": "Enable tracing of the name resolution process. Requires TypeScript version 2.0 or later.", "type": "boolean", "default": false }, "allowJs": { "description": "Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files.", "type": "boolean", "default": false, "markdownDescription": "Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowJs" }, "noErrorTruncation": { "description": "Disable truncating types in error messages.", "type": "boolean", "default": false, "markdownDescription": "Disable truncating types in error messages.\n\nSee more: https://www.typescriptlang.org/tsconfig#noErrorTruncation" }, "allowSyntheticDefaultImports": { "description": "Allow 'import x from y' when a module doesn't have a default export.", "type": "boolean", "markdownDescription": "Allow 'import x from y' when a module doesn't have a default export.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowSyntheticDefaultImports" }, "noImplicitUseStrict": { "description": "Disable adding 'use strict' directives in emitted JavaScript files.", "type": "boolean", "default": false, "markdownDescription": "Disable adding 'use strict' directives in emitted JavaScript files.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitUseStrict" }, "listEmittedFiles": { "description": "Print the names of emitted files after a compilation.", "type": "boolean", "default": false, "markdownDescription": "Print the names of emitted files after a compilation.\n\nSee more: https://www.typescriptlang.org/tsconfig#listEmittedFiles" }, "disableSizeLimit": { "description": "Remove the 20mb cap on total source code size for JavaScript files in the TypeScript language server.", "type": "boolean", "default": false, "markdownDescription": "Remove the 20mb cap on total source code size for JavaScript files in the TypeScript language server.\n\nSee more: https://www.typescriptlang.org/tsconfig#disableSizeLimit" }, "lib": { "description": "Specify a set of bundled library declaration files that describe the target runtime environment.", "type": "array", "uniqueItems": true, "items": { "type": "string", "anyOf": [ { "enum": [ "ES5", "ES6", "ES2015", "ES2015.Collection", "ES2015.Core", "ES2015.Generator", "ES2015.Iterable", "ES2015.Promise", "ES2015.Proxy", "ES2015.Reflect", "ES2015.Symbol.WellKnown", "ES2015.Symbol", "ES2016", "ES2016.Array.Include", "ES2017", "ES2017.Intl", "ES2017.Object", "ES2017.SharedMemory", "ES2017.String", "ES2017.TypedArrays", "ES2018", "ES2018.AsyncGenerator", "ES2018.AsyncIterable", "ES2018.Intl", "ES2018.Promise", "ES2018.Regexp", "ES2019", "ES2019.Array", "ES2019.Intl", "ES2019.Object", "ES2019.String", "ES2019.Symbol", "ES2020", "ES2020.BigInt", "ES2020.Promise", "ES2020.String", "ES2020.Symbol.WellKnown", "ESNext", "ESNext.Array", "ESNext.AsyncIterable", "ESNext.BigInt", "ESNext.Intl", "ESNext.Promise", "ESNext.String", "ESNext.Symbol", "DOM", "DOM.Iterable", "ScriptHost", "WebWorker", "WebWorker.ImportScripts", "Webworker.Iterable", "ES7", "ES2021", "ES2020.SharedMemory", "ES2020.Intl", "ES2021.Promise", "ES2021.String", "ES2021.WeakRef", "ESNext.WeakRef", "es2021.intl", "ES2022", "ES2022.Array", "ES2022.Error", "ES2022.Intl", "ES2022.Object", "ES2022.String" ] }, { "pattern": "^[Ee][Ss]5|[Ee][Ss]6|[Ee][Ss]7$" }, { "pattern": "^[Ee][Ss]2015(\\.([Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Cc][Oo][Rr][Ee]|[Gg][Ee][Nn][Ee][Rr][Aa][Tt][Oo][Rr]|[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Pp][Rr][Oo][Xx][Yy]|[Rr][Ee][Ff][Ll][Ee][Cc][Tt]|[Ss][Yy][Mm][Bb][Oo][Ll].[Ww][Ee][Ll][Ll][Kk][Nn][Oo][Ww][Nn]|[Ss][Yy][Mm][Bb][Oo][Ll]))?$" }, { "pattern": "^[Ee][Ss]2016(\\.[Aa][Rr][Rr][Aa][Yy].[Ii][Nn][Cc][Ll][Uu][Dd][Ee])?$" }, { "pattern": "^[Ee][Ss]2017(\\.([Ii][Nn][Tt][Ll]|[Oo][Bb][Jj][Ee][Cc][Tt]|[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ss][Tt][Rr][Ii][Nn][Gg]|[Tt][Yy][Pp][Ee][Dd][Aa][Rr][Rr][Aa][Yy][Ss]))?$" }, { "pattern": "^[Ee][Ss]2018(\\.([Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ii][Nn][Tt][Ll]|[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Rr][Ee][Gg][Ee][Xx][Pp]))?$" }, { "pattern": "^[Ee][Ss]2019(\\.([Aa][Rr][Rr][Aa][Yy]|[Oo][Bb][Jj][Ee][Cc][Tt]|[Ss][Tt][Rr][Ii][Nn][Gg]|[Ss][Yy][Mm][Bb][Oo][Ll]))?$" }, { "pattern": "^[Ee][Ss]2020(\\.([Bb][Ii][Gg][Ii][Nn][Tt]|[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ss][Tt][Rr][Ii][Nn][Gg]|[Ss][Yy][Mm][Bb][Oo][Ll].[Ww][Ee][Ll][Ll][Kk][Nn][Oo][Ww][Nn]))?$" }, { "pattern": "^[Ee][Ss]2021(\\.([Ii][Nn][Tt][Ll]|[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ss][Tt][Rr][Ii][Nn][Gg]|[Ww][Ee][Aa][Kk][Rr][Ee][Ff]))?$" }, { "pattern": "^[Ee][Ss]2022(\\.([Aa][Rr][Rr][Aa][Yy]|[Ee][Rr][Rr][Oo][Rr]|[Ii][Nn][Tt][Ll]|[Oo][Bb][Jj][Ee][Cc][Tt]|[Ss][Tt][Rr][Ii][Nn][Gg]))?$" }, { "pattern": "^[Ee][Ss][Nn][Ee][Xx][Tt](\\.([Aa][Rr][Rr][Aa][Yy]|[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Bb][Ii][Gg][Ii][Nn][Tt]|[Ii][Nn][Tt][Ll]|[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ss][Tt][Rr][Ii][Nn][Gg]|[Ss][Yy][Mm][Bb][Oo][Ll]|[Ww][Ee][Aa][Kk][Rr][Ee][Ff]))?$" }, { "pattern": "^[Dd][Oo][Mm](\\.[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee])?$" }, { "pattern": "^[Ss][Cc][Rr][Ii][Pp][Tt][Hh][Oo][Ss][Tt]$" }, { "pattern": "^[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr](\\.[Ii][Mm][Pp][Oo][Rr][Tt][Ss][Cc][Rr][Ii][Pp][Tt][Ss])?$" } ] }, "markdownDescription": "Specify a set of bundled library declaration files that describe the target runtime environment.\n\nSee more: https://www.typescriptlang.org/tsconfig#lib" }, "strictNullChecks": { "description": "When type checking, take into account `null` and `undefined`.", "type": "boolean", "default": false, "markdownDescription": "When type checking, take into account `null` and `undefined`.\n\nSee more: https://www.typescriptlang.org/tsconfig#strictNullChecks" }, "maxNodeModuleJsDepth": { "description": "Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`.", "type": "number", "default": 0, "markdownDescription": "Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`.\n\nSee more: https://www.typescriptlang.org/tsconfig#maxNodeModuleJsDepth" }, "importHelpers": { "description": "Allow importing helper functions from tslib once per project, instead of including them per-file.", "type": "boolean", "default": false, "markdownDescription": "Allow importing helper functions from tslib once per project, instead of including them per-file.\n\nSee more: https://www.typescriptlang.org/tsconfig#importHelpers" }, "importsNotUsedAsValues": { "description": "Specify emit/checking behavior for imports that are only used for types.", "default": "remove", "enum": ["remove", "preserve", "error"] }, "alwaysStrict": { "description": "Ensure 'use strict' is always emitted.", "type": "boolean", "markdownDescription": "Ensure 'use strict' is always emitted.\n\nSee more: https://www.typescriptlang.org/tsconfig#alwaysStrict" }, "strict": { "description": "Enable all strict type checking options.", "type": "boolean", "default": false, "markdownDescription": "Enable all strict type checking options.\n\nSee more: https://www.typescriptlang.org/tsconfig#strict" }, "strictBindCallApply": { "description": "Check that the arguments for `bind`, `call`, and `apply` methods match the original function.", "type": "boolean", "default": false, "markdownDescription": "Check that the arguments for `bind`, `call`, and `apply` methods match the original function.\n\nSee more: https://www.typescriptlang.org/tsconfig#strictBindCallApply" }, "downlevelIteration": { "description": "Emit more compliant, but verbose and less performant JavaScript for iteration.", "type": "boolean", "default": false, "markdownDescription": "Emit more compliant, but verbose and less performant JavaScript for iteration.\n\nSee more: https://www.typescriptlang.org/tsconfig#downlevelIteration" }, "checkJs": { "description": "Enable error reporting in type-checked JavaScript files.", "type": "boolean", "default": false, "markdownDescription": "Enable error reporting in type-checked JavaScript files.\n\nSee more: https://www.typescriptlang.org/tsconfig#checkJs" }, "strictFunctionTypes": { "description": "When assigning functions, check to ensure parameters and the return values are subtype-compatible.", "type": "boolean", "default": false, "markdownDescription": "When assigning functions, check to ensure parameters and the return values are subtype-compatible.\n\nSee more: https://www.typescriptlang.org/tsconfig#strictFunctionTypes" }, "strictPropertyInitialization": { "description": "Check for class properties that are declared but not set in the constructor.", "type": "boolean", "default": false, "markdownDescription": "Check for class properties that are declared but not set in the constructor.\n\nSee more: https://www.typescriptlang.org/tsconfig#strictPropertyInitialization" }, "esModuleInterop": { "description": "Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility.", "type": "boolean", "default": false, "markdownDescription": "Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility.\n\nSee more: https://www.typescriptlang.org/tsconfig#esModuleInterop" }, "allowUmdGlobalAccess": { "description": "Allow accessing UMD globals from modules.", "type": "boolean", "default": false, "markdownDescription": "Allow accessing UMD globals from modules.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowUmdGlobalAccess" }, "keyofStringsOnly": { "description": "Make keyof only return strings instead of string, numbers or symbols. Legacy option.", "type": "boolean", "default": false, "markdownDescription": "Make keyof only return strings instead of string, numbers or symbols. Legacy option.\n\nSee more: https://www.typescriptlang.org/tsconfig#keyofStringsOnly" }, "useDefineForClassFields": { "description": "Emit ECMAScript-standard-compliant class fields.", "type": "boolean", "default": false, "markdownDescription": "Emit ECMAScript-standard-compliant class fields.\n\nSee more: https://www.typescriptlang.org/tsconfig#useDefineForClassFields" }, "declarationMap": { "description": "Create sourcemaps for d.ts files.", "type": "boolean", "default": false, "markdownDescription": "Create sourcemaps for d.ts files.\n\nSee more: https://www.typescriptlang.org/tsconfig#declarationMap" }, "resolveJsonModule": { "description": "Enable importing .json files", "type": "boolean", "default": false, "markdownDescription": "Enable importing .json files\n\nSee more: https://www.typescriptlang.org/tsconfig#resolveJsonModule" }, "resolvePackageJsonExports": { "description": "Use the package.json 'exports' field when resolving package imports.", "type": "boolean", "default": false, "markdownDescription": "Use the package.json 'exports' field when resolving package imports.\n\nSee more: https://www.typescriptlang.org/tsconfig#resolvePackageJsonExports" }, "resolvePackageJsonImports": { "description": "Use the package.json 'imports' field when resolving imports.", "type": "boolean", "default": false, "markdownDescription": "Use the package.json 'imports' field when resolving imports.\n\nSee more: https://www.typescriptlang.org/tsconfig#resolvePackageJsonImports" }, "assumeChangesOnlyAffectDirectDependencies": { "description": "Have recompiles in '--incremental' and '--watch' assume that changes within a file will only affect files directly depending on it. Requires TypeScript version 3.8 or later.", "type": "boolean" }, "extendedDiagnostics": { "description": "Output more detailed compiler performance information after building.", "type": "boolean", "default": false, "markdownDescription": "Output more detailed compiler performance information after building.\n\nSee more: https://www.typescriptlang.org/tsconfig#extendedDiagnostics" }, "listFilesOnly": { "description": "Print names of files that are part of the compilation and then stop processing.", "type": "boolean" }, "disableSourceOfProjectReferenceRedirect": { "description": "Disable preferring source files instead of declaration files when referencing composite projects", "type": "boolean", "markdownDescription": "Disable preferring source files instead of declaration files when referencing composite projects\n\nSee more: https://www.typescriptlang.org/tsconfig#disableSourceOfProjectReferenceRedirect" }, "disableSolutionSearching": { "description": "Opt a project out of multi-project reference checking when editing.", "type": "boolean", "markdownDescription": "Opt a project out of multi-project reference checking when editing.\n\nSee more: https://www.typescriptlang.org/tsconfig#disableSolutionSearching" }, "verbatimModuleSyntax": { "description": "Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting.", "type": "boolean", "markdownDescription": "Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting.\n\nSee more: https://www.typescriptlang.org/tsconfig#verbatimModuleSyntax" } } } } }, "typeAcquisitionDefinition": { "properties": { "typeAcquisition": { "type": "object", "description": "Auto type (.d.ts) acquisition options for this project. Requires TypeScript version 2.1 or later.", "properties": { "enable": { "description": "Enable auto type acquisition", "type": "boolean", "default": false }, "include": { "description": "Specifies a list of type declarations to be included in auto type acquisition. Ex. [\"jquery\", \"lodash\"]", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "exclude": { "description": "Specifies a list of type declarations to be excluded from auto type acquisition. Ex. [\"jquery\", \"lodash\"]", "type": "array", "uniqueItems": true, "items": { "type": "string" } } } } } }, "referencesDefinition": { "properties": { "references": { "type": "array", "uniqueItems": true, "description": "Referenced projects. Requires TypeScript version 3.0 or later.", "items": { "type": "object", "description": "Project reference.", "properties": { "path": { "type": "string", "description": "Path to referenced tsconfig or to folder containing tsconfig." } } } } } } }, "id": "https://json.schemastore.org/jsconfig.json", "title": "JSON schema for a JavaScript project using TypeScript tooling", "type": "object" }
jsconfig
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "LuminositySensor Schema", "type": "object", "required": [ "LuminositySensor" ], "properties": { "_id": { "$ref": "#/definitions/identificador" }, "LuminositySensor": { "$ref": "#/definitions/datos" } }, "additionalProperties": false, "definitions": { "identificador": { "title": "id", "description": "Id insertado del LuminositySensor", "type": "object", "properties": { "$oid": { "type": "string" } }, "additionalProperties": false }, "datos": { "title": "datos", "description": "Info LuminositySensor", "type": "object", "required": [ "id", "va", "un", "loc" ], "properties": { "id": { "type": "string" }, "timestamp": { "type": "object", "required": [ "$date" ], "properties": { "$date": { "type": "string", "_format": "date-time" } }, "additionalProperties": false }, "va": { "type": "number" }, "un": { "type": "string" }, "loc": { "$ref": "#/definitions/gps" } }, "additionalProperties": false }, "gps": { "title": "gps", "description": "Gps LuminositySensor", "type": "object", "required": [ "la", "lon" ], "properties": { "al": { "type": "number" }, "la": { "type": "number" }, "lon": { "type": "number" } }, "additionalProperties": false } } }
o14412
{ "$comment": "https://minecraft.fandom.com/wiki/Custom_world_generation#Carvers", "$id": "https://json.schemastore.org/minecraft-configured-carver.json", "$schema": "http://json-schema.org/draft-07/schema#", "description": "A carver for a data pack for Minecraft\nhttps://minecraft.fandom.com/wiki/Custom_world_generation#Carvers", "properties": { "type": { "description": "A type for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "type": "string", "enum": [ "minecraft:cave", "cave", "minecraft:nether_cave", "nether_cave", "minecraft:canyon", "canyon", "minecraft:underwater_canyon", "underwater_canyon", "minecraft:underwater_cave", "underwater_cave" ] }, "config": { "title": "carver options", "description": "Options for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "type": "object", "properties": { "probability": { "description": "A probability that each chunk attempts to generate for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "type": "number", "minimum": 0, "maximum": 1 }, "y": { "title": "height", "description": "A height at which to generate the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "type": "object" }, "lava_level": { "description": "A height at which to generate the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "type": "string", "enum": ["absolute", "above_bottom", "below_top"] }, "replaceable": { "description": "Blocks can be carved for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "oneOf": [ { "type": "string", "minLength": 1 }, { "type": "array", "uniqueItems": true, "items": { "description": "A block can be carved for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "type": "string", "minLength": 1 } } ] }, "debug_settings": { "title": "replacement options", "description": "Replace blocks for debugging for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "type": "object", "properties": { "debug_mode": { "description": "Whether to enable debug mode for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "type": "boolean", "default": false }, "air_state": { "title": "air replacement options", "description": "Air replacement options for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "type": "object", "additionalProperties": true }, "water_state": { "title": "water replacement options", "description": "Water replacement options for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "type": "object", "additionalProperties": true }, "lava_state": { "title": "lava replacement options", "description": "Lava replacement options for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "type": "object", "additionalProperties": true }, "barrier_state": { "title": "barrier replacement options", "description": "Barrier replacement options for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "type": "object", "additionalProperties": true } }, "additionalProperties": false }, "yScale": { "title": "vertical scaling options", "description": "Vertical scaling options for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "oneOf": [ { "type": "number" }, { "type": "object", "additionalProperties": true } ] }, "horizontal_radius_multiplier": { "title": "horizontal tunnel scaling options", "description": "Horizontal tunnel scaling options for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "oneOf": [ { "type": "number" }, { "type": "object", "additionalProperties": true } ] }, "vertical_radius_multiplier": { "title": "vertical tunnel scaling options", "description": "Vertical tunnel scaling options for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "oneOf": [ { "type": "number" }, { "type": "object", "additionalProperties": true } ] }, "floor_level": { "title": "floor level options", "description": "Floor level options for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "oneOf": [ { "type": "number", "minimum": -1, "maximum": 1 }, { "type": "object", "additionalProperties": true } ] }, "vertical_rotation": { "title": "vertical rotation options", "description": "Vertical rotation options for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "oneOf": [ { "type": "number" }, { "type": "object", "additionalProperties": true } ] }, "shape": { "title": "ravine shape options", "description": "Ravine shape for the current carver\nhttps://minecraft.fandom.com/wiki/Custom_carver#JSON_format", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "title": "carver", "type": "object" }
minecraft-configured-carver
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "description": "The uuid of the lti app" }, "title": { "type": "string", "description": "The title of the lti app", "minLength": 1 }, "url": { "type": "string", "description": "The url of the lti app", "minLength": 1 }, "appKey": { "type": [ "string", "null" ], "description": "The key of the lti app" }, "secret": { "type": [ "string", "null" ], "description": "The secret of the lti app" }, "description": { "type": [ "string", "null" ], "description": "The description of the lti app" } }, "required": [ "title", "url" ], "claroline": { "ids": [ "id" ] } }
o32504
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "content": { "type": "string", "minLength": 1 } }, "required": [ "content" ] }
o12240
{ "additionalProperties": false, "properties": { "names": { "items": { "type": "string" }, "type": "array" } }, "required": [ "names" ], "title": "CreateIndexResponse", "type": "object" }
o10055
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Describe all the Fcc related Information of SAS", "properties": { "certificationConditions": { "description": "Human-readable string or reference annotating the certification", "type": "string" }, "certificationDate": { "_format": "date-time", "description": "Date of certification, in format YYYY-MM-DD.", "type": "string" }, "certificationExpiration": { "_format": "date-time", "description": "Date of certification expiration, in format YYYY-MM-DD", "type": "string" }, "certificationId": { "description": "Any FCC-issued certification ID. ", "type": "string" }, "frn": { "description": "The FRN of the certified entity, if applicable. For a device, shall not be included.", "type": "string" }, "sasPhase": { "description": "If this is a SAS information object, defines the Phase (1 or 2) of certification.", "enum": [ "1", "2" ], "type": "string" } }, "required": [ "certificationId", "certificationDate", "certificationExpiration", "certificationConditions", "frn", "sasPhase" ], "type": "object" }
o17408
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Alerts", "type": "object", "properties": { "subjectId": { "type": "string" }, "subjectType": { "type": "string", "enum": [ "device", "service", "deviceGroup", "serviceGroup" ] }, "subject": { "type": [ "string", "null" ] }, "enabled": { "type": "boolean" }, "section": {}, "field": {}, "comparison": {}, "value": {}, "fix": { "type": "boolean" }, "group": { "type": "string" }, "recipients": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "user", "pagerduty", "webhook", "hipchat" ] }, "id": { "type": "string" }, "actions": { "type": "array", "items": { "type": "string", "enum": [ "pagerduty", "webhook", "slack", "hipchat", "sms", "email" ] } } }, "required": [ "type", "id" ] } }, "wait": { "type": "object", "properties": { "seconds": { "type": "number" }, "enabled": { "type": "boolean" }, "displayUnits": { "type": "string", "enum": [ "s", "m" ] } }, "required": [ "seconds", "enabled", "displayUnits" ] }, "repeat": { "type": "object", "properties": { "seconds": { "type": "number" }, "enabled": { "type": "boolean" }, "displayUnits": { "type": "string", "enum": [ "s", "m" ] } }, "required": [ "seconds", "enabled", "displayUnits" ] } }, "required": [ "subjectType", "subject", "enabled", "section", "field", "comparison", "value", "recipients", "wait", "repeat", "fix" ] }
o74591
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_ReplicaSet": { "description": "ReplicaSet ensures that a specified number of pod replicas are running at any given time.", "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": [ "ReplicaSet" ], "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 ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet 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_apps_v1_ReplicaSetSpec", "description": "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_ReplicaSetStatus", "description": "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apps", "kind": "ReplicaSet", "version": "v1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_ReplicaSetCondition": { "description": "ReplicaSetCondition describes the state of a replica set 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 replica set condition.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_ReplicaSetSpec": { "description": "ReplicaSetSpec is the specification of a ReplicaSet.", "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": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" }, "template": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec", "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" } }, "required": [ "selector" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_ReplicaSetStatus": { "description": "ReplicaSetStatus represents the current status of a ReplicaSet.", "properties": { "availableReplicas": { "_format": "int32", "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.", "type": "integer" }, "conditions": { "description": "Represents the latest available observations of a replica set's current state.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_ReplicaSetCondition" }, "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 replicaset.", "type": "integer" }, "observedGeneration": { "_format": "int64", "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.", "type": "integer" }, "readyReplicas": { "_format": "int32", "description": "The number of ready replicas for this replica set.", "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_AWSElasticBlockStoreVolumeSource": { "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", "type": "integer" }, "readOnly": { "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "boolean" }, "volumeID": { "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity": { "description": "Affinity is a group of affinity scheduling rules.", "properties": { "nodeAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity", "description": "Describes node affinity scheduling rules for the pod." }, "podAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity", "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." }, "podAntiAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity", "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": { "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "properties": { "cachingMode": { "description": "Host Caching mode: None, Read Only, Read Write.", "type": "string" }, "diskName": { "description": "The Name of the data disk in the blob storage", "type": "string" }, "diskURI": { "description": "The URI the data disk in the blob storage", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "kind": { "description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" } }, "required": [ "diskName", "diskURI" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource": { "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "properties": { "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { "description": "the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "shareName": { "description": "Share Name", "type": "string" } }, "required": [ "secretName", "shareName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": { "description": "Represents a source location of a volume to mount, managed by an external CSI driver", "properties": { "driver": { "description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed." }, "readOnly": { "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.", "type": "object" } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": { "description": "Adds and removes POSIX capabilities from running containers.", "properties": { "add": { "description": "Added capabilities", "items": { "type": "string" }, "type": "array" }, "drop": { "description": "Removed capabilities", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": { "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "path": { "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource": { "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource": { "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector": { "description": "Selects a key from a ConfigMap.", "properties": { "key": { "description": "The key to select.", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its key must be defined", "type": "boolean" } }, "required": [ "key" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection": { "description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its keys must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": { "description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its keys must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container": { "description": "A single application container that you want to run within a pod.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle", "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated." }, "livenessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "name": { "description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", "type": "string" }, "ports": { "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort" }, "type": "array", "x-kubernetes-list-map-keys": [ "containerPort", "protocol" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "containerPort", "x-kubernetes-patch-strategy": "merge" }, "readinessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/" }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext", "description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" }, "startupProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort": { "description": "ContainerPort represents a network port in a single container.", "properties": { "containerPort": { "_format": "int32", "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", "type": "integer" }, "hostIP": { "description": "What host IP to bind the external port to.", "type": "string" }, "hostPort": { "_format": "int32", "description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.", "type": "integer" }, "name": { "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", "type": "string" }, "protocol": { "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".", "type": "string" } }, "required": [ "containerPort" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": { "description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.", "properties": { "items": { "description": "Items is a list of DownwardAPIVolume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": { "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field", "properties": { "fieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector", "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported." }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'", "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector", "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported." } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": { "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "Items is a list of downward API volume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": { "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.", "properties": { "medium": { "description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", "type": "string" }, "sizeLimit": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource": { "description": "EnvFromSource represents the source of a set of ConfigMaps", "properties": { "configMapRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource", "description": "The ConfigMap to select from" }, "prefix": { "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource", "description": "The Secret to select from" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar": { "description": "EnvVar represents an environment variable present in a Container.", "properties": { "name": { "description": "Name of the environment variable. Must be a C_IDENTIFIER.", "type": "string" }, "value": { "description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".", "type": "string" }, "valueFrom": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource", "description": "Source for the environment variable's value. Cannot be used if value is not empty." } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource": { "description": "EnvVarSource represents a source for the value of an EnvVar.", "properties": { "configMapKeyRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector", "description": "Selects a key of a ConfigMap." }, "fieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector", "description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs." }, "resourceFieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector", "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported." }, "secretKeyRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector", "description": "Selects a key of a secret in the pod's namespace" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer": { "description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle", "description": "Lifecycle is not allowed for ephemeral containers." }, "livenessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "name": { "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.", "type": "string" }, "ports": { "description": "Ports are not allowed for ephemeral containers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort" }, "type": "array" }, "readinessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod." }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext", "description": "SecurityContext is not allowed for ephemeral containers." }, "startupProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "targetContainerName": { "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.", "type": "string" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": { "description": "ExecAction describes a \"run in container\" action.", "properties": { "command": { "description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": { "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "lun": { "_format": "int32", "description": "Optional: FC target lun number", "type": "integer" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "targetWWNs": { "description": "Optional: FC target worldwide names (WWNs)", "items": { "type": "string" }, "type": "array" }, "wwids": { "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource": { "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { "description": "Driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { "additionalProperties": { "type": "string" }, "description": "Optional: Extra command options if any.", "type": "object" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": { "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", "properties": { "datasetName": { "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated", "type": "string" }, "datasetUUID": { "description": "UUID of the dataset. This is unique identifier of a Flocker dataset", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": { "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "integer" }, "pdName": { "description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "boolean" } }, "required": [ "pdName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource": { "description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.", "properties": { "directory": { "description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", "type": "string" }, "repository": { "description": "Repository URL", "type": "string" }, "revision": { "description": "Commit hash for the specified revision.", "type": "string" } }, "required": [ "repository" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": { "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } }, "required": [ "endpoints", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction": { "description": "HTTPGetAction describes an action based on HTTP Get requests.", "properties": { "host": { "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.", "type": "string" }, "httpHeaders": { "description": "Custom headers to set in the request. HTTP allows repeated headers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader" }, "type": "array" }, "path": { "description": "Path to access on the HTTP server.", "type": "string" }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." }, "scheme": { "description": "Scheme to use for connecting to the host. Defaults to HTTP.", "type": "string" } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": { "description": "HTTPHeader describes a custom header to be used in HTTP probes", "properties": { "name": { "description": "The header field name", "type": "string" }, "value": { "description": "The header field value", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": { "description": "Handler defines a specific action that should be taken", "properties": { "exec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "httpGet": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "tcpSocket": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias": { "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.", "properties": { "hostnames": { "description": "Hostnames for the above IP address.", "items": { "type": "string" }, "type": "array" }, "ip": { "description": "IP address of the host file entry.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": { "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" }, "type": { "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource": { "description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { "description": "whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { "description": "whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.", "type": "string" }, "iqn": { "description": "Target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { "_format": "int32", "description": "iSCSI Target Lun number.", "type": "integer" }, "portals": { "description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "items": { "type": "string" }, "type": "array" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "type": "string" } }, "required": [ "targetPortal", "iqn", "lun" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath": { "description": "Maps a string key to a path within a volume.", "properties": { "key": { "description": "The key to project.", "type": "string" }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", "type": "string" } }, "required": [ "key", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle": { "description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", "properties": { "postStart": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler", "description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" }, "preStop": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler", "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": { "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": { "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "boolean" }, "server": { "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" } }, "required": [ "server", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity": { "description": "Node affinity is a group of node affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector", "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": { "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", "properties": { "nodeSelectorTerms": { "description": "Required. A list of node selector terms. The terms are ORed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm" }, "type": "array" } }, "required": [ "nodeSelectorTerms" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "operator": { "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", "type": "string" }, "values": { "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": { "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", "properties": { "matchExpressions": { "description": "A list of node selector requirements by node's labels.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" }, "matchFields": { "description": "A list of node selector requirements by node's fields.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": { "description": "ObjectFieldSelector selects an APIVersioned field of an object.", "properties": { "apiVersion": { "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".", "type": "string" }, "fieldPath": { "description": "Path of the field to select in the specified API version.", "type": "string" } }, "required": [ "fieldPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": { "description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).", "properties": { "claimName": { "description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "type": "string" }, "readOnly": { "description": "Will force the ReadOnly setting in VolumeMounts. Default false.", "type": "boolean" } }, "required": [ "claimName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": { "description": "Represents a Photon Controller persistent disk resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "pdID": { "description": "ID that identifies Photon Controller persistent disk", "type": "string" } }, "required": [ "pdID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity": { "description": "Pod affinity is a group of inter pod affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": { "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over a set of resources, in this case pods." }, "namespaces": { "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"", "items": { "type": "string" }, "type": "array" }, "topologyKey": { "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.", "type": "string" } }, "required": [ "topologyKey" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": { "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig": { "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", "properties": { "nameservers": { "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.", "items": { "type": "string" }, "type": "array" }, "options": { "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption" }, "type": "array" }, "searches": { "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption": { "description": "PodDNSConfigOption defines DNS resolver options of a pod.", "properties": { "name": { "description": "Required.", "type": "string" }, "value": { "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate": { "description": "PodReadinessGate contains the reference to a pod condition", "properties": { "conditionType": { "description": "ConditionType refers to a condition in the pod's condition list with matching type.", "type": "string" } }, "required": [ "conditionType" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext": { "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.", "properties": { "fsGroup": { "_format": "int64", "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.", "type": "integer" }, "fsGroupChangePolicy": { "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".", "type": "string" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container." }, "supplementalGroups": { "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.", "items": { "_format": "int64", "type": "integer" }, "type": "array" }, "sysctls": { "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl" }, "type": "array" }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec": { "description": "PodSpec is a description of a pod.", "properties": { "activeDeadlineSeconds": { "_format": "int64", "description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.", "type": "integer" }, "affinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity", "description": "If specified, the pod's scheduling constraints" }, "automountServiceAccountToken": { "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.", "type": "boolean" }, "containers": { "description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "dnsConfig": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig", "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." }, "dnsPolicy": { "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", "type": "string" }, "enableServiceLinks": { "description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.", "type": "boolean" }, "ephemeralContainers": { "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "hostAliases": { "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias" }, "type": "array", "x-kubernetes-patch-merge-key": "ip", "x-kubernetes-patch-strategy": "merge" }, "hostIPC": { "description": "Use the host's ipc namespace. Optional: Default to false.", "type": "boolean" }, "hostNetwork": { "description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.", "type": "boolean" }, "hostPID": { "description": "Use the host's pid namespace. Optional: Default to false.", "type": "boolean" }, "hostname": { "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", "type": "string" }, "imagePullSecrets": { "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "initContainers": { "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "nodeName": { "description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.", "type": "string" }, "nodeSelector": { "additionalProperties": { "type": "string" }, "description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/", "type": "object" }, "overhead": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.", "type": "object" }, "preemptionPolicy": { "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.", "type": "string" }, "priority": { "_format": "int32", "description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.", "type": "integer" }, "priorityClassName": { "description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.", "type": "string" }, "readinessGates": { "description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate" }, "type": "array" }, "restartPolicy": { "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", "type": "string" }, "runtimeClassName": { "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.", "type": "string" }, "schedulerName": { "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", "type": "string" }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext", "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field." }, "serviceAccount": { "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.", "type": "string" }, "serviceAccountName": { "description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", "type": "string" }, "shareProcessNamespace": { "description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.", "type": "boolean" }, "subdomain": { "description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.", "type": "string" }, "terminationGracePeriodSeconds": { "_format": "int64", "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", "type": "integer" }, "tolerations": { "description": "If specified, the pod's tolerations.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration" }, "type": "array" }, "topologySpreadConstraints": { "description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is only honored by clusters that enable the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint" }, "type": "array", "x-kubernetes-list-map-keys": [ "topologyKey", "whenUnsatisfiable" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "topologyKey", "x-kubernetes-patch-strategy": "merge" }, "volumes": { "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge,retainKeys" } }, "required": [ "containers" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec": { "description": "PodTemplateSpec describes the data a pod should have when created from a template", "properties": { "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec", "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": { "description": "PortworxVolumeSource represents a Portworx volume resource.", "properties": { "fsType": { "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "volumeID": { "description": "VolumeID uniquely identifies a Portworx volume", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm": { "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", "properties": { "preference": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm", "description": "A node selector term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "preference" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe": { "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", "properties": { "exec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "failureThreshold": { "_format": "int32", "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", "type": "integer" }, "httpGet": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "initialDelaySeconds": { "_format": "int32", "description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" }, "periodSeconds": { "_format": "int32", "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", "type": "integer" }, "successThreshold": { "_format": "int32", "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" }, "timeoutSeconds": { "_format": "int32", "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource": { "description": "Represents a projected volume source", "properties": { "defaultMode": { "_format": "int32", "description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "sources": { "description": "list of volume projections", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection" }, "type": "array" } }, "required": [ "sources" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": { "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", "properties": { "group": { "description": "Group to map volume access to Default is no group", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", "type": "boolean" }, "registry": { "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", "type": "string" }, "tenant": { "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", "type": "string" }, "user": { "description": "User to map volume access to Defaults to serivceaccount user", "type": "string" }, "volume": { "description": "Volume is a string that references an already created Quobyte volume by name.", "type": "string" } }, "required": [ "registry", "volume" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource": { "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "pool": { "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors", "image" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": { "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format", "properties": { "containerName": { "description": "Container name: required for volumes, optional for env vars", "type": "string" }, "divisor": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Specifies the output format of the exposed resources, defaults to \"1\"" }, "resource": { "description": "Required: resource to select", "type": "string" } }, "required": [ "resource" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements": { "description": "ResourceRequirements describes the compute resource requirements.", "properties": { "limits": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" }, "requests": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": { "description": "SELinuxOptions are the labels to be applied to the container", "properties": { "level": { "description": "Level is SELinux level label that applies to the container.", "type": "string" }, "role": { "description": "Role is a SELinux role label that applies to the container.", "type": "string" }, "type": { "description": "Type is a SELinux type label that applies to the container.", "type": "string" }, "user": { "description": "User is a SELinux user label that applies to the container.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": { "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".", "type": "string" }, "gateway": { "description": "The host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { "description": "The name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." }, "sslEnabled": { "description": "Flag to enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { "description": "The ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { "description": "The name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } }, "required": [ "gateway", "system", "secretRef" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource": { "description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector": { "description": "SecretKeySelector selects a key of a Secret.", "properties": { "key": { "description": "The key of the secret to select from. Must be a valid secret key.", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret or its key must be defined", "type": "boolean" } }, "required": [ "key" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection": { "description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret or its key must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": { "description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "optional": { "description": "Specify whether the Secret or its keys must be defined", "type": "boolean" }, "secretName": { "description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext": { "description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.", "properties": { "allowPrivilegeEscalation": { "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN", "type": "boolean" }, "capabilities": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities", "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime." }, "privileged": { "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.", "type": "boolean" }, "procMount": { "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.", "type": "string" }, "readOnlyRootFilesystem": { "description": "Whether this container has a read-only root filesystem. Default is false.", "type": "boolean" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": { "description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).", "properties": { "audience": { "description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.", "type": "string" }, "expirationSeconds": { "_format": "int64", "description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.", "type": "integer" }, "path": { "description": "Path is the path relative to the mount point of the file to project the token into.", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." }, "volumeName": { "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl": { "description": "Sysctl defines a kernel parameter to be set", "properties": { "name": { "description": "Name of a property to set", "type": "string" }, "value": { "description": "Value of a property to set", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction": { "description": "TCPSocketAction describes an action based on opening a socket", "properties": { "host": { "description": "Optional: Host name to connect to, defaults to the pod IP.", "type": "string" }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": { "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.", "properties": { "effect": { "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", "type": "string" }, "key": { "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", "type": "string" }, "operator": { "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", "type": "string" }, "tolerationSeconds": { "_format": "int64", "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", "type": "integer" }, "value": { "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint": { "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain." }, "maxSkew": { "_format": "int32", "description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.", "type": "integer" }, "topologyKey": { "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.", "type": "string" }, "whenUnsatisfiable": { "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", "type": "string" } }, "required": [ "maxSkew", "topologyKey", "whenUnsatisfiable" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume": { "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource", "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource", "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "cephfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource", "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource", "description": "ConfigMap represents a configMap that should populate this volume" }, "csi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource", "description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)." }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource", "description": "DownwardAPI represents downward API about the pod that should populate this volume" }, "emptyDir": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource", "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" }, "fc": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource", "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource", "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource", "description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource", "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "gitRepo": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource", "description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container." }, "glusterfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource", "description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource", "description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md" }, "name": { "description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "nfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource", "description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "persistentVolumeClaim": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource", "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" }, "photonPersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource", "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource", "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "projected": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource", "description": "Items for all in one resources secrets, configmaps, and downward API" }, "quobyte": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource", "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource", "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret" }, "storageos": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource", "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes." }, "vsphereVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": { "description": "volumeDevice describes a mapping of a raw block device within a container.", "properties": { "devicePath": { "description": "devicePath is the path inside of the container that the device will be mapped to.", "type": "string" }, "name": { "description": "name must match the name of a persistentVolumeClaim in the pod", "type": "string" } }, "required": [ "name", "devicePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": { "description": "VolumeMount describes a mounting of a Volume within a container.", "properties": { "mountPath": { "description": "Path within the container at which the volume should be mounted. Must not contain ':'.", "type": "string" }, "mountPropagation": { "description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.", "type": "string" }, "name": { "description": "This must match the Name of a Volume.", "type": "string" }, "readOnly": { "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", "type": "boolean" }, "subPath": { "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", "type": "string" }, "subPathExpr": { "description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.", "type": "string" } }, "required": [ "name", "mountPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": { "description": "Projection that may be projected along with other supported volume types", "properties": { "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection", "description": "information about the configMap data to project" }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection", "description": "information about the downwardAPI data to project" }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection", "description": "information about the secret data to project" }, "serviceAccountToken": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection", "description": "information about the serviceAccountToken data to project" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": { "description": "Represents a vSphere volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "storagePolicyID": { "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": "string" }, "storagePolicyName": { "description": "Storage Policy Based Management (SPBM) profile name.", "type": "string" }, "volumePath": { "description": "Path that identifies vSphere volume vmdk", "type": "string" } }, "required": [ "volumePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": { "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", "properties": { "podAffinityTerm": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm", "description": "Required. A pod affinity term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "podAffinityTerm" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": { "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.", "properties": { "gmsaCredentialSpec": { "description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.", "type": "string" }, "gmsaCredentialSpecName": { "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", "type": "string" }, "runAsUserName": { "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "properties": { "continue": { "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.", "type": "string" }, "remainingItemCount": { "_format": "int64", "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.", "type": "integer" }, "resourceVersion": { "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "ReplicaSetList is a collection of ReplicaSets.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "apps/v1" ], "type": [ "string", "null" ] }, "items": { "description": "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_ReplicaSet" }, "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": [ "ReplicaSetList" ], "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": "apps", "kind": "ReplicaSetList", "version": "v1" } ] }
kb_802_Normalized
{ "properties": { "description": { "description": "Additional description of the event", "type": "string" }, "end_datetime": { "description": "The end date and time of the event in format YYYY-MM-DD HH:MM", "type": "string" }, "location": { "description": "The location of the event", "type": "string" }, "start_datetime": { "description": "The start date and time of the event in format YYYY-MM-DD HH:MM", "type": "string" }, "title": { "description": "The title of the event", "type": "string" } }, "required": [ "title", "start_datetime", "end_datetime" ], "type": "object" }
create_calendar_event_7a40efb2