json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "properties": { "destination": { "description": "The destination address", "type": "string" }, "dimensions": { "properties": { "height": { "description": "The height of the package in inches", "type": "number" }, "length": { "description": "The length of the package in inches", "type": "number" }, "width": { "description": "The width of the package in inches", "type": "number" } }, "required": [ "length", "width", "height" ], "type": "object" }, "weight": { "description": "The weight of the package in pounds", "type": "number" } }, "required": [ "weight", "dimensions", "destination" ], "type": "object" }
calculate_shipping_cost_8b4abc63
{ "$schema": "http://json-schema.org/draft-04/schema", "title": "Schema of Net", "type": "object", "required": [ "vars", "params", "blocks" ], "properties": { "vars": { "description": "A dictionary that its keys are name of variables and its valus are multi-dimensional arrays", "type": "object" }, "params": { "description": "Name of `vars`, which are parameters", "type": "array", "items": { "type": "string" } }, "blocks": { "description": "A dictionary that it's keys are output vars and values are {'inputs': 'string array', 'function': 'string'}", "type": "object" } } }
o63687
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "calendar": { "type": "object", "description": "", "properties": { "parameter": { "type": "string", "description": "The place parameter to use for selecting dates.", "format": "topic", "default": "date" } } }, "events": { "type": "object", "description": "Which events to display in the calendar.", "required": [ "resource" ], "properties": { "resource": { "type": "string", "description": "The name of the events resource to pull events from.", "format": "topic", "default": "events" }, "types": { "type": "array", "description": "The types of events that should be listed (all other events will be ignored)", "items": { "type": "string" }, "default": [] } } }, "search": { "type": "object", "required": [ "resource" ], "properties": { "resource": { "type": "string", "description": "The name of the resource to subscribe to for search queries.", "format": "topic" }, "fields": { "type": "array", "description": "The list of JSON pointers (or paths) pointing to object members to match.", "items": { "type": [ "string", "array" ] } }, "match": { "type": "object", "description": "A mapping from regular expressions to field lists. The last matching group will be searched in the corresponding object members.", "additionalProperties": { "type": "array", "description": "The list of JSON pointers similar to the 'fields' list.", "items": { "type": [ "string", "array" ] } } } } }, "details": { "type": "object", "description": "How to handle details display.", "properties": { "resource": { "type": "string", "description": "The name of the resource to publish details with.", "format": "topic" }, "action": { "type": "string", "description": "Which action to trigger when details shall be displayed.", "format": "topic" } } }, "navigation": { "type": "object", "description": "Provide a resource representing navigation targets.", "properties": { "resource": { "type": "string", "format": "topic" }, "interval": { "type": "string", "valid": [ "years", "months", "weeks", "days" ] } } } } }
o52956
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "subelement", "description": "A subelement element", "type": "object", "properties": { "content": { "description": "the content", "type": "string" }, "children": { "description": "the content", "type": "string" } }, "anyOf": [ { "required": [ "children" ] }, { "required": [ "content" ] } ] }
o62755
{ "definitions": { "FlexibleStat": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "id": { "type": "string" }, "contentId": { "type": "string" } }, "required": [ "name", "type", "id", "contentId" ] } }, "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "$ref": "#/definitions/FlexibleStat" } }
o5467
{ "properties": { "dimensions": { "description": "The dimensions required to calculate the area", "properties": { "base": { "description": "The base of a triangle", "type": "number" }, "height": { "description": "The height of a triangle", "type": "number" }, "radius": { "description": "The radius of a circle", "type": "number" }, "side": { "description": "The length of a side (for square)", "type": "number" } }, "required": [ "side", "radius", "base", "height" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. square, circle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_e2165fa4
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "User Token Claim Schema", "description": "Defines the claims provided to autenticate a user with a JWT.", "type": "object", "additionalProperties": true, "oneOf": [ { "required": [ "user" ] }, { "required": [ "sub" ] } ], "properties": { "authentication": { "type": "string", "title": "Authentication", "description": "Users can either be authenticated or unauthenticated. Authenticated users have had their identity validated. Unauthenticated users have not proved their identity, can still take actions when enabled in SaaSquatch, but are tracked separately.", "default": "authenticated", "enum": [ "authenticated", "unauthenticated" ] }, "sub": { "type": "string", "title": "Subject", "description": "The user identity to be validated. Of the format: `{ACCOUNTID}:{USERID}@{TENANT}:users`" }, "iss": { "type": "string", "title": "Issuer", "description": "The issuer of the token. When ommitted then the issuer must be a " }, "user": { "type": "object", "title": "The User Subject", "description": "Identifies the user by identity.", "additionalProperties": true, "required": [ "id", "accountId" ], "properties": { "id": { "type": "string", "title": "User ID" }, "accountId": { "type": "string", "title": "Account ID" } } } } }
o72205
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "userId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "role": { "type": "string", "enum": [ "admin", "edit", "collaborate", "view", "none" ] }, "applicationRoles": { "type": "array", "items": { "type": "object", "properties": { "resourceId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "role": { "type": "string", "enum": [ "collaborate", "view", "none" ] } }, "required": [ "resourceId", "role" ], "additionalProperties": false }, "maxItems": 1000 }, "dashboardRoles": { "type": "array", "items": { "type": "object", "properties": { "resourceId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "role": { "type": "string", "enum": [ "collaborate", "view", "none" ] } }, "required": [ "resourceId", "role" ], "additionalProperties": false }, "maxItems": 1000 } }, "additionalProperties": false, "required": [ "userId" ] }
o9943
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_PolicyRule": { "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", "properties": { "apiGroups": { "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", "items": { "type": "string" }, "type": "array" }, "nonResourceURLs": { "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", "items": { "type": "string" }, "type": "array" }, "resourceNames": { "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", "items": { "type": "string" }, "type": "array" }, "resources": { "description": "Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '*/foo' represents the subresource 'foo' for all resources in the specified apiGroups.", "items": { "type": "string" }, "type": "array" }, "verbs": { "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", "items": { "type": "string" }, "type": "array" } }, "required": [ "verbs" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_Role": { "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "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": [ "Role" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "rules": { "description": "Rules holds all the PolicyRules for this Role", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_PolicyRule" }, "type": "array" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "Role", "version": "v1beta1" } ] }, "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": "RoleList is a collection of Roles Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "rbac.authorization.k8s.io/v1beta1" ], "type": [ "string", "null" ] }, "items": { "description": "Items is a list of Roles", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_Role" }, "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": [ "RoleList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "RoleList", "version": "v1beta1" } ] }
kb_864_Normalized
{ "additionalProperties": false, "items": { "additionalProperties": false, "properties": { "brand": { "type": "string" }, "description": { "type": "string" }, "id": { "pattern": "^[\\d]+$", "type": "string" }, "image": { "type": "string" }, "name": { "type": "string" } }, "required": [ "id", "brand", "name", "description" ], "type": "object" }, "self": { "format": "jsonschema", "name": "product/items", "vendor": "com.nordstrom", "version": "1-0-0" }, "type": "array" }
o12069
{ "additionalProperties": false, "description": "Webhook payload describing an alert coming from RDB Loader", "properties": { "application": { "description": "Application's name and version", "maxLength": 64, "type": "string" }, "base": { "_format": "uri", "description": "A folder that caused an alert", "maxLength": 1024, "type": [ "string", "null" ] }, "group": { "description": "Arbitrary string representing an entity several alerts can be grouped by", "maxLength": 1024, "type": [ "string", "null" ] }, "message": { "description": "Free-form message describing the problem", "maxLength": 4096, "type": "string" }, "severity": { "description": "Severity level of the alarm", "enum": [ "INFO", "WARNING", "ERROR" ] }, "tags": { "description": "Set of key value pairs providing additional information", "type": "object" } }, "required": [ "application", "message", "severity", "tags" ], "self": { "format": "jsonschema", "name": "alert", "vendor": "com.snowplowanalytics.monitoring.batch", "version": "1-0-0" }, "type": "object" }
sp_226_Normalized
{ "definitions": { "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_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" } }, "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", "null" ] }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource", "description": "The Secret to select from" } }, "type": "object" }
kb_316_Normalized
{ "properties": { "check_in_date": { "description": "The check-in date", "format": "date", "type": "string" }, "check_out_date": { "description": "The check-out date", "format": "date", "type": "string" }, "location": { "description": "The location where hotels are to be searched", "type": "string" }, "num_rooms": { "description": "The number of rooms required", "type": "integer" } }, "required": [ "location", "check_in_date", "check_out_date", "num_rooms" ], "type": "object" }
find_hotels_32ddac6b
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "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" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "length", "width", "base", "height" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_a587f24b
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "api_key" ], "type": "object", "properties": { "api_key": { "type": "object", "properties": {} }, "file": { "type": "object", "properties": { "type": { "enum": [ "dicom" ] } } } } }, "config": { "required": [ "destination", "called_ae", "calling_ae", "port" ], "type": "object", "properties": { "destination": { "type": "string" }, "called_ae": { "type": "string" }, "calling_ae": { "default": "flywheel", "type": "string" }, "port": { "default": "104", "type": "number" } } } }, "title": "Invocation manifest for DCMTK: DICOM Send - storescu" }
o41227
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape to calculate area for", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_ac47ca69
{ "$schema": "http://json-schema.org/draft-04/schema", "id": "https://raw.githubusercontent.com/develohpanda/LoadTestSchemas/master/testperiodconfig.schema.json", "title": "JSON Schema for defining the test periods", "type": "array", "additionalProperties": false, "items": { "title": "Test Period", "type": "object", "properties": { "name": { "type": "string", "description": "The name of this test period." }, "periodType": { "type": "string", "description": "The type of period.", "enum": [ "RampUp", "RampDown", "Constant" ] }, "users": { "type": "integer", "description": "How many users does this period effect?", "minimum": 0 }, "durationMinutes": { "type": "number", "description": "How long should this period run for in minutes?", "exclusiveMinimumm": true, "minimum": 0 } }, "required": [ "periodType", "durationMinutes" ] } }
o35937
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "APIServiceCondition describes the state of an APIService at a particular point", "properties": { "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "message": { "description": "Human-readable message indicating details about last transition.", "type": [ "string", "null" ] }, "reason": { "description": "Unique, one-word, CamelCase reason for the condition's last transition.", "type": [ "string", "null" ] }, "status": { "description": "Status is the status of the condition. Can be True, False, Unknown.", "type": [ "string", "null" ] }, "type": { "description": "Type is the type of the condition.", "type": [ "string", "null" ] } }, "required": [ "type", "status" ], "type": "object" }
kb_29_Normalized
{ "properties": { "end_time": { "description": "The end time of the event", "format": "date-time", "type": "string" }, "event_title": { "description": "The title of the event", "type": "string" }, "location": { "description": "The location of the event", "type": "string" }, "start_time": { "description": "The start time of the event", "format": "date-time", "type": "string" } }, "required": [ "event_title", "start_time", "end_time", "location" ], "type": "object" }
create_calendar_event_8a2d858d
{ "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", "null" ] }, "name": { "description": "name must match the name of a persistentVolumeClaim in the pod", "type": [ "string", "null" ] } }, "required": [ "name", "devicePath" ], "type": "object" }
kb_1125_Normalized
{ "definitions": { "company": { "definitions": { "address": { "description": "\u4f4f\u6240", "example": "\u6771\u4eac\u90fd\u6e2f\u533a\u516d\u672c\u6728x-y-z", "maxLength": 190, "type": [ "string" ] }, "company_type": { "description": "\u4f1a\u793e\u306e\u7a2e\u985e", "enum": [ 1, 2, 3, 4 ], "enumDescription": [ { "key": "kabushiki", "value": 1 }, { "key": "goudou", "value": 2 }, { "key": "goumei", "value": 3 }, { "key": "goushi", "value": 4 } ], "example": 1, "type": [ "integer" ] }, "id": { "description": "\u4f1a\u793eID", "example": 1, "type": [ "integer" ] }, "listed_flag": { "description": "\u4e0a\u5834\u4f01\u696d\u304b\u3069\u3046\u304b", "example": false, "type": [ "boolean" ] }, "name": { "description": "\u4f1a\u793e\u540d", "example": "\u65e5\u672c\u592a\u90ce\u682a\u5f0f\u4f1a\u793e", "maxLength": 190, "type": [ "string" ] }, "tel": { "description": "\u96fb\u8a71\u756a\u53f7", "example": "03-1234-5678", "maxLength": 13, "minLength": 10, "pattern": "^[0-9]{2,5}-?[0-9]{1,4}-?[0-9]{4}$", "type": [ "string", "null" ] }, "url": { "description": "\u4f1a\u793eURL", "example": "http://www.example.co.jp/", "format": "uri", "type": [ "string", "null" ] } }, "description": "\u4f1a\u793e", "identity": [ { "$ref": "#/definitions/company/definitions/id" } ], "links": [ { "description": "\u4f1a\u793e\u4e00\u89a7\u3092\u53d6\u5f97\u3059\u308b", "href": "/api/companies", "method": "GET", "rel": "instances", "targetSchema": { "items": { "$ref": "#/definitions/company" }, "type": [ "array" ] }, "title": "get_companies" }, { "description": "\u4f1a\u793e\u60c5\u5831\u3092\u767b\u9332\u3059\u308b", "href": "/api/companies", "method": "POST", "rel": "create", "schema": { "properties": { "address": { "$ref": "#/definitions/company/definitions/address" }, "company_type": { "$ref": "#/definitions/company/definitions/company_type" }, "listed_flag": { "$ref": "#/definitions/company/definitions/listed_flag" }, "name": { "$ref": "#/definitions/company/definitions/name" }, "tel": { "$ref": "#/definitions/company/definitions/tel" }, "url": { "$ref": "#/definitions/company/definitions/url" } }, "required": [ "name", "address", "company_type" ], "title": "create_company_params", "type": [ "object" ] }, "targetSchema": { "$ref": "#/definitions/company" }, "title": "create_company" }, { "description": "\u4f1a\u793e\u60c5\u5831\u3092\u53d6\u5f97\u3059\u308b", "href": "/api/companies/{%23%2Fdefinitions%2Fcompany%2Fdefinitions%2Fid}", "method": "GET", "rel": "self", "targetSchema": { "$ref": "#/definitions/company" }, "title": "get_company" }, { "description": "\u4f1a\u793e\u60c5\u5831\u3092\u66f4\u65b0\u3059\u308b", "href": "/api/companies/{%23%2Fdefinitions%2Fcompany%2Fdefinitions%2Fid}", "method": "PATCH", "rel": "update", "schema": { "properties": { "address": { "$ref": "#/definitions/company/definitions/address" }, "company_type": { "$ref": "#/definitions/company/definitions/company_type" }, "listed_flag": { "$ref": "#/definitions/company/definitions/listed_flag" }, "name": { "$ref": "#/definitions/company/definitions/name" }, "tel": { "$ref": "#/definitions/company/definitions/tel" }, "url": { "$ref": "#/definitions/company/definitions/url" } }, "title": "update_company_params", "type": [ "object" ] }, "targetSchema": { "$ref": "#/definitions/company" }, "title": "update_company" }, { "description": "\u4f1a\u793e\u60c5\u5831\u3092\u524a\u9664\u3059\u308b", "href": "/api/companies/{%23%2Fdefinitions%2Fcompany%2Fdefinitions%2Fid}", "method": "DELETE", "rel": "delete", "title": "delete_company" }, { "description": "\u4f1a\u793e\u306e\u90e8\u7f72\u4e00\u89a7\u3092\u53d6\u5f97\u3059\u308b", "href": "/api/companies/{%23%2Fdefinitions%2Fcompany%2Fdefinitions%2Fid}/departments", "method": "GET", "rel": "search", "targetSchema": { "items": { "$ref": "#/definitions/department" }, "type": [ "array" ] }, "title": "search_company_departments" }, { "description": "\u4f1a\u793e\u306e\u90e8\u7f72\u306b\u6240\u5c5e\u3059\u308b\u793e\u54e1\u4e00\u89a7\u3092\u53d6\u5f97\u3059\u308b", "href": "/api/companies/{%23%2Fdefinitions%2Fcompany%2Fdefinitions%2Fid}/departments/{%23%2Fdefinitions%2Fdepartment%2Fdefinitions%2Fid}/users", "method": "GET", "rel": "search", "targetSchema": { "items": { "$ref": "#/definitions/user" }, "type": [ "array" ] }, "title": "search_company_department_users" }, { "description": "\u4f1a\u793e\u306e\u90e8\u7f72\u306b\u6240\u5c5e\u3059\u308b\u793e\u54e1\u4e00\u89a7\u3092\u53d6\u5f97\u3059\u308b", "href": "/api/companies/{%23%2Fdefinitions%2Fcompany%2Fdefinitions%2Fid}/clubs", "method": "GET", "rel": "search", "targetSchema": { "items": { "properties": { "name": { "description": "\u30af\u30e9\u30d6\u540d", "example": "\u30b5\u30c3\u30ab\u30fc\u90e8", "maxLength": 100, "minLength": 1, "type": [ "string" ] }, "users": { "items": { "$ref": "#/definitions/user" }, "type": [ "array" ] } }, "required": [ "name", "users" ], "title": "company_club", "type": [ "object" ] }, "title": "company_clubs", "type": [ "array" ] }, "title": "search_company_clubs" } ], "properties": { "address": { "$ref": "#/definitions/company/definitions/address" }, "company_type": { "$ref": "#/definitions/company/definitions/company_type" }, "id": { "$ref": "#/definitions/company/definitions/id" }, "listed_flag": { "$ref": "#/definitions/company/definitions/listed_flag" }, "name": { "$ref": "#/definitions/company/definitions/name" }, "tel": { "$ref": "#/definitions/company/definitions/tel" }, "url": { "$ref": "#/definitions/company/definitions/url" } }, "required": [ "id", "name", "address", "company_type", "tel", "url" ], "title": "company", "type": [ "object" ] }, "department": { "definitions": { "company_id": { "$ref": "#/definitions/company/definitions/id" }, "id": { "description": "\u90e8\u7f72ID", "example": 1, "type": [ "integer" ] }, "name": { "description": "\u90e8\u7f72\u540d", "example": "\u55b6\u696d\u90e8", "maxLength": 190, "type": [ "string" ] } }, "description": "\u90e8\u7f72", "identity": [ { "$ref": "#/definitions/department/definitions/company_id" }, { "$ref": "#/definitions/department/definitions/name" } ], "properties": { "company_id": { "$ref": "#/definitions/department/definitions/company_id" }, "id": { "$ref": "#/definitions/department/definitions/id" }, "name": { "$ref": "#/definitions/department/definitions/name" } }, "required": [ "id", "company_id", "name" ], "title": "department", "type": [ "object" ] }, "role": { "definitions": { "name": { "description": "\u5f79\u8077\u540d", "enum": [ "\u4e00\u822c\u793e\u54e1", "\u4e3b\u67fb", "\u4e3b\u4efb", "\u4fc2\u9577", "\u4e3b\u5e79", "\u53c2\u4e8b", "\u8ab2\u9577\u4ee3\u7406", "\u8ab2\u9577", "\u6b21\u9577", "\u90e8\u9577\u4ee3\u7406", "\u526f\u90e8\u9577", "\u90e8\u9577", "\u672c\u90e8\u9577", "\u53c2\u4e0e", "\u57f7\u884c\u5f79", "\u76e3\u67fb\u5f79", "\u53d6\u7de0\u5f79", "\u526f\u793e\u9577", "\u793e\u9577", "\u4f1a\u9577" ], "enumDescription": [ { "key": "staff", "value": "\u4e00\u822c\u793e\u54e1" }, { "key": "project_general_manager", "value": "\u4e3b\u67fb" }, { "key": "supervisor", "value": "\u4e3b\u4efb" }, { "key": "section_head", "value": "\u4fc2\u9577" }, { "key": "chief_editor", "value": "\u4e3b\u5e79" }, { "key": "secretary", "value": "\u53c2\u4e8b" }, { "key": "assistant_section_chief", "value": "\u8ab2\u9577\u4ee3\u7406" }, { "key": "section_chief", "value": "\u8ab2\u9577" }, { "key": "assistant_general_manager", "value": "\u6b21\u9577" }, { "key": "assistant_manager", "value": "\u90e8\u9577\u4ee3\u7406" }, { "key": "vice_manager", "value": "\u526f\u90e8\u9577" }, { "key": "manager", "value": "\u90e8\u9577" }, { "key": "general_manager", "value": "\u672c\u90e8\u9577" }, { "key": "counselor", "value": "\u53c2\u4e0e" }, { "key": "corporate_officer", "value": "\u57f7\u884c\u5f79" }, { "key": "auditor", "value": "\u76e3\u67fb\u5f79" }, { "key": "director", "value": "\u53d6\u7de0\u5f79" }, { "key": "vice_president", "value": "\u526f\u793e\u9577" }, { "key": "president", "value": "\u793e\u9577" }, { "key": "chairman", "value": "\u4f1a\u9577" } ], "example": "\u4e00\u822c\u793e\u54e1", "type": [ "string" ] } }, "description": "\u5f79\u8077", "identity": [ { "$ref": "#/definitions/role/definitions/name" } ], "properties": { "name": { "$ref": "#/definitions/role/definitions/name" } }, "required": [ "name" ], "title": "role", "type": [ "object" ] }, "user": { "definitions": { "departments": { "description": "\u6240\u5c5e\u90e8\u7f72", "items": { "properties": { "department": { "$ref": "#/definitions/department" }, "role": { "$ref": "#/definitions/role/definitions/name" } }, "required": [ "department", "role" ], "title": "user_department", "type": [ "object" ] }, "title": "user_departments", "type": [ "array" ], "_uniqueItems": true }, "email": { "description": "\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9", "example": "[email protected]", "format": "email", "maxLength": 190, "type": [ "string" ] }, "id": { "description": "\u793e\u54e1ID", "example": 1, "type": [ "integer" ] }, "name": { "description": "\u793e\u54e1\u540d", "example": "\u65e5\u672c\u592a\u90ce", "maxLength": 190, "type": [ "string" ] } }, "description": "\u30e6\u30fc\u30b6", "identity": [ { "$ref": "#/definitions/user/definitions/id" } ], "links": [ { "description": "\u793e\u54e1\u4e00\u89a7\u3092\u53d6\u5f97\u3059\u308b", "href": "/api/users", "method": "GET", "rel": "instances", "schema": { "properties": { "after": { "description": "\u6b21\u306e\u30da\u30fc\u30b8\u306e\u30ad\u30fc", "example": "1293891", "type": [ "string" ] }, "before": { "description": "\u524d\u306e\u30da\u30fc\u30b8\u306e\u30ad\u30fc", "example": "1293891", "type": [ "string" ] }, "company_id": { "$ref": "#/definitions/company/definitions/id" } }, "required": [ "company_id" ], "title": "get_users_params", "type": [ "object" ] }, "targetSchema": { "items": { "$ref": "#/definitions/user" }, "type": [ "array" ] }, "title": "get_users" }, { "description": "\u793e\u54e1\u60c5\u5831\u3092\u767b\u9332\u3059\u308b", "href": "/api/users", "method": "POST", "rel": "create", "schema": { "properties": { "company_id": { "$ref": "#/definitions/company/definitions/id" }, "departments": { "description": "\u6240\u5c5e\u90e8\u7f72", "items": { "properties": { "id": { "$ref": "#/definitions/department/definitions/id" }, "role": { "$ref": "#/definitions/role/definitions/name" } }, "required": [ "id", "role" ], "title": "user_department_params", "type": [ "object" ], "_uniqueItems": true }, "type": [ "array" ] }, "email": { "$ref": "#/definitions/user/definitions/email" }, "name": { "$ref": "#/definitions/user/definitions/name" }, "profile": { "properties": { "birthday": { "$ref": "#/definitions/user_profile/definitions/birthday" }, "clubs": { "$ref": "#/definitions/user_profile/definitions/clubs" }, "height": { "$ref": "#/definitions/user_profile/definitions/height" }, "image": { "description": "\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u6295\u7a3f\u753b\u50cf\uff08jpeg\u3001gif\u3001png\u3060\u3051\uff09", "example": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAs==", "media": { "binaryEncoding": "base64", "type": "image/*" }, "type": [ "string" ] }, "registed_at": { "$ref": "#/definitions/user_profile/definitions/registed_at" }, "toeic_score": { "$ref": "#/definitions/user_profile/definitions/toeic_score" }, "weight": { "$ref": "#/definitions/user_profile/definitions/weight" } }, "title": "user_profile_params", "type": [ "object" ] } }, "required": [ "company_id", "name", "email", "departments" ], "title": "create_user_params", "type": [ "object" ] }, "targetSchema": { "$ref": "#/definitions/user" }, "title": "create_user" }, { "description": "\u793e\u54e1\u60c5\u5831\u3092\u53d6\u5f97\u3059\u308b", "href": "/api/users/{%23%2Fdefinitions%2Fuser%2Fdefinitions%2Fid}", "method": "GET", "rel": "self", "targetSchema": { "$ref": "#/definitions/user" }, "title": "get_user" }, { "description": "\u793e\u54e1\u60c5\u5831\u3092\u66f4\u65b0\u3059\u308b", "href": "/api/users/{%23%2Fdefinitions%2Fuser%2Fdefinitions%2Fid}", "method": "PATCH", "rel": "update", "schema": { "properties": { "departments": { "description": "\u6240\u5c5e\u90e8\u7f72", "items": { "properties": { "id": { "$ref": "#/definitions/department/definitions/id" }, "role": { "$ref": "#/definitions/role/definitions/name" } }, "required": [ "id", "role" ], "title": "user_department_params", "type": [ "object" ], "_uniqueItems": true }, "type": [ "array" ] }, "email": { "$ref": "#/definitions/user/definitions/email" }, "name": { "$ref": "#/definitions/user/definitions/name" }, "profile": { "properties": { "birthday": { "$ref": "#/definitions/user_profile/definitions/birthday" }, "clubs": { "$ref": "#/definitions/user_profile/definitions/clubs" }, "height": { "$ref": "#/definitions/user_profile/definitions/height" }, "image": { "description": "\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u6295\u7a3f\u753b\u50cf\uff08jpeg\u3001gif\u3001png\u3060\u3051\uff09", "example": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAs==", "media": { "binaryEncoding": "base64", "type": "image/*" }, "type": [ "string" ] }, "registed_at": { "$ref": "#/definitions/user_profile/definitions/registed_at" }, "toeic_score": { "$ref": "#/definitions/user_profile/definitions/toeic_score" }, "weight": { "$ref": "#/definitions/user_profile/definitions/weight" } }, "title": "user_profile_params", "type": [ "object" ] } }, "title": "update_user_params", "type": [ "object" ] }, "targetSchema": { "$ref": "#/definitions/user" }, "title": "update_user" }, { "description": "\u793e\u54e1\u60c5\u5831\u3092\u524a\u9664\u3059\u308b", "href": "/api/users/{%23%2Fdefinitions%2Fuser%2Fdefinitions%2Fid}", "method": "DELETE", "rel": "delete", "title": "delete_user" }, { "description": "\u793e\u54e1\u3092\u691c\u7d22\u3059\u308b", "href": "/api/users/search", "method": "GET", "rel": "instances", "schema": { "properties": { "after": { "description": "\u6b21\u306e\u30da\u30fc\u30b8\u306e\u30ad\u30fc", "example": "1293891", "type": [ "string" ] }, "before": { "description": "\u524d\u306e\u30da\u30fc\u30b8\u306e\u30ad\u30fc", "example": "1293891", "type": [ "string" ] }, "company_id": { "$ref": "#/definitions/company/definitions/id" }, "department_id": { "$ref": "#/definitions/department/definitions/id" }, "keyword": { "description": "\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9", "example": "\u592a\u90ce", "type": [ "string" ] }, "role": { "$ref": "#/definitions/role/definitions/name" } }, "required": [ "company_id" ], "title": "search_users_params", "type": [ "object" ] }, "targetSchema": { "items": { "$ref": "#/definitions/user" }, "type": [ "array" ] }, "title": "search_users" } ], "properties": { "company": { "$ref": "#/definitions/company" }, "departments": { "$ref": "#/definitions/user/definitions/departments" }, "email": { "$ref": "#/definitions/user/definitions/email" }, "id": { "$ref": "#/definitions/user/definitions/id" }, "name": { "$ref": "#/definitions/user/definitions/name" }, "user_profile": { "example": { "birthday": "1980-01-23T00:00:00+09:00", "clubs": [ "\u30b5\u30c3\u30ab\u30fc\u90e8", "\u6599\u7406\u90e8" ], "height": 175.8, "image": "http://www.example.co.jp/public/uploads/:user_id/xxx.jpg", "registed_at": "2016-10-12T09:31:58+09:00", "toeic_score": 700, "user_id": 1, "weight": 70.2 }, "oneOf": [ { "$ref": "#/definitions/user_profile" }, { "type": [ "null" ] } ] } }, "required": [ "id", "name", "email", "company", "departments" ], "title": "user", "type": [ "object" ] }, "user_profile": { "definitions": { "birthday": { "description": "\u751f\u5e74\u6708\u65e5", "example": "1980-01-23T00:00:00+09:00", "format": "date-time", "type": [ "string", "null" ] }, "clubs": { "description": "\u6240\u5c5e\u30af\u30e9\u30d6", "example": [ "\u30b5\u30c3\u30ab\u30fc\u90e8", "\u6599\u7406\u90e8" ], "items": { "description": "\u30af\u30e9\u30d6\u540d", "example": "\u30b5\u30c3\u30ab\u30fc\u90e8", "maxLength": 100, "minLength": 1, "type": [ "string" ] }, "type": [ "array" ], "_uniqueItems": true }, "height": { "description": "\u8eab\u9577", "example": 175.8, "maximum": 500.0, "minimum": 0.1, "type": [ "number", "null" ] }, "image": { "description": "\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u753b\u50cfURL", "example": "http://www.example.co.jp/public/uploads/:user_id/xxx.jpg", "format": "uri", "type": [ "string", "null" ] }, "registed_at": { "description": "\u5165\u793e\u65e5", "example": "1980-01-23T00:00:00+09:00", "format": "date-time", "type": [ "string" ] }, "toeic_score": { "description": "TOEIC\u306e\u30b9\u30b3\u30a2", "example": 700, "maximum": 990, "minimum": 0, "type": [ "integer", "null" ] }, "user_id": { "$ref": "#/definitions/user/definitions/id" }, "weight": { "description": "\u4f53\u91cd", "example": 70.2, "maximum": 1000.0, "minimum": 0.1, "type": [ "number", "null" ] } }, "description": "\u30e6\u30fc\u30b6\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb", "identity": [ { "$ref": "#/definitions/user_profile/definitions/user_id" } ], "properties": { "birthday": { "$ref": "#/definitions/user_profile/definitions/birthday" }, "clubs": { "$ref": "#/definitions/user_profile/definitions/clubs" }, "height": { "$ref": "#/definitions/user_profile/definitions/height" }, "image": { "$ref": "#/definitions/user_profile/definitions/image" }, "registed_at": { "$ref": "#/definitions/user_profile/definitions/registed_at" }, "toeic_score": { "$ref": "#/definitions/user_profile/definitions/toeic_score" }, "user_id": { "$ref": "#/definitions/user_profile/definitions/user_id" }, "weight": { "$ref": "#/definitions/user_profile/definitions/weight" } }, "required": [ "user_id", "registed_at" ], "title": "user_profile", "type": [ "object" ] } }, "description": "Sample API", "links": [ { "href": "http://test.example.co.jp", "rel": "self", "title": "Sample API" } ], "properties": { "company": { "$ref": "#/definitions/company" }, "department": { "$ref": "#/definitions/department" }, "role": { "$ref": "#/definitions/role" }, "user": { "$ref": "#/definitions/user" }, "user_profile": { "$ref": "#/definitions/user_profile" } }, "title": "Sample API", "type": [ "object" ] }
o77403
{ "title": "Hardware Inventory Information", "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "minProperties": 1 }
o8461
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_auditregistration_v1alpha1_AuditSinkSpec": { "description": "AuditSinkSpec holds the spec for the audit sink", "properties": { "policy": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_auditregistration_v1alpha1_Policy", "description": "Policy defines the policy for selecting which events should be sent to the webhook required" }, "webhook": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_auditregistration_v1alpha1_Webhook", "description": "Webhook to send events required" } }, "required": [ "policy", "webhook" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_auditregistration_v1alpha1_Policy": { "description": "Policy defines the configuration of how audit events are logged", "properties": { "level": { "description": "The Level that all requests are recorded at. available options: None, Metadata, Request, RequestResponse required", "type": "string" }, "stages": { "description": "Stages is a list of stages for which events are created.", "items": { "type": "string" }, "type": "array" } }, "required": [ "level" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_auditregistration_v1alpha1_ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "`name` is the name of the service. Required", "type": "string" }, "namespace": { "description": "`namespace` is the namespace of the service. Required", "type": "string" }, "path": { "description": "`path` is an optional URL path which will be sent in any request to this service.", "type": "string" }, "port": { "_format": "int32", "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", "type": "integer" } }, "required": [ "namespace", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_auditregistration_v1alpha1_Webhook": { "description": "Webhook holds the configuration of the webhook", "properties": { "clientConfig": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_auditregistration_v1alpha1_WebhookClientConfig", "description": "ClientConfig holds the connection parameters for the webhook required" }, "throttle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_auditregistration_v1alpha1_WebhookThrottleConfig", "description": "Throttle holds the options for throttling the webhook" } }, "required": [ "clientConfig" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_auditregistration_v1alpha1_WebhookClientConfig": { "description": "WebhookClientConfig contains the information to make a connection with the webhook", "properties": { "caBundle": { "_format": "byte", "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string" }, "service": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_auditregistration_v1alpha1_ServiceReference", "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`." }, "url": { "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_auditregistration_v1alpha1_WebhookThrottleConfig": { "description": "WebhookThrottleConfig holds the configuration for throttling events", "properties": { "burst": { "_format": "int64", "description": "ThrottleBurst is the maximum number of events sent at the same moment default 15 QPS", "type": "integer" }, "qps": { "_format": "int64", "description": "ThrottleQPS maximum number of batches per second default 10 QPS", "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_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": "AuditSink represents a cluster level audit sink", "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": [ "auditregistration.k8s.io/v1alpha1" ], "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": [ "AuditSink" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_auditregistration_v1alpha1_AuditSinkSpec", "description": "Spec defines the audit configuration spec" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "auditregistration.k8s.io", "kind": "AuditSink", "version": "v1alpha1" } ] }
kb_43_Normalized
{ "properties": { "config": { "properties": { "endpoints": { "items": { "description": "Name of the method config yaml(json) file", "examples": [ "hello.yaml" ], "type": "string" }, "type": "array" }, "rateLimit": { "description": "How many requests per second are allowed", "examples": [ 100 ], "type": "integer" } }, "type": "object" }, "dependencies": { "properties": { "client": { "items": { "description": "The name of a client this endpoint depends on", "examples": [ "bar" ], "type": "string" }, "type": "array" }, "middleware": { "items": { "description": "The name of a middleware this endpoint depends on", "examples": [ "example" ], "type": "string" }, "type": "array" } }, "type": "object" }, "name": { "description": "Endpoint name", "examples": [ "bar" ], "type": "string" }, "type": { "description": "Endpoint protocol, either http or tchannel", "enum": [ "http", "tchannel" ], "examples": [ "http" ], "type": "string" } }, "required": [ "name", "type", "config", "dependencies" ], "type": "object" }
o83291
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "properties": { "category": { "description": "Category of licence", "enum": [ "Financial", "Business" ], "type": "string" }, "company_jurisdiction": { "description": "Jurisdiction where company is based", "minLength": 1, "type": "string" }, "company_name": { "description": "Name of the company holding the licence", "minLength": 1, "type": "string" }, "confidence": { "description": "Confidence in accuracy of data", "enum": [ "HIGH", "MEDIUM", "LOW" ], "type": "string" }, "end_date": { "_format": "date", "type": "string" }, "jurisdiction_classification": { "description": "Description of how regulator classifies licence", "type": [ "string", "array" ] }, "licence_jurisdiction": { "description": "Jurisdiction for which licence is issued", "minLength": 1, "type": "string" }, "licence_number": { "description": "Licence number or code", "type": "string" }, "regulator": { "description": "The regulating body that issued the licence", "type": "string" }, "retrieved_at": { "_format": "date", "type": "string" }, "sample_date": { "_format": "date", "description": "Date on which this fact was known to be true", "type": "string" }, "source_url": { "description": "Place where this fact can be verified", "minLength": 1, "type": "string" }, "start_date": { "_format": "date", "type": "string" }, "status": { "description": "Status of the licence", "type": "string" } }, "required": [ "source_url", "sample_date", "company_name", "company_jurisdiction" ], "type": "object" }
o65476
{ "additionalProperties": false, "properties": { "description": { "type": "string" }, "framework": { "default": false, "description": "True if this package installs a new Mesos framework.", "type": "boolean" }, "images": { "additionalProperties": false, "properties": { "icon-large": { "description": "PNG icon URL, preferably 256 by 256 pixels.", "type": "string" }, "icon-medium": { "description": "PNG icon URL, preferably 128 by 128 pixels.", "type": "string" }, "icon-small": { "description": "PNG icon URL, preferably 48 by 48 pixels.", "type": "string" }, "screenshots": { "items": { "description": "PNG screen URL, preferably 1024 by 1024 pixels.", "type": "string" }, "type": "array" } }, "type": "object" }, "maintainer": { "type": "string" }, "name": { "type": "string" }, "postInstallNotes": { "description": "Post installation notes that would be useful to the user of this package.", "type": "string" }, "preInstallNotes": { "description": "Pre installation notes that would be useful to the user of this package.", "type": "string" }, "scm": { "type": "string" }, "tags": { "items": { "pattern": "^[^\\s]+$", "type": "string" }, "type": "array" }, "version": { "type": "string" }, "website": { "type": "string" } }, "required": [ "name", "version", "maintainer", "description", "tags" ], "type": "object" }
o49536
{ "additionalProperties": false, "definitions": { "config": { "additionalProperties": false, "id": "#/definitions/config", "properties": { "external": { "properties": { "name": { "type": "string" } }, "type": [ "boolean", "object" ] }, "file": { "type": "string" }, "labels": { "$ref": "#/definitions/list_or_dict" }, "name": { "type": "string" } }, "type": "object" }, "constraints": { "service": { "anyOf": [ { "required": [ "build" ] }, { "required": [ "image" ] } ], "id": "#/definitions/constraints/service", "properties": { "build": { "required": [ "context" ] } } } }, "deployment": { "additionalProperties": false, "id": "#/definitions/deployment", "properties": { "endpoint_mode": { "type": "string" }, "labels": { "$ref": "#/definitions/list_or_dict" }, "mode": { "type": "string" }, "placement": { "additionalProperties": false, "properties": { "constraints": { "items": { "type": "string" }, "type": "array" }, "preferences": { "items": { "additionalProperties": false, "properties": { "spread": { "type": "string" } }, "type": "object" }, "type": "array" } }, "type": "object" }, "replicas": { "type": "integer" }, "resources": { "additionalProperties": false, "properties": { "limits": { "additionalProperties": false, "properties": { "cpus": { "type": "string" }, "memory": { "type": "string" } }, "type": "object" }, "reservations": { "additionalProperties": false, "properties": { "cpus": { "type": "string" }, "generic_resources": { "$ref": "#/definitions/generic_resources" }, "memory": { "type": "string" } }, "type": "object" } }, "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" }, "order": { "enum": [ "start-first", "stop-first" ], "type": "string" }, "parallelism": { "type": "integer" } }, "type": "object" } }, "type": [ "object", "null" ] }, "generic_resources": { "id": "#/definitions/generic_resources", "items": { "additionalProperties": false, "properties": { "discrete_resource_spec": { "additionalProperties": false, "properties": { "kind": { "type": "string" }, "value": { "type": "number" } }, "type": "object" } }, "type": "object" }, "type": "array" }, "healthcheck": { "additionalProperties": false, "id": "#/definitions/healthcheck", "properties": { "disable": { "type": "boolean" }, "interval": { "_format": "duration", "type": "string" }, "retries": { "type": "number" }, "start_period": { "_format": "duration", "type": "string" }, "test": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "timeout": { "_format": "duration", "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": { "attachable": { "type": "boolean" }, "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" }, "name": { "type": "string" } }, "type": [ "object", "null" ] }, "secret": { "additionalProperties": false, "id": "#/definitions/secret", "properties": { "external": { "properties": { "name": { "type": "string" } }, "type": [ "boolean", "object" ] }, "file": { "type": "string" }, "labels": { "$ref": "#/definitions/list_or_dict" }, "name": { "type": "string" } }, "type": "object" }, "service": { "additionalProperties": false, "id": "#/definitions/service", "properties": { "build": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "args": { "$ref": "#/definitions/list_or_dict" }, "cache_from": { "$ref": "#/definitions/list_of_strings" }, "context": { "type": "string" }, "dockerfile": { "type": "string" }, "labels": { "$ref": "#/definitions/list_or_dict" }, "network": { "type": "string" }, "shm_size": { "type": [ "integer", "string" ] }, "target": { "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" } ] }, "configs": { "items": { "oneOf": [ { "type": "string" }, { "properties": { "gid": { "type": "string" }, "mode": { "type": "number" }, "source": { "type": "string" }, "target": { "type": "string" }, "uid": { "type": "string" } }, "type": "object" } ] }, "type": "array" }, "container_name": { "type": "string" }, "credential_spec": { "additionalProperties": false, "properties": { "file": { "type": "string" }, "registry": { "type": "string" } }, "type": "object" }, "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" }, "isolation": { "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": { "oneOf": [ { "format": "ports", "type": "number" }, { "_format": "ports", "type": "string" }, { "additionalProperties": false, "properties": { "mode": { "type": "string" }, "protocol": { "type": "string" }, "published": { "type": "integer" }, "target": { "type": "integer" } }, "type": "object" } ] }, "type": "array", "_uniqueItems": true }, "privileged": { "type": "boolean" }, "read_only": { "type": "boolean" }, "restart": { "type": "string" }, "secrets": { "items": { "oneOf": [ { "type": "string" }, { "properties": { "gid": { "type": "string" }, "mode": { "type": "number" }, "source": { "type": "string" }, "target": { "type": "string" }, "uid": { "type": "string" } }, "type": "object" } ] }, "type": "array" }, "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": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "bind": { "properties": { "propagation": { "type": "string" } }, "type": "object" }, "consistency": { "type": "string" }, "read_only": { "type": "boolean" }, "source": { "type": "string" }, "target": { "type": "string" }, "tmpfs": { "properties": { "size": { "minimum": 0, "type": "integer" } }, "type": "object" }, "type": { "type": "string" }, "volume": { "properties": { "nocopy": { "type": "boolean" } }, "type": "object" } }, "required": [ "type" ], "type": "object" } ], "_uniqueItems": true }, "type": "array" }, "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" }, "name": { "type": "string" } }, "type": [ "object", "null" ] } }, "patternProperties": { "^x-": {} }, "properties": { "configs": { "additionalProperties": false, "id": "#/properties/configs", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/config" } }, "type": "object" }, "networks": { "id": "#/properties/networks", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/network" } }, "type": "object" }, "secrets": { "additionalProperties": false, "id": "#/properties/secrets", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/secret" } }, "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" }
o80248
{ "id": "http://prebid.org/pbs_request.json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "schema for a Prebid Server request", "type": "object", "required": [ "account_id", "ad_units" ], "properties": { "account_id": { "type": "string" }, "tid": { "description": "Unique transaction ID", "type": "string" }, "timeout_millis": { "description": "How long to wait for adapters to return bids", "type": "integer" }, "secure": { "description": "Flag to indicate if the impression requires secure HTTPS URL creative assets and markup, where 0 = non-secure, 1 = secure. If omitted, the secure state will be interpreted from the request to the prebid server", "type": "integer" }, "cache_markup": { "description": "Caches markup for two-phase response (get response then separate call to get markup)", "type": "integer" }, "sort_bids": { "description": "Sorts bids by price & response time and returns ad server targeting keys for each bid in prebid server response", "type": "integer" }, "max_key_length": { "description": "Used to determine whether ad server targeting key strings should be truncated on prebid server. For DFP max key length should be 20.", "type": "integer" }, "app": { "type": "object", "description": "This object should be included if the ad supported content is a non-browser application (typically in mobile) as opposed to a website. At a minimum, it is useful to provide an App ID or bundle, but this is not strictly required.", "properties": { "name": { "description": "App name (may be aliased at the publisher\u2019s request).", "type": "string" }, "bundle": { "description": "A platform-specific application identifier intended to be unique to the app and independent of the exchange. On Android, this should be a bundle or package name (e.g., com.foo.mygame). On iOS, it is typically a numeric ID.", "type": "string" }, "domain": { "description": "Domain of the app (e.g., 'mygame.foo.com').", "type": "string" }, "storeurl": { "description": "App store URL for an installed app; for IQG 2.1 compliance.", "type": "string" }, "ver": { "description": "Application version.", "type": "string" }, "privacypolicy": { "description": "Indicates if the app has a privacy policy, where 0 = no, 1 = yes.", "type": "integer" }, "paid": { "description": "0 = app is free, 1 = the app is a paid version.", "type": "integer" }, "keywords": { "description": "Comma separated list of keywords about the app.", "type": "string" } } }, "device": { "type": "object", "description": "3.2.18 Object: Device. This object provides information pertaining to the device through which the user is interacting. Device information includes its hardware, platform, location, and carrier data. The device can refer to a mobile handset, a desktop computer, set top box, or other digital device.", "properties": { "ua": { "description": "Browser user agent string.", "type": "string" }, "geo": { "type": "object", "description": "This object encapsulates various methods for specifying a geographic location. When subordinate to a Device object, it indicates the location of the device which can also be interpreted as the user\u2019s current location. The lat/lon attributes should only be passed if they conform to the accuracy depicted in the type attribute. For example, the centroid of a geographic region such as postal code should not be passed.", "properties": { "lat": { "description": "Latitude from -90.0 to +90.0, where negative is south.", "type": "number" }, "lon": { "description": "Longitude from -180.0 to +180.0, where negative is west.", "type": "number" }, "type": { "description": "Source of location data; recommended when passing lat/lon. Refer to List 5.20.", "type": "integer" }, "accuracy": { "description": "Estimated location accuracy in meters; recommended when lat/lon are specified and derived from a device\u2019s location services (i.e., type = 1). Note that this is the accuracy as reported from the device. Consult OS specific documentation (e.g., Android, iOS) for exact interpretation.", "type": "integer" }, "lastfix": { "description": "Number of seconds since this geolocation fix was established. Note that devices may cache location data across multiple fetches. Ideally, this value should be from the time the actual fix was taken.", "type": "integer" }, "ipservice": { "description": "Service or provider used to determine geolocation from IP address if applicable (i.e., type = 2). Refer to List 5.23.", "type": "integer" }, "country": { "description": "Country code using ISO-3166-1-alpha-3.", "type": "string" }, "region": { "description": "Region code using ISO-3166-2; 2-letter state code if USA.", "type": "string" }, "metro": { "description": "Google metro code; similar to but not exactly Nielsen DMAs. See Appendix A for a link to the codes.", "type": "string" }, "city": { "description": "City using United Nations Code for Trade & Transport Locations. See Appendix A for a link to the codes.", "type": "string" }, "zip": { "description": "Zip or postal code.", "type": "string" }, "utcoffset": { "description": "Local time as the number +/- of minutes from UTC.", "type": "string" } } }, "dnt": { "description": "Standard \u201cDo Not Track\u201d flag as set in the header by the browser, where 0 = tracking is unrestricted, 1 = do not track.", "type": "integer" }, "lmt": { "description": "'Limit Ad Tracking' signal commercially endorsed (e.g., iOS, Android), where 0 = tracking is unrestricted, 1 = tracking must be limited per commercial guidelines.", "type": "integer" }, "ip": { "description": "IPv4 address closest to device.", "type": "string" }, "ipv6": { "description": "IPv6 address closest to device.", "type": "string" }, "devicetype": { "description": "The general type of device. Refer to List 5.21.", "type": "integer" }, "make": { "description": "Device make (e.g., 'Apple').", "type": "string" }, "model": { "description": "Device model (e.g., 'iPhone')", "type": "string" }, "os": { "description": "Device operating system (e.g., 'iOS').", "type": "string" }, "osv": { "description": "Device operating system version (e.g., '3.1.2').", "type": "string" }, "hwv": { "description": "Hardware version of the device (e.g., '5S' for iPhone 5S).", "type": "string" }, "h": { "description": "Physical height of the screen in pixels.", "type": "integer" }, "w": { "description": "Physical width of the screen in pixels.", "type": "integer" }, "ppi": { "description": "Screen size as pixels per linear inch.", "type": "integer" }, "pxratio": { "description": "The ratio of physical pixels to device independent pixels.", "type": "number" }, "js": { "description": "Support for JavaScript, where 0 = no, 1 = yes.", "type": "integer" }, "geofetch": { "description": "Indicates if the geolocation API will be available to JavaScript code running in the banner, where 0 = no, 1 = yes.", "type": "integer" }, "language": { "description": "Browser language using ISO-639-1-alpha-2.", "type": "string" }, "carrier": { "description": "Carrier or ISP (e.g., 'VERIZON') using exchange curated string names which should be published to bidders a priori.", "type": "string" }, "mccmnc": { "description": "Mobile carrier as the concatenated MCC-MNC code (e.g., '310-005' identifies Verizon Wireless CDMA in the USA). Refer to https://en.wikipedia.org/wiki/Mobile_country_code for further examples. Note that the dash between the MCC and MNC parts is required to remove parsing ambiguity.", "type": "string" }, "connectiontype": { "description": "Network connection type. Refer to List 5.22.", "type": "integer" }, "ifa": { "description": "ID sanctioned for advertiser use in the clear (i.e., not hashed).", "type": "string" }, "didsha1": { "description": "Hardware device ID (e.g., IMEI); hashed via SHA1.", "type": "string" }, "didmd5": { "description": "Hardware device ID (e.g., IMEI); hashed via MD5.", "type": "string" }, "dpidsha1": { "description": "Platform device ID (e.g., Android ID); hashed via SHA1.", "type": "string" }, "dpidmd5": { "description": "Platform device ID (e.g., Android ID); hashed via MD5.", "type": "string" }, "macsha1": { "description": "MAC address of the device; hashed via SHA1.", "type": "string" }, "macmd5": { "description": "MAC address of the device; hashed via MD5.", "type": "string" } } }, "user": { "type": "object", "properties": { "id": { "description": "Exchange-specific ID for the user.", "type": "string" }, "buyeruid": { "description": "Buyer-specific ID for the user as mapped by the exchange for the buyer.", "type": "string" }, "yob": { "description": "Year of birth as a 4-digit integer.", "type": "integer" }, "gender": { "description": "Gender, where M=male, F=female, O=known to be other, omitted is unknown", "type": "string" } } }, "ad_units": { "type": "array", "minItems": 1, "items": { "type": "object", "required": [ "sizes", "code" ], "oneOf": [ { "required": [ "bids" ] }, { "required": [ "config_id" ] } ], "properties": { "code": { "description": "Unique code of the ad unit on the page", "type": "string" }, "sizes": { "type": "array", "items": { "type": "object", "properties": { "h": { "description": "Height of the ad unit", "type": "integer" }, "w": { "description": "Width of the ad unit", "type": "integer" } } } }, "media_types": { "type": "array", "description": "Media types accepted by this ad unit", "items": { "type": "string", "enum": [ "banner", "video" ] } }, "video": { "type": "object", "description": "Video attributes of this ad Unit", "properties": { "mimes": { "type": "array", "description": "Mime types as defined by ORTB - ex: video/mp4", "items": { "type": "string" } }, "minduration": { "type": "integer", "description": "Minimum video ad duration in seconds." }, "maxduration": { "type": "integer", "description": "Maximum video ad duration in seconds." }, "startdelay": { "type": "integer", "description": "Indicates the start delay in seconds for pre-roll, mid-roll, or post-roll ad placements." }, "skippable": { "type": "integer", "description": "Indicates if the player will allow the video to be skipped ( 0 = no, 1 = yes)." }, "playback_method": { "type": "integer", "description": "Playback method code as defined by ORTB." }, "protocols": { "type": "integer", "description": "protocols as specified in ORTB 2.5 spec: 5.8" } } }, "bids": { "type": "array", "minItems": 1, "items": { "type": "object", "required": [ "bidder", "bid_id" ], "properties": { "bid_id": { "description": "Unique bid id for this bidder for this slot - for analytics", "type": "string" }, "bidder": { "description": "Unique code for an adapter to call", "type": "string" }, "params": { "description": "Optional params to send to the adapter", "type": "object" } } } }, "config_id": { "description": "The config to load for this ad unit", "type": "string" }, "slot_code": { "description": "The slot code used by DFP", "type": "string" }, "topframe": { "description": "Whether this ad will render in the top IFRAME", "type": "integer", "minimum": 0, "maximum": 1 }, "instl": { "description": "1 = the ad is interstitial or full screen, 0 = not interstitial", "type": "integer", "minimum": 0, "maximum": 1 } } } } } }
o31351
{ "properties": { "all": { "type": "boolean" }, "destip": { "readonly": true, "type": "string" }, "destport": { "readonly": true, "type": "integer" }, "groupname": { "type": "string" }, "iip": { "type": "string" }, "intranetip": { "readonly": true, "type": "string" }, "intranetip6": { "readonly": true, "type": "string" }, "ipaddress": { "readonly": true, "type": "string" }, "netmask": { "type": "string" }, "nodeid": { "type": "integer" }, "peid": { "readonly": true, "type": "integer" }, "port": { "readonly": true, "type": "integer" }, "privateip": { "readonly": true, "type": "string" }, "privateport": { "readonly": true, "type": "integer" }, "publicip": { "readonly": true, "type": "string" }, "publicport": { "readonly": true, "type": "integer" }, "sessionkey": { "type": "string" }, "username": { "type": "string" } }, "title": "aaasession", "type": "object" }
o29942
{ "properties": { "person1": { "properties": { "birth_date": { "description": "The birth date of person 1", "type": "string" }, "name": { "description": "The name of person 1", "type": "string" } }, "type": "object" }, "person2": { "properties": { "birth_date": { "description": "The birth date of person 2", "type": "string" }, "name": { "description": "The name of person 2", "type": "string" } }, "type": "object" } }, "required": [ "person1", "person2" ], "type": "object" }
calculate_age_difference_fe7b5ecc
{ "additionalProperties": true, "description": "Schema for an Optimizely visitor_dimension context", "properties": { "id": { "type": [ "string", "null" ] }, "value": { "type": [ "string", "null" ] } }, "self": { "format": "jsonschema", "name": "visitor_dimension", "vendor": "com.optimizely", "version": "1-0-0" }, "type": "object" }
sp_159_Normalized
{ "additionalProperties": false, "description": "Schema for Iglu related errors which could be during validation or schema lookup", "properties": { "failure": { "description": "List of failure messages caused by Iglu subsystem", "items": { "anyOf": [ { "additionalProperties": false, "description": "Supplied JSON did not validate against its schema (or schema was not found) (IgluError)", "properties": { "error": { "anyOf": [ { "additionalProperties": false, "description": "Resolution error - schema could not be found in the specified repositories, defined by ResolutionError in the Iglu Client", "properties": { "error": { "enum": [ "ResolutionError" ] }, "lookupHistory": { "items": { "properties": { "attempts": { "description": "Number of attempts which have been made", "minimum": 0, "type": "integer" }, "errors": { "description": "Set of errors which happened for this repository", "items": { "properties": { "error": { "description": "Type of error (NotFound does not contain a message)", "enum": [ "RepoFailure", "ClientFailure", "NotFound" ] }, "message": { "description": "Optional message in case of ClientFailure or RepoFailure", "maxLength": 256, "type": "string" } }, "required": [ "error" ], "type": "object" }, "minItems": 1, "type": "array" }, "lastAttempt": { "_format": "date-time", "description": "Timestamp of a last attempt being made", "type": "string" }, "repostitory": { "description": "Name of the repostitory as written in resolver.json", "type": "string" } }, "required": [ "repository", "errors", "attempts", "lastAttempt" ], "type": "object" }, "minItems": 1, "type": "array" } }, "required": [ "error", "lookupHistory" ] }, { "additionalProperties": false, "description": "Data is invalid against resolved schema", "properties": { "dataReports": { "items": { "additionalProperties": false, "properties": { "keyword": { "description": "JSON Schema Keywrod caused invalidation", "type": [ "string", "null" ] }, "message": { "description": "Human-readable message describing the issue with the schema", "type": "string" }, "path": { "description": "JSON Path to an issue in the faulty JSON datum", "type": [ "string", "null" ] }, "targets": { "type": [ "array", "null" ] } }, "required": [ "path", "message", "keyword", "targets" ] }, "minItems": 1, "type": "array" }, "error": { "enum": [ "ValidationError" ] } }, "required": [ "dataReports" ] }, { "additionalProperties": false, "description": "Schema is invalid and cannot be used to validate an instance", "properties": { "error": { "enum": [ "ValidationError" ] }, "schemaIssues": { "description": "List of problems in resolved JSON schema", "items": { "additionalProperties": false, "properties": { "message": { "description": "Human-readable message describing the issue with the schema", "type": "string" }, "path": { "description": "JSON Path to an issue in the faulty JSON Schema", "type": "string" } }, "required": [ "path", "message" ], "type": "object" }, "minItems": 1, "type": "array" } }, "required": [ "error" ] } ], "description": "Iglu client error" }, "schemaKey": { "description": "The iglu schema coordinates to validate against", "type": "string" } }, "type": "object" }, { "additionalProperties": false, "description": "JSON returned from a registry couldn't be parsed as a JSON Schema AST (InvalidSchema)", "properties": { "message": { "description": "Human-readable message", "type": "string" }, "schemaKey": { "description": "Requested schema key", "type": "string" } }, "required": [ "schemaKey", "message" ], "type": "object" }, { "additionalProperties": false, "description": "Resolver couldn't resolve a SchemaList (entity for shredding and migration) (SchemaListNotFound)", "properties": { "error": { "anyOf": [ { "additionalProperties": false, "description": "Resolution error - schema could not be found in the specified repositories, defined by ResolutionError in the Iglu Client", "properties": { "error": { "enum": [ "ResolutionError" ] }, "lookupHistory": { "items": { "properties": { "attempts": { "description": "Number of attempts which have been made", "minimum": 0, "type": "integer" }, "errors": { "description": "Set of errors which happened for this repository", "items": { "properties": { "error": { "description": "Type of error (NotFound does not contain a message)", "enum": [ "RepoFailure", "ClientFailure", "NotFound" ] }, "message": { "description": "Optional message in case of ClientFailure or RepoFailure", "maxLength": 256, "type": "string" } }, "required": [ "error" ], "type": "object" }, "minItems": 1, "type": "array" }, "lastAttempt": { "_format": "date-time", "description": "Timestamp of a last attempt being made", "type": "string" }, "repostitory": { "description": "Name of the repostitory as written in resolver.json", "type": "string" } }, "required": [ "repository", "errors", "attempts", "lastAttempt" ], "type": "object" }, "minItems": 1, "type": "array" } }, "required": [ "error", "lookupHistory" ] }, { "additionalProperties": false, "description": "Data is invalid against resolved schema", "properties": { "dataReports": { "items": { "additionalProperties": false, "properties": { "keyword": { "description": "JSON Schema Keywrod caused invalidation", "type": [ "string", "null" ] }, "message": { "description": "Human-readable message describing the issue with the schema", "type": "string" }, "path": { "description": "JSON Path to an issue in the faulty JSON datum", "type": [ "string", "null" ] }, "targets": { "type": [ "array", "null" ] } }, "required": [ "path", "message", "keyword", "targets" ] }, "minItems": 1, "type": "array" }, "error": { "enum": [ "ValidationError" ] } }, "required": [ "dataReports" ] }, { "additionalProperties": false, "description": "Schema is invalid and cannot be used to validate an instance", "properties": { "error": { "enum": [ "ValidationError" ] }, "schemaIssues": { "description": "List of problems in resolved JSON schema", "items": { "additionalProperties": false, "properties": { "message": { "description": "Human-readable message describing the issue with the schema", "type": "string" }, "path": { "description": "JSON Path to an issue in the faulty JSON Schema", "type": "string" } }, "required": [ "path", "message" ], "type": "object" }, "minItems": 1, "type": "array" } }, "required": [ "error" ] } ], "description": "Iglu client error" }, "schemaCriterion": { "description": "Criterion of a list (model-based)", "type": "string" } }, "required": [ "schemaCriterion", "error" ], "type": "object" }, { "additionalProperties": false, "description": "JSON type mismatch against schema (WrongType)", "properties": { "expected": { "description": "Expected type (either machine or human-readable)", "type": "string" }, "schemaKey": { "description": "Supplied schema key", "type": "string" }, "value": { "description": "Supplied JSON value" } }, "required": [ "schemaKey", "value", "expected" ], "type": "object" }, { "additionalProperties": false, "description": "Value expected to be repeatable (NotAnArray)", "properties": { "expected": { "description": "Expected type (either machine or human-readable)", "type": "string" }, "schemaKey": { "description": "Supplied schema key", "type": "string" }, "value": { "description": "Supplied JSON value" } }, "required": [ "schemaKey", "value", "expected" ], "type": "object" }, { "additionalProperties": false, "description": "Key is required by schema, but missing in a value (MissingInValue)", "properties": { "key": { "description": "Expected key" }, "schemaKey": { "description": "Supplied schema key", "type": "string" }, "value": { "description": "Provided JSON value" } }, "required": [ "schemaKey", "key", "value" ], "type": "object" } ] }, "type": "array" }, "payload": { "additionalProperties": false, "description": "The enriched event that resulted in a storage loader failure", "properties": { "app_id": { "maxLength": 255, "type": [ "string", "null" ] }, "base_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "br_colordepth": { "maxLength": 12, "type": [ "string", "null" ] }, "br_cookies": { "type": [ "boolean", "null" ] }, "br_family": { "maxLength": 50, "type": [ "string", "null" ] }, "br_features_director": { "type": [ "boolean", "null" ] }, "br_features_flash": { "type": [ "boolean", "null" ] }, "br_features_gears": { "type": [ "boolean", "null" ] }, "br_features_java": { "type": [ "boolean", "null" ] }, "br_features_pdf": { "type": [ "boolean", "null" ] }, "br_features_quicktime": { "type": [ "boolean", "null" ] }, "br_features_realplayer": { "type": [ "boolean", "null" ] }, "br_features_silverlight": { "type": [ "boolean", "null" ] }, "br_features_windowsmedia": { "type": [ "boolean", "null" ] }, "br_lang": { "maxLength": 255, "type": [ "string", "null" ] }, "br_name": { "maxLength": 50, "type": [ "string", "null" ] }, "br_renderengine": { "maxLength": 50, "type": [ "string", "null" ] }, "br_type": { "maxLength": 50, "type": [ "string", "null" ] }, "br_version": { "maxLength": 50, "type": [ "string", "null" ] }, "br_viewheight": { "type": [ "integer", "null" ] }, "br_viewwidth": { "type": [ "integer", "null" ] }, "collector_tstamp": { "_format": "date-time", "type": "string" }, "contexts": { "type": [ "object", "null" ] }, "derived_contexts": { "type": [ "object", "null" ] }, "derived_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "doc_charset": { "maxLength": 128, "type": [ "string", "null" ] }, "doc_height": { "type": [ "integer", "null" ] }, "doc_width": { "type": [ "integer", "null" ] }, "domain_sessionid": { "maxLength": 128, "type": [ "string", "null" ] }, "domain_sessionidx": { "type": [ "integer", "null" ] }, "domain_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "dvce_created_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "dvce_ismobile": { "type": [ "boolean", "null" ] }, "dvce_screenheight": { "type": [ "integer", "null" ] }, "dvce_screenwidth": { "type": [ "integer", "null" ] }, "dvce_sent_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "dvce_type": { "maxLength": 50, "type": [ "string", "null" ] }, "etl_tags": { "maxLength": 500, "type": [ "string", "null" ] }, "etl_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "event": { "maxLength": 128, "type": [ "string", "null" ] }, "event_fingerprint": { "maxLength": 128, "type": [ "string", "null" ] }, "event_format": { "maxLength": 128, "type": [ "string", "null" ] }, "event_id": { "maxLength": 36, "type": "string" }, "event_name": { "maxLength": 1000, "type": [ "string", "null" ] }, "event_vendor": { "maxLength": 1000, "type": [ "string", "null" ] }, "event_version": { "maxLength": 128, "type": [ "string", "null" ] }, "geo_city": { "maxLength": 75, "type": [ "string", "null" ] }, "geo_country": { "maxLength": 2, "type": [ "string", "null" ] }, "geo_latitude": { "type": [ "number", "null" ] }, "geo_longitude": { "type": [ "number", "null" ] }, "geo_region": { "maxLength": 3, "type": [ "string", "null" ] }, "geo_region_name": { "maxLength": 100, "type": [ "string", "null" ] }, "geo_timezone": { "maxLength": 64, "type": [ "string", "null" ] }, "geo_zipcode": { "maxLength": 15, "type": [ "string", "null" ] }, "ip_domain": { "maxLength": 128, "type": [ "string", "null" ] }, "ip_isp": { "maxLength": 100, "type": [ "string", "null" ] }, "ip_netspeed": { "maxLength": 100, "type": [ "string", "null" ] }, "ip_organization": { "maxLength": 128, "type": [ "string", "null" ] }, "mkt_campaign": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_clickid": { "maxLength": 128, "type": [ "string", "null" ] }, "mkt_content": { "maxLength": 500, "type": [ "string", "null" ] }, "mkt_medium": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_network": { "maxLength": 64, "type": [ "string", "null" ] }, "mkt_source": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_term": { "maxLength": 255, "type": [ "string", "null" ] }, "name_tracker": { "maxLength": 128, "type": [ "string", "null" ] }, "network_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "os_family": { "maxLength": 50, "type": [ "string", "null" ] }, "os_manufacturer": { "maxLength": 50, "type": [ "string", "null" ] }, "os_name": { "maxLength": 50, "type": [ "string", "null" ] }, "os_timezone": { "maxLength": 255, "type": [ "string", "null" ] }, "page_referrer": { "maxLength": 4096, "type": [ "string", "null" ] }, "page_title": { "maxLength": 2000, "type": [ "string", "null" ] }, "page_url": { "maxLength": 4096, "type": [ "string", "null" ] }, "page_urlfragment": { "maxLength": 3000, "type": [ "string", "null" ] }, "page_urlhost": { "maxLength": 255, "type": [ "string", "null" ] }, "page_urlpath": { "maxLength": 3000, "type": [ "string", "null" ] }, "page_urlport": { "type": [ "integer", "null" ] }, "page_urlquery": { "maxLength": 6000, "type": [ "string", "null" ] }, "page_urlscheme": { "maxLength": 16, "type": [ "string", "null" ] }, "platform": { "maxLength": 255, "type": [ "string", "null" ] }, "pp_xoffset_max": { "type": [ "integer", "null" ] }, "pp_xoffset_min": { "type": [ "integer", "null" ] }, "pp_yoffset_max": { "type": [ "integer", "null" ] }, "pp_yoffset_min": { "type": [ "integer", "null" ] }, "refr_domain_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "refr_dvce_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "refr_medium": { "maxLength": 25, "type": [ "string", "null" ] }, "refr_source": { "maxLength": 50, "type": [ "string", "null" ] }, "refr_term": { "maxLength": 255, "type": [ "string", "null" ] }, "refr_urlfragment": { "maxLength": 3000, "type": [ "string", "null" ] }, "refr_urlhost": { "maxLength": 255, "type": [ "string", "null" ] }, "refr_urlpath": { "maxLength": 6000, "type": [ "string", "null" ] }, "refr_urlport": { "type": [ "integer", "null" ] }, "refr_urlquery": { "maxLength": 6000, "type": [ "string", "null" ] }, "refr_urlscheme": { "maxLength": 16, "type": [ "string", "null" ] }, "se_action": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_category": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_label": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_property": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_value": { "type": [ "number", "null" ] }, "ti_category": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "ti_name": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_orderid": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_price": { "type": [ "number", "null" ] }, "ti_price_base": { "type": [ "number", "null" ] }, "ti_quantity": { "type": [ "integer", "null" ] }, "ti_sku": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_affiliation": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_city": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_country": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "tr_orderid": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_shipping": { "type": [ "number", "null" ] }, "tr_shipping_base": { "type": [ "number", "null" ] }, "tr_state": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_tax": { "type": [ "number", "null" ] }, "tr_tax_base": { "type": [ "number", "null" ] }, "tr_total": { "type": [ "number", "null" ] }, "tr_total_base": { "type": [ "number", "null" ] }, "true_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "txn_id": { "type": [ "integer", "null" ] }, "unstruct_event": { "type": [ "object", "null" ] }, "user_fingerprint": { "maxLength": 128, "type": [ "string", "null" ] }, "user_id": { "maxLength": 255, "type": [ "string", "null" ] }, "user_ipaddress": { "maxLength": 128, "type": [ "string", "null" ] }, "useragent": { "maxLength": 1000, "type": [ "string", "null" ] }, "v_collector": { "maxLength": 100, "type": "string" }, "v_etl": { "maxLength": 100, "type": "string" }, "v_tracker": { "maxLength": 100, "type": [ "string", "null" ] } }, "type": "object" }, "processor": { "additionalProperties": false, "description": "Information about the piece of software responsible for the creation of enrichment failures", "properties": { "artifact": { "description": "Artifact responsible for the creation of enrichment failures", "maxLength": 512, "type": "string" }, "version": { "description": "Version of the artifact responsible for the creation of enrichment failures", "maxLength": 32, "pattern": "^(\\d+\\.\\d+\\.\\d+.*)$", "type": "string" } }, "required": [ "artifact", "version" ], "type": "object" } }, "required": [ "failure", "payload", "processor" ], "self": { "format": "jsonschema", "name": "loader_iglu_error", "vendor": "com.snowplowanalytics.snowplow.badrows", "version": "2-0-0" }, "type": "object" }
sp_334_Normalized
{ "default": {}, "definitions": { "nonNegativeInteger": { "minimum": 0, "type": "integer" }, "nonNegativeIntegerDefault0": { "allOf": [ { "$ref": "#/definitions/nonNegativeInteger" }, { "default": 0 } ] }, "schemaArray": { "items": { "$ref": "#" }, "minItems": 1, "type": "array" }, "simpleTypes": { "enum": [ "array", "boolean", "integer", "null", "number", "object", "string" ] }, "stringArray": { "default": [], "items": { "type": "string" }, "type": "array", "_uniqueItems": true } }, "properties": { "$id": { "format": "uri-reference", "type": "string" }, "$ref": { "format": "uri-reference", "type": "string" }, "$schema": { "format": "uri", "type": "string" }, "additionalItems": { "$ref": "#" }, "additionalProperties": { "$ref": "#" }, "allOf": { "$ref": "#/definitions/schemaArray" }, "anyOf": { "$ref": "#/definitions/schemaArray" }, "const": {}, "contains": { "$ref": "#" }, "default": {}, "definitions": { "additionalProperties": { "$ref": "#" }, "default": {}, "type": "object" }, "dependencies": { "additionalProperties": { "anyOf": [ { "$ref": "#" }, { "$ref": "#/definitions/stringArray" } ] }, "type": "object" }, "description": { "type": "string" }, "enum": { "minItems": 1, "type": "array", "_uniqueItems": true }, "exclusiveMaximum": { "type": "number" }, "exclusiveMinimum": { "type": "number" }, "format": { "type": "string" }, "items": { "anyOf": [ { "$ref": "#" }, { "$ref": "#/definitions/schemaArray" } ], "default": {} }, "maxItems": { "$ref": "#/definitions/nonNegativeInteger" }, "maxLength": { "$ref": "#/definitions/nonNegativeInteger" }, "maxProperties": { "$ref": "#/definitions/nonNegativeInteger" }, "maximum": { "type": "number" }, "minItems": { "$ref": "#/definitions/nonNegativeIntegerDefault0" }, "minLength": { "$ref": "#/definitions/nonNegativeIntegerDefault0" }, "minProperties": { "$ref": "#/definitions/nonNegativeIntegerDefault0" }, "minimum": { "type": "number" }, "multipleOf": { "exclusiveMinimum": 0, "type": "number" }, "my_keyword": { "type": "boolean" }, "not": { "$ref": "#" }, "oneOf": { "$ref": "#/definitions/schemaArray" }, "pattern": { "format": "regex", "type": "string" }, "patternProperties": { "additionalProperties": { "$ref": "#" }, "default": {}, "type": "object" }, "properties": { "additionalProperties": { "$ref": "#" }, "default": {}, "type": "object" }, "propertyNames": { "$ref": "#" }, "required": { "$ref": "#/definitions/stringArray" }, "title": { "type": "string" }, "type": { "anyOf": [ { "$ref": "#/definitions/simpleTypes" }, { "items": { "$ref": "#/definitions/simpleTypes" }, "minItems": 1, "type": "array", "_uniqueItems": true } ] }, "_uniqueItems": { "default": false, "type": "boolean" } }, "title": "Core schema meta-schema", "type": [ "object", "boolean" ] }
o53084
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://github.com/B-Stefan/Sofia/blob/master/common-schemas/Project.json", "type": "object", "properties": { "name": { "type": "string" }, "repositoryUrl": { "type": "string" } }, "required": [ "text", "repositoryUrl" ] }
o2058
{ "id": "http://schemas.gdbots.io/json-schema/gdbots/forms/field/sexual-orientation-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:sexual-orientation-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" ] } }, "required": [ "_schema", "name" ], "additionalProperties": false }
o42580
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "required": [ "name", "package_name", "package_version" ], "properties": { "name": { "type": "string" }, "package_name": { "type": "string", "minLength": 1 }, "package_version": { "type": "string", "minLength": 1 } }, "oneOf": [ { "$ref": "#/definitions/file_changed" }, { "$ref": "#/definitions/file_error" } ] }, "definitions": { "file_changed": { "required": [ "status" ], "properties": { "status": { "enum": [ "changed" ] } }, "oneOf": [ { "$ref": "#/definitions/file_changed_modified" }, { "$ref": "#/definitions/file_changed_deleted" } ] }, "file_changed_modified": { "required": [ "changes", "mode", "user", "group" ], "properties": { "changes": { "type": "array", "items": { "enum": [ "mode", "md5", "group", "user", "replaced" ] }, "minItems": 1 }, "mode": { "type": "string", "pattern": "^[0-4]?[0-7]{3}$" }, "user": { "type": "string", "minLength": 1 }, "group": { "type": "string", "minLength": 1 } } }, "file_changed_deleted": { "required": [ "changes" ], "properties": { "changes": { "enum": [ [ "deleted" ] ] } } }, "file_error": { "required": [ "status", "error_message" ], "properties": { "status": { "enum": [ "error" ] }, "error_message": { "type": "string" } } } } }
o65914
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "length", "width" ], "type": "object" }, "shape": { "description": "The type of geometric shape (e.g. circle, rectangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_e0544781
{ "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_Ingress": { "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", "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": [ "Ingress" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_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" } ] }, "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_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": "IngressList is a collection of Ingress.", "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" ] }, "items": { "description": "Items is the list of Ingress.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_extensions_v1beta1_Ingress" }, "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": [ "IngressList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's 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": "extensions", "kind": "IngressList", "version": "v1beta1" } ] }
kb_448_Normalized
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "PodCondition contains details for the current condition of this pod.", "properties": { "lastProbeTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time we probed the condition." }, "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "message": { "description": "Human-readable message indicating details about last transition.", "type": [ "string", "null" ] }, "reason": { "description": "Unique, one-word, CamelCase reason for the condition's last transition.", "type": [ "string", "null" ] }, "status": { "description": "Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", "type": [ "string", "null" ] }, "type": { "description": "Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", "type": [ "string", "null" ] } }, "required": [ "type", "status" ], "type": "object" }
kb_692_Normalized
{ "additionalProperties": false, "description": "Schema for an atomic canonical Snowplow event", "properties": { "app_id": { "maxLength": 255, "type": [ "string", "null" ] }, "base_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "br_colordepth": { "maxLength": 12, "type": [ "string", "null" ] }, "br_cookies": { "type": [ "boolean", "null" ] }, "br_family": { "maxLength": 50, "type": [ "string", "null" ] }, "br_features_director": { "type": [ "boolean", "null" ] }, "br_features_flash": { "type": [ "boolean", "null" ] }, "br_features_gears": { "type": [ "boolean", "null" ] }, "br_features_java": { "type": [ "boolean", "null" ] }, "br_features_pdf": { "type": [ "boolean", "null" ] }, "br_features_quicktime": { "type": [ "boolean", "null" ] }, "br_features_realplayer": { "type": [ "boolean", "null" ] }, "br_features_silverlight": { "type": [ "boolean", "null" ] }, "br_features_windowsmedia": { "type": [ "boolean", "null" ] }, "br_lang": { "maxLength": 255, "type": [ "string", "null" ] }, "br_name": { "maxLength": 50, "type": [ "string", "null" ] }, "br_renderengine": { "maxLength": 50, "type": [ "string", "null" ] }, "br_type": { "maxLength": 50, "type": [ "string", "null" ] }, "br_version": { "maxLength": 50, "type": [ "string", "null" ] }, "br_viewheight": { "type": [ "integer", "null" ] }, "br_viewwidth": { "type": [ "integer", "null" ] }, "collector_tstamp": { "_format": "date-time", "type": "string" }, "derived_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "doc_charset": { "maxLength": 128, "type": [ "string", "null" ] }, "doc_height": { "type": [ "integer", "null" ] }, "doc_width": { "type": [ "integer", "null" ] }, "domain_sessionid": { "maxLength": 128, "type": [ "string", "null" ] }, "domain_sessionidx": { "type": [ "integer", "null" ] }, "domain_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "dvce_created_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "dvce_ismobile": { "type": [ "boolean", "null" ] }, "dvce_screenheight": { "type": [ "integer", "null" ] }, "dvce_screenwidth": { "type": [ "integer", "null" ] }, "dvce_sent_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "dvce_type": { "maxLength": 50, "type": [ "string", "null" ] }, "etl_tags": { "maxLength": 500, "type": [ "string", "null" ] }, "etl_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "event": { "maxLength": 128, "type": [ "string", "null" ] }, "event_fingerprint": { "maxLength": 128, "type": [ "string", "null" ] }, "event_format": { "maxLength": 128, "type": [ "string", "null" ] }, "event_id": { "maxLength": 36, "type": "string" }, "event_name": { "maxLength": 1000, "type": [ "string", "null" ] }, "event_vendor": { "maxLength": 1000, "type": [ "string", "null" ] }, "event_version": { "maxLength": 128, "type": [ "string", "null" ] }, "geo_city": { "maxLength": 75, "type": [ "string", "null" ] }, "geo_country": { "maxLength": 2, "type": [ "string", "null" ] }, "geo_latitude": { "type": [ "number", "null" ] }, "geo_longitude": { "type": [ "number", "null" ] }, "geo_region": { "maxLength": 3, "type": [ "string", "null" ] }, "geo_region_name": { "maxLength": 100, "type": [ "string", "null" ] }, "geo_timezone": { "maxLength": 64, "type": [ "string", "null" ] }, "geo_zipcode": { "maxLength": 15, "type": [ "string", "null" ] }, "ip_domain": { "maxLength": 128, "type": [ "string", "null" ] }, "ip_isp": { "maxLength": 100, "type": [ "string", "null" ] }, "ip_netspeed": { "maxLength": 100, "type": [ "string", "null" ] }, "ip_organization": { "maxLength": 128, "type": [ "string", "null" ] }, "mkt_campaign": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_clickid": { "maxLength": 128, "type": [ "string", "null" ] }, "mkt_content": { "maxLength": 500, "type": [ "string", "null" ] }, "mkt_medium": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_network": { "maxLength": 64, "type": [ "string", "null" ] }, "mkt_source": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_term": { "maxLength": 255, "type": [ "string", "null" ] }, "name_tracker": { "maxLength": 128, "type": [ "string", "null" ] }, "network_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "os_family": { "maxLength": 50, "type": [ "string", "null" ] }, "os_manufacturer": { "maxLength": 50, "type": [ "string", "null" ] }, "os_name": { "maxLength": 50, "type": [ "string", "null" ] }, "os_timezone": { "maxLength": 255, "type": [ "string", "null" ] }, "page_referrer": { "maxLength": 4096, "type": [ "string", "null" ] }, "page_title": { "maxLength": 2000, "type": [ "string", "null" ] }, "page_url": { "maxLength": 4096, "type": [ "string", "null" ] }, "page_urlfragment": { "maxLength": 3000, "type": [ "string", "null" ] }, "page_urlhost": { "maxLength": 255, "type": [ "string", "null" ] }, "page_urlpath": { "maxLength": 3000, "type": [ "string", "null" ] }, "page_urlport": { "type": [ "integer", "null" ] }, "page_urlquery": { "maxLength": 6000, "type": [ "string", "null" ] }, "page_urlscheme": { "maxLength": 16, "type": [ "string", "null" ] }, "platform": { "maxLength": 255, "type": [ "string", "null" ] }, "pp_xoffset_max": { "type": [ "integer", "null" ] }, "pp_xoffset_min": { "type": [ "integer", "null" ] }, "pp_yoffset_max": { "type": [ "integer", "null" ] }, "pp_yoffset_min": { "type": [ "integer", "null" ] }, "refr_domain_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "refr_dvce_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "refr_medium": { "maxLength": 25, "type": [ "string", "null" ] }, "refr_source": { "maxLength": 50, "type": [ "string", "null" ] }, "refr_term": { "maxLength": 255, "type": [ "string", "null" ] }, "refr_urlfragment": { "maxLength": 3000, "type": [ "string", "null" ] }, "refr_urlhost": { "maxLength": 255, "type": [ "string", "null" ] }, "refr_urlpath": { "maxLength": 6000, "type": [ "string", "null" ] }, "refr_urlport": { "type": [ "integer", "null" ] }, "refr_urlquery": { "maxLength": 6000, "type": [ "string", "null" ] }, "refr_urlscheme": { "maxLength": 16, "type": [ "string", "null" ] }, "se_action": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_category": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_label": { "maxLength": 4096, "type": [ "string", "null" ] }, "se_property": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_value": { "type": [ "number", "null" ] }, "ti_category": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "ti_name": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_orderid": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_price": { "type": [ "number", "null" ] }, "ti_price_base": { "type": [ "number", "null" ] }, "ti_quantity": { "type": [ "integer", "null" ] }, "ti_sku": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_affiliation": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_city": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_country": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "tr_orderid": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_shipping": { "type": [ "number", "null" ] }, "tr_shipping_base": { "type": [ "number", "null" ] }, "tr_state": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_tax": { "type": [ "number", "null" ] }, "tr_tax_base": { "type": [ "number", "null" ] }, "tr_total": { "type": [ "number", "null" ] }, "tr_total_base": { "type": [ "number", "null" ] }, "true_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "txn_id": { "type": [ "integer", "null" ] }, "user_fingerprint": { "maxLength": 128, "type": [ "string", "null" ] }, "user_id": { "maxLength": 255, "type": [ "string", "null" ] }, "user_ipaddress": { "maxLength": 128, "type": [ "string", "null" ] }, "useragent": { "maxLength": 1000, "type": [ "string", "null" ] }, "v_collector": { "maxLength": 100, "type": "string" }, "v_etl": { "maxLength": 100, "type": "string" }, "v_tracker": { "maxLength": 100, "type": [ "string", "null" ] } }, "self": { "format": "jsonschema", "name": "atomic", "vendor": "com.snowplowanalytics.snowplow", "version": "1-0-0" }, "type": "object" }
sp_261_Normalized
{ "id": "http://schema.myrtana.sk/text/shortString.json#", "$schema": "http://json-schema.org/draft-04/schema#", "title": "Short string", "description": "Short string. Max. 1024 bytes.", "type": "string", "minLength": 1, "maxLength": 1024 }
o48167
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "_elements" ], "properties": { "_attributes": { "type": "object", "required": [ "extracted", "has_metadata" ], "properties": { "extracted": { "type": "boolean" }, "has_metadata": { "type": "boolean" } } }, "_elements": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/file" }, { "$ref": "#/definitions/file_remote_dir" } ] } } }, "definitions": { "file": { "oneOf": [ { "type": "object", "required": [ "name", "type", "user", "group" ], "properties": { "name": { "type": "string" }, "type": { "enum": [ "file", "link", "dir", "remote_dir" ] }, "user": { "type": "string", "minLength": 1 }, "group": { "type": "string", "minLength": 1 } }, "oneOf": [ { "$ref": "#/definitions/file_file" }, { "$ref": "#/definitions/file_dir" }, { "$ref": "#/definitions/file_link" } ] }, { "$ref": "#/definitions/file_common" } ] }, "file_common": { "type": "object", "required": [ "name", "type" ], "properties": { "name": { "type": "string" }, "type": { "enum": [ "file", "link", "dir", "remote_dir" ] } } }, "file_file": { "required": [ "type", "size", "mode" ], "properties": { "type": { "enum": [ "file" ] }, "size": { "type": "integer", "minimum": 0 }, "mode": { "type": "string", "pattern": "^[0-7]{3,4}$" } } }, "file_dir": { "required": [ "type", "size", "mode" ], "properties": { "type": { "enum": [ "dir" ] }, "size": { "type": "integer", "minimum": 0 }, "mode": { "type": "string", "pattern": "^[0-4]?[0-7]{3}$" } }, "oneOf": [ { "required": [ "files", "dirs" ], "properties": { "files": { "type": "integer", "minimum": 0 }, "dirs": { "type": "integer", "minimum": 0 } } }, { "required": [ "file_objects" ], "properties": { "file_objects": { "type": "integer", "minimum": 0 } } } ] }, "file_link": { "required": [ "type" ], "properties": { "type": { "enum": [ "link" ] } } }, "file_remote_dir": { "allOf": [ { "$ref": "#/definitions/file_common" } ] } } }
o25763
{ "$schema": "http://json-schema.org/draft-06/schema#", "properties": { "bar": { "type": "string", "pattern": "[0-9]+" }, "baz": { "type": "number", "pattern": "[0-9]+" } } }
o25196
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "O3D3xx spatial bilateral filter configuration", "type": "object", "properties": { "MaskSize": { "type": "integer", "minimum": 0, "maximum": 1, "default": 0 }, "SigmaPixel": { "type": "number", "minimum": 0, "default": 2, "attributes": [ "private" ] }, "SigmaDistance": { "type": "number", "minimum": 0, "default": 0.1, "attributes": [ "private" ] } }, "required": [ "MaskSize" ] }
o57639
{ "description": "Available events to bind actions to an axis for the <a href=\"#controller-gamepad\">controller gamepad.</a>", "properties": { "onChange": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "description": "The action or array of actions uid to trigger on axis down event", "title": "onChange" } }, "title": "ControllerGamepadAxisBindingEventsConfig", "type": "object" }
o44238
{ "id": "http://schemas.triniti.io/json-schema/triniti/curator/mixin/teaser-has-target/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "_id": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single", "overridable": true } }, "status": { "type": "string", "default": "draft", "enum": [ "unknown", "published", "scheduled", "pending", "draft", "expired", "archived", "deleted" ], "pbj": { "type": "string-enum", "rule": "single" } }, "etag": { "type": "string", "pattern": "^[\\w\\.:-]+$", "pbj": { "type": "string", "rule": "single" } }, "created_at": { "type": "string", "pattern": "^[1-9]{1}[0-9]{12,15}$", "pbj": { "type": "microtime", "rule": "single" } }, "creator_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A fully qualified reference to what created this node. This is intentionally a message-ref and not a user id because it is often a program that creates nodes, not a user.", "pbj": { "type": "message-ref", "rule": "single" } }, "updated_at": { "type": "string", "pattern": "^[1-9]{1}[0-9]{12,15}$", "pbj": { "type": "microtime", "rule": "single", "useTypeDefault": false } }, "updater_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A fully qualified reference to what updated this node. This is intentionally a message-ref and not a user id because it is often a program that updates nodes, not a user. E.g. \"acme:iam:node:app:cli-scheduler\" or \"acme:iam:node:user:60c71df0-fda8-11e5-bfb9-30342d363854\"", "pbj": { "type": "message-ref", "rule": "single" } }, "last_event_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A reference to the last event that changed the state of this node. E.g. \"acme:blog:event:article-published:60c71df0-fda8-11e5-bfb9-30342d363854\"", "pbj": { "type": "message-ref", "rule": "single" } }, "title": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "order_date": { "type": "string", "format": "date-time", "description": "Determines the sequence that this teaser node will be rendered in lists, search results, etc. It DOES NOT control visibility or publishing. A date was used over an integer (e.g. seq_no) for blog-like, reverse chronological, clarity in sorting.", "pbj": { "type": "date-time", "rule": "single" } }, "slotting": { "type": "object", "patternProperties": { "^[a-zA-Z_]{1}[\\w\\.:-]+$": { "type": "integer", "default": 0, "minimum": 0, "maximum": 255 } }, "additionalProperties": false, "description": "A map of integers, e.g. {home: 1, sports: 5, tv: 9}, that determine where teasers will render in lists that use slotting. We call it slotting vs sticky or pinning as that is generally just one at a time.", "pbj": { "type": "tiny-int", "rule": "map" } }, "image_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "description": "A reference to the image asset to use for widgets, sharing, seo.", "pbj": { "type": "identifier", "rule": "single" } }, "description": { "type": "string", "minLength": 0, "maxLength": 5000, "description": "A description of the teaser (usually a few sentences). It should typically not have HTML as it is used in metadata, feeds, SERP and social.", "pbj": { "type": "text", "rule": "single" } }, "caption": { "type": "string", "minLength": 0, "maxLength": 255, "description": "Text to be used to caption the teaser.", "pbj": { "type": "string", "rule": "single" } }, "cta_text": { "type": "string", "minLength": 0, "maxLength": 255, "description": "Text to be used for the call to action.", "pbj": { "type": "string", "rule": "single" } }, "credit": { "type": "string", "minLength": 0, "maxLength": 255, "description": "Text to be used to credit the teaser source.", "pbj": { "type": "string", "rule": "single" } }, "credit_url": { "type": "string", "pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$", "description": "URL to be used to link to the teaser source.", "pbj": { "type": "text", "rule": "single", "format": "url" } }, "gallery_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single" } }, "timeline_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single" } }, "target_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "description": "A reference to the target teaserable node this teaser is bound to.", "pbj": { "type": "identifier", "rule": "single" } }, "sync_with_target": { "type": "boolean", "description": "When true this teaser will automatically be updated to match the target it is bound to whenever the target is modified.", "pbj": { "type": "boolean", "rule": "single" } } }, "required": [ "_id", "target_ref" ], "additionalProperties": true }
o82821
{ "additionalProperties": true, "properties": { "body": { "additionalProperties": true, "properties": { "push_id": { "_format": "uuid", "type": "string" } }, "type": "object" }, "device": { "additionalProperties": true, "properties": { "amazon_channel": { "_format": "uuid", "type": "string" }, "android_channel": { "_format": "uuid", "type": "string" }, "ios_channel": { "_format": "uuid", "type": "string" }, "named_user_id": { "_format": "uuid", "type": "string" } }, "type": "object" }, "id": { "_format": "uuid", "type": "string" }, "occurred": { "_format": "date-time", "type": "string" }, "offset": { "type": "string" }, "processed": { "_format": "date-time", "type": "string" }, "type": { "type": "string" } }, "self": { "format": "jsonschema", "name": "RICH_READ", "vendor": "com.urbanairship.connect", "version": "1-0-0" }, "type": "object" }
sp_396_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Mediachain Labs indexer image metadata", "self": { "vendor": "io.mediachain.indexer", "name": "image", "format": "jsonschema", "version": "1-0-0" }, "type": "object", "properties": { "orientation": { "type": [ "string", "null" ] }, "camera_exif": { "type": [ "object", "null" ] }, "origin": { "type": [ "string", "null" ] }, "attribution": { "type": [ "string", "null", "array" ] }, "description": { "type": [ "string", "null" ] }, "source_tags": { "type": "array", "items": { "type": "string" } }, "transient_info": { "type": "object" }, "title": { "type": [ "string", "null", "array" ], "items": { "type": "string" } }, "aspect_ratio": { "type": [ "number", "null" ] }, "dedupe_hsh": { "type": "string" }, "source_dataset": { "type": "string" }, "artist_name": { "type": [ "string", "null" ] }, "keywords": { "type": "array", "items": { "properties": {} } }, "native_id": { "type": "string" }, "license_tags": { "type": "array", "items": { "properties": {} } }, "license_url": { "type": [ "string", "null" ] }, "sizes": { "type": "array", "_uniqueItems": true, "items": { "properties": { "width": { "type": [ "number", "null" ] }, "content_type": { "type": [ "string", "null" ] }, "height": { "type": "number" } } } }, "licenses": { "type": "array", "_uniqueItems": true, "items": { "properties": { "name": { "type": [ "string", "null" ] }, "name_long": { "type": [ "string", "null" ] }, "details": { "type": [ "string", "null", "array" ] } } } }, "date_captured": { "type": [ "string", "null" ] }, "date_created": { "type": [ "string", "null" ] }, "date_created_at_source": { "type": [ "string", "null" ] }, "date_created_original": { "type": [ "string", "null" ] }, "date_source_version": { "type": [ "string", "null" ] }, "artist_names": { "type": [ "array", "null" ], "items": { "type": [ "string", "array", "null" ] } }, "url_direct": { "type": [ "object", "null" ], "properties": { "url": { "type": "string" } } }, "native_source_id": { "type": [ "string", "null" ] }, "url_shown_at": { "type": [ "object", "null" ], "properties": { "url": { "type": "string" } } }, "location": { "type": [ "object", "null" ] }, "license_name": { "type": [ "string", "null" ] }, "license_name_long": { "type": [ "string", "null" ] }, "aes_unsplash_out_v1": { "type": [ "object", "null" ] }, "derived_qualities": { "type": [ "object", "null" ] }, "providers_list": { "type": [ "array", "null" ], "items": { "type": "object", "properties": { "name": { "type": "string" } } } }, "order_model_3": { "type": [ "string", "null" ] }, "xann": { "type": [ "array", "null" ], "items": { "type": "string" } }, "nsfw": { "type": [ "boolean", "null" ] }, "source": { "type": [ "object", "null" ], "properties": { "url": { "type": "string" }, "name": { "type": "string" } }, "required": [ "url", "name" ] } }, "additionalProperties": false }
o60168
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "authorization error response", "id": "http://localhost:3000/schemas/authorize-error-code.json#", "properties": { "error": { "description": "The OAuth 2.0 error code, with values (additional codes are specified in OpenID Connect):", "enum": [ "invalid_request", "unauthorized_client", "access_denied", "unsupported_response_type", "invalid_scope", "server_error", "temporarily_unavailable" ], "type": "string" }, "error_description": { "description": "Optional parameter providing additional human-readable information about the error.", "type": "string" }, "error_uri": { "description": "A human-readable web page with information about the error, typically intended for the client developer.", "type": "string" }, "state": { "description": "The state value, if one was passed with the request. Clients must validate the value before proceeding.", "type": "string" } }, "required": [ "error", "error_description" ], "title": "OAuth error response", "type": "object" }
o20473
{ "description": "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.", "properties": { "architecture": { "description": "The Architecture reported by the node", "type": [ "string", "null" ] }, "bootID": { "description": "Boot ID reported by the node.", "type": [ "string", "null" ] }, "containerRuntimeVersion": { "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).", "type": [ "string", "null" ] }, "kernelVersion": { "description": "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).", "type": [ "string", "null" ] }, "kubeProxyVersion": { "description": "KubeProxy Version reported by the node.", "type": [ "string", "null" ] }, "kubeletVersion": { "description": "Kubelet Version reported by the node.", "type": [ "string", "null" ] }, "machineID": { "description": "MachineID reported by the node. For unique machine identification in the cluster this field is preferred. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html", "type": [ "string", "null" ] }, "operatingSystem": { "description": "The Operating System reported by the node", "type": [ "string", "null" ] }, "osImage": { "description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).", "type": [ "string", "null" ] }, "systemUUID": { "description": "SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid", "type": [ "string", "null" ] } }, "required": [ "machineID", "systemUUID", "bootID", "kernelVersion", "osImage", "containerRuntimeVersion", "kubeletVersion", "kubeProxyVersion", "operatingSystem", "architecture" ], "type": "object" }
kb_633_Normalized
{ "description": "EndpointPort represents a Port used by an EndpointSlice", "properties": { "appProtocol": { "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.", "type": [ "string", "null" ] }, "name": { "description": "The name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.", "type": [ "string", "null" ] }, "port": { "description": "The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.", "format": "int32", "type": [ "integer", "null" ] }, "protocol": { "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.", "type": [ "string", "null" ] } }, "type": "object" }
kb_303_Normalized
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape (circle, rectangle, triangle, etc.)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_960a8cf6
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "StrykerOptions", "description": "JSON schema for the Stryker Mutator configuration file", "type": "object", "definitions": { "commandRunnerOptions": { "title": "CommandRunnerOptions", "type": "object", "properties": { "command": { "description": "The command to test each mutant. For example \"npm run mocha\". Defaults to \"npm test\".", "type": "string", "default": "npm test" } } }, "logLevel": { "title": "LogLevel", "type": "string", "enum": [ "off", "fatal", "error", "warn", "info", "debug", "trace" ], "tsEnumNames": [ "Off", "Fatal", "Error", "Warning", "Information", "Debug", "Trace" ] }, "reportType": { "title": "ReportType", "type": "string", "enum": [ "full", "mutationScore" ], "tsEnumNames": [ "Full", "MutationScore" ] }, "clearTextReporterOptions": { "title": "ClearTextReporterOptions", "type": "object", "properties": { "allowColor": { "description": "Indicates whether or not to use color coding in output.", "type": "boolean", "default": true }, "logTests": { "description": "Indicates whether or not to log which tests were executed for a given mutant.", "type": "boolean", "default": true }, "maxTestsToLog": { "description": "Indicates the maximum amount of test to log when `logTests` is enabled", "type": "integer", "minimum": 0, "default": 3 } } }, "dashboardOptions": { "title": "DashboardOptions", "additionalProperties": false, "type": "object", "properties": { "project": { "description": "Indicates which project to use if the \"dashboard\" reporter is enabled.", "type": "string" }, "version": { "description": "Indicates which version to use if the \"dashboard\" reporter is enabled.", "type": "string" }, "module": { "description": "Indicates which module to use if the \"dashboard\" reporter is enabled.", "type": "string" }, "baseUrl": { "description": "Indicates the base url of the stryker dashboard.", "type": "string", "default": "https://dashboard.stryker-mutator.io/api/reports" }, "reportType": { "description": "Indicates wether to send a full report (inc. source code and mutant results) or only the mutation score.", "$ref": "#/definitions/reportType", "default": "full" } } }, "eventRecorderOptions": { "title": "EventRecorderOptions", "additionalProperties": false, "type": "object", "properties": { "baseDir": { "description": "The base dir to write the events to", "type": "string", "default": "reports/mutation/events" } } }, "htmlReporterOptions": { "title": "HtmlReporterOptions", "additionalProperties": false, "type": "object", "properties": { "baseDir": { "description": "The output folder for the html report.", "type": "string", "default": "reports/mutation/html" } } }, "mutationScoreThresholds": { "title": "MutationScoreThresholds", "additionalProperties": false, "type": "object", "properties": { "high": { "$ref": "#/definitions/percentage", "default": 80 }, "low": { "$ref": "#/definitions/percentage", "default": 60 }, "break": { "oneOf": [ { "type": "null" }, { "$ref": "#/definitions/percentage" } ], "default": null } } }, "percentage": { "type": "number", "minimum": 0, "maximum": 100 }, "mutatorDescriptor": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "default": "javascript" }, "plugins": { "anyOf": [ { "type": "array", "items": { "type": [ "string", "array" ] } }, { "type": "null" } ], "default": null }, "excludedMutations": { "type": "array", "items": { "type": "string" }, "default": [] } }, "required": [ "name" ] }, "warningOptions": { "title": "WarningOptions", "type": "object", "default": {}, "properties": { "unknownOptions": { "description": "decide whether or not to log warnings when additional stryker options are configured", "type": "boolean", "default": true } } } }, "properties": { "allowConsoleColors": { "description": "The 'allowConsoleColors' value indicates whether Stryker should use colors in console.", "type": "boolean", "default": true }, "commandRunner": { "description": "Options used by the command test runner. Note: these options will only be used when the command test runner is activated (this is the default)", "$ref": "#/definitions/commandRunnerOptions", "default": {} }, "coverageAnalysis": { "description": "Indicates which coverage analysis strategy to use. During mutation testing, stryker will try to only run the tests that cover a particular line of code.\n\n'perTest': Analyse coverage per test.\n'all': Analyse the coverage for the entire test suite.\n'off' (default): Don't use coverage analysis", "type": "string", "enum": [ "off", "all", "perTest" ], "default": "off" }, "clearTextReporter": { "description": "The options for the clear text reporter.", "$ref": "#/definitions/clearTextReporterOptions", "default": {} }, "dashboard": { "description": "The options for the dashboard reporter.", "$ref": "#/definitions/dashboardOptions", "default": {} }, "eventReporter": { "description": "The options for the event recorder reporter.", "$ref": "#/definitions/eventRecorderOptions", "default": {} }, "fileLogLevel": { "description": "Set the log level that Stryker uses to write to the \"stryker.log\" file", "$ref": "#/definitions/logLevel", "default": "off" }, "files": { "description": "With `files` you can choose which files should be included in your test runner sandbox.\nThis is normally not needed as it defaults to all files not ignored by git.\nTry it out yourself with this command: `git ls-files --others --exclude-standard --cached --exclude .stryker-tmp`.\n\nIf you do need to override `files` (for example: when your project does not live in a git repository),\nyou can override the files here.\n\nWhen using the command line, the list can only contain a comma separated list of globbing expressions.\nWhen using the config file you can provide an array with `string`s", "type": "array", "items": { "type": "string" } }, "logLevel": { "description": "Set the log level that Stryker uses to write to the console.", "$ref": "#/definitions/logLevel", "default": "info" }, "maxConcurrentTestRunners": { "description": "Specifies the maximum number of concurrent test runners to spawn. Mutation testing is time consuming. By default, Stryker tries to make the most of your CPU's, by spawning as many test runners as you have CPU cores (`Number.MAX_SAFE_INTEGER`).", "type": "number", "default": 9007199254740991 }, "mutate": { "description": "With mutate you configure the subset of files to use for mutation testing. Generally speaking, these should be your own source files.", "type": "array", "items": { "type": "string" }, "default": [ "{src,lib}/**/*.js?(x)", "!{src,lib}/**/__tests__/**/*.js?(x)", "!{src,lib}/**/?(*.)+(spec|test).js?(x)", "!{src,lib}/**/*+(Spec|Test).js?(x)" ] }, "mutator": { "description": "With mutator you configure which mutator plugin you want to use, and optionally, which mutation types to exclude from the test run.", "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/mutatorDescriptor" } ], "default": "javascript", "errorMessage": "should be an \"object\" describing the mutator or a \"string\". See https://github.com/stryker-mutator/stryker/tree/master/packages/core#mutator." }, "packageManager": { "enum": [ "npm", "yarn" ], "description": "The package manager Stryker can use to install missing dependencies." }, "plugins": { "description": "With 'plugins', you can add additional Node modules for Stryker to load (or require). By default, all node_modules starting with @stryker-mutator/* will be loaded, so you would normally not need to specify this option. These modules should be installed right next to stryker. For a current list of plugins, you can consult 'npm' or 'stryker-mutator.io.'", "type": "array", "items": { "type": "string" }, "default": [ "@stryker-mutator/*" ] }, "reporters": { "description": "With reporters, you can set the reporters for stryker to use.", "type": "array", "items": { "type": "string" }, "default": [ "clear-text", "progress", "html" ] }, "htmlReporter": { "description": "The options for the html reporter", "$ref": "#/definitions/htmlReporterOptions" }, "symlinkNodeModules": { "description": "The 'symlinkNodeModules' value indicates whether Stryker should create a symbolic link to your current node_modules directory in the sandbox directories. This makes running your tests by Stryker behave more like your would run the tests yourself in your project directory. Only disable this setting if you really know what you are doing.", "type": "boolean", "default": true }, "tempDirName": { "description": "Choose a different temp dir that Stryker uses for mutation testing. This directory will contain copies of your source code during a mutation test run. It will be created if it not exists and is *entirely deleted* after a successful run, so change this with caution.", "type": "string", "default": ".stryker-tmp" }, "testFramework": { "description": "Configure which test framework you are using. This option is not mandatory, as Stryker is test framework agnostic (it doesn't care what framework you use), However, it is required when coverageAnalysis is set to 'perTest', because Stryker needs to hook into the test framework in order to measure code coverage results per test and filter tests to run.", "type": "string" }, "testRunner": { "description": "With 'testRunner' you specify the test runner that Stryker uses to run your tests. The default value is command. The command runner runs a configurable bash/cmd command and bases the result on the exit code of that program (0 for success, otherwise failed). You can configure this command via the config file using the 'commandRunner: { command: 'npm run mocha' }'. It uses 'npm test' as the command by default.", "type": "string", "default": "command" }, "thresholds": { "description": "Specify the thresholds for mutation score.", "$ref": "#/definitions/mutationScoreThresholds", "default": {} }, "timeoutFactor": { "description": "Configure the allowed timeout deviation relative to the time of a normal test run. Tweak this if you notice that mutants are prone to creating slower code, but not infinite loops (for that, use `timeoutMS`)", "type": "number", "default": 1.5 }, "timeoutMS": { "description": "Configure an absolute timeout deviation. Tweak this if you run Stryker on a busy machine and you need to wait longer to make sure that the code indeed entered an infinite loop.", "type": "number", "default": 5000 }, "transpilers": { "description": "Configure which transpiler plugins should transpile the code before it's executed. This is an array where the transpilers are called in the other of the array. This defaults to an empty array meaning no transpilation will be done.", "type": "array", "items": { "type": "string" }, "default": [] }, "warnings": { "default": true, "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/warningOptions" } ], "description": "Enable or disable certain warnings" } } }
o78474
{ "definitions": { "null": { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "Id": { "type": "integer" }, "Type": { "type": "null" }, "Identity": { "type": "string" }, "Autoroute": { "type": "null" } }, "required": [ "Id", "Type", "Identity", "Autoroute" ] }, "ContentItemTypeD": { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "Id": { "type": "integer" }, "Type": { "type": "string" }, "Identity": { "type": "string" }, "Autoroute": { "type": "string" } }, "required": [ "Id", "Type", "Identity", "Autoroute" ] } }, "properties": { "null": { "$ref": "#/definitions/null" }, "ContentItemTypeD": { "$ref": "#/definitions/ContentItemTypeD" } }, "required": [ "null", "ContentItemTypeD" ] }
o43250
{ "title": "Activate maintenance mode", "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "additionalProperties": false, "required": [ "fabric_uuid", "device_uuid" ], "properties": { "fabric_uuid": { "format": "uuid", "type": "string", "title": "Fabric UUID", "description": "UUID of the device fabric" }, "device_uuid": { "format": "uuid", "type": "string", "title": "Device UUID", "description": "UUID of the device to enter maintenance mode" }, "mode": { "enum": [ "test_run", "activate" ], "description": "Mode in which to run workflow" }, "advanced_parameters": { "title": "Advanced parameters", "description": "Optional parameters used to override defaults", "type": "object", "additionalProperties": false, "default": {}, "properties": { "bulk_device_upgrade_count": { "type": "integer", "description": "Maximum number of devices to upgrade simultaneously", "default": 4 }, "health_check_abort": { "type": "boolean", "description": "Enable/disable abort upon health check failures", "default": true }, "validate_critical_roles": { "type": "boolean", "description": "Enable/disable critical role validation", "default": true }, "Juniper": { "type": "object", "additionalProperties": false, "default": {}, "properties": { "bgp": { "type": "object", "additionalProperties": false, "default": {}, "properties": { "bgp_flap_count": { "type": "integer", "description": "Number of flaps allowed for BGP neighbors", "default": 4 }, "bgp_flap_count_check": { "type": "boolean", "description": "Enable/disable bgp_flap_count check", "default": true }, "bgp_down_peer_count": { "type": "integer", "description": "Number of down peers allowed", "default": 0 }, "bgp_down_peer_count_check": { "type": "boolean", "description": "Enable/disable bgp_down_peer_count check", "default": true }, "bgp_peer_state_check": { "type": "boolean", "description": "Enable/disable bgp peer state check", "default": true } } }, "alarm": { "type": "object", "additionalProperties": false, "default": {}, "properties": { "system_alarm_check": { "type": "boolean", "description": "Enable/disable system alarm check", "default": true }, "chassis_alarm_check": { "type": "boolean", "description": "Enable/disable chassis alarm check", "default": true } } }, "interface": { "type": "object", "additionalProperties": false, "default": {}, "properties": { "interface_error_check": { "type": "boolean", "description": "Enable/disable interface error check", "default": true }, "interface_drop_count_check": { "type": "boolean", "description": "Enable/disable interface drop check", "default": true }, "interface_carrier_transition_count_check": { "type": "boolean", "description": "Enable/disable interface carrier transition check", "default": true } } }, "routing_engine": { "type": "object", "additionalProperties": false, "default": {}, "properties": { "routing_engine_cpu_idle": { "type": "integer", "description": "Routing engine CPU idle time", "default": 60 }, "routing_engine_cpu_idle_check": { "type": "boolean", "description": "Enable/disable routing engine CLU idle time check", "default": true } } }, "fpc": { "type": "object", "additionalProperties": false, "default": {}, "properties": { "fpc_cpu_5min_avg": { "type": "integer", "description": "FPC CPU 5 minute average utilization", "default": 50 }, "fpc_cpu_5min_avg_check": { "type": "boolean", "description": "Enable/disable FPC CPU 5 minute average utilizationcheck", "default": true }, "fpc_memory_heap_util": { "type": "integer", "description": "FPC memory heap utilization", "default": 45 }, "fpc_memory_heap_util_check": { "type": "boolean", "description": "Enable/disable FPC memory heap utilization check", "default": true } } }, "lacp": { "type": "object", "additionalProperties": false, "default": {}, "properties": { "lacp_down_local_check": { "type": "boolean", "description": "Enable lacp interface status check on target device", "default": true }, "lacp_down_peer_check": { "type": "boolean", "description": "Enable lacp interface status check on peer device", "default": true } } }, "active_route_count_check": { "type": "boolean", "description": "Enable/disable active route count check", "default": true }, "l2_total_mac_count_check": { "type": "boolean", "description": "Enable/disable l2 total mac count check", "default": true }, "storm_control_flag_check": { "type": "boolean", "description": "Enable/disable storm control flag check", "default": true } } } } } } }
o8470
{ "additionalProperties": false, "properties": { "educationPricing": { "type": "boolean" }, "id": { "pattern": "^([0-9]{16})$", "type": "string" }, "incidentEscalation": { "type": "boolean" }, "lot": { "enum": [ "SCS" ] }, "minimumContractPeriod": { "enum": [ "Hour", "Day", "Month", "Year", "Other" ] }, "priceInterval": { "enum": [ "", "Second", "Minute", "Hour", "Day", "Week", "Month", "Quarter", "6 months", "Year" ] }, "priceMax": { "type": [ "number", "null" ] }, "priceMin": { "minimum": 0, "type": "number" }, "priceString": { "type": "string" }, "priceUnit": { "enum": [ "Unit", "Person", "Licence", "User", "Device", "Instance", "Server", "Virtual machine", "Transaction", "Megabyte", "Gigabyte", "Terabyte" ] }, "pricingDocumentURL": { "_format": "uri", "type": "string" }, "serviceBenefits": { "items": { "maxLength": 100, "pattern": "^(?:\\S+\\s+){0,9}\\S+$", "type": "string" }, "maxItems": 10, "minItems": 1, "type": "array" }, "serviceDefinitionDocumentURL": { "_format": "uri", "type": "string" }, "serviceFeatures": { "items": { "maxLength": 100, "pattern": "^(?:\\S+\\s+){0,9}\\S+$", "type": "string" }, "maxItems": 10, "minItems": 1, "type": "array" }, "serviceName": { "maxLength": 100, "minLength": 1, "type": "string" }, "serviceSummary": { "maxLength": 500, "minLength": 1, "pattern": "^(?:\\S+\\s+){0,49}\\S+$", "type": "string" }, "serviceTypes": { "items": { "enum": [ "Implementation", "Ongoing support", "Planning", "Testing", "Training" ] }, "maxItems": 5, "type": "array", "_uniqueItems": true }, "sfiaRateDocumentURL": { "_format": "uri", "type": "string" }, "status": { "enum": [ "disabled", "enabled", "published", "submitted", "not-submitted" ] }, "supplierId": { "type": "integer" }, "supportAvailability": { "maxLength": 200, "minLength": 1, "pattern": "^(?:\\S+\\s+){0,19}\\S+$", "type": "string" }, "supportForThirdParties": { "type": "boolean" }, "supportResponseTime": { "maxLength": 200, "minLength": 1, "pattern": "^(?:\\S+\\s+){0,19}\\S+$", "type": "string" }, "supportTypes": { "items": { "enum": [ "Service desk", "Email", "Phone", "Live chat", "Onsite" ] }, "maxItems": 5, "minItems": 1, "type": "array", "_uniqueItems": true }, "terminationCost": { "type": "boolean" }, "termsAndConditionsDocumentURL": { "_format": "uri", "type": "string" }, "vatIncluded": { "type": "boolean" }, "vendorCertifications": { "items": { "maxLength": 100, "pattern": "^(?:\\S+\\s+){0,9}\\S+$", "type": "string" }, "maxItems": 10, "type": "array" } }, "required": [ "id", "supplierId", "lot", "serviceDefinitionDocumentURL", "termsAndConditionsDocumentURL", "pricingDocumentURL", "serviceName", "serviceSummary", "serviceTypes", "serviceFeatures", "serviceBenefits", "priceMin", "priceUnit", "priceString", "vatIncluded", "educationPricing", "terminationCost", "minimumContractPeriod", "supportTypes", "supportForThirdParties", "supportAvailability", "supportResponseTime", "incidentEscalation" ], "title": "G-Cloud 7 SCS Service Schema", "type": "object" }
o62065
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://nevergreen.io/schema.json", "title": "Nevergreen", "description": "Nevergreen settings", "type": "object", "properties": { "settings": { "type": "object", "properties": { "showTrayName": { "type": "boolean" }, "showBuildTime": { "type": "boolean" }, "showBuildLabel": { "type": "boolean" }, "showSystemNotifications": { "type": "boolean" }, "playBrokenBuildSoundFx": { "type": "boolean" }, "brokenBuildSoundFx": { "type": [ "string", "null" ] }, "refreshTime": { "type": "number" }, "maxProjectsToShow": { "type": "string", "enum": [ "small", "medium", "large", "all" ] }, "clickToShowMenu": { "type": "boolean" }, "showPrognosis": { "type": "array", "items": { "type": "string" } }, "sort": { "type": "string" } }, "additionalProperties": false }, "trays": { "type": "object", "patternProperties": { ".*": { "type": "object", "properties": { "trayId": { "type": "string" }, "url": { "type": "string" }, "name": { "type": "string" }, "serverType": { "type": "string" }, "authType": { "type": "string" }, "username": { "type": [ "string", "null" ] }, "encryptedPassword": { "type": [ "string", "null" ] }, "encryptedAccessToken": { "type": [ "string", "null" ] }, "timestamp": { "type": [ "string", "null" ] }, "includeNew": { "type": "boolean" } }, "required": [ "trayId", "url" ], "additionalProperties": false } } }, "projects": { "type": "object", "patternProperties": { ".*": { "type": "array", "items": { "type": "object", "properties": { "projectId": { "type": "string" }, "description": { "type": "string" }, "removed": { "type": "boolean" }, "isNew": { "type": "boolean" }, "trayId": { "type": "string" } }, "required": [ "projectId", "description", "trayId" ], "additionalProperties": false } } } }, "success": { "type": "array", "items": { "type": "string" }, "additionalProperties": false }, "selected": { "type": "object", "patternProperties": { ".*": { "type": "array", "items": { "type": "string" } }, "additionalProperties": false }, "additionalProperties": false }, "backup": { "type": "object", "patternProperties": { ".*": { "type": "object", "properties": { "id": { "type": [ "string", "null" ] }, "description": { "type": [ "string", "null" ] }, "url": { "type": "string" } }, "required": [ "id", "url" ], "additionalProperties": false } } }, "appliedMigrations": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "timestamp": { "type": "string" } }, "required": [ "id", "timestamp" ], "additionalItems": false } } }, "additionalProperties": false }
o27790
{ "definitions": { "s3": { "description": "The s3 element contains the bucket & key data", "properties": { "awsRegion": { "type": "string" }, "bucket": { "properties": { "arn": { "type": "string" }, "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "eventName": { "type": "string" }, "eventSource": { "type": "string" }, "eventTime": { "format": "date-time", "type": "string" }, "object": { "properties": { "eTag": { "type": "string" }, "key": { "type": "string" }, "sequencer": { "type": "string" }, "size": { "type": "number" } }, "required": [ "key" ], "type": "object" } }, "required": [ "bucket", "object" ], "type": "object" }, "s3event": { "description": "The s3 event", "properties": { "awsRegion": { "type": "string" }, "eventName": { "type": "string" }, "eventSource": { "type": "string" }, "eventTime": { "format": "date-time", "type": "string" }, "s3": { "$ref": "#/definitions/s3" } }, "required": [ "awsRegion", "eventSource", "eventName", "eventTime", "s3" ], "type": "object" } }, "description": "Schema for an S3 event notification for Lambda. Incomplete.", "properties": { "Records": { "items": { "$ref": "#/definitions/s3event" }, "type": "array" } }, "required": [ "Records" ], "type": "object" }
o83992
{ "additionalProperties": false, "description": "This is validation for file metadata fields that the OSF allows to be edited by the user. These fields will match the fields presented to the user on a file metadata form on the OSF.", "properties": { "file_description": { "description": "The description of the file", "type": "string" }, "funders": { "description": "Funders responsible for funding the resource.", "items": { "additionalProperties": false, "properties": { "funding_agency": { "description": "The name of the funding provider", "type": "string" }, "grant_number": { "description": "The code assigned by the funder to a sponsored award (grant).", "type": "string" } }, "required": [ "funding_agency" ], "type": "object" }, "type": "array" }, "related_publication_doi": { "description": "The DOI of a related resource.", "pattern": "10\\..+/.+", "type": "string" }, "resource_type": { "enum": [ "Audio/Video", "Dataset", "Image", "Model", "Software", "Book", "Funding Submission", "Journal Article", "Lesson", "Poster", "Preprint", "Presentation", "Research Tool", "Thesis", "Other" ], "type": "string" } }, "title": "OSF Specific Fields for the Datacite Schema", "type": "object" }
o66329
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "An aushape-parsed audit log", "definitions": { "field": { "description": "A record field", "type": "array", "items": { "type": "string" }, "minItems": 1, "maxItems": 2 }, "field_list": { "description": "A list of fields", "type": "array", "items": { "$ref": "#/definitions/field" } }, "generic_fields": { "description": "Generic fields", "type": "object", "properties": { "a0": { "$ref": "#/definitions/field" }, "a1": { "$ref": "#/definitions/field" }, "a2": { "$ref": "#/definitions/field" }, "a3": { "$ref": "#/definitions/field" }, "acct": { "$ref": "#/definitions/field" }, "acl": { "$ref": "#/definitions/field" }, "action": { "$ref": "#/definitions/field" }, "added": { "$ref": "#/definitions/field" }, "addr": { "$ref": "#/definitions/field" }, "algo": { "$ref": "#/definitions/field" }, "apparmor": { "$ref": "#/definitions/field" }, "arch": { "$ref": "#/definitions/field" }, "argc": { "$ref": "#/definitions/field" }, "audit_backlog_limit": { "$ref": "#/definitions/field" }, "audit_backlog_wait_time": { "$ref": "#/definitions/field" }, "audit_enabled": { "$ref": "#/definitions/field" }, "audit_failure": { "$ref": "#/definitions/field" }, "auid": { "$ref": "#/definitions/field" }, "banners": { "$ref": "#/definitions/field" }, "bool": { "$ref": "#/definitions/field" }, "bus": { "$ref": "#/definitions/field" }, "capability": { "$ref": "#/definitions/field" }, "cap_fe": { "$ref": "#/definitions/field" }, "cap_fi": { "$ref": "#/definitions/field" }, "cap_fp": { "$ref": "#/definitions/field" }, "cap_fver": { "$ref": "#/definitions/field" }, "cap_pe": { "$ref": "#/definitions/field" }, "cap_pi": { "$ref": "#/definitions/field" }, "cap_pp": { "$ref": "#/definitions/field" }, "category": { "$ref": "#/definitions/field" }, "cgroup": { "$ref": "#/definitions/field" }, "changed": { "$ref": "#/definitions/field" }, "cipher": { "$ref": "#/definitions/field" }, "class": { "$ref": "#/definitions/field" }, "cmd": { "$ref": "#/definitions/field" }, "code": { "$ref": "#/definitions/field" }, "comm": { "$ref": "#/definitions/field" }, "compat": { "$ref": "#/definitions/field" }, "cwd": { "$ref": "#/definitions/field" }, "daddr": { "$ref": "#/definitions/field" }, "data": { "$ref": "#/definitions/field" }, "default-context": { "$ref": "#/definitions/field" }, "dest": { "$ref": "#/definitions/field" }, "dev": { "$ref": "#/definitions/field" }, "device": { "$ref": "#/definitions/field" }, "dir": { "$ref": "#/definitions/field" }, "direction": { "$ref": "#/definitions/field" }, "dmac": { "$ref": "#/definitions/field" }, "dport": { "$ref": "#/definitions/field" }, "egid": { "$ref": "#/definitions/field" }, "enforcing": { "$ref": "#/definitions/field" }, "entries": { "$ref": "#/definitions/field" }, "euid": { "$ref": "#/definitions/field" }, "exe": { "$ref": "#/definitions/field" }, "exit": { "$ref": "#/definitions/field" }, "fam": { "$ref": "#/definitions/field" }, "family": { "$ref": "#/definitions/field" }, "fd": { "$ref": "#/definitions/field" }, "fe": { "$ref": "#/definitions/field" }, "feature": { "$ref": "#/definitions/field" }, "fi": { "$ref": "#/definitions/field" }, "file": { "$ref": "#/definitions/field" }, "flags": { "$ref": "#/definitions/field" }, "format": { "$ref": "#/definitions/field" }, "fp": { "$ref": "#/definitions/field" }, "fsgid": { "$ref": "#/definitions/field" }, "fsuid": { "$ref": "#/definitions/field" }, "fver": { "$ref": "#/definitions/field" }, "gid": { "$ref": "#/definitions/field" }, "grantors": { "$ref": "#/definitions/field" }, "grp": { "$ref": "#/definitions/field" }, "hook": { "$ref": "#/definitions/field" }, "hostname": { "$ref": "#/definitions/field" }, "icmp_type": { "$ref": "#/definitions/field" }, "id": { "$ref": "#/definitions/field" }, "igid": { "$ref": "#/definitions/field" }, "img-ctx": { "$ref": "#/definitions/field" }, "inif": { "$ref": "#/definitions/field" }, "ino": { "$ref": "#/definitions/field" }, "inode": { "$ref": "#/definitions/field" }, "inode_gid": { "$ref": "#/definitions/field" }, "inode_uid": { "$ref": "#/definitions/field" }, "invalid_context": { "$ref": "#/definitions/field" }, "ioctlcmd": { "$ref": "#/definitions/field" }, "ip": { "$ref": "#/definitions/field" }, "ipid": { "$ref": "#/definitions/field" }, "ipx-net": { "$ref": "#/definitions/field" }, "items": { "$ref": "#/definitions/field" }, "iuid": { "$ref": "#/definitions/field" }, "kernel": { "$ref": "#/definitions/field" }, "key": { "$ref": "#/definitions/field" }, "kind": { "$ref": "#/definitions/field" }, "ksize": { "$ref": "#/definitions/field" }, "laddr": { "$ref": "#/definitions/field" }, "len": { "$ref": "#/definitions/field" }, "list": { "$ref": "#/definitions/field" }, "lport": { "$ref": "#/definitions/field" }, "mac": { "$ref": "#/definitions/field" }, "macproto": { "$ref": "#/definitions/field" }, "maj": { "$ref": "#/definitions/field" }, "major": { "$ref": "#/definitions/field" }, "minor": { "$ref": "#/definitions/field" }, "mode": { "$ref": "#/definitions/field" }, "model": { "$ref": "#/definitions/field" }, "msg": { "$ref": "#/definitions/field" }, "name": { "$ref": "#/definitions/field" }, "nametype": { "$ref": "#/definitions/field" }, "nargs": { "$ref": "#/definitions/field" }, "net": { "$ref": "#/definitions/field" }, "new": { "$ref": "#/definitions/field" }, "new-chardev": { "$ref": "#/definitions/field" }, "new-disk": { "$ref": "#/definitions/field" }, "new-enabled": { "$ref": "#/definitions/field" }, "new-fs": { "$ref": "#/definitions/field" }, "new_gid": { "$ref": "#/definitions/field" }, "new-level": { "$ref": "#/definitions/field" }, "new_lock": { "$ref": "#/definitions/field" }, "new-log_passwd": { "$ref": "#/definitions/field" }, "new-mem": { "$ref": "#/definitions/field" }, "new-net": { "$ref": "#/definitions/field" }, "new_pe": { "$ref": "#/definitions/field" }, "new_pi": { "$ref": "#/definitions/field" }, "new_pp": { "$ref": "#/definitions/field" }, "new-range": { "$ref": "#/definitions/field" }, "new-rng": { "$ref": "#/definitions/field" }, "new-role": { "$ref": "#/definitions/field" }, "new-seuser": { "$ref": "#/definitions/field" }, "new-vcpu": { "$ref": "#/definitions/field" }, "nlnk-fam": { "$ref": "#/definitions/field" }, "nlnk-grp": { "$ref": "#/definitions/field" }, "nlnk-pid": { "$ref": "#/definitions/field" }, "oauid": { "$ref": "#/definitions/field" }, "obj": { "$ref": "#/definitions/field" }, "obj_gid": { "$ref": "#/definitions/field" }, "obj_uid": { "$ref": "#/definitions/field" }, "objtype": { "$ref": "#/definitions/field" }, "ocomm": { "$ref": "#/definitions/field" }, "oflag": { "$ref": "#/definitions/field" }, "ogid": { "$ref": "#/definitions/field" }, "old": { "$ref": "#/definitions/field" }, "old-auid": { "$ref": "#/definitions/field" }, "old-chardev": { "$ref": "#/definitions/field" }, "old-disk": { "$ref": "#/definitions/field" }, "old-enabled": { "$ref": "#/definitions/field" }, "old_enforcing": { "$ref": "#/definitions/field" }, "old-fs": { "$ref": "#/definitions/field" }, "old-level": { "$ref": "#/definitions/field" }, "old_lock": { "$ref": "#/definitions/field" }, "old-log_passwd": { "$ref": "#/definitions/field" }, "old-mem": { "$ref": "#/definitions/field" }, "old-net": { "$ref": "#/definitions/field" }, "old_pe": { "$ref": "#/definitions/field" }, "old_pi": { "$ref": "#/definitions/field" }, "old_pp": { "$ref": "#/definitions/field" }, "old_prom": { "$ref": "#/definitions/field" }, "old-range": { "$ref": "#/definitions/field" }, "old-rng": { "$ref": "#/definitions/field" }, "old-role": { "$ref": "#/definitions/field" }, "old-ses": { "$ref": "#/definitions/field" }, "old-seuser": { "$ref": "#/definitions/field" }, "old_val": { "$ref": "#/definitions/field" }, "old-vcpu": { "$ref": "#/definitions/field" }, "op": { "$ref": "#/definitions/field" }, "opid": { "$ref": "#/definitions/field" }, "oses": { "$ref": "#/definitions/field" }, "ouid": { "$ref": "#/definitions/field" }, "outif": { "$ref": "#/definitions/field" }, "parent": { "$ref": "#/definitions/field" }, "path": { "$ref": "#/definitions/field" }, "per": { "$ref": "#/definitions/field" }, "perm": { "$ref": "#/definitions/field" }, "permissive": { "$ref": "#/definitions/field" }, "perm_mask": { "$ref": "#/definitions/field" }, "pfs": { "$ref": "#/definitions/field" }, "pid": { "$ref": "#/definitions/field" }, "ppid": { "$ref": "#/definitions/field" }, "printer": { "$ref": "#/definitions/field" }, "proctitle": { "$ref": "#/definitions/field" }, "prom": { "$ref": "#/definitions/field" }, "proto": { "$ref": "#/definitions/field" }, "qbytes": { "$ref": "#/definitions/field" }, "range": { "$ref": "#/definitions/field" }, "rdev": { "$ref": "#/definitions/field" }, "reason": { "$ref": "#/definitions/field" }, "removed": { "$ref": "#/definitions/field" }, "res": { "$ref": "#/definitions/field" }, "resrc": { "$ref": "#/definitions/field" }, "result": { "$ref": "#/definitions/field" }, "role": { "$ref": "#/definitions/field" }, "rport": { "$ref": "#/definitions/field" }, "saddr": { "$ref": "#/definitions/field" }, "sauid": { "$ref": "#/definitions/field" }, "scontext": { "$ref": "#/definitions/field" }, "selected-context": { "$ref": "#/definitions/field" }, "seperm": { "$ref": "#/definitions/field" }, "seperms": { "$ref": "#/definitions/field" }, "seqno": { "$ref": "#/definitions/field" }, "seresult": { "$ref": "#/definitions/field" }, "ses": { "$ref": "#/definitions/field" }, "seuser": { "$ref": "#/definitions/field" }, "sgid": { "$ref": "#/definitions/field" }, "sig": { "$ref": "#/definitions/field" }, "sigev_signo": { "$ref": "#/definitions/field" }, "size": { "$ref": "#/definitions/field" }, "smac": { "$ref": "#/definitions/field" }, "spid": { "$ref": "#/definitions/field" }, "sport": { "$ref": "#/definitions/field" }, "state": { "$ref": "#/definitions/field" }, "subj": { "$ref": "#/definitions/field" }, "success": { "$ref": "#/definitions/field" }, "suid": { "$ref": "#/definitions/field" }, "syscall": { "$ref": "#/definitions/field" }, "table": { "$ref": "#/definitions/field" }, "tclass": { "$ref": "#/definitions/field" }, "tcontext": { "$ref": "#/definitions/field" }, "terminal": { "$ref": "#/definitions/field" }, "tty": { "$ref": "#/definitions/field" }, "type": { "$ref": "#/definitions/field" }, "uid": { "$ref": "#/definitions/field" }, "unit": { "$ref": "#/definitions/field" }, "uri": { "$ref": "#/definitions/field" }, "user": { "$ref": "#/definitions/field" }, "uuid": { "$ref": "#/definitions/field" }, "val": { "$ref": "#/definitions/field" }, "ver": { "$ref": "#/definitions/field" }, "virt": { "$ref": "#/definitions/field" }, "vm": { "$ref": "#/definitions/field" }, "vm-ctx": { "$ref": "#/definitions/field" }, "vm-pid": { "$ref": "#/definitions/field" }, "watch": { "$ref": "#/definitions/field" } }, "additionalProperties": false }, "single_record": { "$ref": "#/definitions/generic_fields" }, "repeated_record": { "description": "A repeated, aggregated record list", "type": "array", "items": { "$ref": "#/definitions/generic_fields" } }, "execve_record": { "description": "An execve record", "type": "array", "items": { "type": "string" } } }, "type": "array", "items": { "description": "An audit event", "type": "object", "properties": { "serial": { "description": "Event serial number", "type": "integer", "minimum": 1 }, "time": { "description": "Event timestamp", "type": "string", "format": "date-time" }, "node": { "description": "Event hostname", "type": "string" }, "error": { "description": "Conversion error message", "type": "string" }, "trimmed": { "type": "array", "description": "An array of JSONPath expressions relative to the event object, specifying objects/arrays with (some) contents removed as the result of event size limiting. Empty string means event itself. Empty array means trimming occurred at unspecified objects/arrays.", "items": { "type": "string" } }, "text": { "type": "array", "description": "An array of strings representing original audit log records", "items": { "type": "string" } }, "data": { "type": "object", "properties": { "acct_lock": { "$ref": "#/definitions/single_record" }, "acct_unlock": { "$ref": "#/definitions/single_record" }, "add_group": { "$ref": "#/definitions/single_record" }, "add_user": { "$ref": "#/definitions/single_record" }, "anom_abend": { "$ref": "#/definitions/single_record" }, "anom_access_fs": { "$ref": "#/definitions/single_record" }, "anom_add_acct": { "$ref": "#/definitions/single_record" }, "anom_amtu_fail": { "$ref": "#/definitions/single_record" }, "anom_crypto_fail": { "$ref": "#/definitions/single_record" }, "anom_del_acct": { "$ref": "#/definitions/single_record" }, "anom_exec": { "$ref": "#/definitions/single_record" }, "anom_link": { "$ref": "#/definitions/single_record" }, "anom_login_acct": { "$ref": "#/definitions/single_record" }, "anom_login_failures": { "$ref": "#/definitions/single_record" }, "anom_login_location": { "$ref": "#/definitions/single_record" }, "anom_login_sessions": { "$ref": "#/definitions/single_record" }, "anom_login_time": { "$ref": "#/definitions/single_record" }, "anom_max_dac": { "$ref": "#/definitions/single_record" }, "anom_max_mac": { "$ref": "#/definitions/single_record" }, "anom_mk_exec": { "$ref": "#/definitions/single_record" }, "anom_mod_acct": { "$ref": "#/definitions/single_record" }, "anom_promiscuous": { "$ref": "#/definitions/single_record" }, "anom_rbac_fail": { "$ref": "#/definitions/single_record" }, "anom_rbac_integrity_fail": { "$ref": "#/definitions/single_record" }, "anom_root_trans": { "$ref": "#/definitions/single_record" }, "apparmor": { "$ref": "#/definitions/single_record" }, "apparmor_allowed": { "$ref": "#/definitions/single_record" }, "apparmor_audit": { "$ref": "#/definitions/single_record" }, "apparmor_denied": { "$ref": "#/definitions/single_record" }, "apparmor_error": { "$ref": "#/definitions/single_record" }, "apparmor_hint": { "$ref": "#/definitions/single_record" }, "apparmor_status": { "$ref": "#/definitions/single_record" }, "avc": { "$ref": "#/definitions/repeated_record" }, "avc_path": { "$ref": "#/definitions/single_record" }, "bprm_fcaps": { "$ref": "#/definitions/single_record" }, "capset": { "$ref": "#/definitions/single_record" }, "chgrp_id": { "$ref": "#/definitions/single_record" }, "chuser_id": { "$ref": "#/definitions/single_record" }, "config_change": { "$ref": "#/definitions/single_record" }, "cred_acq": { "$ref": "#/definitions/single_record" }, "cred_disp": { "$ref": "#/definitions/single_record" }, "cred_refr": { "$ref": "#/definitions/single_record" }, "crypto_failure_user": { "$ref": "#/definitions/single_record" }, "crypto_ike_sa": { "$ref": "#/definitions/single_record" }, "crypto_ipsec_sa": { "$ref": "#/definitions/single_record" }, "crypto_key_user": { "$ref": "#/definitions/single_record" }, "crypto_login": { "$ref": "#/definitions/single_record" }, "crypto_logout": { "$ref": "#/definitions/single_record" }, "crypto_param_change_user": { "$ref": "#/definitions/single_record" }, "crypto_replay_user": { "$ref": "#/definitions/single_record" }, "crypto_session": { "$ref": "#/definitions/single_record" }, "crypto_test_user": { "$ref": "#/definitions/single_record" }, "cwd": { "$ref": "#/definitions/single_record" }, "dac_check": { "$ref": "#/definitions/single_record" }, "daemon_abort": { "$ref": "#/definitions/single_record" }, "daemon_accept": { "$ref": "#/definitions/single_record" }, "daemon_close": { "$ref": "#/definitions/single_record" }, "daemon_config": { "$ref": "#/definitions/single_record" }, "daemon_end": { "$ref": "#/definitions/single_record" }, "daemon_err": { "$ref": "#/definitions/single_record" }, "daemon_resume": { "$ref": "#/definitions/single_record" }, "daemon_rotate": { "$ref": "#/definitions/single_record" }, "daemon_start": { "$ref": "#/definitions/single_record" }, "del_group": { "$ref": "#/definitions/single_record" }, "del_user": { "$ref": "#/definitions/single_record" }, "dev_alloc": { "$ref": "#/definitions/single_record" }, "dev_dealloc": { "$ref": "#/definitions/single_record" }, "execve": { "$ref": "#/definitions/execve_record" }, "fd_pair": { "$ref": "#/definitions/single_record" }, "feature_change": { "$ref": "#/definitions/single_record" }, "fs_relabel": { "$ref": "#/definitions/single_record" }, "grp_auth": { "$ref": "#/definitions/single_record" }, "grp_chauthtok": { "$ref": "#/definitions/single_record" }, "grp_mgmt": { "$ref": "#/definitions/single_record" }, "integrity_data": { "$ref": "#/definitions/single_record" }, "integrity_hash": { "$ref": "#/definitions/single_record" }, "integrity_metadata": { "$ref": "#/definitions/single_record" }, "integrity_pcr": { "$ref": "#/definitions/single_record" }, "integrity_rule": { "$ref": "#/definitions/single_record" }, "integrity_status": { "$ref": "#/definitions/single_record" }, "ipc": { "$ref": "#/definitions/single_record" }, "ipc_set_perm": { "$ref": "#/definitions/single_record" }, "kernel": { "$ref": "#/definitions/single_record" }, "kernel_other": { "$ref": "#/definitions/single_record" }, "label_level_change": { "$ref": "#/definitions/single_record" }, "label_override": { "$ref": "#/definitions/single_record" }, "login": { "$ref": "#/definitions/single_record" }, "mac_check": { "$ref": "#/definitions/single_record" }, "mac_cipsov4_add": { "$ref": "#/definitions/single_record" }, "mac_cipsov4_del": { "$ref": "#/definitions/single_record" }, "mac_config_change": { "$ref": "#/definitions/single_record" }, "mac_ipsec_addsa": { "$ref": "#/definitions/single_record" }, "mac_ipsec_addspd": { "$ref": "#/definitions/single_record" }, "mac_ipsec_delsa": { "$ref": "#/definitions/single_record" }, "mac_ipsec_delspd": { "$ref": "#/definitions/single_record" }, "mac_ipsec_event": { "$ref": "#/definitions/single_record" }, "mac_map_add": { "$ref": "#/definitions/single_record" }, "mac_map_del": { "$ref": "#/definitions/single_record" }, "mac_policy_load": { "$ref": "#/definitions/single_record" }, "mac_status": { "$ref": "#/definitions/single_record" }, "mac_unlbl_allow": { "$ref": "#/definitions/single_record" }, "mac_unlbl_stcadd": { "$ref": "#/definitions/single_record" }, "mac_unlbl_stcdel": { "$ref": "#/definitions/single_record" }, "mmap": { "$ref": "#/definitions/single_record" }, "mq_getsetattr": { "$ref": "#/definitions/single_record" }, "mq_notify": { "$ref": "#/definitions/single_record" }, "mq_open": { "$ref": "#/definitions/single_record" }, "mq_sendrecv": { "$ref": "#/definitions/single_record" }, "netfilter_cfg": { "$ref": "#/definitions/repeated_record" }, "netfilter_pkt": { "$ref": "#/definitions/single_record" }, "obj_pid": { "$ref": "#/definitions/repeated_record" }, "path": { "$ref": "#/definitions/repeated_record" }, "proctitle": { "$ref": "#/definitions/single_record" }, "resp_acct_lock": { "$ref": "#/definitions/single_record" }, "resp_acct_lock_timed": { "$ref": "#/definitions/single_record" }, "resp_acct_remote": { "$ref": "#/definitions/single_record" }, "resp_acct_unlock_timed": { "$ref": "#/definitions/single_record" }, "resp_alert": { "$ref": "#/definitions/single_record" }, "resp_anomaly": { "$ref": "#/definitions/single_record" }, "resp_exec": { "$ref": "#/definitions/single_record" }, "resp_halt": { "$ref": "#/definitions/single_record" }, "resp_kill_proc": { "$ref": "#/definitions/single_record" }, "resp_sebool": { "$ref": "#/definitions/single_record" }, "resp_single": { "$ref": "#/definitions/single_record" }, "resp_term_access": { "$ref": "#/definitions/single_record" }, "resp_term_lock": { "$ref": "#/definitions/single_record" }, "role_assign": { "$ref": "#/definitions/single_record" }, "role_modify": { "$ref": "#/definitions/single_record" }, "role_remove": { "$ref": "#/definitions/single_record" }, "seccomp": { "$ref": "#/definitions/single_record" }, "selinux_err": { "$ref": "#/definitions/single_record" }, "service_start": { "$ref": "#/definitions/single_record" }, "service_stop": { "$ref": "#/definitions/single_record" }, "sockaddr": { "$ref": "#/definitions/single_record" }, "socketcall": { "$ref": "#/definitions/single_record" }, "syscall": { "$ref": "#/definitions/single_record" }, "system_boot": { "$ref": "#/definitions/single_record" }, "system_runlevel": { "$ref": "#/definitions/single_record" }, "system_shutdown": { "$ref": "#/definitions/single_record" }, "test": { "$ref": "#/definitions/single_record" }, "trusted_app": { "$ref": "#/definitions/single_record" }, "tty": { "$ref": "#/definitions/single_record" }, "user": { "$ref": "#/definitions/single_record" }, "user_acct": { "$ref": "#/definitions/single_record" }, "user_auth": { "$ref": "#/definitions/single_record" }, "user_avc": { "$ref": "#/definitions/single_record" }, "user_chauthtok": { "$ref": "#/definitions/single_record" }, "user_cmd": { "$ref": "#/definitions/single_record" }, "user_end": { "$ref": "#/definitions/single_record" }, "user_err": { "$ref": "#/definitions/single_record" }, "user_labeled_export": { "$ref": "#/definitions/single_record" }, "user_login": { "$ref": "#/definitions/single_record" }, "user_logout": { "$ref": "#/definitions/single_record" }, "user_mac_config_change": { "$ref": "#/definitions/single_record" }, "user_mac_policy_load": { "$ref": "#/definitions/single_record" }, "user_mgmt": { "$ref": "#/definitions/single_record" }, "user_role_change": { "$ref": "#/definitions/single_record" }, "user_selinux_err": { "$ref": "#/definitions/single_record" }, "user_start": { "$ref": "#/definitions/single_record" }, "user_tty": { "$ref": "#/definitions/single_record" }, "user_unlabeled_export": { "$ref": "#/definitions/single_record" }, "usys_config": { "$ref": "#/definitions/single_record" }, "virt_control": { "$ref": "#/definitions/single_record" }, "virt_machine_id": { "$ref": "#/definitions/single_record" }, "virt_resource": { "$ref": "#/definitions/single_record" } } }, "norm": { "type": "object", "properties": { "event_kind": { "$ref": "#/definitions/field" }, "session": { "$ref": "#/definitions/field" }, "subject_kind": { "$ref": "#/definitions/field" }, "subject_primary": { "$ref": "#/definitions/field" }, "subject_secondary": { "$ref": "#/definitions/field" }, "subject_attrs": { "$ref": "#/definitions/field_list" }, "action": { "$ref": "#/definitions/field" }, "object_kind": { "$ref": "#/definitions/field" }, "object_primary": { "$ref": "#/definitions/field" }, "object_secondary": { "$ref": "#/definitions/field" }, "object_primary2": { "$ref": "#/definitions/field" }, "object_attrs": { "$ref": "#/definitions/field_list" }, "result": { "$ref": "#/definitions/field" }, "how": { "$ref": "#/definitions/field" }, "key": { "$ref": "#/definitions/field" } } } }, "required": [ "serial", "time" ], "additionalProperties": false } }
o13934
{ "items": { "properties": { "description": { "title": "Description from 8564_y field", "type": [ "string", "null" ] }, "value": { "format": "url", "title": "URL", "type": "string" } }, "title": "URL", "type": [ "object", "null" ] }, "title": "URLs", "type": "array" }
o13668
{ "properties": { "attachments": { "description": "The attachments to be included in the email", "items": { "description": "The file paths of the attachments", "type": "string" }, "type": "array" }, "body": { "description": "The body content of the email", "type": "string" }, "recipient_email": { "description": "The email address of the recipient", "type": "string" }, "subject": { "description": "The subject of the email", "type": "string" } }, "required": [ "recipient_email", "subject", "body" ], "type": "object" }
send_email_ce4f8f7a
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "$schema": { "description": "Ignored. Can be set to get completions, validations and documentation in some editors.", "example": [ "https://openapi.vercel.sh/vercel.json" ], "type": "string" }, "alias": { "description": "Aliases that will get assigned when the deployment is `READY` and the target is `production`. The client needs to make a `GET` request to its API to ensure the assignment", "example": [ "example.vercel.app" ], "oneOf": [ { "private": true, "type": "string" }, { "items": { "maxLength": 253, "type": "string" }, "maxItems": 50, "maxLength": 253, "type": "array" } ] }, "build": { "additionalProperties": false, "description": "An object containing another object with information to be passed to the Build Process", "deprecated": true, "properties": { "env": { "additionalProperties": false, "description": "An object containing the deployment's environment variable names and values to be passed to Builds. Secrets can be referenced by prefixing the value with `@`", "example": { "A_SECRET": "@a-secret" }, "deprecated": true, "maxProperties": 100, "minProperties": 0, "patternProperties": { ".+": { "maxLength": 65536, "minLength": 0, "type": "string" } }, "type": "object" } }, "type": "object" }, "builds": { "description": "A list of build descriptions whose src references valid source files.", "deprecated": true, "items": { "additionalProperties": false, "properties": { "config": { "description": "Optionally, an object including arbitrary metadata to be passed to the Builder", "type": "object" }, "src": { "description": "A glob expression or pathname. If more than one file is resolved, one build will be created per matched file. It can include `*` and `**`", "maxLength": 4096, "minLength": 1, "type": "string" }, "use": { "description": "An npm module to be installed by the build process. It can include a semver compatible version (e.g.: `@org/proj@1`)", "maxLength": 256, "minLength": 3, "type": "string" } }, "required": [ "use" ], "type": "object" }, "maxItems": 128, "minItems": 0, "type": "array" }, "cleanUrls": { "description": "When set to `true`, all HTML files and Serverless Functions will have their extension removed. When visiting a path that ends with the extension, a 308 response will redirect the client to the extensionless path.", "type": "boolean" }, "env": { "additionalProperties": false, "description": "An object containing the deployment's environment variable names and values. Secrets can be referenced by prefixing the value with `@`", "example": { "A_SECRET": "@a-secret" }, "deprecated": true, "maxProperties": 100, "minProperties": 0, "patternProperties": { ".+": { "maxLength": 65536, "minLength": 0, "type": "string" } }, "type": "object" }, "functions": { "additionalProperties": false, "description": "An object describing custom options for your Serverless Functions. Each key must be glob pattern that matches the paths of the Serverless Functions you would like to customize (like `api/*.js` or `api/test.js`).", "example": { "src/pages/**": { "maxDuration": 6, "memory": 1024 } }, "maxProperties": 50, "minProperties": 1, "patternProperties": { "^.{1,256}$": { "additionalProperties": false, "properties": { "excludeFiles": { "description": "A glob pattern to match files that should be excluded from your Serverless Function. If you’re using a Community Runtime, the behavior might vary.", "maxLength": 256, "type": "string" }, "includeFiles": { "description": "A glob pattern to match files that should be included in your Serverless Function. If you’re using a Community Runtime, the behavior might vary.", "maxLength": 256, "type": "string" }, "maxDuration": { "description": "An integer defining how long your Serverless Function should be allowed to run on every request in seconds (between 1 and the maximum limit of your plan).", "maximum": 900, "minimum": 1, "type": "number" }, "memory": { "description": "An integer defining the memory your Serverless Function should be provided with (between 128 and 3008).", "maximum": 3008, "minimum": 128, "type": "number" }, "runtime": { "description": "The npm package name of a Runtime, including its version", "maxLength": 256, "type": "string" } }, "type": "object" } }, "type": "object" }, "git": { "type": "object", "properties": { "deploymentEnabled": { "description": "Specifies the branches that will not trigger an auto-deployment when committing to them. Any non specified branch is `true` by default.", "example": { "main": false }, "oneOf": [ { "type": "boolean" }, { "type": "object", "additionalProperties": { "type": "boolean" } } ] } } }, "github": { "private": true, "type": "object", "properties": { "autoAlias": { "description": "When set to `false`, Vercel for GitHub will not deploy the given project regardless of the GitHub app being installed.", "type": "boolean" }, "autoJobCancelation": { "description": "When set to `false`, Vercel for GitHub will always build pushes in sequence without cancelling a build for the most recent commit.", "type": "boolean" }, "enabled": { "description": "When set to false, Vercel for GitHub will not apply the alias upon merge.", "type": "boolean" }, "silent": { "description": "When set to `true`, Vercel for GitHub will stop commenting on pull requests and commits.", "type": "boolean" } } }, "headers": { "type": "array", "maxItems": 1024, "description": "A list of header definitions.", "items": { "type": "object", "additionalProperties": false, "required": [ "source", "headers" ], "properties": { "source": { "description": "A pattern that matches each incoming pathname (excluding querystring)", "type": "string", "maxLength": 4096 }, "headers": { "description": "An array of key/value pairs representing each response header.", "type": "array", "maxItems": 1024, "items": { "type": "object", "additionalProperties": false, "required": [ "key", "value" ], "properties": { "key": { "type": "string", "maxLength": 4096 }, "value": { "type": "string", "maxLength": 4096 } } } }, "has": { "description": "An array of requirements that are needed to match", "type": "array", "maxItems": 16, "items": { "anyOf": [ { "type": "object", "additionalProperties": false, "required": [ "type", "value" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "host" ] }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } }, { "type": "object", "additionalProperties": false, "required": [ "type", "key" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "header", "cookie", "query" ] }, "key": { "description": "The name of the element contained in the particular type", "type": "string", "maxLength": 4096 }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } } ] } }, "missing": { "description": "An array of requirements that are needed to match", "type": "array", "maxItems": 16, "items": { "anyOf": [ { "type": "object", "additionalProperties": false, "required": [ "type", "value" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "host" ] }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } }, { "type": "object", "additionalProperties": false, "required": [ "type", "key" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "header", "cookie", "query" ] }, "key": { "description": "The name of the element contained in the particular type", "type": "string", "maxLength": 4096 }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } } ] } } } } }, "images": { "type": "object", "additionalProperties": false, "required": [ "sizes" ], "properties": { "contentDispositionType": { "enum": [ "inline", "attachment" ] }, "contentSecurityPolicy": { "type": "string", "minLength": 1, "maxLength": 256 }, "dangerouslyAllowSVG": { "type": "boolean" }, "domains": { "type": "array", "minItems": 0, "maxItems": 50, "items": { "type": "string", "minLength": 1, "maxLength": 256 } }, "formats": { "type": "array", "minItems": 1, "maxItems": 4, "items": { "enum": [ "image/avif", "image/webp", "image/jpeg", "image/png" ] } }, "minimumCacheTTL": { "type": "integer", "minimum": 1, "maximum": 315360000 }, "remotePatterns": { "type": "array", "minItems": 0, "maxItems": 50, "items": { "type": "object", "additionalProperties": false, "required": [ "hostname" ], "properties": { "protocol": { "enum": [ "http", "https" ] }, "hostname": { "type": "string", "minLength": 1, "maxLength": 256 }, "port": { "type": "string", "minLength": 1, "maxLength": 5 }, "pathname": { "type": "string", "minLength": 1, "maxLength": 256 } } } }, "sizes": { "type": "array", "minItems": 1, "maxItems": 50, "items": { "type": "number" } } } }, "name": { "description": "A name for the deployment", "type": "string" }, "public": { "description": "Whether a deployment's source and logs are available publicly", "type": "boolean" }, "redirects": { "title": "Redirects", "type": "array", "maxItems": 1024, "description": "A list of redirect definitions.", "items": { "type": "object", "additionalProperties": false, "required": [ "source", "destination" ], "properties": { "source": { "description": "A pattern that matches each incoming pathname (excluding querystring).", "type": "string", "maxLength": 4096 }, "destination": { "description": "A location destination defined as an absolute pathname or external URL.", "type": "string", "maxLength": 4096 }, "permanent": { "description": "A boolean to toggle between permanent and temporary redirect. When `true`, the status code is `308`. When `false` the status code is `307`.", "type": "boolean" }, "statusCode": { "private": true, "type": "integer", "minimum": 100, "maximum": 999 }, "has": { "description": "An array of requirements that are needed to match", "type": "array", "maxItems": 16, "items": { "anyOf": [ { "type": "object", "additionalProperties": false, "required": [ "type", "value" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "host" ] }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } }, { "type": "object", "additionalProperties": false, "required": [ "type", "key" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "header", "cookie", "query" ] }, "key": { "description": "The name of the element contained in the particular type", "type": "string", "maxLength": 4096 }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } } ] } }, "missing": { "description": "An array of requirements that are needed to match", "type": "array", "maxItems": 16, "items": { "anyOf": [ { "type": "object", "additionalProperties": false, "required": [ "type", "value" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "host" ] }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } }, { "type": "object", "additionalProperties": false, "required": [ "type", "key" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "header", "cookie", "query" ] }, "key": { "description": "The name of the element contained in the particular type", "type": "string", "maxLength": 4096 }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } } ] } } } } }, "regions": { "description": "An array of the regions the deployment's Serverless Functions should be deployed to", "example": [ "sfo", "bru" ], "items": { "maxLength": 256, "type": "string" }, "maxItems": 1000, "minItems": 1, "type": "array" }, "rewrites": { "type": "array", "maxItems": 1024, "description": "A list of rewrite definitions.", "items": { "type": "object", "additionalProperties": false, "required": [ "source", "destination" ], "properties": { "source": { "description": "A pattern that matches each incoming pathname (excluding querystring).", "type": "string", "maxLength": 4096 }, "destination": { "description": "An absolute pathname to an existing resource or an external URL.", "type": "string", "maxLength": 4096 }, "has": { "description": "An array of requirements that are needed to match", "type": "array", "maxItems": 16, "items": { "anyOf": [ { "type": "object", "additionalProperties": false, "required": [ "type", "value" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "host" ] }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } }, { "type": "object", "additionalProperties": false, "required": [ "type", "key" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "header", "cookie", "query" ] }, "key": { "description": "The name of the element contained in the particular type", "type": "string", "maxLength": 4096 }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } } ] } }, "missing": { "description": "An array of requirements that are needed to match", "type": "array", "maxItems": 16, "items": { "anyOf": [ { "type": "object", "additionalProperties": false, "required": [ "type", "value" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "host" ] }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } }, { "type": "object", "additionalProperties": false, "required": [ "type", "key" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "header", "cookie", "query" ] }, "key": { "description": "The name of the element contained in the particular type", "type": "string", "maxLength": 4096 }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } } ] } } } } }, "routes": { "type": "array", "maxItems": 1024, "deprecated": true, "description": "A list of routes objects used to rewrite paths to point towards other internal or external paths", "example": [ { "dest": "https://docs.example.com", "src": "/docs" } ], "items": { "anyOf": [ { "type": "object", "required": [ "src" ], "additionalProperties": false, "properties": { "src": { "type": "string", "maxLength": 4096 }, "dest": { "type": "string", "maxLength": 4096 }, "headers": { "type": "object", "additionalProperties": false, "minProperties": 1, "maxProperties": 100, "patternProperties": { "^.{1,256}$": { "type": "string", "maxLength": 4096 } } }, "methods": { "type": "array", "maxItems": 10, "items": { "type": "string", "maxLength": 32 } }, "caseSensitive": { "type": "boolean" }, "important": { "type": "boolean" }, "user": { "type": "boolean" }, "continue": { "type": "boolean" }, "override": { "type": "boolean" }, "check": { "type": "boolean" }, "isInternal": { "type": "boolean" }, "status": { "type": "integer", "minimum": 100, "maximum": 999 }, "locale": { "type": "object", "additionalProperties": false, "minProperties": 1, "properties": { "redirect": { "type": "object", "additionalProperties": false, "minProperties": 1, "maxProperties": 100, "patternProperties": { "^.{1,256}$": { "type": "string", "maxLength": 4096 } } }, "value": { "type": "string", "maxLength": 4096 }, "path": { "type": "string", "maxLength": 4096 }, "cookie": { "type": "string", "maxLength": 4096 }, "default": { "type": "string", "maxLength": 4096 } } }, "middleware": { "type": "number" }, "middlewarePath": { "type": "string" }, "middlewareRawSrc": { "type": "array", "items": { "type": "string" } }, "has": { "description": "An array of requirements that are needed to match", "type": "array", "maxItems": 16, "items": { "anyOf": [ { "type": "object", "additionalProperties": false, "required": [ "type", "value" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "host" ] }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } }, { "type": "object", "additionalProperties": false, "required": [ "type", "key" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "header", "cookie", "query" ] }, "key": { "description": "The name of the element contained in the particular type", "type": "string", "maxLength": 4096 }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } } ] } }, "missing": { "description": "An array of requirements that are needed to match", "type": "array", "maxItems": 16, "items": { "anyOf": [ { "type": "object", "additionalProperties": false, "required": [ "type", "value" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "host" ] }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } }, { "type": "object", "additionalProperties": false, "required": [ "type", "key" ], "properties": { "type": { "description": "The type of request element to check", "type": "string", "enum": [ "header", "cookie", "query" ] }, "key": { "description": "The name of the element contained in the particular type", "type": "string", "maxLength": 4096 }, "value": { "description": "A regular expression used to match the value. Named groups can be used in the destination", "type": "string", "maxLength": 4096 } } } ] } } } }, { "type": "object", "required": [ "handle" ], "additionalProperties": false, "properties": { "handle": { "type": "string", "maxLength": 32, "enum": [ "error", "filesystem", "hit", "miss", "resource", "rewrite" ] } } } ] } }, "scope": { "description": "This property determines the scope (user or team) under which the project will be deployed by Vercel CLI.", "type": "string", "private": true }, "trailingSlash": { "description": "When `false`, visiting a path that ends with a forward slash will respond with a `308` status code and redirect to the path without the trailing slash.", "type": "boolean" }, "version": { "maximum": 2, "minimum": 2, "private": true, "type": "integer" }, "wildcard": { "private": true, "items": { "additionalProperties": false, "properties": { "domain": { "maxLength": 255, "minLength": 1, "type": "string" }, "value": { "maxLength": 1024, "minLength": 0, "type": "string" } }, "required": [ "domain", "value" ], "type": "object" }, "maxItems": 25, "minItems": 1, "type": "array" }, "buildCommand": { "description": "The build command for this project. When `null` is used this value will be automatically detected", "maxLength": 256, "type": [ "string", "null" ] }, "ignoreCommand": { "maxLength": 256, "type": [ "string", "null" ] }, "devCommand": { "description": "The dev command for this project. When `null` is used this value will be automatically detected", "maxLength": 256, "type": [ "string", "null" ] }, "framework": { "description": "The framework that is being used for this project. When `null` is used no framework is selected", "type": [ "null", "string" ], "enum": [ "blitzjs", "nextjs", "gatsby", "remix", "astro", "hexo", "eleventy", "docusaurus-2", "docusaurus", "preact", "solidstart", "dojo", "ember", "vue", "scully", "ionic-angular", "angular", "polymer", "svelte", "sveltekit", "sveltekit-1", "ionic-react", "create-react-app", "gridsome", "umijs", "sapper", "saber", "stencil", "nuxtjs", "redwoodjs", "hugo", "jekyll", "brunch", "middleman", "zola", "hydrogen", "vite", "vitepress", "vuepress", "parcel", "sanity", "storybook", null ] }, "installCommand": { "description": "The install command for this project. When `null` is used this value will be automatically detected", "maxLength": 256, "type": [ "string", "null" ] }, "outputDirectory": { "description": "The output directory of the project. When `null` is used this value will be automatically detected", "maxLength": 256, "type": [ "string", "null" ] }, "crons": { "description": "An array of cron jobs that should be created for production Deployments.", "type": "array", "maxItems": 20, "items": { "type": "object", "required": [ "schedule", "path" ], "properties": { "schedule": { "type": "string", "minLength": 9, "maxLength": 256 }, "path": { "type": "string", "maxLength": 512, "pattern": "^/.*" } } } } } }
vercel
{ "properties": { "builtin": { "enum": [ "MODIFIABLE", "DELETABLE", "IMMUTABLE", "PARTITION_ALL" ], "readonly": true, "type": "object" }, "comment": { "type": "string" }, "feature": { "enum": [ "WL", "WebLogging", "SP", "SurgeProtection", "LB", "LoadBalancing", "CS", "ContentSwitching", "CR", "CacheRedirection", "SC", "SureConnect", "CMP", "CMPcntl", "CompressionControl", "PQ", "PriorityQueuing", "HDOSP", "HttpDoSProtection", "SSLVPN", "AAA", "GSLB", "GlobalServerLoadBalancing", "SSL", "SSLOffload", "SSLOffloading", "CF", "ContentFiltering", "IC", "IntegratedCaching", "OSPF", "OSPFRouting", "RIP", "RIPRouting", "BGP", "BGPRouting", "REWRITE", "IPv6PT", "IPv6protocoltranslation", "AppFw", "ApplicationFirewall", "RESPONDER", "HTMLInjection", "push", "NSPush", "NetScalerPush", "AppFlow", "CloudBridge", "ISIS", "ISISRouting", "CH", "CallHome", "AppQoE", "ContentAccelerator", "SYSTEM", "RISE", "FEO", "LSN", "LargeScaleNAT", "RDPProxy", "Rep", "Reputation", "URLFiltering", "VideoOptimization", "ForwardProxy", "SSLInterception", "AdaptiveTCP", "CQA", "CI", "ContentInspection", "Bot" ], "readonly": true, "type": "string" }, "hits": { "readonly": true, "type": "integer" }, "logaction": { "type": "string" }, "name": { "type": "string" }, "newname": { "type": "string" }, "policytype": { "enum": [ "Classic Policy", "Advanced Policy" ], "readonly": true, "type": "string" }, "profilename": { "type": "string" }, "rule": { "type": "string" }, "undefhits": { "readonly": true, "type": "integer" } }, "title": "appfwpolicy", "type": "object" }
o29991
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape for which area needs to be calculated", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_ebc720d9
{ "description": "An instance of <a href=\"#story-events\">the story events configuration</a>.", "properties": { "onGroupChange": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "description": "The onGroupChange event of the story. The action uid or an array of action uids", "example": "action-0", "title": "onGroupChange" }, "onReady": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "description": "The onReady event of the story. The action uid or an array of action uids", "example": "action-0", "title": "onReady" }, "onSceneLoadComplete": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "description": "The onSceneLoadComplete event of the story. The action uid or an array of action uids", "example": "action-0", "title": "onSceneLoadComplete" }, "onSceneLoadRequest": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "description": "The onSceneLoadRequest event of the story. The action uid or an array of action uids", "example": "action-0", "title": "onSceneLoadRequest" }, "onSceneLoadStart": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "description": "The onSceneLoadStart event of the story. The action uid or an array of action uids", "example": "action-0", "title": "onSceneLoadStart" } }, "title": "StoryEventsConfig", "type": "object" }
o44309
{ "definitions": { "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": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", "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": [ "scheduling.k8s.io/v1" ], "type": [ "string", "null" ] }, "description": { "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.", "type": [ "string", "null" ] }, "globalDefault": { "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.", "type": [ "boolean", "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": [ "PriorityClass" ], "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" }, "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", "null" ] }, "value": { "description": "The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.", "format": "int32", "type": [ "integer", "null" ] } }, "required": [ "value" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "scheduling.k8s.io", "kind": "PriorityClass", "version": "v1" } ] }
kb_758_Normalized
{ "$id": "https://example.com/address.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "description": "Gemstate groups", "type": "array", "items": { "type": "object", "required": [ "name", "id", "locality", "addedDate" ], "additionalProperties": false, "properties": { "name": { "description": "Full name of the group", "type": "string" }, "id": { "description": "Unique identifier for the group. Feel free to leave this empty string when submitting PR; a value that works well with gemstate.io will be assigned by approver.", "type": "string" }, "locality": { "description": "Incorporated city/town where this group typically meets in-person, 'Online' if the group doesn't meet in-person, or 'Idaho' if no specific location", "type": "string" }, "addedDate": { "description": "Date the group was added to this list, intended to help people find new groups. (ISO 8601 format)", "format": "date", "type": "string" }, "description": { "description": "Optional brief description of the group", "type": "string" }, "tla": { "description": "Optional acronym used by the group, e.g. Boise Software Developers Group members always call themselves BSDG.", "type": "string" }, "url": { "description": "Optional (strongly encouraged) URL providing more information about the group, and ideally about the next meeting time & place", "type": "string" }, "meetupComGroupName": { "description": "If meetup.com is used for scheduling, the group name (seen in URLs as https://www.meetup.com/<meetupComGroupName>/", "type": "string" }, "eventbriteOrganizerId": { "description": "If eventbrite.com is used for scheduling, the Eventbrite organizer ID (typically a number?)", "type": "string" }, "eventbriteKeywords": { "description": "If eventbrite.com is used, a list of keywords used to narrow the events to those specific to this group", "type": "array", "items": { "type": "string" } }, "iCalendarUrl": { "description": "If a generic web calendar is used for scheduling, its iCalendar/RFC5545 URL (e.g. the .ical URLs provided for public Google Calendars)", "type": "string" }, "abandonedDate": { "type": "string", "format": "date", "description": "If a group's no longer meeting, add this to record the last date it was known. This could be helpful in determining past interest, rather than deleting the group entirely. (ISO 8601 format)" }, "schedCom": { "description": "If sched.com is used to help people choose sessions within big events, add an item per event here", "type": "array", "items": { "type": "object", "required": [ "name" ] }, "additionalProperties": false, "properties": { "name": { "type": "string", "description": "Conference name (seen in sched.com URLs as https://<conference_name>.sched.com)" } } } } } }
o85090
{ "additionalProperties": true, "description": "Schema for a Mailgun message clicked event", "properties": { "campaignId": { "description": "id of campaign triggering the event.", "type": "string" }, "campaignName": { "description": "The name of campaign triggering the event.", "type": "string" }, "city": { "description": "Name of the city the event came from or \u2018unknown\u2019 if it couldn\u2019t be determined.", "maxLength": 64, "type": "string" }, "clientName": { "description": "Name of the client software, e.g. \u2018Thunderbird\u2019, \u2018Chrome\u2019, \u2018Firefox\u2019.", "maxLength": 64, "type": "string" }, "clientOs": { "description": "OS family running the client software, e.g. \u2018Linux\u2019, \u2018Windows\u2019, \u2018OSX\u2019.", "maxLength": 64, "type": "string" }, "clientType": { "description": "Type of software the link was opened in, e.g. \u2018browser\u2019, \u2018mobile browser\u2019, \u2018email client\u2019.", "maxLength": 64, "type": "string" }, "country": { "description": "Two-letter country code (as specified by ISO3166) the event came from or \u2018unknown\u2019 if it couldn\u2019t be determined.", "maxLength": 2, "type": "string" }, "deviceType": { "description": "Device type the link was clicked on. Can be \u2018desktop\u2019, \u2018mobile\u2019, \u2018tablet\u2019, \u2018other\u2019 or \u2018unknown\u2019.", "maxLength": 64, "type": "string" }, "domain": { "_format": "hostname", "description": "Domain that sent the original message.", "maxLength": 256, "type": "string" }, "ip": { "_format": "ipv4", "description": "IP address the event originated from (currently only seems to support ipv4).", "type": "string" }, "mailingList": { "description": "The address of mailing list the original message was sent to.", "type": "string" }, "messageId": { "description": "The Id of the message that bounced.", "maxLength": 1024, "type": "string" }, "recipient": { "_format": "email", "description": "Recipient who clicked.", "maxLength": 256, "type": "string" }, "region": { "description": "Two-letter or two-digit region code or \u2018unknown\u2019 if it couldn\u2019t be determined.", "maxLength": 8, "type": "string" }, "signature": { "description": "String with hexadecimal digits generate by HMAC algorithm (see securing webhooks).", "maxLength": 128, "type": "string" }, "tag": { "description": "Message tag, if it was tagged. See Tagging.", "type": "string" }, "token": { "description": "Randomly generated string with length 50 (see securing webhooks).", "maxLength": 64, "type": "string" }, "url": { "_format": "uri", "description": "The URL that was clicked (size from rfc7230#section-3.1.1).", "maxLength": 8192, "type": "string" }, "userAgent": { "description": "User agent string of the client triggered the event.", "maxLength": 1024, "type": "string" } }, "self": { "format": "jsonschema", "name": "message_clicked", "vendor": "com.mailgun", "version": "1-0-0" }, "type": "object" }
sp_115_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema", "description": "The primary language of the content. The value should follow IETF BCP47. (e.g. 'en', 'es-419', etc.) ", "title": "Locale", "type": "string" }
wp_70_Normalized
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1alpha1_AggregationRule": { "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", "properties": { "clusterRoleSelectors": { "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1alpha1_ClusterRole": { "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.20.", "properties": { "aggregationRule": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1alpha1_AggregationRule", "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller." }, "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": [ "ClusterRole" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "rules": { "description": "Rules holds all the PolicyRules for this ClusterRole", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1alpha1_PolicyRule" }, "type": "array" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRole", "version": "v1alpha1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1alpha1_PolicyRule": { "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", "properties": { "apiGroups": { "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", "items": { "type": "string" }, "type": "array" }, "nonResourceURLs": { "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", "items": { "type": "string" }, "type": "array" }, "resourceNames": { "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", "items": { "type": "string" }, "type": "array" }, "resources": { "description": "Resources is a list of resources this rule applies to. ResourceAll represents all resources.", "items": { "type": "string" }, "type": "array" }, "verbs": { "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", "items": { "type": "string" }, "type": "array" } }, "required": [ "verbs" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "properties": { "continue": { "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.", "type": "string" }, "remainingItemCount": { "_format": "int64", "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.", "type": "integer" }, "resourceVersion": { "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "ClusterRoleList is a collection of ClusterRoles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "rbac.authorization.k8s.io/v1alpha1" ], "type": [ "string", "null" ] }, "items": { "description": "Items is a list of ClusterRoles", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1alpha1_ClusterRole" }, "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": [ "ClusterRoleList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRoleList", "version": "v1alpha1" } ] }
kb_96_Normalized
{ "properties": { "comment": { "type": "string" }, "expires": { "type": "integer" }, "iffull": { "enum": [ "undef", "lru" ], "type": "string" }, "ifnovalue": { "enum": [ "undef", "init" ], "type": "string" }, "ifvaluetoobig": { "enum": [ "undef", "truncate" ], "type": "string" }, "init": { "type": "string" }, "name": { "type": "string" }, "referencecount": { "readonly": true, "type": "integer" }, "scope": { "enum": [ "global", "transaction" ], "type": "string" }, "type": { "type": "string" } }, "title": "nsvariable", "type": "object" }
o30815
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "description": "Openwifimap API https://github.com/freifunk/openwifimap-api", "properties": { "total_rows": { "title": "Total rows", "type": "integer", "description": "Total number of results" }, "offset": { "title": "Offset", "type": "integer" }, "rows": { "title": "Rows", "type": "array", "_uniqueItems": true, "items": { "type": "object", "properties": { "id": { "type": "string" }, "key": { "type": "string" }, "value": { "type": "object", "properties": { "hostname": { "type": "string" }, "ctime": { "type": "string" }, "mtime": { "type": "string" }, "id": { "type": "string" }, "latlng": { "type": "array", "items": { "type": "number" }, "minItems": 2, "maxItems": 2 } }, "required": [ "hostname", "ctime", "mtime", "id", "latlng" ] } } } } } }
o87890
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "jsBundle": { "properties": { "outputFileName": { "pattern": "\\.js$" }, "sourceMap": { "description": "JavaScript only. Set to true to produce a source map.", "type": "boolean" }, "sourceMapRootPath": { "description": "JavaScript only. Sets a root path for source maps.", "type": "string", "default": "" }, "minify": { "type": "object", "properties": { "alwaysEscapeNonAscii": { "description": "JavaScript only. Gets or sets a flag indicating whether to always escape non-ASCII characters as \\uXXXX or to let the output encoding object handle that via the JsEncoderFallback object for the specified output encoding format.", "type": "boolean", "default": false }, "evalTreatment": { "description": "JavaScript only.", "enum": ["ignore", "makeAllSafe", "makeImmediateSafe"], "default": "ignore" }, "preserveImportantComments": { "description": "JavaScript only.", "type": "boolean", "default": true }, "renameLocals": { "description": "JavaScript only. Controls if local variables should be shortened.", "type": "boolean", "default": true }, "termSemicolons": { "description": "Forces all rules to be terminated with semicolons if set to true.", "type": "boolean", "default": true } }, "allOf": [ { "$ref": "#/definitions/ajaxminBaseSettings" } ] } } }, "cssBundle": { "properties": { "outputFileName": { "pattern": "\\.css$" }, "minify": { "type": "object", "properties": { "colorNames": { "description": "CSS only. If no color names are to be used, set this value to 'hex'. If a set of colors recognized by all major browser is okay to use (W3C-strict validation is not required), set this value to 'major'.", "enum": ["hex", "major", "noSwap", "strict"], "default": "strict" }, "commentMode": { "description": "CSS only. How to treat comments in the code. The default is 'none', which will strip all comments except 'important' comments. 'all' will leave all comments, and 'hacks' will only leave certain known comment-based hacks.", "enum": ["none", "all", "hacks", "important"], "default": "important" }, "adjustRelativePaths": { "description": "CSS only. Adjust relative paths inside the url() function.", "type": "boolean", "default": true }, "termSemicolons": { "description": "Forces all rules to be terminated with semicolons if set to true.", "type": "boolean", "default": false } }, "allOf": [ { "$ref": "#/definitions/ajaxminBaseSettings" } ] } } }, "htmlBundle": { "properties": { "outputFileName": { "pattern": "\\.(html|htm)$" }, "minify": { "type": "object", "properties": { "collapseBooleanAttributes": { "description": "HTML only. Remove values from boolean attributes.", "type": "boolean", "default": true }, "collapseWhitespace": { "description": "HTML only. Indicating whether to collapse whitespaces.", "type": "boolean", "default": true }, "isFragmentOnly": { "description": "HTML only. Indicating whether the parsing is occurring on an HTML fragment, to avoid creating missing tags (like html, body, head).", "type": "boolean", "default": true }, "keepOneSpaceWhenCollapsing": { "description": "HTML only. Indicating whether to keep one space when collapsing.", "type": "boolean", "default": false }, "minifyEmbeddedCssCode": { "description": "HTML only. Minify CSS code in style tags.", "type": "boolean", "default": true }, "minifyEmbeddedJsCode": { "description": "HTML only. Minify JS code in script tags.", "type": "boolean", "default": true }, "minifyInlineCssCode": { "description": "HTML only. Minify CSS code in style attributes.", "type": "boolean", "default": true }, "preserveCase": { "description": "HTML only. Preserve case of tag and attribute names.", "type": "boolean", "default": false }, "removeHtmlComments": { "description": "HTML only. Remove all HTML comments except conditional, noindex, Knockout.js containerless comments and Angular.js comment directives.", "type": "boolean", "default": true }, "removeOptionalEndTags": { "description": "HTML only. Remove optional end tags.", "type": "boolean", "default": false }, "removeQuotedAttributes": { "description": "HTML only. Indicating whether to remove quoted attributes when possible.", "type": "boolean", "default": true } } } } }, "ajaxminBaseSettings": { "properties": { "indentSize": { "description": "For the multi-line output feature, how many spaces to use when indenting a block (see outputMode).", "type": "integer", "default": 2 }, "outputMode": { "description": "SingleLine minifies everything to a single line. MultipleLines breaks the minified code into multiple lines for easier reading.", "enum": ["multipleLines", "singleLine", "none"], "default": "singleLine" } } }, "bundle": { "required": ["outputFileName", "inputFiles"], "properties": { "includeInProject": { "description": "Set to true to include the output file in the project. Doesn't work in some Visual Studio project types like ASP.NET Core applications.", "type": "boolean", "default": true }, "inputFiles": { "description": "One or more relative file names or globbing patterns to bundle. Example: \"scripts/**/*.js\"", "type": "array", "items": { "type": "string" } }, "minify": { "description": "Specify options for minification of the output file.", "type": "object", "required": ["enabled"], "properties": { "enabled": { "type": "boolean" }, "gzip": { "description": "Produce a .gz file after minification.", "type": "boolean", "default": false } } }, "outputFileName": { "description": "The relative path to the desired output file name.", "type": "string", "minLength": 1 } }, "oneOf": [ { "$ref": "#/definitions/jsBundle" }, { "$ref": "#/definitions/cssBundle" }, { "$ref": "#/definitions/htmlBundle" } ] } }, "description": "Schema for bundleconfig.json files", "id": "https://json.schemastore.org/bundleconfig.json", "items": { "$ref": "#/definitions/bundle" }, "type": "array" }
bundleconfig
{ "additionalProperties": false, "description": "common json schema for transaction volumes tagged by user channel and channel type (see DbD)", "properties": { "_id": { "description": "unique url-friendly base64 encoded, utf8 endoded concatenation identifier", "type": "string" }, "_timestamp": { "_format": "date-time", "description": "ISO8601 combined date and time in UTC e.g. '2014-12-01T00:00:00+00:00'", "type": "string" }, "channel": { "description": "user contact channel", "type": "string" }, "channel_type": { "description": "class of channel for Dbd categrisation", "enum": [ "digital", "non-digital", "assisted-digital" ] }, "count": { "description": "the number of completed transactions over the specific channel", "minimum": 0, "type": "integer" }, "period": { "description": "The period covered by each data point from the _timestamp", "enum": [ "hour", "day", "week", "month", "quarter" ] } }, "required": [ "_id", "_timestamp", "period", "channel", "channel_type", "count" ], "title": "transactions-by-channel-type", "type": "object" }
o60886
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "intensity_images", "mask_image" ], "type": "object", "properties": { "prior_probability_images": { "type": "object", "properties": {} }, "intensity_images": { "type": "object", "properties": {} }, "mask_image": { "type": "object", "properties": {} }, "out_classified_image_name": { "type": "object", "properties": {} } } }, "config": { "required": [ "output_posteriors_name_template", "num_threads", "initialization", "use_random_seed", "number_of_tissue_classes", "dimension" ], "type": "object", "properties": { "output_posteriors_name_template": { "default": "POSTERIOR_%02d.nii.gz", "type": "string" }, "num_threads": { "default": 1, "type": "integer" }, "args": { "type": "string" }, "mrf_smoothing_factor": { "type": "number" }, "use_random_seed": { "default": true, "type": "boolean" }, "convergence_threshold": { "type": "number" }, "prior_probability_threshold": { "type": "number" }, "likelihood_model": { "type": "string" }, "dimension": { "default": 3, "enum": [ 3, 2, 4 ], "type": "integer" }, "number_of_tissue_classes": { "type": "integer" }, "n_iterations": { "type": "integer" }, "icm_use_synchronous_update": { "type": "boolean" }, "mrf_radius": { "type": "array", "items": { "type": "integer" } }, "maximum_number_of_icm_terations": { "type": "integer" }, "posterior_formulation": { "type": "string" }, "save_posteriors": { "type": "boolean" }, "initialization": { "default": "Random", "enum": [ "Random", "Otsu", "KMeans", "PriorProbabilityImages", "PriorLabelImage" ], "type": "string" }, "prior_weighting": { "type": "number" }, "use_mixture_model_proportions": { "type": "boolean" } } } }, "title": "Invocation manifest for Atropos" }
o41364
{ "properties": { "api": { "aliases": [ "a" ], "default": false, "description": "Specifies if api success and failure actions should be added to the reducer", "type": "boolean", "x-prompt": "Should we add success and failure actions to the reducer?" }, "creators": { "aliases": [ "c" ], "default": true, "description": "Specifies whether to use creator functions for handling actions and reducers.", "type": "boolean", "x-prompt": "Do you want to use the create function?" }, "feature": { "default": false, "description": "Flag to indicate if part of a feature schematic.", "type": "boolean" }, "flat": { "default": true, "description": "Flag to indicate if a dir is created.", "type": "boolean" }, "group": { "aliases": [ "g" ], "default": false, "description": "Group reducer file within 'reducers' folder", "type": "boolean" }, "module": { "aliases": [ "m" ], "description": "Specifies the declaring module.", "type": "string" }, "name": { "$default": { "$source": "argv", "index": 0 }, "description": "The name of the reducer.", "type": "string", "x-prompt": "What should be the name of the reducer?" }, "path": { "description": "The path to create the component.", "format": "path", "type": "string", "visible": false }, "project": { "aliases": [ "p" ], "description": "The name of the project.", "type": "string" }, "reducers": { "aliases": [ "r" ], "description": "Specifies the reducers file.", "type": "string" }, "skipTests": { "default": false, "description": "When true, does not create test files.", "type": "boolean" } }, "required": [], "title": "NgRx Reducer Options Schema", "type": "object" }
o63327
{ "name": "vscode-colorize", "displayName": "colorize", "description": "A vscode extension to help visualize css colors in files.", "version": "0.8.16", "publisher": "kamikillerto", "license": "Apache-2.0", "icon": "assets/logo.png", "engines": { "vscode": "^1.39.0" }, "categories": [ "Other" ], "keywords": [ "color", "css", "hexa", "hsl", "rgb", "preprocessor" ], "repository": { "type": "git", "url": "https://github.com/kamikillerto/vscode-colorize.git" }, "bugs": { "url": "https://github.com/kamikillerto/vscode-colorize/issues" }, "homepage": "https://github.com/kamikillerto/vscode-colorize/blob/master/README.MD", "galleryBanner": { "theme": "light" }, "activationEvents": [ "*" ], "main": "./out/src/extension", "contributes": { "configuration": { "title": "Colorize", "properties": { "colorize.languages": { "default": [ "css", "sass", "scss", "less", "postcss", "sss", "stylus", "xml", "svg" ], "title": "Colorize files with these languages", "type": "array", "markdownDescription": "Configure a list of languages that should be colorized. A list of languages can be find at https://code.visualstudio.com/docs/languages/identifiers. You can learn about languages at https://code.visualstudio.com/docs/languages/overview." }, "colorize.files_extensions": { "$schema": "http://json-schema.org/draft-07/schema#", "default": [], "title": "Colorize files with these extensions", "type": "array", "items": { "type": "string", "pattern": "\\.\\w+$", "_uniqueItems": true, "description": "You should enter a valid file extension" }, "markdownDescription": "[deprecated] Specified a list of files extension that should be colorized. This setting is deprecated and will be removed soon, you should use the setting `colorize.include` instead." }, "colorize.ignore_files_extensions_deprecation": { "default": false, "type": "boolean", "markdownDescription": "Ignore the warning for `colorize.files_extensions`." }, "colorize.include": { "type": "array", "markdownDescription": "Configure glob patterns for including files and folders. By default Colorize is enable for files matching one the languages defined in the `colorize.languages` config, with this config you can enable colorize for other files or folders. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).", "default": [], "scope": 3, "additionalProperties": { "anyOf": [ { "type": "array", "properties": { "when": { "type": "string", "pattern": "\\w*\\$\\(basename\\)\\w*", "default": "$(basename).ext", "description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name." } } } ] } }, "colorize.exclude": { "type": "array", "markdownDescription": "Configure glob patterns for excluding files and folders. Colorize will not colorized colors in these files and folders and it'll also not search for variables inside. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).", "default": [ "**/.git", "**/.svn", "**/.hg", "**/CVS", "**/.DS_Store", "**/.git", "**/node_modules", "**/bower_components", "**/tmp", "**/dist", "**/tests" ], "scope": 3, "additionalProperties": { "anyOf": [ { "type": "array", "properties": { "when": { "type": "string", "pattern": "\\w*\\$\\(basename\\)\\w*", "default": "$(basename).ext", "description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name." } } } ] } }, "colorize.hide_current_line_decorations": { "title": "Hide current line decorations", "default": true, "type": "boolean", "markdownDescription": "Hide colors for the current line. Set to `false` to turn it off" }, "colorize.colorized_variables": { "$schema": "http://json-schema.org/draft-07/schema#", "default": [ "CSS" ], "items": { "enum": [ "CSS", "SASS", "LESS", "STYLUS" ], "description": "You should enter a valid extractor", "_uniqueItems": true }, "title": "Extract these type of variables", "type": "array", "markdownDescription": "You can specified the type of variables that should be colorized by the extension." }, "colorize.colorized_colors": { "$schema": "http://json-schema.org/draft-07/schema#", "default": [ "BROWSERS_COLORS", "HEXA", "RGB", "HSL" ], "items": { "enum": [ "BROWSERS_COLORS", "HEXA", "RGB", "HSL", "ARGB" ], "description": "You should enter a valid extractor", "_uniqueItems": true }, "title": "Colorize these type of color", "type": "array", "markdownDescription": "You can specified the type of color that should be colorized by the extension.\nAvailable colors are:\n* `HEXA`: for hexadecimal colors: `#RGB`, `#RGBA`, `#RRGGBB`, `#RRGGBBAA`, `0xRGB`, `0xRGBA`, `0xRRGGBB` or `0xRRGGBBAA`\n* `ARGB`: for argb colors: `#RGB`, `#ARGB`, `#RRGGBB` or `#AARRGGBB`\n* `RGB`: for rgb colors: `rgb(r,g,b)` or `rgba(r,g,b,a)`\n* `HSL`: for HSL colors: `hsl(h,s,l)` or `hsla(h,s,l,a)`\n* `BROWSERS_COLORS`: for native browser's colors like `white`, `red`, `blue`..." }, "colorize.colorize_only_visible_beta": { "default": false, "type": "boolean", "markdownDescription": "By default all colors in a file are colorized and updated when needed, with this feature only what you see will be colorized/updated. ⚠️ This feature is still in beta, please report any bug [here](https://github.com/KamiKillertO/vscode-colorize/issues). ⚠️ A reload is required after any change to this setting." }, "colorize.enable_search_variables": { "title": "Enable the search for variables at opening time", "default": true, "type": "boolean", "markdownDescription": "When vscode starts, Colorize fetch all files targeted by the settings `colorize.include`, `colorize.languages` and `colorize.files_extensions` but not the ones targeted by the setting `colorize.exclude`. When the fetch is done, colorize open and parse all files searching for variables. That way variables will be colorized in every files. _⚠️ this setting can slown down your editor a little at opening time, read this [issue](https://github.com/KamiKillertO/vscode-colorize/issues/174) to learn more about it._" } } } }, "scripts": { "vscode:prepublish": "tsc -p ./", "compile": "tsc -watch -p ./", "postinstall": "node ./node_modules/vscode/bin/install", "lint": "node ./node_modules/.bin/tslint -c tslint.json --project tsconfig.json", "test": "node ./node_modules/vscode/bin/test" }, "devDependencies": { "@types/chai": "4.2.9", "@types/mocha": "7.0.1", "@types/node": "8.5.2", "chai": "4.2.0", "typescript": "3.3.3", "mocha": "5.2.0", "tslint": "5.12.1", "vscode": "1.1.36" }, "dependencies": { "glob-to-regexp": [ "^0.4.1" ] }, "properties": { "contributes.configuration": { "$ref": "#/contributes/configuration" } }, "required": [ "contributes.configuration" ] }
o8733
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "string", "description": "The temporal relationship of a clinical measure or assessment to meals. ", "references": [ { "value": "fasting", "description": "The SNOMED code represents Fasting (finding)", "url": "http://purl.bioontology.org/ontology/SNOMEDCT/16985007" }, { "value": "not fasting", "description": "The SNOMED code represents Not fasting (situation)", "url": "http://purl.bioontology.org/ontology/SNOMEDCT/440565004" }, { "value": "before meal", "description": "The SNOMED code represents Before meal (qualifier value)", "url": "http://purl.bioontology.org/ontology/SNOMEDCT/307165006" }, { "value": "after meal", "description": "The SNOMED code represents After meal (qualifier value)", "url": "http://purl.bioontology.org/ontology/SNOMEDCT/24863003" }, { "value": "before breakfast", "description": "The NCIT code represents Before breakfast", "url": "https://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code=C1549040" }, { "value": "after breakfast", "description": "The NCIT code represents After breakfast", "url": "https://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code=C1550743" }, { "value": "before lunch", "description": "The NCIT code represents Before lunch", "url": "https://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code=C1550741" }, { "value": "after lunch", "description": "The NCIT code represents After lunch", "url": "https://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code=C1879668" }, { "value": "before dinner", "description": "The NCIT code represents Before dinner", "url": "https://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code=C1550742" }, { "value": "after dinner", "description": "The NCIT code represents After supper or evening meal", "url": "https://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code=C1879671" }, { "value": "2 hours postprandial", "description": "This value is currently not part of any standard vocabulary, but is needed to describe for ex. 2-hour postprandial blood glucose" }, { "value": "with meal", "description": "The SNOMED code represents With or after meal (qualifier value)", "url": "http://purl.bioontology.org/ontology/SNOMEDCT/311503006" }, { "value": "with food", "description": "The SNOMED code represents With or after food (qualifier value)", "url": "http://purl.bioontology.org/ontology/SNOMEDCT/311504000" } ], "enum": [ "fasting", "not fasting", "before meal", "after meal", "before breakfast", "after breakfast", "before lunch", "after lunch", "before dinner", "after dinner", "2 hours postprandial", "with meal", "with food" ] }
o65653
{ "id": "http://github.com/osrg/earthquake/schema/EventAcceptanceAction.json#", "$schema": "http://json-schema.org/draft-04/schema#", "description": "schema for an EventAcceptanceAction", "additionalProperties": true, "required": [ "uuid", "entity", "type", "class", "event_uuid" ], "type": "object", "properties": { "uuid": { "type": "string" }, "entity": { "type": "string" }, "type": { "type": "string" }, "class": { "type": "string" }, "event_uuid": { "type": "string" } } }
o948
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "stdCollection": { "$ref": "#/definitions/StdCollectionType" }, "geoCollection": { "$ref": "#/definitions/GeoCollectionType" }, "locCollection": { "$ref": "#/definitions/LocCollectionType" }, "cycCollection": { "$ref": "#/definitions/CycCollectionType" }, "detCollection": { "$ref": "#/definitions/DetCollectionType" }, "timCollection": { "$ref": "#/definitions/TimCollectionType" }, "cn": { "$ref": "#/definitions/CnResponseType" } }, "definitions": { "StdCollectionType": { "type": "object", "additionalProperties": false, "properties": { "signalTimingData": { "$ref": "#/definitions/SignalTimingDataType" }, "version": { "type": "string" } } }, "SignalTimingDataType": { "type": "object", "additionalProperties": false, "properties": { "std": { "type": "array", "items": { "$ref": "#/definitions/Std" } }, "numsys": { "type": "integer" } } }, "Std": { "type": "object", "additionalProperties": false, "properties": { "timingPlans": { "$ref": "#/definitions/TimingPlans" }, "id": { "type": "string" }, "file": { "type": "string", "enum": [ "OK", "NONE" ] }, "path": { "type": "string" }, "name": { "type": "string" } } }, "TimingPlans": { "type": "object", "additionalProperties": false, "properties": { "timingPlan": { "type": "array", "items": { "$ref": "#/definitions/TimingPlan" } } } }, "TimingPlan": { "type": "object", "additionalProperties": false, "properties": { "phases": { "$ref": "#/definitions/Phases" }, "id": { "type": "string" }, "cycle": { "type": "integer" }, "min": { "type": "integer" }, "offset": { "type": "integer" }, "sigplan": { "type": "integer" } } }, "Phases": { "type": "object", "additionalProperties": false, "properties": { "phase": { "type": "array", "items": { "$ref": "#/definitions/PhaseType" } } } }, "PhaseType": { "type": "object", "additionalProperties": false, "properties": { "value": { "type": "string" }, "id": { "type": "string" }, "serves": { "type": "integer" }, "rof": { "type": "integer" }, "split": { "type": "integer" }, "disp": { "type": "string", "enum": [ "EW_L", "SB_L", "NB_W", "SB_W", "WB_G", "NB_L", "EW_W", "NS_W", "EB_W", "NS_E", "NS_L", "WB_L", "SB_G", "EB_L", "WB_B", "EW_G" ] }, "minvar": { "type": "integer" }, "variable": { "type": "integer" }, "clear": { "type": "integer" }, "fixed": { "type": "integer" } } }, "GeoCollectionType": { "type": "object", "additionalProperties": false, "properties": { "geometries": { "$ref": "#/definitions/GeometriesType" }, "version": { "type": "string" } } }, "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" ] } } }, "LocCollectionType": { "type": "object", "additionalProperties": false, "properties": { "locations": { "$ref": "#/definitions/LocationsType" }, "version": { "type": "string" } } }, "LocationsType": { "type": "object", "additionalProperties": false, "properties": { "location": { "type": "array", "items": { "$ref": "#/definitions/LocationType" } }, "numsys": { "type": "integer" } } }, "LocationType": { "type": "object", "additionalProperties": false, "properties": { "detectors": { "$ref": "#/definitions/Detectors" }, "id": { "type": "string" }, "file": { "type": "string", "enum": [ "OK", "NONE" ] }, "path": { "type": "string" } } }, "Detectors": { "type": "object", "additionalProperties": false, "properties": { "detector": { "type": "array", "items": { "$ref": "#/definitions/DetectorType" } } } }, "DetectorType": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "code": { "type": "integer" }, "faze": { "type": "integer" }, "lane": { "type": "integer" }, "mode": { "type": "string" } } }, "CycCollectionType": { "type": "object", "additionalProperties": false, "properties": { "cycles": { "$ref": "#/definitions/CyclesType" }, "version": { "type": "string" } } }, "CyclesType": { "type": "object", "additionalProperties": false, "properties": { "cycle": { "type": "array", "items": { "$ref": "#/definitions/CycleType" } }, "period": { "type": "integer" }, "numsys": { "type": "integer" } } }, "CycleType": { "type": "object", "additionalProperties": false, "properties": { "greens": { "$ref": "#/definitions/Greens" }, "id": { "type": "string" }, "num": { "type": "integer" }, "cyc": { "type": "integer" }, "valid": { "type": "integer" }, "err": { "type": "integer" }, "trans": { "type": "integer" }, "offcor": { "type": "integer" }, "now": { "type": "integer" }, "std": { "__aggregationType": "aggregation", "$ref": "#/definitions/Std" }, "geo": { "type": "integer" }, "node": { "type": "integer" }, "send": { "type": "string", "enum": [ "OK", "FAIL" ] }, "errno": { "type": "integer" }, "sys": { "type": "string" } } }, "Greens": { "type": "object", "additionalProperties": false, "properties": { "green": { "type": "array", "items": { "$ref": "#/definitions/GreenType" } } } }, "GreenType": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "grn": { "type": "integer" }, "ped": { "type": "integer" }, "tim": { "type": "integer" }, "gap": { "type": "integer" }, "max": { "type": "integer" }, "fo": { "type": "integer" } } }, "DetCollectionType": { "type": "object", "additionalProperties": false, "properties": { "sums": { "$ref": "#/definitions/Sums" }, "version": { "type": "string" } } }, "Sums": { "type": "object", "additionalProperties": false, "properties": { "detection": { "type": "array", "items": { "$ref": "#/definitions/DetectionType" } }, "period": { "type": "integer" }, "numsys": { "type": "integer" } } }, "DetectionType": { "type": "object", "additionalProperties": false, "properties": { "dets": { "$ref": "#/definitions/Dets" }, "id": { "type": "string" }, "now": { "type": "integer" }, "comm": { "type": "string", "enum": [ "OK", "FAIL" ] }, "num": { "type": "integer" } } }, "Dets": { "type": "object", "additionalProperties": false, "properties": { "det": { "type": "array", "items": { "$ref": "#/definitions/DetType" } } } }, "DetType": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "pos": { "type": "integer" }, "vol": { "type": "integer" }, "occ": { "type": "integer" }, "grn": { "type": "integer" } } }, "TimCollectionType": { "type": "object", "additionalProperties": false, "properties": { "timings": { "$ref": "#/definitions/TimingsType" }, "version": { "type": "string" } } }, "TimingsType": { "type": "object", "additionalProperties": false, "properties": { "timing": { "type": "array", "items": { "$ref": "#/definitions/TimingType" } }, "numsys": { "type": "integer" } } }, "TimingType": { "type": "object", "additionalProperties": false, "properties": { "curPlan": { "$ref": "#/definitions/TimingPlanType" }, "id": { "type": "integer" }, "adaptive": { "type": "string", "enum": [ "PLAN", "PATTERN", "STANDBY" ] }, "adaPlan": { "type": "integer" }, "adaMode": { "type": "string", "enum": [ "FREE", "FLASH" ] }, "adaPattern": { "type": "integer" }, "tod": { "type": "string", "enum": [ "PLAN", "PATTERN", "STANDBY" ] }, "todPlan": { "type": "integer" }, "todMode": { "type": "string", "enum": [ "FREE", "FLASH" ] }, "todPattern": { "type": "integer" }, "todnum": { "type": "integer" }, "override": { "type": "string", "enum": [ "PLAN", "PATTERN", "STANDBY" ] }, "ovrPlan": { "type": "integer" }, "ovrMode": { "type": "string", "enum": [ "FREE", "FLASH" ] }, "ovrPattern": { "type": "integer" }, "now": { "type": "string", "enum": [ "PATTERN", "FLASH", "TBC", "STANDBY", "FAIL", "PLAN", "UNKNOWN" ] }, "op": { "type": "string", "enum": [ "PICKUP", "OFFSET", "NCS", "TRANSITION" ] }, "to": { "type": "integer" }, "fail": { "type": "string", "enum": [ "CONFLICT", "CDI", "PRE_EMPT", "UNKNOWN", "RESET" ] } } }, "TimingPlanType": { "type": "object", "additionalProperties": false, "properties": { "phases_id": { "$ref": "#/definitions/Phases" }, "id": { "type": "string" }, "cycle": { "type": "integer" }, "min": { "type": "integer" }, "offset": { "type": "integer" }, "sigplan": { "type": "integer" } } }, "CnResponseType": { "type": "object", "additionalProperties": false, "properties": { "version": { "type": "string" } } } } }
o73949
{ "properties": { "measurements": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle or triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "measurements" ], "type": "object" }
calculate_area_02fc0302
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "PodCondition contains details for the current condition of this pod.", "properties": { "lastProbeTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time we probed the condition." }, "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "message": { "description": "Human-readable message indicating details about last transition.", "type": [ "string", "null" ] }, "reason": { "description": "Unique, one-word, CamelCase reason for the condition's last transition.", "type": [ "string", "null" ] }, "status": { "description": "Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", "type": [ "string", "null" ] }, "type": { "description": "Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", "type": [ "string", "null" ] } }, "required": [ "type", "status" ], "type": "object" }
kb_691_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://flynn.io/schema/controller/volume_req#", "title": "Volume Request", "description": "", "sortIndex": 20, "type": "object", "require": [ "path" ], "additionalProperties": false, "properties": { "path": { "type": "string" }, "delete_on_stop": { "type": "boolean", "description": "delete the volume when the job stops" } } }
o67056
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Fibaro Home Center Variable JSON Schema", "name": "variable", "type": "object", "properties": { "name": { "description": "Identifier for the variable", "type": "string", "maxLength": 18, "minLength": 1, "pattern": "^[A-Za-z][A-Za-z0-9_]*" }, "value": { "description": "Value of the variable", "type": "string", "maxLength": 8177 }, "readOnly": { "description": "Read only flag", "type": "boolean" }, "isEnum": { "description": "Is Predefined Variable Flag", "type": "boolean" }, "enumValues": { "description": "Predefined values", "type": "array", "items": { "type": "string" } }, "created": { "description": "Variable created timestamp", "type": "integer", "minimum": 0 }, "modified": { "description": "Variable modified timestamp", "type": "integer", "minimum": 0 } }, "required": [ "name", "value" ], "additionalProperties": false }
o56021
{ "properties": { "length": { "description": "The length of the password", "type": "integer" }, "use_lowercase": { "description": "Include lowercase letters in the password", "type": "boolean" }, "use_numbers": { "description": "Include numbers in the password", "type": "boolean" }, "use_symbols": { "description": "Include symbols in the password", "type": "boolean" }, "use_uppercase": { "description": "Include uppercase letters in the password", "type": "boolean" } }, "required": [ "length" ], "type": "object" }
generate_random_password_f69985b9
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "", "type": "object", "properties": { "regionData": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "id", "subId" ], "properties": { "id": { "type": "string", "minLength": 1 }, "subId": { "type": "string", "minLength": 1 }, "states": { "type": "array", "items": { "required": [], "properties": {} } } } } }, "seasonIds": { "type": "array", "items": { "required": [], "properties": {} } }, "updateTime": { "type": "string", "minLength": 1 } }, "required": [ "regionData", "seasonIds", "updateTime" ] }
o69887
{ "$schema": "http://json-schema.org/draft-04/schema#", "properties": { "account_identifier": { "description": "The identifier for the platform account to fund.", "maxLength": 96, "minLength": 5, "pattern": "^[\\+\\w-]{5,96}$", "type": "string" }, "amount": { "description": "The amount to add to the account (and thus, charge the credit card), in cents.", "minimum": 100, "type": "number" }, "cc_token": { "description": "The payment token issued at registration time.", "type": "string" }, "client_ip": { "description": "The IP address of the person making the purchase.", "type": "string" }, "customer": { "description": "The platform's customer.", "maxLength": 96, "minLength": 1, "type": "string" }, "security_code": { "description": "The 3 or 4-digit card security code (CVV2, CVC2, or CID).", "pattern": "^\\d{3,4}$", "type": "string" } }, "required": [ "customer", "account_identifier", "amount", "client_ip", "cc_token", "security_code" ], "title": "Fund a platform user's account.", "type": "object" }
o50680
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle (if applicable)", "type": "number" }, "height": { "description": "The height of the triangle (if applicable)", "type": "number" }, "radius": { "description": "The radius of the circle (if applicable)", "type": "number" }, "side": { "description": "The length of a side (if applicable)", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, square, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_4535a807
{ "properties": { "base": { "description": "The base of the triangle (if applicable)", "type": "number" }, "height": { "description": "The height of the triangle (if applicable)", "type": "number" }, "length": { "description": "The length of the rectangle (if applicable)", "type": "number" }, "radius": { "description": "The radius of the circle (if applicable)", "type": "number" }, "shape": { "description": "The shape (e.g., circle, rectangle, triangle)", "type": "string" }, "width": { "description": "The width of the rectangle (if applicable)", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_d9e8c02c
{ "description": "An instance of <a href='#hotspot-events'>the hotspot events object.</a>", "properties": { "onClick": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "description": "The action uids to trigger on click.", "title": "On Click" }, "onOut": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "description": "The action uids to trigger on out.", "title": "On Out" }, "onOver": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "description": "The action uids to trigger on over.", "title": "On Over" } }, "title": "HotspotEventConfig", "type": "object" }
o44267
{ "type": "object", "properties": { "roots": { "description": "The root paths of all the minecraft", "default": [], "type": "array", "items": { "type": "string" } }, "primaryRoot": { "description": "The primary installation root", "default": "", "type": "string" }, "locale": { "description": "The display language of the launcher", "default": "en", "type": "string" }, "autoDownload": { "description": "Should launcher auto download new update", "default": false, "type": "boolean" }, "autoInstallOnAppQuit": { "description": "Should launcher auto install new update after app quit", "default": false, "type": "boolean" }, "allowPrerelease": { "description": "Should launcher show the pre-release", "default": false, "type": "boolean" }, "useBmclAPI": { "description": "Use bmcl API in China Mainland", "default": true, "type": "boolean" } }, "required": [ "allowPrerelease", "autoDownload", "autoInstallOnAppQuit", "locale", "primaryRoot", "roots", "useBmclAPI" ], "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false }
o7378
{ "description": "A generic link between two (or more) entitites", "properties": { "end_date": { "description": "The date on which the relationship ended", "format": "date", "sortIndex": 70, "title": "End date", "type": [ "string", "null" ] }, "id": { "hidden": true, "title": "ID", "type": "integer" }, "start_date": { "description": "The date on which the relationship began", "format": "date", "sortIndex": 71, "title": "Start date", "type": [ "string", "null" ] } }, "title": "A link between entities", "type": "object" }
o12381
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy": { "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.", "properties": { "partition": { "_format": "int32", "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.", "type": "integer" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_StatefulSetUpdateStrategy": { "description": "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.", "properties": { "rollingUpdate": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy", "description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType." }, "type": { "description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.", "type": "string" } }, "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_PersistentVolumeClaim": { "description": "PersistentVolumeClaim is a user's request for and claim to a persistent volume", "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": [ "PersistentVolumeClaim" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimSpec", "description": "Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimStatus", "description": "Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "PersistentVolumeClaim", "version": "v1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimCondition": { "description": "PersistentVolumeClaimCondition contails details about state of pvc", "properties": { "lastProbeTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time we probed the condition." }, "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "message": { "description": "Human-readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "Unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports \"ResizeStarted\" that means the underlying persistent volume is being resized.", "type": "string" }, "status": { "type": "string" }, "type": { "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimSpec": { "description": "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes", "properties": { "accessModes": { "description": "AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1", "items": { "type": "string" }, "type": "array" }, "dataSource": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference", "description": "This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - Beta) * An existing PVC (PersistentVolumeClaim) * An existing custom resource/object that implements data population (Alpha) In order to use VolumeSnapshot object types, the appropriate feature gate must be enabled (VolumeSnapshotDataSource or AnyVolumeDataSource) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. If the specified data source is not supported, the volume will not be created and the failure will be reported as an event. In the future, we plan to support more data source types and the behavior of the provisioner may change." }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources" }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over volumes to consider for binding." }, "storageClassName": { "description": "Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1", "type": "string" }, "volumeMode": { "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.", "type": "string" }, "volumeName": { "description": "VolumeName is the binding reference to the PersistentVolume backing this claim.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimStatus": { "description": "PersistentVolumeClaimStatus is the current status of a persistent volume claim.", "properties": { "accessModes": { "description": "AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1", "items": { "type": "string" }, "type": "array" }, "capacity": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Represents the actual resources of the underlying volume.", "type": "object" }, "conditions": { "description": "Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "phase": { "description": "Phase represents the current phase of PersistentVolumeClaim.", "type": "string" } }, "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_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_core_v1_Volume": { "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource", "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource", "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "cephfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource", "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource", "description": "ConfigMap represents a configMap that should populate this volume" }, "csi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource", "description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)." }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource", "description": "DownwardAPI represents downward API about the pod that should populate this volume" }, "emptyDir": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource", "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" }, "fc": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource", "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource", "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource", "description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource", "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "gitRepo": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource", "description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container." }, "glusterfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource", "description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource", "description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md" }, "name": { "description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "nfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource", "description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "persistentVolumeClaim": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource", "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" }, "photonPersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource", "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource", "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "projected": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource", "description": "Items for all in one resources secrets, configmaps, and downward API" }, "quobyte": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource", "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource", "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret" }, "storageos": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource", "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes." }, "vsphereVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": { "description": "volumeDevice describes a mapping of a raw block device within a container.", "properties": { "devicePath": { "description": "devicePath is the path inside of the container that the device will be mapped to.", "type": "string" }, "name": { "description": "name must match the name of a persistentVolumeClaim in the pod", "type": "string" } }, "required": [ "name", "devicePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": { "description": "VolumeMount describes a mounting of a Volume within a container.", "properties": { "mountPath": { "description": "Path within the container at which the volume should be mounted. Must not contain ':'.", "type": "string" }, "mountPropagation": { "description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.", "type": "string" }, "name": { "description": "This must match the Name of a Volume.", "type": "string" }, "readOnly": { "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", "type": "boolean" }, "subPath": { "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", "type": "string" }, "subPathExpr": { "description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.", "type": "string" } }, "required": [ "name", "mountPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": { "description": "Projection that may be projected along with other supported volume types", "properties": { "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection", "description": "information about the configMap data to project" }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection", "description": "information about the downwardAPI data to project" }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection", "description": "information about the secret data to project" }, "serviceAccountToken": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection", "description": "information about the serviceAccountToken data to project" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": { "description": "Represents a vSphere volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "storagePolicyID": { "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": "string" }, "storagePolicyName": { "description": "Storage Policy Based Management (SPBM) profile name.", "type": "string" }, "volumePath": { "description": "Path that identifies vSphere volume vmdk", "type": "string" } }, "required": [ "volumePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": { "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", "properties": { "podAffinityTerm": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm", "description": "Required. A pod affinity term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "podAffinityTerm" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": { "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.", "properties": { "gmsaCredentialSpec": { "description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.", "type": "string" }, "gmsaCredentialSpecName": { "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", "type": "string" }, "runAsUserName": { "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "A StatefulSetSpec is the specification of a StatefulSet.", "properties": { "podManagementPolicy": { "description": "podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.", "type": [ "string", "null" ] }, "replicas": { "description": "replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.", "format": "int32", "type": [ "integer", "null" ] }, "revisionHistoryLimit": { "description": "revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.", "format": "int32", "type": [ "integer", "null" ] }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" }, "serviceName": { "description": "serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller.", "type": [ "string", "null" ] }, "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. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet." }, "updateStrategy": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_StatefulSetUpdateStrategy", "description": "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template." }, "volumeClaimTemplates": { "description": "volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaim" }, "type": [ "array", "null" ] } }, "required": [ "selector", "template", "serviceName" ], "type": "object" }
kb_1011_Normalized
{ "definitions": { "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_networking_v1beta1_IngressClassSpec": { "description": "IngressClassSpec provides information about the class of an Ingress.", "properties": { "controller": { "description": "Controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.", "type": "string" }, "parameters": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference", "description": "Parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": [ "string", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "IngressClass" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressClassSpec", "description": "Spec is the desired state of the IngressClass. 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": "networking.k8s.io", "kind": "IngressClass", "version": "v1beta1" } ] }
kb_443_Normalized
{ "properties": { "customer_name": { "description": "The name of the customer", "type": "string" }, "items": { "description": "Items to include in the invoice", "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_name", "items" ], "type": "object" }
create_invoice_878b1147
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "windowSize": { "type": "object", "properties": { "width": { "type": "integer", "default": 1024 }, "height": { "type": "integer", "default": 768 } } }, "shotSize": { "type": "object", "properties": { "width": { "type": [ "integer", "string" ], "default": 1024 }, "height": { "type": [ "integer", "string" ], "default": 768 } } }, "shotOffset": { "type": "object", "properties": { "left": { "type": "integer", "default": 0 }, "right": { "type": "integer", "default": 0 }, "top": { "type": "integer", "default": 0 }, "bottom": { "type": "integer", "default": 0 } } }, "phantomConfig": { "type": "object", "properties": { "ignore-ssl-errors": { "type": "string", "default": "false" } } }, "cookies": { "type": "array", "items": {} }, "customHeaders": { "type": [ "null", "object" ], "default": null }, "defaultWhiteBackground": { "type": "boolean", "default": false }, "customCSS": { "type": "string", "default": "" }, "quality": { "type": "integer", "default": 75 }, "streamType": { "type": "string", "default": "png" }, "renderDelay": { "type": "integer", "default": 0 }, "timeout": { "type": "integer", "default": 0 }, "takeShotOnCallback": { "type": "boolean", "default": false }, "errorIfStatusIsNot200": { "type": "boolean", "default": false }, "errorIfJSException": { "type": "boolean", "default": false }, "captureSelector": { "type": [ "boolean", "string" ], "default": false } }, "oneOf": [ { "properties": { "siteType": { "type": "string", "enum": [ "url" ] }, "url": { "type": "string", "minLength": 1 } }, "required": [ "siteType", "url" ] }, { "properties": { "siteType": { "type": "string", "enum": [ "html" ] }, "html": { "type": "string", "minLength": 1 } }, "required": [ "siteType", "html" ] } ] }
o227
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "ClearChargingProfileRequest", "type": "object", "properties": { "id": { "type": "integer" }, "connectorId": { "type": "integer" }, "chargingProfilePurpose": { "type": "string", "enum": [ "ChargePointMaxProfile", "TxDefaultProfile", "TxProfile" ] }, "stackLevel": { "type": "integer" } }, "additionalProperties": false }
o43976
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "_elements" ], "properties": { "_attributes": { "type": "object" }, "_elements": { "oneof": [ { "type": "array", "items": { "type": "object", "required": [ "name", "version", "release" ], "properties": { "name": { "type": "string", "minLength": 1 }, "version": { "type": "string", "minLength": 1 }, "release": { "type": "string", "minLength": 1 } } } }, { "type": "array", "items": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "minLength": 1 } } } } ] } } }
o25741
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Schema for image sprite generation files", "id": "https://json.schemastore.org/sprite.json", "properties": { "customstyles": { "description": "Define custom CSS declarations to inject into the generated stylesheet.", "type": "object", "additionalProperties": { "description": "A custom CSS declaration (property: value).", "type": ["string", "number"] } }, "dpi": { "description": "The image resolution of the generated image sprite", "type": "integer", "default": 96 }, "images": { "description": "An array of file paths relative to this document. The name must be unique.", "type": "object", "additionalProperties": { "description": "A source image for the sprite.", "type": "string" } }, "optimize": { "description": "Optimizes the generated image either lossy or lossless. Requires the \"Image Optimizer\" extension for Visual Studio", "enum": ["lossless", "lossy", "none"], "default": "lossless" }, "orientation": { "description": "The orientation of the individual images inside the generated sprite.", "enum": ["horizontal", "vertical"], "default": "vertical" }, "output": { "description": "Output format of the generated image sprite.", "enum": ["png", "jpg", "gif"], "default": "png" }, "padding": { "description": "The padding arround each individual image in the sprite. The value is in pixels.", "type": "integer", "default": 10 }, "pathprefix": { "description": "Add any path root in front of the generated. Example: \"/images/\"", "type": "string", "default": "" }, "stylesheet": { "description": "Define stylesheets (css, less, sass) to be generated as part of the sprite generation process.", "enum": ["none", "css", "less", "scss", "styl"], "default": "none" } }, "required": ["images"], "type": "object" }
sprite