json_schema
stringlengths 43
1.28M
| unique_id
stringlengths 2
41
|
---|---|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Example Object",
"description": "An Object",
"type": "object",
"format": "grid",
"properties": {
"link": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"url"
]
}
}
} | o12644 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [],
"type": "object"
},
"shape": {
"description": "The shape for which to calculate the area",
"enum": [
"circle",
"rectangle",
"triangle"
],
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_588529bb |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius",
"length",
"width",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The shape for which area needs to be calculated (e.g. circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_0cdca9b5 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"periodic_booking": {
"type": "boolean"
},
"is_available": {
"type": "boolean"
},
"min_delay": {
"description": "In seconds. The resource must be booked at least min_delay in advance",
"type": "integer",
"minimum": 0
},
"max_delay": {
"description": "In seconds. The resource can be booked at most max_delay in advance",
"type": "integer",
"minimum": 0
},
"color": {
"type": "string"
},
"validation": {
"type": "boolean"
}
},
"required": [
"name",
"periodic_booking",
"is_available"
],
"additionalProperties": false
} | o36594 |
{
"properties": {
"dimensions": {
"properties": {
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width",
"radius"
],
"type": "object"
},
"shape": {
"description": "The type of shape (e.g., square, circle, rectangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_69f393e6 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BRID",
"description": "An Object with metadata behind a brid",
"type": "object",
"properties": {
"brid": {
"description": "The brid",
"type": "string"
},
"domain": {
"description": "The domain of the object",
"type": "string"
},
"combined": {
"description": "The combined proverb",
"type": "string"
},
"instanzen": {
"description": "List of instances in different Systems",
"type": "array",
"items": {
"title": "Instance",
"description": "Instance Information for one primary system",
"type": "object",
"properties": {
"system": {
"description": "Name of primary System",
"type": "string"
},
"id": {
"description": "Internal ID in primary system",
"type": "string"
},
"description": {
"description": "Some Annotation for the system",
"type": "string"
}
}
}
},
"anmerkung": {
"description": "Additional information",
"type": "string"
}
},
"required": [
"brid",
"domain",
"object_type",
"use_type",
"uuid",
"title",
"ansprechpartner",
"produktionsnummer",
"kostenstelle",
"kostentraeger",
"ressort",
"organisationseinheit",
"instanzen"
]
} | o17121 |
{
"properties": {
"config": {
"type": "object"
},
"dependencies": {
"properties": {
"endpoint": {
"items": {
"description": "Endpoints the service depends on",
"examples": [
"bar"
],
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"name": {
"description": "Name of the service",
"examples": [
"example-gateway"
],
"type": "string"
},
"type": {
"description": "Type of the service, currently the only valid type is gateway",
"examples": [
"gateway"
],
"type": "string"
}
},
"required": [
"name",
"type",
"config",
"dependencies"
],
"type": "object"
} | o83294 |
{
"properties": {
"extends": {
"oneOf": [
{
"minLength": 1,
"type": "string"
},
{
"items": {
"minLength": 1,
"type": "string"
},
"minItems": 1,
"type": "array"
}
]
},
"schematics": {
"additionalProperties": {
"properties": {
"aliases": {
"items": {
"type": "string"
},
"type": "array"
},
"description": {
"description": "A description for the schematic",
"type": "string"
},
"extends": {
"description": "An schematic override. It can be a local schematic or from another collection (in the format 'collection:schematic')",
"type": "string"
},
"factory": {
"description": "A folder or file path to the schematic factory",
"type": "string"
},
"hidden": {
"default": false,
"description": "Whether or not this schematic should be listed by the tooling. This does not prevent the tooling to run this schematic, just removes its name from listSchematicNames().",
"type": "boolean"
},
"private": {
"default": false,
"description": "Whether or not this schematic can be called from an external schematic, or a tool. This implies hidden: true.",
"type": "boolean"
},
"schema": {
"description": "Location of the schema.json file of the schematic",
"type": "string"
}
},
"required": [
"factory",
"description"
],
"type": "object"
},
"description": "A map of schematic names to schematic details",
"type": "object"
},
"version": {
"type": "string"
}
},
"required": [
"schematics"
],
"title": "Collection Schema for validating a 'collection.json'.",
"type": "object"
} | o83864 |
{
"oneOf": [
{
"required": [
"rectangle"
]
},
{
"required": [
"circle"
]
}
],
"properties": {
"circle": {
"properties": {
"radius": {
"description": "The radius of the circle",
"type": "number"
}
},
"type": "object"
},
"rectangle": {
"properties": {
"height": {
"description": "The height of the rectangle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The shape to calculate the area for",
"enum": [
"rectangle",
"circle"
],
"type": "string"
}
},
"required": [
"shape"
],
"type": "object"
} | calculate_area_57a2de86 |
{
"id": "http://schlothauer.de/schemas/shared/app_module.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "application specific module",
"type": "object",
"properties": {
"name": {
"description": "Name of the module",
"type": "string",
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$",
"__unique": true,
"__visKey": true
},
"description": {
"description": "some more words to explain",
"type": "string"
},
"guid": {
"description": "global identifier",
"type": "string",
"format": "uuid"
},
"app_id": {
"description": "Which application owns that module",
"type": "string",
"format": "uuid",
"__ref": "./application.json"
},
"active": {
"description": "is this entry still active",
"type": "boolean"
}
},
"required": [
"name",
"gid"
],
"version": 1
} | o73983 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"side_length": {
"description": "The length of a side of the square",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. circle, square, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_ee70cfc0 |
{
"additionalProperties": false,
"description": "Limits",
"properties": {
"limits": {
"description": "Limits",
"properties": {
"absolute": {
"properties": {
"maxDomainRecords": {
"type": "integer"
},
"maxDomains": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
}
},
"title": "limits"
} | o81841 |
{
"properties": {
"date_range": {
"properties": {
"end_date": {
"description": "The end date of the news articles",
"format": "date",
"type": "string"
},
"start_date": {
"description": "The start date of the news articles",
"format": "date",
"type": "string"
}
},
"required": [
"start_date",
"end_date"
],
"type": "object"
},
"language": {
"description": "The language of the news articles",
"type": "string"
},
"query": {
"description": "The search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
} | search_news_f6579a50 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceColumnDefinition": {
"description": "CustomResourceColumnDefinition specifies a column for server side printing.",
"properties": {
"JSONPath": {
"description": "JSONPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.",
"type": "string"
},
"description": {
"description": "description is a human readable description of this column.",
"type": "string"
},
"format": {
"description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.",
"type": "string"
},
"name": {
"description": "name is a human readable name for the column.",
"type": "string"
},
"priority": {
"_format": "int32",
"description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.",
"type": "integer"
},
"type": {
"description": "type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.",
"type": "string"
}
},
"required": [
"name",
"type",
"JSONPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceConversion": {
"description": "CustomResourceConversion describes how to convert different versions of a CR.",
"properties": {
"conversionReviewVersions": {
"description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. Defaults to `[\"v1beta1\"]`.",
"items": {
"type": "string"
},
"type": "array"
},
"strategy": {
"description": "strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information\n is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhookClientConfig to be set.",
"type": "string"
},
"webhookClientConfig": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_WebhookClientConfig",
"description": "webhookClientConfig is the instructions for how to call the webhook if strategy is `Webhook`. Required when `strategy` is set to `Webhook`."
}
},
"required": [
"strategy"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinition": {
"description": "CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>. Deprecated in v1.16, planned for removal in v1.19. Use apiextensions.k8s.io/v1 CustomResourceDefinition instead.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": "string"
},
"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": [
"CustomResourceDefinition"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionSpec",
"description": "spec describes how the user wants the resources to appear"
},
"status": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionStatus",
"description": "status indicates the actual state of the CustomResourceDefinition"
}
},
"required": [
"spec"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "apiextensions.k8s.io",
"kind": "CustomResourceDefinition",
"version": "v1beta1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionCondition": {
"description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.",
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "lastTransitionTime last time the condition transitioned from one status to another."
},
"message": {
"description": "message is a human-readable message indicating details about last transition.",
"type": "string"
},
"reason": {
"description": "reason is a unique, one-word, CamelCase reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "status is the status of the condition. Can be True, False, Unknown.",
"type": "string"
},
"type": {
"description": "type is the type of the condition. Types include Established, NamesAccepted and Terminating.",
"type": "string"
}
},
"required": [
"type",
"status"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionNames": {
"description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition",
"properties": {
"categories": {
"description": "categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`.",
"items": {
"type": "string"
},
"type": "array"
},
"kind": {
"description": "kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls.",
"type": "string"
},
"listKind": {
"description": "listKind is the serialized kind of the list for this resource. Defaults to \"`kind`List\".",
"type": "string"
},
"plural": {
"description": "plural is the plural name of the resource to serve. The custom resources are served under `/apis/<group>/<version>/.../<plural>`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`). Must be all lowercase.",
"type": "string"
},
"shortNames": {
"description": "shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get <shortname>`. It must be all lowercase.",
"items": {
"type": "string"
},
"type": "array"
},
"singular": {
"description": "singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.",
"type": "string"
}
},
"required": [
"plural",
"kind"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionSpec": {
"description": "CustomResourceDefinitionSpec describes how a user wants their resource to appear",
"properties": {
"additionalPrinterColumns": {
"description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If present, this field configures columns for all versions. Top-level and per-version columns are mutually exclusive. If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceColumnDefinition"
},
"type": "array"
},
"conversion": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceConversion",
"description": "conversion defines conversion settings for the CRD."
},
"group": {
"description": "group is the API group of the defined custom resource. The custom resources are served under `/apis/<group>/...`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`).",
"type": "string"
},
"names": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionNames",
"description": "names specify the resource and kind names for the custom resource."
},
"preserveUnknownFields": {
"description": "preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. If false, schemas must be defined for all versions. Defaults to true in v1beta for backwards compatibility. Deprecated: will be required to be false in v1. Preservation of unknown fields can be specified in the validation schema using the `x-kubernetes-preserve-unknown-fields: true` extension. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details.",
"type": "boolean"
},
"scope": {
"description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`. Default is `Namespaced`.",
"type": "string"
},
"subresources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresources",
"description": "subresources specify what subresources the defined custom resource has. If present, this field configures subresources for all versions. Top-level and per-version subresources are mutually exclusive."
},
"validation": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceValidation",
"description": "validation describes the schema used for validation and pruning of the custom resource. If present, this validation schema is used to validate all versions. Top-level and per-version schemas are mutually exclusive."
},
"version": {
"description": "version is the API version of the defined custom resource. The custom resources are served under `/apis/<group>/<version>/...`. Must match the name of the first item in the `versions` list if `version` and `versions` are both specified. Optional if `versions` is specified. Deprecated: use `versions` instead.",
"type": "string"
},
"versions": {
"description": "versions is the list of all API versions of the defined custom resource. Optional if `version` is specified. The name of the first item in the `versions` list must match the `version` field if `version` and `versions` are both specified. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionVersion"
},
"type": "array"
}
},
"required": [
"group",
"names",
"scope"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionStatus": {
"description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition",
"properties": {
"acceptedNames": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionNames",
"description": "acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec."
},
"conditions": {
"description": "conditions indicate state for particular aspects of a CustomResourceDefinition",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionCondition"
},
"type": "array"
},
"storedVersions": {
"description": "storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionVersion": {
"description": "CustomResourceDefinitionVersion describes a version for CRD.",
"properties": {
"additionalPrinterColumns": {
"description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead). If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceColumnDefinition"
},
"type": "array"
},
"name": {
"description": "name is the version name, e.g. \u201cv1\u201d, \u201cv2beta1\u201d, etc. The custom resources are served under this version at `/apis/<group>/<version>/...` if `served` is true.",
"type": "string"
},
"schema": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceValidation",
"description": "schema describes the schema used for validation and pruning of this version of the custom resource. Top-level and per-version schemas are mutually exclusive. Per-version schemas must not all be set to identical values (top-level validation schema should be used instead)."
},
"served": {
"description": "served is a flag enabling/disabling this version from being served via REST APIs",
"type": "boolean"
},
"storage": {
"description": "storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.",
"type": "boolean"
},
"subresources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresources",
"description": "subresources specify what subresources this version of the defined custom resource have. Top-level and per-version subresources are mutually exclusive. Per-version subresources must not all be set to identical values (top-level subresources should be used instead)."
}
},
"required": [
"name",
"served",
"storage"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceScale": {
"description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.",
"properties": {
"labelSelectorPath": {
"description": "labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string.",
"type": "string"
},
"specReplicasPath": {
"description": "specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET.",
"type": "string"
},
"statusReplicasPath": {
"description": "statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0.",
"type": "string"
}
},
"required": [
"specReplicasPath",
"statusReplicasPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceStatus": {
"description": "CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresources": {
"description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.",
"properties": {
"scale": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceScale",
"description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object."
},
"status": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceStatus",
"description": "status indicates the custom resource should serve a `/status` subresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object. 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceValidation": {
"description": "CustomResourceValidation is a list of validation methods for CustomResources.",
"properties": {
"openAPIV3Schema": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps",
"description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ExternalDocumentation": {
"description": "ExternalDocumentation allows referencing an external resource for extended documentation.",
"properties": {
"description": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON": {
"description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil."
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps": {
"description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).",
"properties": {
"$ref": {
"type": "string"
},
"$schema": {
"type": "string"
},
"additionalItems": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool"
},
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool"
},
"allOf": {
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps"
},
"type": "array"
},
"anyOf": {
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps"
},
"type": "array"
},
"default": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON",
"description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. CustomResourceDefinitions with defaults must be created using the v1 (or newer) CustomResourceDefinition API."
},
"definitions": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps"
},
"type": "object"
},
"dependencies": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrStringArray"
},
"type": "object"
},
"description": {
"type": "string"
},
"enum": {
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON"
},
"type": "array"
},
"example": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON"
},
"exclusiveMaximum": {
"type": "boolean"
},
"exclusiveMinimum": {
"type": "boolean"
},
"externalDocs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ExternalDocumentation"
},
"format": {
"description": "format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like \"0321751043\" or \"978-0321751041\" - isbn10: an ISBN10 number string like \"0321751043\" - isbn13: an ISBN13 number string like \"978-0321751041\" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like \"2014-12-15T19:30:20.000Z\" as defined by date-time in RFC3339.",
"type": "string"
},
"id": {
"type": "string"
},
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrArray"
},
"maxItems": {
"_format": "int64",
"type": "integer"
},
"maxLength": {
"_format": "int64",
"type": "integer"
},
"maxProperties": {
"_format": "int64",
"type": "integer"
},
"maximum": {
"format": "double",
"type": "number"
},
"minItems": {
"_format": "int64",
"type": "integer"
},
"minLength": {
"_format": "int64",
"type": "integer"
},
"minProperties": {
"_format": "int64",
"type": "integer"
},
"minimum": {
"format": "double",
"type": "number"
},
"multipleOf": {
"format": "double",
"type": "number"
},
"not": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps"
},
"nullable": {
"type": "boolean"
},
"oneOf": {
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps"
},
"type": "array"
},
"pattern": {
"type": "string"
},
"patternProperties": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps"
},
"type": "object"
},
"properties": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps"
},
"type": "object"
},
"required": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
},
"uniqueItems": {
"type": "boolean"
},
"x-kubernetes-embedded-resource": {
"description": "x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).",
"type": "boolean"
},
"x-kubernetes-int-or-string": {
"description": "x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:\n\n1) anyOf:\n - type: integer\n - type: string\n2) allOf:\n - anyOf:\n - type: integer\n - type: string\n - ... zero or more",
"type": "boolean"
},
"x-kubernetes-list-map-keys": {
"description": "x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map.\n\nThis tag MUST only be used on lists that have the \"x-kubernetes-list-type\" extension set to \"map\". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported).\n\nThe properties specified must either be required or have a default value, to ensure those properties are present for all list items.",
"items": {
"type": "string"
},
"type": "array"
},
"x-kubernetes-list-type": {
"description": "x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:\n\n1) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic lists will be entirely replaced when updated. This extension\n may be used on any type of list (struct, scalar, ...).\n2) `set`:\n Sets are lists that must not have multiple items with the same value. Each\n value must be a scalar, an object with x-kubernetes-map-type `atomic` or an\n array with x-kubernetes-list-type `atomic`.\n3) `map`:\n These lists are like maps in that their elements have a non-index key\n used to identify them. Order is preserved upon merge. The map tag\n must only be used on a list with elements of type object.\nDefaults to atomic for arrays.",
"type": "string"
},
"x-kubernetes-map-type": {
"description": "x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:\n\n1) `granular`:\n These maps are actual maps (key-value pairs) and each fields are independent\n from each other (they can each be manipulated by separate actors). This is\n the default behaviour for all maps.\n2) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic maps will be entirely replaced when updated.",
"type": "string"
},
"x-kubernetes-preserve-unknown-fields": {
"description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrArray": {
"description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes."
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool": {
"description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property."
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrStringArray": {
"description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array."
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ServiceReference": {
"description": "ServiceReference holds a reference to Service.legacy.k8s.io",
"properties": {
"name": {
"description": "name is the name of the service. Required",
"type": "string"
},
"namespace": {
"description": "namespace is the namespace of the service. Required",
"type": "string"
},
"path": {
"description": "path is an optional URL path at which the webhook will be contacted.",
"type": "string"
},
"port": {
"_format": "int32",
"description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.",
"type": "integer"
}
},
"required": [
"namespace",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_WebhookClientConfig": {
"description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.",
"properties": {
"caBundle": {
"_format": "byte",
"description": "caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.",
"type": "string"
},
"service": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ServiceReference",
"description": "service is a reference to the service for this webhook. Either service or url must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`."
},
"url": {
"description": "url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": {
"description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
"properties": {
"continue": {
"description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
"type": "string"
},
"remainingItemCount": {
"_format": "int64",
"description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
"type": "integer"
},
"resourceVersion": {
"description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": [
"string",
"null"
]
},
"items": {
"description": "items list individual CustomResourceDefinition objects",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinition"
},
"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": [
"CustomResourceDefinitionList"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta"
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "apiextensions.k8s.io",
"kind": "CustomResourceDefinitionList",
"version": "v1beta1"
}
]
} | kb_198_Normalized |
{
"definitions": {
"api_key": {
"default": "n.a.",
"description": "Not available in Version 1.0.",
"title": "API Key",
"type": "string"
},
"blacklist": {
"default": "[]",
"description": "List of codes not allowed in the output.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Blacklist",
"type": "array"
},
"client_key": {
"default": "n.a.",
"description": "Not available in Version 1.0.",
"title": "Client Key",
"type": "string"
},
"code": {
"description": "Object's code.",
"title": "Code",
"type": "string"
},
"coding_system": {
"default": "",
"description": "Alternate coding system applied to a dimension",
"title": "Coding System",
"type": "string"
},
"datasource": {
"default": "production",
"description": "Name code of the datasource.",
"enum": [
"production",
"test"
],
"title": "Datasource",
"type": "string"
},
"description": {
"description": "Object's description.",
"title": "Description",
"type": "string"
},
"dimension": {
"description": "Object representing a single dimension of a FAOSTAT dataset.",
"properties": {
"description": {
"$ref": "#/definitions/description"
},
"id": {
"$ref": "#/definitions/code"
},
"label": {
"$ref": "#/definitions/label"
},
"ord": {
"$ref": "#/definitions/ord"
},
"parameter": {
"description": "Name of the procedure's parameter mapped to this dimenison.",
"title": "Procedure Parameter",
"type": "string"
},
"service": {
"description": "Relative link to the service capable to provide codes for the current dimension.",
"title": "Service",
"type": "string"
},
"subdimensions": {
"description": "Codelists composing the current one.",
"items": {
"$ref": "#/definitions/dimension",
"title": "Subdimension"
},
"title": "Subdimensions",
"type": "array"
}
},
"title": "Dimension",
"type": "object"
},
"faostat_code": {
"description": "Code used in the FAOSTAT codelists.",
"properties": {
"children": {
"description": "Hierarchical codes.",
"items": {
"$ref": "#/definitions/faostat_code"
},
"title": "Children",
"type": "array"
},
"code": {
"$ref": "#/definitions/code"
},
"description": {
"$ref": "#/definitions/description"
},
"label": {
"$ref": "#/definitions/label"
},
"ord": {
"$ref": "#/definitions/ord"
}
},
"title": "FAOSTAT Code",
"type": "object"
},
"label": {
"description": "Object's label.",
"title": "Label",
"type": "string"
},
"lang": {
"default": "en",
"description": "Language of the data retrieved.",
"enum": [
"en",
"fr",
"es"
],
"title": "Language",
"type": "string"
},
"metadata": {
"description": "Meta information about the request.",
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"parameters": {
"description": "Procedure parameters.",
"items": {
"description": "Procedure parameter.",
"title": "Parameter",
"type": "string"
},
"title": "Parameters",
"type": "array"
}
},
"title": "Metadata",
"type": "object"
},
"ord": {
"description": "Object's order.",
"title": "Ord",
"type": "integer"
},
"output_type": {
"default": "objects",
"description": "Format of the output.",
"enum": [
"objects",
"arrays"
],
"title": "Output Type",
"type": "string"
},
"pivot": {
"default": false,
"description": "Used to retrieve the pivot configuration on the requested data",
"title": "Pivot",
"type": "boolean"
},
"report_code": {
"default": "download",
"description": "Report Code",
"title": "Report Code",
"type": "string"
},
"section": {
"default": "download",
"description": "Name code of the FAOSTAT website section.",
"enum": [
"download",
"browse",
"compare"
],
"title": "Section",
"type": "string"
},
"whitelist": {
"default": "[]",
"description": "List of codes allowed in the output.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Whitelist",
"type": "array"
}
},
"description": "",
"links": [
{
"description": "FAOSTAT Rankings.",
"href": "{lang}/rankings/",
"method": "POST",
"rel": "rankings",
"schema": {
"properties": {
"List1Codes": {
"description": "List of codes for dimension 1.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 1 codes",
"type": "array"
},
"List2Codes": {
"description": "List of codes for dimension 2.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 2 codes",
"type": "array"
},
"List3Codes": {
"description": "List of codes for dimension 3.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 3 codes",
"type": "array"
},
"List4Codes": {
"description": "List of codes for dimension 4.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 4 codes",
"type": "array"
},
"List5Codes": {
"description": "List of codes for dimension 5.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 5 codes",
"type": "array"
},
"List6Codes": {
"description": "List of codes for dimension 6.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 6 codes",
"type": "array"
},
"List7Codes": {
"description": "List of codes for dimension 7.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 7 codes",
"type": "array"
},
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"domain_codes": {
"description": "FAOSTAT domain codes.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Domain code",
"type": "array"
},
"filter_list": {
"description": "Index of the dimension to be used as filter.",
"title": "Filter List",
"type": "integer"
},
"lang": {
"$ref": "#/definitions/lang"
},
"limit": {
"default": "5",
"description": "Number of results.",
"title": "Results",
"type": "string"
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"rank_type": {
"default": "ASC",
"description": "Type of ranking.",
"enum": [
"ASC",
"DESC"
],
"title": "Rank Type",
"type": "string"
}
}
},
"targetSchema": {
"description": "Output of 'abbreviations' service.",
"name": "Abbreviations Output",
"properties": {
"data": {
"description": "FAOSTAT abbreviations.",
"properties": {
"code": {
"$ref": "#/definitions/code"
},
"label": {
"$ref": "#/definitions/label"
}
},
"title": "Abbreviations",
"type": "object"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Rankings"
},
{
"description": "Alternative service to fetch FAOSTAT data through the use of a configuration bean.",
"href": "{lang}/data/",
"method": "POST",
"rel": "data",
"schema": {
"properties": {
"data_bean": {
"description": "Configuration bean.",
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"decimal_places": {
"default": 2,
"description": "Number of decimal places for the values of the output.",
"title": "Decimal Places",
"type": "integer"
},
"domain_codes": {
"description": "FAOSTAT domain code.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Domain code",
"type": "array"
},
"filters": {
"description": "Map containing the query filters.",
"patternProperties": {
".{1,}": {
"description": "Definition of a filter for the data.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Filter",
"type": "array"
}
},
"title": "Query filters",
"type": "object"
},
"group_by": {
"default": "",
"description": "Comma separated string of the dimensions used to group the result of the query.",
"title": "Group By",
"type": "string"
},
"limit": {
"default": -1,
"description": "Maximium number of rows returned by the query.",
"title": "Limit",
"type": "integer"
},
"null_values": {
"default": false,
"description": "Flag to determine whether null values will be shown or not.",
"title": "Null Values",
"type": "boolean"
},
"operator": {
"default": "",
"description": "Function to aggregate the result of the query.",
"enum": [
"",
"SUM",
"AVG"
],
"title": "Operator",
"type": "string"
},
"order_by": {
"default": "",
"description": "Comma separated string of the dimensions used to order the result of the query.",
"title": "Order By",
"type": "string"
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"page_number": {
"default": 1,
"description": "Number of the page to be retrieved.",
"title": "Page Number",
"type": "integer"
},
"page_size": {
"default": 100,
"description": "Size of the page.",
"title": "Page Size",
"type": "integer"
},
"pivot": {
"$ref": "#/definitions/pivot"
},
"show_codes": {
"default": 1,
"description": "Flag that determines whether codes are shown or not.",
"title": "Show Codes",
"type": "integer"
},
"show_flags": {
"default": 1,
"description": "Flag that determines whether flags are shown or not.",
"title": "Show Flags",
"type": "integer"
},
"show_unit": {
"default": 1,
"description": "Flag that determines whether units are shown or not.",
"title": "Show Units",
"type": "integer"
}
},
"title": "Data Bean",
"type": "object"
},
"lang": {
"$ref": "#/definitions/lang"
}
}
},
"targetSchema": {
"description": "Output of 'abbreviations' service.",
"name": "Abbreviations Output",
"properties": {
"data": {
"description": "FAOSTAT abbreviations.",
"properties": {
"code": {
"$ref": "#/definitions/code"
},
"label": {
"$ref": "#/definitions/label"
}
},
"title": "Abbreviations",
"type": "object"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Data"
},
{
"cache": false,
"description": "FAOSTAT Data.",
"href": "{lang}/data/bean/",
"method": "POST",
"rel": "databean",
"schema": {
"properties": {
"List1AltCodes": {
"$ref": "#/definitions/coding_system",
"description": "Alternative coding system to be used for dimension 1.",
"title": "Alternative coding system",
"type": "string"
},
"List1Codes": {
"description": "List of codes for dimension 1.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 1 codes",
"type": "array"
},
"List2AltCodes": {
"$ref": "#/definitions/coding_system",
"description": "Alternative coding system to be used for dimension 2.",
"title": "Alternative coding system",
"type": "string"
},
"List2Codes": {
"description": "List of codes for dimension 2.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 2 codes",
"type": "array"
},
"List3AltCodes": {
"$ref": "#/definitions/coding_system",
"description": "Alternative coding system to be used for dimension 3.",
"title": "Alternative coding system",
"type": "string"
},
"List3Codes": {
"description": "List of codes for dimension 3.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 3 codes",
"type": "array"
},
"List4AltCodes": {
"$ref": "#/definitions/coding_system",
"description": "Alternative coding system to be used for dimension 4.",
"title": "Alternative coding system",
"type": "string"
},
"List4Codes": {
"description": "List of codes for dimension 4.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 4 codes",
"type": "array"
},
"List5AltCodes": {
"$ref": "#/definitions/coding_system",
"description": "Alternative coding system to be used for dimension 5.",
"title": "Alternative coding system",
"type": "string"
},
"List5Codes": {
"description": "List of codes for dimension 5.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 5 codes",
"type": "array"
},
"List6AltCodes": {
"$ref": "#/definitions/coding_system",
"description": "Alternative coding system to be used for dimension 6.",
"title": "Alternative coding system",
"type": "string"
},
"List6Codes": {
"description": "List of codes for dimension 6.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 6 codes",
"type": "array"
},
"List7AltCodes": {
"$ref": "#/definitions/coding_system",
"description": "Alternative coding system to be used for dimension 7.",
"title": "Alternative coding system",
"type": "string"
},
"List7Codes": {
"description": "List of codes for dimension 7.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 7 codes",
"type": "array"
},
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"decimal_places": {
"default": 2,
"description": "Number of decimal places for the values of the output.",
"title": "Decimal Places",
"type": "integer"
},
"domain_codes": {
"description": "FAOSTAT domain codes.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Domain codes",
"type": "array"
},
"group_by": {
"default": "",
"description": "Comma separated string of the dimensions used to group the result of the query.",
"title": "Group By",
"type": "string"
},
"lang": {
"$ref": "#/definitions/lang"
},
"limit": {
"default": -1,
"description": "Maximium number of rows returned by the query.",
"title": "Limit",
"type": "integer"
},
"null_values": {
"default": false,
"description": "Flag to determine whether null values will be shown or not.",
"title": "Null Values",
"type": "boolean"
},
"operator": {
"default": "",
"description": "Function to aggregate the result of the query.",
"enum": [
"",
"SUM",
"AVG"
],
"title": "Operator",
"type": "string"
},
"order_by": {
"default": "",
"description": "Comma separated string of the dimensions used to order the result of the query.",
"title": "Order By",
"type": "string"
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"page_number": {
"default": 1,
"description": "Number of the page to be retrieved.",
"title": "Page Number",
"type": "integer"
},
"page_size": {
"default": 100,
"description": "Size of the page.",
"title": "Page Size",
"type": "integer"
},
"pivot": {
"$ref": "#/definitions/pivot"
},
"show_codes": {
"default": 1,
"description": "Flag that determines whether codes are shown or not.",
"title": "Show Codes",
"type": "integer"
},
"show_flags": {
"default": 1,
"description": "Flag that determines whether flags are shown or not.",
"title": "Show Flags",
"type": "integer"
},
"show_unit": {
"default": 1,
"description": "Flag that determines whether units are shown or not.",
"title": "Show Units",
"type": "integer"
}
}
},
"targetSchema": {
"description": "Output of 'abbreviations' service.",
"name": "Abbreviations Output",
"properties": {
"data": {
"description": "FAOSTAT abbreviations.",
"properties": {
"code": {
"$ref": "#/definitions/code"
},
"label": {
"$ref": "#/definitions/label"
}
},
"title": "Abbreviations",
"type": "object"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Data direct"
},
{
"cache": false,
"description": "FAOSTAT Data.",
"href": "{lang}/data/{domain}/",
"method": "GET",
"rel": "data_get",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"decimal_places": {
"default": 2,
"description": "Number of decimal places for the values of the output.",
"title": "Decimal Places",
"type": "integer"
},
"domain_codes": {
"description": "FAOSTAT domain codes.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Domain codes",
"type": "array"
},
"group_by": {
"default": "",
"description": "Comma separated string of the dimensions used to group the result of the query.",
"title": "Group By",
"type": "string"
},
"lang": {
"$ref": "#/definitions/lang"
},
"limit": {
"default": -1,
"description": "Maximium number of rows returned by the query.",
"title": "Limit",
"type": "integer"
},
"null_values": {
"default": false,
"description": "Flag to determine whether null values will be shown or not.",
"title": "Null Values",
"type": "boolean"
},
"operator": {
"default": "",
"description": "Function to aggregate the result of the query.",
"enum": [
"",
"SUM",
"AVG"
],
"title": "Operator",
"type": "string"
},
"order_by": {
"default": "",
"description": "Comma separated string of the dimensions used to order the result of the query.",
"title": "Order By",
"type": "string"
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"page_number": {
"default": 1,
"description": "Number of the page to be retrieved.",
"title": "Page Number",
"type": "integer"
},
"page_size": {
"default": 100,
"description": "Size of the page.",
"title": "Page Size",
"type": "integer"
},
"pivot": {
"$ref": "#/definitions/pivot"
},
"show_codes": {
"default": 1,
"description": "Flag that determines whether codes are shown or not.",
"title": "Show Codes",
"type": "integer"
},
"show_flags": {
"default": 1,
"description": "Flag that determines whether flags are shown or not.",
"title": "Show Flags",
"type": "integer"
},
"show_unit": {
"default": 1,
"description": "Flag that determines whether units are shown or not.",
"title": "Show Units",
"type": "integer"
}
}
},
"title": "Data direct"
},
{
"description": "FAOSTAT Report Headers.",
"href": "{lang}/report/headers/",
"method": "POST",
"rel": "reportheaders",
"schema": {
"properties": {
"List1AltCodes": {
"description": "Alternative coding system to be used for dimension 1.",
"title": "Alternative coding system",
"type": "string"
},
"List1Codes": {
"description": "List of codes for dimension 1.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 1 codes",
"type": "array"
},
"List2AltCodes": {
"description": "Alternative coding system to be used for dimension 2.",
"title": "Alternative coding system",
"type": "string"
},
"List2Codes": {
"description": "List of codes for dimension 2.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 2 codes",
"type": "array"
},
"List3AltCodes": {
"description": "Alternative coding system to be used for dimension 3.",
"title": "Alternative coding system",
"type": "string"
},
"List3Codes": {
"description": "List of codes for dimension 3.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 3 codes",
"type": "array"
},
"List4AltCodes": {
"description": "Alternative coding system to be used for dimension 4.",
"title": "Alternative coding system",
"type": "string"
},
"List4Codes": {
"description": "List of codes for dimension 4.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 4 codes",
"type": "array"
},
"List5AltCodes": {
"description": "Alternative coding system to be used for dimension 5.",
"title": "Alternative coding system",
"type": "string"
},
"List5Codes": {
"description": "List of codes for dimension 5.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 5 codes",
"type": "array"
},
"List6AltCodes": {
"description": "Alternative coding system to be used for dimension 6.",
"title": "Alternative coding system",
"type": "string"
},
"List6Codes": {
"description": "List of codes for dimension 6.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 6 codes",
"type": "array"
},
"List7AltCodes": {
"description": "Alternative coding system to be used for dimension 7.",
"title": "Alternative coding system",
"type": "string"
},
"List7Codes": {
"description": "List of codes for dimension 7.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 7 codes",
"type": "array"
},
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"domain_code": {
"$ref": "#/definitions/code"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"report_code": {
"$ref": "#/definitions/report_code"
}
}
},
"targetSchema": {
"description": "Output of 'reportheaders' service.",
"name": "Report Headers Output",
"properties": {
"data": {
"description": "FAOSTAT Report Headers.",
"items": {
"description": "Single report header",
"properties": {
"Border": {
"description": "Directives for the cell's border.",
"title": "Border",
"type": "string"
},
"ColNo": {
"description": "Number of the column.",
"title": "Column Number",
"type": "integer"
},
"ColSpan": {
"description": "Span of the column.",
"title": "Col Span",
"type": "integer"
},
"Label": {
"$ref": "#/definitions/label"
},
"RowNo": {
"description": "Number of the row.",
"title": "Row Number",
"type": "integer"
},
"RowSpan": {
"description": "Span of the row.",
"title": "Row Span",
"type": "integer"
}
},
"title": "Report Header",
"type": "object"
},
"title": "Report Headers",
"type": "array"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Report Headers"
},
{
"description": "FAOSTAT Report Data.",
"href": "{lang}/report/data/",
"method": "POST",
"rel": "reportdata",
"schema": {
"properties": {
"List1AltCodes": {
"description": "Alternative coding system to be used for dimension 1.",
"title": "Alternative coding system",
"type": "string"
},
"List1Codes": {
"description": "List of codes for dimension 1.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 1 codes",
"type": "array"
},
"List2AltCodes": {
"description": "Alternative coding system to be used for dimension 2.",
"title": "Alternative coding system",
"type": "string"
},
"List2Codes": {
"description": "List of codes for dimension 2.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 2 codes",
"type": "array"
},
"List3AltCodes": {
"description": "Alternative coding system to be used for dimension 3.",
"title": "Alternative coding system",
"type": "string"
},
"List3Codes": {
"description": "List of codes for dimension 3.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 3 codes",
"type": "array"
},
"List4AltCodes": {
"description": "Alternative coding system to be used for dimension 4.",
"title": "Alternative coding system",
"type": "string"
},
"List4Codes": {
"description": "List of codes for dimension 4.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 4 codes",
"type": "array"
},
"List5AltCodes": {
"description": "Alternative coding system to be used for dimension 5.",
"title": "Alternative coding system",
"type": "string"
},
"List5Codes": {
"description": "List of codes for dimension 5.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 5 codes",
"type": "array"
},
"List6AltCodes": {
"description": "Alternative coding system to be used for dimension 6.",
"title": "Alternative coding system",
"type": "string"
},
"List6Codes": {
"description": "List of codes for dimension 6.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 6 codes",
"type": "array"
},
"List7AltCodes": {
"description": "Alternative coding system to be used for dimension 7.",
"title": "Alternative coding system",
"type": "string"
},
"List7Codes": {
"description": "List of codes for dimension 7.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 7 codes",
"type": "array"
},
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"domain_code": {
"$ref": "#/definitions/code"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"report_code": {
"$ref": "#/definitions/report_code"
}
}
},
"targetSchema": {
"description": "Output of 'reportdata' service.",
"name": "Report Data Output",
"properties": {
"data": {
"description": "FAOSTAT Report Data.",
"items": {
"description": "Single report data",
"properties": {
"Col1": {
"description": "Content of the column 1.",
"title": "Column 1",
"type": "string"
},
"Col2": {
"description": "Content of the column 2.",
"title": "Column 2",
"type": "string"
},
"Col3": {
"description": "Content of the column 3.",
"title": "Column 3",
"type": "string"
},
"Col4": {
"description": "Content of the column 4.",
"title": "Column 4",
"type": "string"
},
"Col5": {
"description": "Content of the column 5.",
"title": "Column 5",
"type": "string"
},
"Col6": {
"description": "Content of the column 6.",
"title": "Column 6",
"type": "string"
},
"Col7": {
"description": "Content of the column 7.",
"title": "Column 7",
"type": "string"
},
"Col8": {
"description": "Content of the column 8.",
"title": "Column 8",
"type": "string"
},
"Col9": {
"description": "Content of the column 9.",
"title": "Column 9",
"type": "string"
},
"RowShade": {
"description": "Shade of the row.",
"title": "Row Shade",
"type": "integer"
}
},
"title": "Report Data",
"type": "object"
},
"title": "Report Data",
"type": "array"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Report Data"
},
{
"description": "Size of the query.",
"href": "{lang}/datasize/",
"method": "POST",
"rel": "datasize",
"schema": {
"properties": {
"List1Codes": {
"description": "List of codes for dimension 1.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 1 codes",
"type": "array"
},
"List2Codes": {
"description": "List of codes for dimension 2.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 2 codes",
"type": "array"
},
"List3Codes": {
"description": "List of codes for dimension 3.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 3 codes",
"type": "array"
},
"List4Codes": {
"description": "List of codes for dimension 4.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 4 codes",
"type": "array"
},
"List5Codes": {
"description": "List of codes for dimension 5.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 5 codes",
"type": "array"
},
"List6Codes": {
"description": "List of codes for dimension 6.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 6 codes",
"type": "array"
},
"List7Codes": {
"description": "List of codes for dimension 7.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Dimension 7 codes",
"type": "array"
},
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"domain_codes": {
"description": "FAOSTAT domain code.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Domain code",
"type": "array"
},
"lang": {
"$ref": "#/definitions/lang"
},
"no_records": {
"default": 1,
"description": "Flag that determines that only the size of the query must be computed.",
"title": "Number of Records",
"type": "integer"
},
"null_values": {
"default": false,
"description": "Flag to determine whether null values will be shown or not.",
"title": "Null Values",
"type": "boolean"
},
"output_type": {
"$ref": "#/definitions/output_type"
}
}
},
"targetSchema": {
"description": "Output of 'abbreviations' service.",
"name": "Abbreviations Output",
"properties": {
"data": {
"description": "FAOSTAT abbreviations.",
"properties": {
"code": {
"$ref": "#/definitions/code"
},
"label": {
"$ref": "#/definitions/label"
}
},
"title": "Abbreviations",
"type": "object"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "datasize"
},
{
"description": "FAOSTAT abbreviations.",
"href": "{lang}/abbreviations/",
"method": "GET",
"rel": "abbreviations",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
}
}
},
"targetSchema": {
"description": "Output of 'abbreviations' service.",
"name": "Abbreviations Output",
"properties": {
"data": {
"description": "FAOSTAT abbreviations.",
"properties": {
"code": {
"$ref": "#/definitions/code"
},
"label": {
"$ref": "#/definitions/label"
}
},
"title": "Abbreviations",
"type": "object"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Abbreviations"
},
{
"description": "FAOSTAT domain tabs.",
"href": "{lang}/domaintabs/{domain_code}/",
"method": "GET",
"rel": "domaintabs",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"domain_code": {
"$ref": "#/definitions/code"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
}
}
},
"targetSchema": {
"description": "Output of 'domaintabs' service.",
"name": "Domain Tabs Output",
"properties": {
"data": {
"description": "FAOSTAT domain tabs.",
"items": {
"description": "Single tab of the domain",
"properties": {
"DomainCode": {
"$ref": "#/definitions/code"
},
"Ord": {
"$ref": "#/definitions/ord"
},
"TabCode": {
"$ref": "#/definitions/code"
},
"TabName": {
"$ref": "#/definitions/label"
}
},
"title": "Domain Tab",
"type": "object"
},
"title": "Domain Tabs",
"type": "array"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Domain Tabs"
},
{
"description": "FAOSTAT domain reports.",
"href": "{lang}/domainreports/{domain_code}/",
"method": "GET",
"rel": "domainreports",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"domain_code": {
"$ref": "#/definitions/code"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
}
}
},
"targetSchema": {
"description": "Output of 'domainreports' service.",
"name": "Domain Reports Output",
"properties": {
"data": {
"description": "FAOSTAT domain reports.",
"items": {
"description": "Single report of the domain",
"properties": {
"DomainCode": {
"$ref": "#/definitions/code"
},
"ReportCode": {
"$ref": "#/definitions/code"
},
"ReportName": {
"$ref": "#/definitions/label"
}
},
"title": "Domain Report",
"type": "object"
},
"title": "Domain Reports",
"type": "array"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Domain Reports"
},
{
"description": "FAOSTAT groups and domains tree.",
"href": "{lang}/groupsanddomains",
"method": "GET",
"rel": "groupsanddomains",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"section": {
"$ref": "#/definitions/section"
}
}
},
"targetSchema": {
"description": "Output of 'domainstree' service.",
"name": "Domains Tree Output",
"properties": {
"data": {
"description": "FAOSTAT domains tree.",
"items": {
"description": "Single domain contained in the domains tree.",
"properties": {
"DomainName": {
"$ref": "#/definitions/code"
},
"DomainaCode": {
"$ref": "#/definitions/code"
},
"GroupCode": {
"$ref": "#/definitions/code"
},
"GroupName": {
"$ref": "#/definitions/code"
},
"Ord": {
"$ref": "#/definitions/ord"
}
},
"title": "Domain",
"type": "object"
},
"title": "Domains Tree",
"type": "array"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Groups and domains"
},
{
"description": "FAOSTAT glossary.",
"href": "{lang}/glossary/",
"method": "GET",
"rel": "glossary",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
}
}
},
"targetSchema": {
"description": "Output of 'glossary' service.",
"name": "Glossary Output",
"properties": {
"data": {
"description": "FAOSTAT glossary.",
"properties": {
"code": {
"$ref": "#/definitions/code"
},
"label": {
"$ref": "#/definitions/label"
},
"source": {
"$ref": "#/definitions/description"
}
},
"title": "Glossary",
"type": "object"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Glossary"
},
{
"description": "FAOSTAT units.",
"href": "{lang}/units/",
"method": "GET",
"rel": "units",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
}
}
},
"targetSchema": {
"description": "Output of 'units' service.",
"name": "Units Output",
"properties": {
"data": {
"description": "List of FAOSTAT units.",
"properties": {
"code": {
"$ref": "#/definitions/code"
},
"label": {
"$ref": "#/definitions/label"
}
},
"title": "Units",
"type": "object"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Units"
},
{
"description": "FAOSTAT classifications.",
"href": "{lang}/classifications/{domain_code}/",
"method": "GET",
"rel": "classifications",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"domain_code": {
"$ref": "#/definitions/code"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
}
}
},
"targetSchema": {
"description": "Output of 'classifications' service.",
"name": "Classifications Output",
"properties": {
"data": {
"description": "List of FAOSTAT classifications.",
"properties": {
"code": {
"$ref": "#/definitions/code"
},
"description": {
"$ref": "#/definitions/description"
},
"label": {
"$ref": "#/definitions/label"
}
},
"title": "Classifications",
"type": "object"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Classifications"
},
{
"description": "Description of FAOSTAT methodology.",
"href": "{lang}/methodologies/{id}/",
"method": "GET",
"rel": "methodology",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"id": {
"$ref": "#/definitions/code"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
}
}
},
"targetSchema": {
"description": "Output of 'methodology' service.",
"name": "Schema Output",
"properties": {
"data": {
"description": "Description of FAOSTAT methodology.",
"properties": {
"collection": {
"description": "Collection.",
"title": "Collection",
"type": "string"
},
"coverage": {
"description": "Coverage.",
"title": "Coverage",
"type": "string"
},
"estimation": {
"description": "Estimation.",
"title": "Estimation",
"type": "string"
},
"note": {
"description": "Note.",
"title": "Note",
"type": "string"
},
"reference": {
"description": "Reference.",
"title": "Reference",
"type": "string"
}
},
"title": "Methodology",
"type": "object"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Methodology"
},
{
"description": "List of FAOSTAT methodologies.",
"href": "{lang}/methodologies/",
"method": "GET",
"rel": "methodologies",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
}
}
},
"targetSchema": {
"description": "Output of 'methodologies' service.",
"name": "Schema Output",
"properties": {
"data": {
"description": "List of FAOSTAT methodologies.",
"items": {
"description": "FAOSTAT methodology",
"properties": {
"code": {
"$ref": "#/definitions/code"
},
"label": {
"$ref": "#/definitions/label"
}
},
"title": "Methodology",
"type": "object"
},
"title": "Methodologies",
"type": "array"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Methodologies"
},
{
"description": "Definition of FAOSTAT domain.",
"href": "{lang}/dimensions/{domain_code}/",
"method": "GET",
"rel": "dimensions",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"domain_code": {
"$ref": "#/definitions/code",
"title": "Domain code"
},
"full": {
"default": false,
"description": "Returns the full dimension object.",
"title": "Full response",
"type": "boolean"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"report_code": {
"$ref": "#/definitions/report_code"
}
}
},
"targetSchema": {
"description": "Output of 'dimensions' service.",
"name": "Schema Output",
"properties": {
"data": {
"description": "FAOSTAT domain structure.",
"items": {
"$ref": "#/definitions/dimension"
},
"title": "Dimensions",
"type": "array"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Domain Structure"
},
{
"description": "List of codes for the given codelist.",
"href": "{lang}/codes/{id}/{domain_code}/",
"method": "GET",
"rel": "codes",
"schema": {
"description": "Input of 'codes' service.",
"name": "Codes Input",
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"blacklist": {
"$ref": "#/definitions/blacklist"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"domain_code": {
"$ref": "#/definitions/code",
"title": "Domain code"
},
"domains": {
"default": "[]",
"description": "List of FAOSTAT domain codes.",
"items": {
"$ref": "#/definitions/code"
},
"title": "Domains",
"type": "array"
},
"group_subdimensions": {
"default": false,
"description": "Determines whether codes must be grouped in the final output. For instance, the 'areagroup' codelist returns three different objects within 'data': 'countries', 'regions' and 'specialgroups'.",
"title": "Group Subdimensions",
"type": "boolean"
},
"id": {
"description": "ID of the FAOSTAT codelist to be retrieved.",
"enum": [
"areas",
"countries",
"regions",
"specialgroups",
"items",
"itemsaggregated",
"elements",
"years"
],
"title": "Codelist ID",
"type": "string"
},
"lang": {
"$ref": "#/definitions/lang"
},
"ord": {
"$ref": "#/definitions/ord",
"default": null
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"report_code": {
"$ref": "#/definitions/report_code"
},
"show_full_metadata": {
"default": true,
"description": "Determines whether the full metadata must be included in the output. A shorter version will be used otherwise.",
"title": "Show Full Metadata",
"type": "boolean"
},
"show_lists": {
"default": true,
"description": "Determines whether codes representing lists must be included in the output.",
"title": "Show Lists",
"type": "boolean"
},
"subcodelists": {
"default": null,
"description": "List of sub codelists to be included in the output.",
"enum": [
"areas",
"countries",
"regions",
"specialgroups",
"items",
"itemsaggregated",
"elements",
"years"
],
"items": {
"$ref": "#/definitions/code"
},
"title": "Sub Codelists",
"type": "array"
},
"whitelist": {
"$ref": "#/definitions/whitelist"
}
},
"type": "object"
},
"targetSchema": {
"description": "Output of 'codes' service.",
"name": "Codes Output",
"properties": {
"data": {
"description": "List of available codes.",
"items": {
"$ref": "#/definitions/faostat_code"
},
"title": "Codes",
"type": "array"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Codes"
},
{
"description": "List of available FAOSTAT groups.",
"href": "{lang}/groups/",
"method": "GET",
"rel": "groups",
"schema": {
"description": "Input of 'groups' service.",
"name": "Groups Input",
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"blacklist": {
"$ref": "#/definitions/blacklist"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"whitelist": {
"$ref": "#/definitions/whitelist"
}
},
"type": "object"
},
"targetSchema": {
"properties": {
"data": {
"description": "List of available groups.",
"items": {
"$ref": "#/definitions/faostat_code"
},
"title": "Groups",
"type": "array"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Groups"
},
{
"description": "List of available FAOSTAT domains.",
"href": "{lang}/domains/{group_code}/",
"method": "GET",
"rel": "domains",
"schema": {
"description": "Input of 'domains' service.",
"name": "Domains Input",
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"blacklist": {
"$ref": "#/definitions/blacklist"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"group_code": {
"$ref": "#/definitions/code",
"title": "Domain code"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"whitelist": {
"$ref": "#/definitions/whitelist"
}
},
"type": "object"
},
"targetSchema": {
"properties": {
"data": {
"description": "List of available domains.",
"items": {
"description": "FAOSTAT domain",
"properties": {
"code": {
"$ref": "#/definitions/code"
},
"label": {
"$ref": "#/definitions/label"
},
"ord": {
"$ref": "#/definitions/ord"
}
},
"title": "Domain",
"type": "object"
},
"title": "Domains",
"type": "array"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Domains"
},
{
"description": "List of available bulk downloads.",
"href": "{lang}/bulkdownloads/{domain_code}/",
"method": "GET",
"rel": "bulkdownloads",
"schema": {
"description": "Input of 'bulkdownloads' service.",
"name": "Bulk Downloads Input",
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"domain_code": {
"$ref": "#/definitions/code",
"title": "Domain code"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
}
},
"type": "object"
},
"targetSchema": {
"properties": {
"data": {
"description": "List of available bulk downloads.",
"items": {
"description": "FAOSTAT bulk download file",
"properties": {
"code": {
"$ref": "#/definitions/code"
},
"content": {
"description": "Description of the archive's content.",
"title": "Content",
"type": "string"
},
"date": {
"description": "Last update.",
"title": "Date",
"type": "string"
},
"filename": {
"description": "Name of the archive.",
"title": "Filename",
"type": "string"
},
"label": {
"$ref": "#/definitions/label"
}
},
"title": "Bulk Downloads",
"type": "object"
},
"title": "Bulk Downloads",
"type": "array"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Bulk Downloads"
},
{
"description": "List of available documents.",
"href": "{lang}/documents/{domain_code}/",
"method": "GET",
"rel": "documents",
"schema": {
"description": "Input of 'documents' service.",
"name": "Documents Input",
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"domain_code": {
"$ref": "#/definitions/code",
"title": "Domain code"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
}
},
"type": "object"
},
"targetSchema": {
"properties": {
"data": {
"description": "List of available documents.",
"items": {
"description": "FAOSTAT document",
"properties": {
"CreatedDate": {
"description": "Date of creation.",
"title": "Creation Date",
"type": "date"
},
"DomainCode": {
"$ref": "#/definitions/code"
},
"FileName": {
"description": "Name of the file.",
"title": "Filename",
"type": "string"
},
"FilePath": {
"description": "Path to the file.",
"title": "Filepath",
"type": "string"
}
},
"title": "Documents",
"type": "object"
},
"title": "Documents",
"type": "array"
},
"metadata": {
"$ref": "#/definitions/metadata"
}
},
"type": "object"
},
"title": "Documents"
},
{
"description": "FAOSTAT suggestions.",
"href": "{lang}/suggestions",
"method": "GET",
"rel": "suggestions",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"q": {
"$ref": "#/definitions/label"
}
}
},
"title": "Suggestions"
},
{
"description": "FAOSTAT search.",
"href": "{lang}/search",
"method": "GET",
"rel": "search",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"q": {
"$ref": "#/definitions/label"
}
}
},
"title": "Search"
},
{
"description": "FAOSTAT metadata.",
"href": "{lang}/metadata/{domain_code}",
"method": "GET",
"rel": "metadata",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
}
}
},
"title": "metadata"
},
{
"description": "FAOSTAT definitions.",
"href": "{lang}/definitions/{domain_code}",
"method": "GET",
"rel": "definitions",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
}
}
},
"title": "definitions"
},
{
"description": "FAOSTAT definitions by type.",
"href": "{lang}/definitions/{domain_code}/{type}",
"method": "GET",
"rel": "definitions_by_type",
"schema": {
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"lang": {
"$ref": "#/definitions/lang"
},
"output_type": {
"$ref": "#/definitions/output_type"
}
}
},
"title": "definitions by type"
}
],
"title": "FAOSTAT API",
"type": "object",
"properties": {
"api_key": {
"$ref": "#/definitions/api_key"
},
"blacklist": {
"$ref": "#/definitions/blacklist"
},
"client_key": {
"$ref": "#/definitions/client_key"
},
"code": {
"$ref": "#/definitions/code"
},
"coding_system": {
"$ref": "#/definitions/coding_system"
},
"datasource": {
"$ref": "#/definitions/datasource"
},
"description": {
"$ref": "#/definitions/description"
},
"dimension": {
"$ref": "#/definitions/dimension"
},
"faostat_code": {
"$ref": "#/definitions/faostat_code"
},
"label": {
"$ref": "#/definitions/label"
},
"lang": {
"$ref": "#/definitions/lang"
},
"metadata": {
"$ref": "#/definitions/metadata"
},
"ord": {
"$ref": "#/definitions/ord"
},
"output_type": {
"$ref": "#/definitions/output_type"
},
"pivot": {
"$ref": "#/definitions/pivot"
},
"report_code": {
"$ref": "#/definitions/report_code"
},
"section": {
"$ref": "#/definitions/section"
},
"whitelist": {
"$ref": "#/definitions/whitelist"
}
},
"required": [
"api_key",
"blacklist",
"client_key",
"code",
"coding_system",
"datasource",
"description",
"dimension",
"faostat_code",
"label",
"lang",
"metadata",
"ord",
"output_type",
"pivot",
"report_code",
"section",
"whitelist"
]
} | o5790 |
{
"items": {
"additionalProperties": false,
"properties": {
"id": {
"description": "ID of the command.",
"type": "integer"
},
"payload": {
"description": "The command payload to be interpreted by the endpoint."
}
},
"required": [
"id"
],
"type": "object"
},
"title": "11/CEP command response schema",
"type": "array"
} | o53911 |
{
"id": "http://spacebrew.cc/messaging-schema#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "a schema defining the messages sent by clients and admins",
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/config"
},
{
"$ref": "#/definitions/message"
},
{
"$ref": "#/definitions/admin"
},
{
"$ref": "#/definitions/route"
}
],
"definitions": {
"config": {
"type": "object",
"required": [
"config"
],
"properties": {
"config": {
"type": "object",
"required": [
"name",
"description"
],
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"subscribe": {
"type": "object",
"properties": {
"messages": {
"type": "array",
"items": {
"type": "object",
"required": [
"type",
"name"
],
"properties": {
"type": {
"type": "string"
},
"name": {
"type": "string"
},
"default": {}
}
}
}
}
},
"publish": {
"type": "object",
"properties": {
"messages": {
"type": "array",
"items": {
"type": "object",
"required": [
"type",
"name"
],
"properties": {
"type": {
"type": "string"
},
"name": {
"type": "string"
},
"default": {}
}
}
}
}
},
"options": {
"type": "object"
}
}
}
}
},
"message": {
"type": "object",
"required": [
"message"
],
"properties": {
"message": {
"type": "object",
"required": [
"clientName",
"name",
"type",
"value"
],
"properties": {
"clientName": {
"type": "string"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {}
}
}
}
},
"admin": {
"type": "object",
"required": [
"admin"
],
"properties": {
"admin": {},
"no_msgs": {}
}
},
"route": {
"type": "object",
"required": [
"route"
],
"properties": {
"route": {
"type": "object",
"required": [
"publisher",
"subscriber",
"type"
],
"properties": {
"type": {
"enum": [
"add",
"remove"
]
},
"publisher": {
"type": "object",
"required": [
"type",
"clientName",
"remoteAddress",
"name"
],
"properties": {
"type": {
"type": "string"
},
"clientName": {
"type": "string"
},
"name": {
"type": "string"
},
"remoteAddress": {
"type": "string"
}
},
"subscriber": {
"type": "object",
"required": [
"type",
"clientName",
"remoteAddress",
"name"
],
"properties": {
"type": {
"type": "string"
},
"clientName": {
"type": "string"
},
"name": {
"type": "string"
},
"remoteAddress": {
"type": "string"
}
}
}
}
}
}
}
}
}
} | o69190 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"description": "Block properties for style formatting content elements",
"properties": {
"dropcap": {
"description": "Style the first letter of the first word with a dropcap",
"enum": [
"letter"
],
"title": "Dropcap",
"type": "string"
}
},
"title": "Block properties",
"type": "object"
} | wp_41_Normalized |
{
"definitions": {},
"minLength": 20,
"pattern": "^(https|http)://(mariadb.com|dev.mysql.com)",
"type": "string"
} | o34208 |
{
"title": "fabric info",
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"fabric_fq_name",
"management_subnets",
"loopback_subnets",
"fabric_subnets",
"fabric_asn_pool",
"device_auth",
"node_profiles"
],
"properties": {
"fabric_fq_name": {
"type": "array",
"items": {
"type": "string"
}
},
"fabric_display_name": {
"type": "string"
},
"fabric_cluster_id": {
"type": "integer"
},
"management_subnets": {
"type": "array",
"items": {
"type": "object",
"description": "List of the management network subnets for the fabric",
"additionalProperties": false,
"required": [
"cidr",
"gateway"
],
"properties": {
"cidr": {
"type": "string",
"pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$"
},
"gateway": {
"type": "string",
"format": "ipv4"
}
}
}
},
"loopback_subnets": {
"type": "array",
"items": {
"type": "string",
"description": "List of the subnet prefixes that fabric device loopback ips can be allocated.",
"pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$"
}
},
"overlay_loopback_subnets": {
"type": "array",
"items": {
"type": "string",
"description": "List of the subnet prefixes that fabric device overlay loopback ips can be allocated.",
"pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$"
}
},
"fabric_subnets": {
"type": "array",
"items": {
"type": "string",
"description": "List of the subnet prefixes that could be carved out for the p2p networks between fabric devices.",
"pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$"
}
},
"pnf_servicechain_subnets": {
"type": "array",
"items": {
"type": "string",
"description": "List of the subnet prefixes that could be carved out for service chaining between fabric devices.",
"pattern": "^([0-9]{1,3}\\.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$"
}
},
"fabric_asn_pool": {
"type": "array",
"items": {
"title": "eBGP ASN Pool for fabric underlay network",
"type": "object",
"description": "List of the ASN pools that could be used to configure the eBGP peers for the IP fabric",
"properties": {
"asn_min": {
"type": "integer"
},
"asn_max": {
"type": "integer"
}
},
"required": [
"asn_min",
"asn_max"
]
}
},
"overlay_ibgp_asn": {
"type": "integer",
"title": "iBGP ASN for Contrail overlay network",
"default": 64512
},
"device_auth": {
"title": "Device Auth",
"type": "object",
"additionalProperties": false,
"required": [
"root_password"
],
"properties": {
"root_password": {
"type": "string"
}
}
},
"node_profiles": {
"type": "array",
"items": {
"title": "Node profile",
"type": "object",
"description": "List of node profiles to be used by the fabric.",
"additionalProperties": false,
"properties": {
"node_profile_name": {
"type": "string"
},
"serial_nums": {
"type": "array",
"description": "Optional list of serial numbers of fabric devices that we want to associate with this node profile.",
"items": {
"type": "string"
}
}
},
"required": [
"node_profile_name"
]
}
},
"interface_filters": {
"type": "array",
"items": {
"type": "object",
"maxProperties": 2,
"additionalProperties": false,
"properties": {
"op": {
"enum": [
"regex"
]
},
"expr": {
"type": "string"
}
},
"title": "filter object",
"description": "filter object having op and expr fields",
"default": {},
"examples": [
{
"op": "regex",
"expr": "^ge-"
},
{
"op": "regex",
"expr": "^xe"
}
]
}
},
"import_configured": {
"type": "boolean",
"default": false,
"description": "Not importing configured interfaces by default. Set this option to true if configured interfaces need to be imported as part of onboarding."
},
"device_count": {
"title": "Number of fabric devices",
"type": "integer",
"description": "Total number of devices in the fabric that needs to be zero-touch provisioned"
},
"supplemental_day_0_cfg": {
"title": "List of day 0 config that can be used to supplement the ZTP config",
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"cfg"
],
"properties": {
"name": {
"title": "name for the config",
"type": "string"
},
"cfg": {
"title": "config blob that contains the supplemental day-0 config",
"type": "string"
}
}
}
},
"device_to_ztp": {
"title": "List of device serial numbers for the devices to be ZTPed",
"type": "array",
"items": {
"type": "object",
"required": [
"serial_number",
"hostname"
],
"properties": {
"serial_number": {
"title": "Device serial number",
"type": "string"
},
"hostname": {
"title": "Device hostname can be optionally specified.",
"type": "string",
"pattern": "^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\\-]*[A-Za-z0-9])$"
},
"underlay_asn": {
"title": "Underlay eBGP autonomous system number",
"type": [
"integer",
"string"
]
},
"loopback_ip": {
"title": "Loopback IP address",
"type": "string",
"format": "ipv4"
},
"mgmt_ip": {
"title": "Management IP address",
"type": "string",
"format": "ipv4"
},
"to_ztp": {
"title": "Include or ignore device in ZTP workflow",
"type": "boolean"
},
"supplemental_day_0_cfg": {
"title": "Name(s) of the supplemental day-0 config(s) that can be optionally specified for this device",
"type": [
"string",
"array"
],
"items": {
"type": "string"
}
}
}
}
},
"os_version": {
"type": "string"
},
"enterprise_style": {
"type": "boolean",
"default": true,
"description": "True if enterprise style, false if sp-style configuration"
},
"disable_vlan_vn_uniqueness_check": {
"type": "boolean",
"default": false,
"description": "True if vlan-vn uniqueness validation checks needs to be disabled, false if enable all complex validations"
}
}
} | o8460 |
{
"description": "describes the attributes of a scale subresource",
"properties": {
"replicas": {
"description": "desired number of instances for the scaled object.",
"format": "int32",
"type": [
"integer",
"null"
]
}
},
"type": "object"
} | kb_919_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"name",
"displayName",
"description"
],
"properties": {
"name": {
"type": "string"
},
"displayName": {
"type": "object",
"minProperties": 1,
"additionalProperties": {
"type": "string"
}
},
"description": {
"type": "object",
"minProperties": 1,
"additionalProperties": {
"type": "string"
}
}
}
} | o39143 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"id": "http://europass.cedefop.europa.eu/json/schema/v3.3.0/Europass_JSONSchema.json",
"description": "A JSON Representation of a Europass Document corresponding to Europass XML 3.3.0",
"type": "object",
"definitions": {
"documentTypeType": {
"type": "string",
"enum": [
"ECV_ESP",
"ESP",
"ECV",
"ELP",
"ECL",
"EX"
]
},
"documentBundleType": {
"type": "array",
"items": {
"$ref": "#/definitions/documentTypeType"
}
},
"preferencesType": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"show": {
"type": "boolean"
},
"order": {
"type": "string",
"enum": [
"FirstName Surname",
"Surname FirstName",
"Title FirstName Surname",
"Title Surname FirstName",
"FirstName Surname Title",
"Surname FirstName Title",
"Identification Headline WorkExperience Education Skills Achievement ReferenceTo",
"Identification Headline Education WorkExperience Skills Achievement ReferenceTo",
"Identification Skills ReferenceTo",
"Addressee Letter.SubjectLine Letter.OpeningSalutation Letter.Body Letter.Localisation Letter.ClosingSalutation",
"Letter.SubjectLine Addressee Letter.OpeningSalutation Letter.Body Letter.Localisation Letter.ClosingSalutation",
"Letter.Localisation Addressee Letter.SubjectLine Letter.OpeningSalutation Letter.Body Letter.ClosingSalutation",
"Letter.SubjectLine Addressee Letter.Localisation Letter.OpeningSalutation Letter.Body Letter.ClosingSalutation",
"Letter.Localisation Letter.SubjectLine Addressee Letter.OpeningSalutation Letter.Body Letter.ClosingSalutation",
"Addressee Letter.Localisation Letter.SubjectLine Letter.OpeningSalutation Letter.Body Letter.ClosingSalutation",
"Addressee Letter.SubjectLine Letter.Localisation Letter.OpeningSalutation Letter.Body Letter.ClosingSalutation",
"Date Place",
"Place Date"
]
},
"format": {
"type": "string",
"enum": [
"s
z m (c)",
"s, z m (c)",
"s,m z c",
"s, m, z c",
"s z m (c)",
"s z m c",
"s p-z m (c)",
"s p-z m c",
"s, p-z m (c)",
"s, z m, c",
"s, m, p-z (c)",
"s, m z (c)",
"s, z-m (c)",
"s, m, z (c)",
"text/short",
"text/long",
"text/long/suffix",
"text/long/texts",
"numeric/long",
"numeric/medium",
"numeric/short"
]
},
"position": {
"type": "string",
"enum": [
"left-align",
"right-align",
"middle-align"
]
},
"justify": {
"type": "boolean"
}
},
"additionalProperties": false
},
"minItems": 0
},
"personNameType": {
"description": "Describes the name of a person. Consists of a title (optionally), a first-name and surname.",
"type": "object",
"properties": {
"Title": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"enum": [
"mr",
"ms",
"mrs",
"miss",
"dr"
]
},
"Label": {
"type": "string"
}
}
},
"FirstName": {
"type": "string"
},
"Surname": {
"type": "string"
}
},
"additionalProperties": false
},
"structuredDateType": {
"type": "object",
"properties": {
"Year": {
"type": "number"
},
"Month": {
"type": "number"
},
"Day": {
"type": "number"
}
},
"additionalProperties": false
},
"countryType": {
"description": "Defines a country. The country is described by a code and a label. E.g. code: FR, label: France.",
"type": "object",
"properties": {
"Code": {
"description": "Defines the country code type. The type is defined in the included schema 'EuropassISOCountries'. ",
"type": "string",
"pattern": "^[A-Z]{2}$"
},
"Label": {
"type": "string"
}
},
"additionalProperties": false
},
"occupationalFieldType": {
"description": "The occupational field is described by a code and a label. E.g. code: 41150, label: Secretary.",
"type": "object",
"properties": {
"Code": {
"type": "string",
"pattern": "^[0-9]{5}$"
},
"Label": {
"type": "string"
}
},
"additionalProperties": false
},
"periodType": {
"type": "object",
"properties": {
"Period": {
"type": "object",
"properties": {
"From": {
"$ref": "#/definitions/structuredDateType"
},
"To": {
"$ref": "#/definitions/structuredDateType"
},
"Current": {
"type": "boolean"
}
},
"additionalProperties": false
}
}
},
"fileDataType": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Data": {
"type": "string",
"contentEncoding": "base64"
},
"Metadata": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Key": {
"type": "string"
},
"Value": {
"type": "string"
}
},
"additionalProperties": false
},
"minItems": 0
},
"Id": {
"type": "string"
}
}
},
"addressType": {
"type": "object",
"properties": {
"AddressLine": {
"type": "string"
},
"AddressLine2": {
"type": "string"
},
"PostalCode": {
"type": "string"
},
"Municipality": {
"type": "string"
},
"Country": {
"$ref": "#/definitions/countryType"
}
},
"additionalProperties": false
},
"websiteType": {
"type": "object",
"properties": {
"Contact": {
"type": "string"
},
"Use": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"enum": [
"personal",
"business",
"blog",
"portfolio"
]
},
"Label": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"organisationalWebsiteType": {
"type": "object",
"properties": {
"Contact": {
"type": "string"
},
"Use": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"enum": [
"business"
]
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"organisationType": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"ContactInfo": {
"type": "object",
"properties": {
"Address": {
"type": "object",
"properties": {
"Contact": {
"$ref": "#/definitions/addressType"
}
}
},
"Website": {
"$ref": "#/definitions/organisationalWebsiteType"
}
}
}
}
},
"referenceToListType": {
"type": "array",
"items": {
"type": "object",
"properties": {
"idref": {
"type": "string"
}
}
},
"minItems": 0
},
"sectionReferenceToListType": {
"type": "object",
"properties": {
"ReferenceTo": {
"$ref": "#/definitions/referenceToListType"
}
}
},
"genericDocumentationType": {
"type": "object",
"properties": {
"Heading": {
"$ref": "#/definitions/documentationHeadingType"
},
"InterDocument": {
"type": "array",
"items": {
"type": "object",
"properties": {
"ref": {
"$ref": "#/definitions/documentTypeType"
}
}
},
"minItems": 0
},
"IntraDocument": {
"$ref": "#/definitions/referenceToListType"
},
"ExtraDocument": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Description": {
"type": "string"
},
"href": {
"type": "string"
}
}
},
"minItems": 0
}
},
"additionalProperties": false
},
"languageNameType": {
"description": "The mother language code is defined in the included schema 'EuropassISOLanguages'.",
"type": "object",
"properties": {
"Description": {
"type": "object",
"properties": {
"Code": {
"type": "string"
},
"Label": {
"type": "string"
}
},
"additionalProperties": false
}
}
},
"genericSkillType": {
"allOf": [
{
"$ref": "#/definitions/sectionReferenceToListType"
},
{
"properties": {
"Description": {
"type": "string"
}
}
}
]
},
"cefrLevelType": {
"type": "string",
"enum": [
"A1",
"A2",
"B1",
"B2",
"C1",
"C2"
]
},
"ictLevelType": {
"type": "string",
"enum": [
"A",
"B",
"C"
]
},
"basicExperienceType": {
"type": "object",
"allOf": [
{
"$ref": "#/definitions/periodType"
},
{
"properties": {
"Description": {
"type": "string"
}
}
},
{
"$ref": "#/definitions/sectionReferenceToListType"
}
]
},
"openingSalutationType": {
"description": "Defines the opening salutation in a letter. It is described by a code (optional) and a label. E.g. code: salutation_2, label: Dear Mrs.",
"type": "object",
"properties": {
"Code": {
"type": "string",
"pattern": "^opening-salut-[1-9]{1}([0-9]{1})?(-impersonal)?$"
},
"Label": {
"type": "string"
}
},
"additionalProperties": false
},
"closingSalutationType": {
"description": "Defines the closing salutation in a letter. It is described by a code (optional) and a label. E.g. code: closing_salutation_2, label: Your's faithfully.",
"type": "object",
"properties": {
"Code": {
"type": "string",
"pattern": "^closing-salut-[1-9]{1}([0-9]{1})?$"
},
"Label": {
"type": "string"
}
},
"additionalProperties": false
},
"documentationHeadingType": {
"description": "Defines the label to indicate that there are documents accompanying a letter. It is described by a code (optional) and a label. E.g. code: heading_1, label: Enclosed.",
"type": "object",
"properties": {
"Code": {
"type": "string",
"pattern": "^heading_[1-9]{1}$"
},
"Label": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false,
"properties": {
"SkillsPassport": {
"type": "object",
"description": "Defines a sequence of elements that fully describe a Europass XML document.",
"properties": {
"Locale": {
"title": "the language of this document",
"type": "string",
"pattern": "^[a-z]{2}$"
},
"DocumentInfo": {
"title": "metadata information about this document",
"type": "object",
"properties": {
"DocumentType": {
"$ref": "#/definitions/documentTypeType"
},
"Document": {
"$ref": "#/definitions/documentBundleType"
},
"CreationDate": {
"type": "string"
},
"LastUpdateDate": {
"type": "string"
},
"XSDVersion": {
"type": "string",
"pattern": "^V[0-9]\\.[0-9]$"
},
"Generator": {
"type": "string"
},
"Comment": {
"type": "string"
},
"EuropassLogo": {
"type": "boolean"
}
},
"additionalProperties": false
},
"PrintingPreferences": {
"title": "Printing preferences",
"type": "object",
"anyOf": [
{
"type": "object",
"properties": {
"ECV": {
"$ref": "#/definitions/preferencesType"
}
}
},
{
"type": "object",
"properties": {
"ELP": {
"$ref": "#/definitions/preferencesType"
}
}
},
{
"type": "object",
"properties": {
"ECL": {
"$ref": "#/definitions/preferencesType"
}
}
},
{
"type": "object",
"properties": {
"ESP": {
"$ref": "#/definitions/preferencesType"
}
}
}
]
},
"LearnerInfo": {
"type": "object",
"properties": {
"Identification": {
"title": "Personal Information",
"description": "Contains the personal information of the individual, which includes at least the name, and contact information, demographics and photo.",
"type": "object",
"properties": {
"PersonName": {
"$ref": "#/definitions/personNameType"
},
"ContactInfo": {
"description": "Contains all the available methods of contacting individual.",
"type": "object",
"properties": {
"Address": {
"description": "Defines the residence address of an individual.",
"type": "object",
"properties": {
"Contact": {
"$ref": "#/definitions/addressType"
}
},
"additionalProperties": false
},
"Email": {
"description": "Defines the email address of an individual.",
"type": "object",
"properties": {
"Contact": {
"type": "string"
}
},
"additionalProperties": false
},
"Telephone": {
"description": "Lists the telephone numbers owned by the individual.",
"type": "array",
"items": {
"type": "object",
"properties": {
"Contact": {
"type": "string"
},
"Use": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"enum": [
"home",
"work",
"mobile"
]
},
"Label": {
"type": "string"
}
}
}
},
"additionalProperties": false
},
"minItems": 0
},
"Website": {
"description": "Lists the websites that are owned, built by or refer to the individual.",
"type": "array",
"items": {
"$ref": "#/definitions/websiteType"
},
"minItems": 0
},
"InstantMessaging": {
"description": "Lists the instant messaging accounts numbers owned by the individual.",
"type": "array",
"items": {
"type": "object",
"properties": {
"Contact": {
"type": "string"
},
"Use": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"enum": [
"gtalk",
"skype",
"icq",
"aim",
"msn",
"yahoo"
]
},
"Label": {
"type": "string"
}
}
}
},
"additionalProperties": false
},
"minItems": 0
}
},
"additionalProperties": false
},
"Demographics": {
"description": "Contains demographics-related information about the individual. It includes the birthdate, gender and list of nationalities.",
"type": "object",
"properties": {
"Birthdate": {
"$ref": "#/definitions/structuredDateType"
},
"Gender": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"enum": [
"M",
"F"
]
},
"Label": {
"type": "string"
}
}
},
"Nationality": {
"description": "Defines a nationality. The nationality is described by a code and is a text only element. E.g. code: DE, label: German.",
"type": "array",
"items": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"pattern": "^[A-Z]{2}$"
},
"Label": {
"type": "string"
}
},
"additionalProperties": false
},
"minItems": 0
}
},
"additionalProperties": false
},
"Photo": {
"allOf": [
{
"$ref": "#/definitions/fileDataType"
},
{
"properties": {
"MimeType": {
"type": "string",
"enum": [
"image/jpeg",
"image/pjpeg",
"image/png",
"image/x-png"
]
}
}
}
]
},
"Signature": {
"allOf": [
{
"$ref": "#/definitions/fileDataType"
},
{
"properties": {
"MimeType": {
"type": "string",
"enum": [
"image/jpeg",
"image/pjpeg",
"image/png",
"image/x-png"
]
}
}
}
]
}
}
},
"Headline": {
"title": "desired employment/ occupation field",
"description": "Contains a headline label for the current document. It is optional and may accommodate various cases.",
"type": "object",
"properties": {
"Type": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"enum": [
"preferred_job",
"job_applied_for",
"studies_applied_for",
"position",
"personal_statement"
]
},
"Label": {
"type": "string"
}
},
"additionalProperties": false
},
"Description": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"pattern": "^[0-9]{5}$"
},
"Label": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"WorkExperience": {
"title": "list of work experiences",
"description": "Contains an list of work experiences. The order of those experiences is defined by the related printing preferences.",
"type": "array",
"items": {
"allOf": [
{
"$ref": "#/definitions/basicExperienceType"
},
{
"properties": {
"Position": {
"$ref": "#/definitions/occupationalFieldType"
},
"Activities": {
"type": "string"
},
"Employer": {
"allOf": [
{
"$ref": "#/definitions/organisationType"
},
{
"properties": {
"Sector": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"pattern": "^[A-U]{1}$"
},
"Label": {
"type": "string"
}
},
"additionalProperties": false
}
}
}
]
}
}
},
{
"$ref": "#/definitions/sectionReferenceToListType"
}
]
},
"minItems": 0
},
"Education": {
"title": "list of education experiences",
"description": "Contains an list of learning achievements or a training periods (formal or not). The order of those experiences is defined by the related printing preferences.",
"type": "array",
"items": {
"allOf": [
{
"$ref": "#/definitions/basicExperienceType"
},
{
"properties": {
"Title": {
"type": "string"
},
"Activities": {
"type": "string"
},
"Organisation": {
"$ref": "#/definitions/organisationType"
},
"Field": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"pattern": "^[0-9]{2}$"
},
"Label": {
"type": "string"
}
},
"additionalProperties": false
},
"Level": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"pattern": "^[1-8]{1}$"
},
"Label": {
"type": "string"
}
},
"additionalProperties": false
}
}
},
{
"$ref": "#/definitions/sectionReferenceToListType"
}
]
},
"minItems": 0
},
"Skills": {
"title": "Skills",
"description": "Contains a sequence of skills and competences that the learner has acquired during any formal or informal experience.",
"type": "object",
"properties": {
"Linguistic": {
"type": "object",
"properties": {
"MotherTongue": {
"type": "array",
"items": {
"allOf": [
{
"$ref": "#/definitions/languageNameType"
},
{
"$ref": "#/definitions/sectionReferenceToListType"
}
]
},
"minItems": 0
},
"ForeignLanguage": {
"type": "array",
"items": {
"allOf": [
{
"$ref": "#/definitions/languageNameType"
},
{
"properties": {
"ProficiencyLevel": {
"type": "object",
"properties": {
"Listening": {
"$ref": "#/definitions/cefrLevelType"
},
"Reading": {
"$ref": "#/definitions/cefrLevelType"
},
"SpokenInteraction": {
"$ref": "#/definitions/cefrLevelType"
},
"SpokenProduction": {
"$ref": "#/definitions/cefrLevelType"
},
"Writing": {
"$ref": "#/definitions/cefrLevelType"
}
},
"additionalProperties": false
},
"Experience": {
"description": "Describes a list of linguistic experiences",
"type": "array",
"items": {
"allOf": [
{
"$ref": "#/definitions/basicExperienceType"
},
{
"properties": {
"Area": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"enum": [
"studying_training_language",
"work_language",
"living_traveling_language",
"mediating_groups_language"
]
},
"Label": {
"type": "string"
}
}
}
}
}
]
},
"minItems": 0
},
"Certificate": {
"description": "Describes a list of linguistic certificates",
"type": "array",
"items": {
"type": "object",
"properties": {
"Title": {
"type": "string"
},
"AwardingBody": {
"type": "string"
},
"Date": {
"$ref": "#/definitions/structuredDateType"
},
"Level": {
"$ref": "#/definitions/cefrLevelType"
}
},
"additionalProperties": false
},
"minItems": 0
}
}
},
{
"$ref": "#/definitions/sectionReferenceToListType"
}
]
},
"minItems": 0
}
}
},
"Communication": {
"$ref": "#/definitions/genericSkillType"
},
"Organisational": {
"$ref": "#/definitions/genericSkillType"
},
"JobRelated": {
"$ref": "#/definitions/genericSkillType"
},
"Computer": {
"description": "Describes a person's computer skills, including self assesement and c ertifications if applicable",
"type": "object",
"allOf": [
{
"properties": {
"Description": {
"type": "string"
},
"ProficiencyLevel": {
"type": "object",
"properties": {
"Information": {
"$ref": "#/definitions/ictLevelType"
},
"Communication": {
"$ref": "#/definitions/ictLevelType"
},
"ContentCreation": {
"$ref": "#/definitions/ictLevelType"
},
"Safety": {
"$ref": "#/definitions/ictLevelType"
},
"ProblemSolving": {
"$ref": "#/definitions/ictLevelType"
}
},
"additionalProperties": false
},
"Certificate": {
"description": "Describes a list of computer certificates",
"type": "array",
"items": {
"type": "object",
"properties": {
"Title": {
"type": "string"
}
},
"additionalProperties": false
},
"minItems": 0
}
}
},
{
"$ref": "#/definitions/sectionReferenceToListType"
}
]
},
"Driving": {
"allOf": [
{
"properties": {
"Description": {
"type": "array",
"items": {
"type": "string",
"enum": [
"A",
"B",
"C",
"D",
"A1",
"B1",
"C1",
"D1",
"BE",
"CE",
"DE",
"C1E",
"D1E"
]
},
"minItems": 0
}
}
},
{
"$ref": "#/definitions/sectionReferenceToListType"
}
]
},
"Other": {
"$ref": "#/definitions/genericSkillType"
}
},
"additionalProperties": false
},
"Achievement": {
"title": "Achievements",
"description": "Contains a list of additional information about the various achievements of an individual, such as participation to conferences, workshops, memberships to organisations, list of publications, etc.",
"type": "array",
"items": {
"allOf": [
{
"$ref": "#/definitions/sectionReferenceToListType"
},
{
"properties": {
"Title": {
"type": "object",
"properties": {
"Code": {
"type": "string",
"enum": [
"honors_awards",
"publications",
"presentations",
"projects",
"citations",
"memberships",
"conferences",
"seminars",
"workshops",
"references",
"signature_equivalent",
"courses",
"certifications"
]
},
"Label": {
"type": "string"
}
}
},
"Description": {
"type": "string"
}
}
}
]
},
"minItems": 0
},
"ReferenceTo": {
"type": "array",
"items": {
"type": "object",
"properties": {
"idref": {
"type": "string"
}
}
},
"minItems": 0
}
}
},
"Attachment": {
"type": "array",
"items": {
"allOf": [
{
"$ref": "#/definitions/fileDataType"
},
{
"properties": {
"MimeType": {
"type": "string",
"enum": [
"image/jpeg",
"image/pjpeg",
"image/png",
"image/x-png",
"application/pdf"
]
},
"Description": {
"type": "string"
}
}
}
]
},
"minItems": 0
},
"CoverLetter": {
"type": "object",
"properties": {
"Addressee": {
"type": "object",
"properties": {
"PersonName": {
"$ref": "#/definitions/personNameType"
},
"Position": {
"$ref": "#/definitions/occupationalFieldType"
},
"Organisation": {
"$ref": "#/definitions/organisationType"
}
},
"additionalProperties": false
},
"Letter": {
"type": "object",
"properties": {
"Localisation": {
"type": "object",
"properties": {
"Date": {
"$ref": "#/definitions/structuredDateType"
},
"Place": {
"type": "object",
"properties": {
"Municipality": {
"type": "string"
},
"Country": {
"$ref": "#/definitions/countryType"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"SubjectLine": {
"type": "string"
},
"OpeningSalutation": {
"type": "object",
"properties": {
"Salutation": {
"$ref": "#/definitions/openingSalutationType"
},
"PersonName": {
"$ref": "#/definitions/personNameType"
}
},
"additionalProperties": false
},
"Body": {
"type": "object",
"properties": {
"Opening": {
"type": "string"
},
"MainBody": {
"type": "string"
},
"Closing": {
"type": "string"
}
},
"additionalProperties": false
},
"ClosingSalutation": {
"$ref": "#/definitions/closingSalutationType"
}
},
"additionalProperties": false
},
"Documentation": {
"$ref": "#/definitions/genericDocumentationType"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
}
} | o48866 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Credit card token funding instrument",
"description": "PayPal credit card token funding instrument json schema",
"type": "object",
"properties": {
"credit_card_id": {
"description": "ID of credit card previously stored using /vault/credit-card",
"type": "string"
},
"payer_id": {
"description": "A unique identifier that you can assign and track when storing a credit card or using a stored credit card. This ID can help to avoid unintentional use or misuse of credit cards. This ID can be any value you would like to associate with the saved card, such as a UUID, username, or email address. Required when using a stored credit card if a payer_id was originally provided when storing the credit card in vault.",
"type": "string"
},
"last4": {
"description": "Last four digits of the stored credit card number. Value generated by PayPal.",
"type": "string"
},
"type": {
"description": "Credit card type. Valid types are: visa, mastercard, discover, amex. Values are presented in lowercase and not should not be used for display. Value generated by PayPal.",
"type": "string",
"enum": [
"visa",
"mastercard",
"discover",
"amex"
]
},
"expire_year": {
"description": "4-digit expiration year. Value generated by PayPal.",
"type": "number",
"pattern": "^([\\d]{4})$"
},
"expire_month": {
"description": "Expiration month with no leading zero. Acceptable values are 1 through 12. Value generated by PayPal.",
"type": "number",
"minimum": 0,
"maximum": 12
}
},
"required": [
"id",
"payment_method",
"type",
"expire_month",
"expire_year"
]
} | o66053 |
{
"description": "WebhookThrottleConfig holds the configuration for throttling events",
"properties": {
"burst": {
"description": "ThrottleBurst is the maximum number of events sent at the same moment default 15 QPS",
"format": "int64",
"type": [
"integer",
"null"
]
},
"qps": {
"description": "ThrottleQPS maximum number of batches per second default 10 QPS",
"format": "int64",
"type": [
"integer",
"null"
]
}
},
"type": "object"
} | kb_1156_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"email": {
"type": "string",
"format": "email"
},
"password": {
"type": "string"
},
"givenName": {
"type": "string"
},
"familyName": {
"type": "string"
},
"image": {
"type": "string",
"format": "url"
}
},
"type": "object",
"properties": {
"email": {
"$ref": "#/definitions/email"
},
"password": {
"$ref": "#/definitions/password"
},
"givenName": {
"$ref": "#/definitions/givenName"
},
"familyName": {
"$ref": "#/definitions/familyName"
},
"image": {
"$ref": "#/definitions/image"
}
}
} | o79476 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Configuration for a piece of audio content, over a stream.",
"id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.10.5/utils/audio_stream.json",
"properties": {
"audio_codec": {
"description": "The codec used to encode the audio stream. (E.g. mpeg)",
"title": "Audio Codec",
"type": "string"
},
"bitrate": {
"description": "The bitrate of the audio in kilobytes per second.",
"title": "Bitrate",
"type": "number"
},
"filesize": {
"description": "The size of the audio file in bytes.",
"title": "File size",
"type": "number"
},
"stream_type": {
"description": "The type of audio (e.g. mp3).",
"title": "Audio Stream Type",
"type": "string"
},
"url": {
"_format": "uri",
"description": "The file location of the stream.",
"title": "URL",
"type": "string"
}
},
"required": [
"url"
],
"title": "A stream of audio.",
"type": "object"
} | o85967 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "AvailableFilesResponse",
"type": "object",
"additionalProperties": false,
"properties": {
"files": {
"type": "array",
"items": {
"type": "string"
}
}
},
"javaName": "AvailableFilesResponse"
} | o39423 |
{
"properties": {
"arrayKey1": {
"items": {
"properties": {
"stringKey": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"arrayKey2": {
"items": {
"properties": {
"stringKey": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"booleanKey": {
"type": "boolean"
},
"numberKey": {
"type": "number"
},
"objectKey1": {
"properties": {
"objectKey": {
"properties": {
"stringKey": {
"type": "string"
}
},
"type": "object"
},
"stringKey": {
"type": "string"
}
},
"type": "object"
},
"objectKey2": {
"additionalProperties": true,
"properties": {
"stringKey": {
"default": "default objectKey2.stringKey",
"type": "string"
}
},
"type": "object"
},
"oneOfKey1": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"oneOfKey2": {
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"requiredKey": {
"type": "number"
},
"stringKey": {
"type": "string"
},
"stringKeyDefault": {
"default": "defaultValue",
"type": "string"
}
},
"required": [
"requiredKey"
],
"type": "object"
} | o91132 |
{
"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_DELIVERY",
"vendor": "com.urbanairship.connect",
"version": "1-0-0"
},
"type": "object"
} | sp_395_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": "ContainerStateTerminated is a terminated state of a container.",
"properties": {
"containerID": {
"description": "Container's ID in the format 'docker://<container_id>'",
"type": [
"string",
"null"
]
},
"exitCode": {
"description": "Exit status from the last termination of the container",
"format": "int32",
"type": [
"integer",
"null"
]
},
"finishedAt": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time at which the container last terminated"
},
"message": {
"description": "Message regarding the last termination of the container",
"type": [
"string",
"null"
]
},
"reason": {
"description": "(brief) reason from the last termination of the container",
"type": [
"string",
"null"
]
},
"signal": {
"description": "Signal from the last termination of the container",
"format": "int32",
"type": [
"integer",
"null"
]
},
"startedAt": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time at which previous execution of the container started"
}
},
"required": [
"exitCode"
],
"type": "object"
} | kb_130_Normalized |
{
"version": "0.3",
"definitions": {
"color": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}([0-9a-fA-F]{2})?$",
"title": "Color",
"description": "Color in #RRGGBB or #RRGGBBAA format",
"examples": [
"#123abc",
"#123abc80"
]
},
"ColorPaletteBase": {
"type": "object",
"properties": {
"Actions.Red": {
"$ref": "#/definitions/color",
"description": "Action colors are for icons that appear on toolbars"
},
"Actions.Yellow": {
"$ref": "#/definitions/color"
},
"Actions.Green": {
"$ref": "#/definitions/color"
},
"Actions.Blue": {
"$ref": "#/definitions/color"
},
"Actions.Grey": {
"$ref": "#/definitions/color"
},
"Actions.GreyInline": {
"$ref": "#/definitions/color",
"description": "Light-gray icons at the right side in input fields and combo boxes"
},
"Actions.GreyInline.Dark": {
"$ref": "#/definitions/color",
"description": "Use for dark themes"
},
"Objects.Grey": {
"$ref": "#/definitions/color",
"description": "Object colors are for icons in lists and trees"
},
"Objects.Blue": {
"$ref": "#/definitions/color"
},
"Objects.Green": {
"$ref": "#/definitions/color"
},
"Objects.Yellow": {
"$ref": "#/definitions/color"
},
"Objects.YellowDark": {
"$ref": "#/definitions/color"
},
"Objects.Purple": {
"$ref": "#/definitions/color"
},
"Objects.Pink": {
"$ref": "#/definitions/color"
},
"Objects.Red": {
"$ref": "#/definitions/color"
},
"Objects.RedStatus": {
"$ref": "#/definitions/color"
},
"Objects.GreenAndroid": {
"$ref": "#/definitions/color"
},
"Objects.BlackText": {
"$ref": "#/definitions/color"
},
"Checkbox.Background.Default": {
"$ref": "#/definitions/color",
"description": "An unchecked checkbox or radio button"
},
"Checkbox.Border.Default": {
"$ref": "#/definitions/color"
},
"Checkbox.Background.Selected": {
"$ref": "#/definitions/color",
"description": "A checked checkbox or radio button"
},
"Checkbox.Border.Selected": {
"$ref": "#/definitions/color"
},
"Checkbox.Foreground.Selected": {
"$ref": "#/definitions/color"
},
"Checkbox.Background.Disabled": {
"$ref": "#/definitions/color",
"description": "A disabled checkbox or radio button"
},
"Checkbox.Border.Disabled": {
"$ref": "#/definitions/color"
},
"Checkbox.Foreground.Disabled": {
"$ref": "#/definitions/color"
},
"Checkbox.Focus.Thin.Default": {
"$ref": "#/definitions/color",
"description": "1px inner border in the focused state"
},
"Checkbox.Focus.Thin.Selected": {
"$ref": "#/definitions/color"
},
"Checkbox.Focus.Wide": {
"$ref": "#/definitions/color",
"description": "2px outer border in the focused state"
},
"Checkbox.Background.Default.Dark": {
"$ref": "#/definitions/color",
"description": "Use for dark themes"
},
"Checkbox.Border.Default.Dark": {
"$ref": "#/definitions/color",
"description": "Use for dark themes"
},
"Checkbox.Background.Selected.Dark": {
"$ref": "#/definitions/color",
"description": "Use for dark themes"
},
"Checkbox.Border.Selected.Dark": {
"$ref": "#/definitions/color",
"description": "Use for dark themes"
},
"Checkbox.Foreground.Selected.Dark": {
"$ref": "#/definitions/color",
"description": "Use for dark themes"
},
"Checkbox.Background.Disabled.Dark": {
"$ref": "#/definitions/color",
"description": "Use for dark themes"
},
"Checkbox.Border.Disabled.Dark": {
"$ref": "#/definitions/color",
"description": "Use for dark themes"
},
"Checkbox.Foreground.Disabled.Dark": {
"$ref": "#/definitions/color",
"description": "Use for dark themes"
},
"Checkbox.Focus.Thin.Default.Dark": {
"$ref": "#/definitions/color",
"description": "Use for dark themes"
},
"Checkbox.Focus.Thin.Selected.Dark": {
"$ref": "#/definitions/color",
"description": "Use for dark themes"
},
"Checkbox.Focus.Wide.Dark": {
"$ref": "#/definitions/color",
"description": "Use for dark themes"
}
}
},
"ColorPalette": {
"anyOf": [
{
"$ref": "#/definitions/ColorPaletteBase"
}
],
"properties": {
"Protanopia": {
"$ref": "#/definitions/ColorPaletteBase",
"description": "Color palette for protanopia vision deficiency"
},
"Deuteranopia": {
"$ref": "#/definitions/ColorPaletteBase",
"description": "Color palette for deuteranopia vision deficiency"
}
}
}
},
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"name",
"dark",
"author",
"ui"
],
"properties": {
"name": {
"type": "string",
"title": "Theme name",
"description": "Theme name",
"default": "",
"examples": [
"My Brand New Theme"
]
},
"dark": {
"type": "boolean",
"title": "Dark theme",
"description": "If 'true' then Darcula theme will be used as the base for modification, otherwise Light theme will be used.",
"default": false,
"examples": [
true
]
},
"author": {
"type": "string",
"title": "Theme author",
"description": "The author of the theme",
"default": "",
"examples": [
"John Doe"
]
},
"editorScheme": {
"type": "string",
"title": "Path to the editor schema xml file starting with '/'",
"default": "",
"pattern": "^/",
"examples": [
"/editorScheme.xml"
]
},
"ui": {
"type": "object"
},
"background": {
"type": "object",
"required": [
"image"
],
"title": "Background image",
"description": "Background image for entire window",
"properties": {
"image": {
"type": "string",
"title": "Path to the background image",
"description": "Path to the background image starting with '/'",
"default": "",
"examples": [
"/background.jpg"
]
},
"transparency": {
"type": "integer",
"title": "Transparency for background image.",
"description": "An integer from 0 to 100.",
"default": 10,
"minimum": 0,
"maximum": 100,
"examples": [
10
]
},
"fill": {
"type": "string",
"title": "Background image filling options",
"default": "scale",
"description": "Background image filling options. One of the following values: plain, scale, tile",
"enum": [
"plain",
"scale",
"tile"
],
"examples": [
"scale"
]
},
"anchor": {
"type": "string",
"title": "Background image anchor",
"default": "center",
"description": "Background image anchor. One of the following values: top_left, top_center, top_right, middle_left, center, middle_right, bottom_left, bottom_center, bottom_right",
"enum": [
"top_left",
"top_center",
"top_right",
"middle_left",
"center",
"middle_right",
"bottom_left",
"bottom_center",
"bottom_right"
],
"examples": [
"center"
]
}
}
},
"icons": {
"type": "object",
"patternProperties": {
"^/": {
"type": "string",
"pattern": "^/"
},
"^[^/]": {
"type": "object",
"patternProperties": {
"^/": {
"type": "string",
"pattern": "^/"
}
}
}
},
"properties": {
"ColorPalette": {
"$ref": "#/definitions/ColorPalette"
}
}
},
"colors": {
"type": "object",
"title": "Theme Color Palette",
"description": "Define common colors here and use color names in 'ui' section instead of #rrggbb values",
"patternProperties": {
".*": {
"$ref": "#/definitions/color"
}
}
}
}
} | o66237 |
{
"additionalProperties": false,
"description": "Snowplow PostgreSQL storage configuration",
"properties": {
"database": {
"description": "PostgreSQL database name",
"maxLength": 64,
"minLength": 1,
"type": "string"
},
"host": {
"anyOf": [
{
"format": "hostname"
},
{
"format": "ipv4"
},
{
"format": "ipv6"
}
],
"description": "PostgreSQL host ('localhost' for enabled SSH Tunnel)",
"type": "string"
},
"id": {
"_format": "uuid",
"description": "Machine-readable unique identificator",
"type": "string"
},
"name": {
"description": "Human-readable storage target name, used only for logging",
"maxLength": 255,
"type": "string"
},
"password": {
"description": "PostgreSQL password, either plain-text or encrypted key for EC2 Parameter Storage",
"properties": {
"ec2ParameterStore": {
"description": "EC2 Parameter Storage configuration",
"properties": {
"parameterName": {
"description": "EC2 Parameter with encrypted password",
"type": "string"
}
},
"required": [
"parameterName"
],
"type": "object"
}
},
"required": [
"ec2ParameterStore"
],
"type": [
"string",
"object"
]
},
"port": {
"description": "PostgreSQL database port",
"maximum": 65535,
"minimum": 1,
"type": "integer"
},
"processingManifest": {
"description": "Optional processing manifest to maintain pipeline state",
"properties": {
"amazonDynamoDb": {
"description": "Configuration for processing manifest on top of DynamoDB - single available implementation",
"properties": {
"tableName": {
"description": "DynamoDB table name",
"maxLength": 255,
"minLength": 3,
"type": "string"
}
},
"required": [
"tableName"
],
"type": "object"
}
},
"required": [
"amazonDynamoDb"
],
"type": [
"object",
"null"
]
},
"purpose": {
"description": "Kind of data stored in this instance",
"enum": [
"ENRICHED_EVENTS"
]
},
"schema": {
"description": "PostgreSQL database schema (e.g. 'atomic')",
"maxLength": 64,
"type": "string"
},
"sshTunnel": {
"description": "Optional SSH Tunnel configuration",
"properties": {
"bastion": {
"description": "Bastion host configuration",
"properties": {
"host": {
"anyOf": [
{
"format": "hostname"
},
{
"format": "ipv4"
},
{
"format": "ipv6"
}
],
"description": "Bastion SSH host",
"type": "string"
},
"key": {
"description": "SSH-key stored in EC2 Parameter Storage",
"properties": {
"ec2ParameterStore": {
"properties": {
"parameterName": {
"maxLength": 2048,
"type": "string"
}
},
"required": [
"parameterName"
],
"type": "object"
}
},
"required": [
"ec2ParameterStore"
],
"type": [
"object",
"null"
]
},
"passphrase": {
"description": "Plain-text SSH user's passphrase",
"maxLength": 2048,
"type": [
"string",
"null"
]
},
"port": {
"description": "Bastion SSH port",
"maximum": 65535,
"minimum": 1,
"type": "integer"
},
"user": {
"description": "SSH user",
"type": "string"
}
},
"required": [
"host",
"port",
"user",
"passphrase",
"key"
],
"type": "object"
},
"destination": {
"description": "Database socket inside private network",
"properties": {
"host": {
"anyOf": [
{
"format": "hostname"
},
{
"format": "ipv4"
},
{
"format": "ipv6"
}
],
"description": "PostgreSQL host inside private network (root-level host should be changed to 'localhost')",
"type": "string"
},
"port": {
"description": "PostgreSQL port inside private network (root-level port should be changed to be indentical to 'localPort')",
"maximum": 65535,
"minimum": 1,
"type": "integer"
}
},
"required": [
"host",
"port"
],
"type": "object"
},
"localPort": {
"description": "Arbitrary port on node, running Loader (shoul be identical to root-level 'port')",
"maximum": 65535,
"minimum": 1,
"type": "integer"
}
},
"required": [
"bastion",
"destination",
"localPort"
],
"type": [
"object",
"null"
]
},
"sslMode": {
"description": "JDBC sslMode",
"enum": [
"DISABLE",
"REQUIRE",
"VERIFY_CA",
"VERIFY_FULL"
],
"type": "string"
},
"username": {
"description": "PostgreSQL user used to load data",
"maxLength": 64,
"type": "string"
}
},
"required": [
"name",
"id",
"host",
"database",
"port",
"username",
"password",
"schema",
"sshTunnel",
"processingManifest",
"sslMode",
"purpose"
],
"self": {
"format": "jsonschema",
"name": "postgresql_config",
"vendor": "com.snowplowanalytics.snowplow.storage",
"version": "2-0-0"
},
"type": "object"
} | sp_367_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"location": {
"type": "object",
"properties": {
"alias": {
"type": "string"
},
"address": {
"type": "string"
},
"coordinates": {
"type": "object",
"properties": {
"lat": {
"type": "number"
},
"lng": {
"type": "number"
}
},
"required": [
"lat",
"lng"
]
}
},
"required": [
"alias",
"address",
"coordinates"
]
},
"contact": {
"type": "object",
"properties": {
"phone": {
"type": "string"
}
},
"required": [
"phone"
]
},
"priceRange": {
"type": "object",
"properties": {
"from": {
"type": "number",
"minimum": 0
},
"to": {
"type": "number",
"minimum": 0
}
},
"required": [
"from",
"to"
]
},
"menu": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"price": {
"type": "number",
"minimum": 0
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"name",
"price",
"tags"
]
}
}
},
"additionalProperties": false,
"required": [
"name"
]
} | o19364 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_IDRange": {
"description": "IDRange provides a min/max of an allowed range of IDs.",
"properties": {
"max": {
"_format": "int64",
"description": "max is the end of the range, inclusive.",
"type": "integer"
},
"min": {
"_format": "int64",
"description": "min is the start of the range, inclusive.",
"type": "integer"
}
},
"required": [
"min",
"max"
],
"type": "object"
}
},
"description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.",
"properties": {
"ranges": {
"description": "ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_IDRange"
},
"type": [
"array",
"null"
]
},
"rule": {
"description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.",
"type": [
"string",
"null"
]
}
},
"required": [
"rule"
],
"type": "object"
} | kb_891_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": {
"description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
"type": "integer"
},
"readOnly": {
"description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "boolean"
},
"volumeID": {
"description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity": {
"description": "Affinity is a group of affinity scheduling rules.",
"properties": {
"nodeAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity",
"description": "Describes node affinity scheduling rules for the pod."
},
"podAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity",
"description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))."
},
"podAntiAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity",
"description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": {
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
"properties": {
"cachingMode": {
"description": "Host Caching mode: None, Read Only, Read Write.",
"type": "string"
},
"diskName": {
"description": "The Name of the data disk in the blob storage",
"type": "string"
},
"diskURI": {
"description": "The URI the data disk in the blob storage",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"kind": {
"description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
}
},
"required": [
"diskName",
"diskURI"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource": {
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
"properties": {
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretName": {
"description": "the name of secret that contains Azure Storage Account Name and Key",
"type": "string"
},
"shareName": {
"description": "Share Name",
"type": "string"
}
},
"required": [
"secretName",
"shareName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": {
"description": "Represents a source location of a volume to mount, managed by an external CSI driver",
"properties": {
"driver": {
"description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.",
"type": "string"
},
"nodePublishSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed."
},
"readOnly": {
"description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).",
"type": "boolean"
},
"volumeAttributes": {
"additionalProperties": {
"type": "string"
},
"description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.",
"type": "object"
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": {
"description": "Adds and removes POSIX capabilities from running containers.",
"properties": {
"add": {
"description": "Added capabilities",
"items": {
"type": "string"
},
"type": "array"
},
"drop": {
"description": "Removed capabilities",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": {
"description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"monitors": {
"description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "boolean"
},
"secretFile": {
"description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
},
"user": {
"description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource": {
"description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
},
"volumeID": {
"description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource": {
"description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector": {
"description": "Selects a key from a ConfigMap.",
"properties": {
"key": {
"description": "The key to select.",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its key must be defined",
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection": {
"description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": {
"description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container": {
"description": "A single application container that you want to run within a pod.",
"properties": {
"args": {
"description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"description": "List of environment variables to set in the container. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"envFrom": {
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"image": {
"description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.",
"type": "string"
},
"imagePullPolicy": {
"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
"type": "string"
},
"lifecycle": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle",
"description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated."
},
"livenessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"name": {
"description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.",
"type": "string"
},
"ports": {
"description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"containerPort",
"protocol"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "containerPort",
"x-kubernetes-patch-strategy": "merge"
},
"readinessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"resources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements",
"description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/"
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext",
"description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
},
"startupProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"stdin": {
"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
"type": "boolean"
},
"stdinOnce": {
"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
"type": "boolean"
},
"terminationMessagePath": {
"description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
"type": "string"
},
"terminationMessagePolicy": {
"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
"type": "string"
},
"tty": {
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
"type": "boolean"
},
"volumeDevices": {
"description": "volumeDevices is the list of block devices to be used by the container.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice"
},
"type": "array",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge"
},
"volumeMounts": {
"description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort": {
"description": "ContainerPort represents a network port in a single container.",
"properties": {
"containerPort": {
"_format": "int32",
"description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.",
"type": "integer"
},
"hostIP": {
"description": "What host IP to bind the external port to.",
"type": "string"
},
"hostPort": {
"_format": "int32",
"description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.",
"type": "integer"
},
"name": {
"description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.",
"type": "string"
},
"protocol": {
"description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
"type": "string"
}
},
"required": [
"containerPort"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": {
"description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.",
"properties": {
"items": {
"description": "Items is a list of DownwardAPIVolume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": {
"description": "DownwardAPIVolumeFile represents information to create the file containing the pod field",
"properties": {
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported."
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'",
"type": "string"
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported."
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": {
"description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "Items is a list of downward API volume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": {
"description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
"properties": {
"medium": {
"description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir",
"type": "string"
},
"sizeLimit": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource": {
"description": "EnvFromSource represents the source of a set of ConfigMaps",
"properties": {
"configMapRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource",
"description": "The ConfigMap to select from"
},
"prefix": {
"description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource",
"description": "The Secret to select from"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar": {
"description": "EnvVar represents an environment variable present in a Container.",
"properties": {
"name": {
"description": "Name of the environment variable. Must be a C_IDENTIFIER.",
"type": "string"
},
"value": {
"description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".",
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource",
"description": "Source for the environment variable's value. Cannot be used if value is not empty."
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource": {
"description": "EnvVarSource represents a source for the value of an EnvVar.",
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector",
"description": "Selects a key of a ConfigMap."
},
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs."
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported."
},
"secretKeyRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector",
"description": "Selects a key of a secret in the pod's namespace"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer": {
"description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.",
"properties": {
"args": {
"description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"description": "List of environment variables to set in the container. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"envFrom": {
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"image": {
"description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images",
"type": "string"
},
"imagePullPolicy": {
"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
"type": "string"
},
"lifecycle": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle",
"description": "Lifecycle is not allowed for ephemeral containers."
},
"livenessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"name": {
"description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.",
"type": "string"
},
"ports": {
"description": "Ports are not allowed for ephemeral containers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort"
},
"type": "array"
},
"readinessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"resources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements",
"description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod."
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext",
"description": "SecurityContext is not allowed for ephemeral containers."
},
"startupProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"stdin": {
"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
"type": "boolean"
},
"stdinOnce": {
"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
"type": "boolean"
},
"targetContainerName": {
"description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.",
"type": "string"
},
"terminationMessagePath": {
"description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
"type": "string"
},
"terminationMessagePolicy": {
"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
"type": "string"
},
"tty": {
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
"type": "boolean"
},
"volumeDevices": {
"description": "volumeDevices is the list of block devices to be used by the container.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice"
},
"type": "array",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge"
},
"volumeMounts": {
"description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": {
"description": "ExecAction describes a \"run in container\" action.",
"properties": {
"command": {
"description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": {
"description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "Optional: FC target lun number",
"type": "integer"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"targetWWNs": {
"description": "Optional: FC target worldwide names (WWNs)",
"items": {
"type": "string"
},
"type": "array"
},
"wwids": {
"description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource": {
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
"properties": {
"driver": {
"description": "Driver is the name of the driver to use for this volume.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.",
"type": "string"
},
"options": {
"additionalProperties": {
"type": "string"
},
"description": "Optional: Extra command options if any.",
"type": "object"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts."
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": {
"description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.",
"properties": {
"datasetName": {
"description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
"type": "string"
},
"datasetUUID": {
"description": "UUID of the dataset. This is unique identifier of a Flocker dataset",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": {
"description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "integer"
},
"pdName": {
"description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "boolean"
}
},
"required": [
"pdName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource": {
"description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
"properties": {
"directory": {
"description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.",
"type": "string"
},
"repository": {
"description": "Repository URL",
"type": "string"
},
"revision": {
"description": "Commit hash for the specified revision.",
"type": "string"
}
},
"required": [
"repository"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": {
"description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"endpoints": {
"description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"path": {
"description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "boolean"
}
},
"required": [
"endpoints",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction": {
"description": "HTTPGetAction describes an action based on HTTP Get requests.",
"properties": {
"host": {
"description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
"type": "string"
},
"httpHeaders": {
"description": "Custom headers to set in the request. HTTP allows repeated headers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader"
},
"type": "array"
},
"path": {
"description": "Path to access on the HTTP server.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
},
"scheme": {
"description": "Scheme to use for connecting to the host. Defaults to HTTP.",
"type": "string"
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": {
"description": "HTTPHeader describes a custom header to be used in HTTP probes",
"properties": {
"name": {
"description": "The header field name",
"type": "string"
},
"value": {
"description": "The header field value",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": {
"description": "Handler defines a specific action that should be taken",
"properties": {
"exec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"httpGet": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"tcpSocket": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias": {
"description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
"properties": {
"hostnames": {
"description": "Hostnames for the above IP address.",
"items": {
"type": "string"
},
"type": "array"
},
"ip": {
"description": "IP address of the host file entry.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": {
"description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
},
"type": {
"description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource": {
"description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
"properties": {
"chapAuthDiscovery": {
"description": "whether support iSCSI Discovery CHAP authentication",
"type": "boolean"
},
"chapAuthSession": {
"description": "whether support iSCSI Session CHAP authentication",
"type": "boolean"
},
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi",
"type": "string"
},
"initiatorName": {
"description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
"type": "string"
},
"iqn": {
"description": "Target iSCSI Qualified Name.",
"type": "string"
},
"iscsiInterface": {
"description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "iSCSI Target Lun number.",
"type": "integer"
},
"portals": {
"description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"items": {
"type": "string"
},
"type": "array"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "CHAP Secret for iSCSI target and initiator authentication"
},
"targetPortal": {
"description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"type": "string"
}
},
"required": [
"targetPortal",
"iqn",
"lun"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath": {
"description": "Maps a string key to a path within a volume.",
"properties": {
"key": {
"description": "The key to project.",
"type": "string"
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.",
"type": "string"
}
},
"required": [
"key",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle": {
"description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.",
"properties": {
"postStart": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler",
"description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
},
"preStop": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler",
"description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": {
"description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": {
"description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "boolean"
},
"server": {
"description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
}
},
"required": [
"server",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity": {
"description": "Node affinity is a group of node affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector",
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": {
"description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.",
"properties": {
"nodeSelectorTerms": {
"description": "Required. A list of node selector terms. The terms are ORed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm"
},
"type": "array"
}
},
"required": [
"nodeSelectorTerms"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": {
"description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "The label key that the selector applies to.",
"type": "string"
},
"operator": {
"description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
"type": "string"
},
"values": {
"description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": {
"description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.",
"properties": {
"matchExpressions": {
"description": "A list of node selector requirements by node's labels.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
},
"matchFields": {
"description": "A list of node selector requirements by node's fields.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": {
"description": "ObjectFieldSelector selects an APIVersioned field of an object.",
"properties": {
"apiVersion": {
"description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
"type": "string"
},
"fieldPath": {
"description": "Path of the field to select in the specified API version.",
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": {
"description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).",
"properties": {
"claimName": {
"description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
"type": "string"
},
"readOnly": {
"description": "Will force the ReadOnly setting in VolumeMounts. Default false.",
"type": "boolean"
}
},
"required": [
"claimName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": {
"description": "Represents a Photon Controller persistent disk resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"pdID": {
"description": "ID that identifies Photon Controller persistent disk",
"type": "string"
}
},
"required": [
"pdID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity": {
"description": "Pod affinity is a group of inter pod affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": {
"description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running",
"properties": {
"labelSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "A label query over a set of resources, in this case pods."
},
"namespaces": {
"description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"",
"items": {
"type": "string"
},
"type": "array"
},
"topologyKey": {
"description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.",
"type": "string"
}
},
"required": [
"topologyKey"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": {
"description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig": {
"description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.",
"properties": {
"nameservers": {
"description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.",
"items": {
"type": "string"
},
"type": "array"
},
"options": {
"description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption"
},
"type": "array"
},
"searches": {
"description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption": {
"description": "PodDNSConfigOption defines DNS resolver options of a pod.",
"properties": {
"name": {
"description": "Required.",
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate": {
"description": "PodReadinessGate contains the reference to a pod condition",
"properties": {
"conditionType": {
"description": "ConditionType refers to a condition in the pod's condition list with matching type.",
"type": "string"
}
},
"required": [
"conditionType"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext": {
"description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.",
"properties": {
"fsGroup": {
"_format": "int64",
"description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.",
"type": "integer"
},
"fsGroupChangePolicy": {
"description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".",
"type": "string"
},
"runAsGroup": {
"_format": "int64",
"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"type": "integer"
},
"runAsNonRoot": {
"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "boolean"
},
"runAsUser": {
"_format": "int64",
"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"type": "integer"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container."
},
"supplementalGroups": {
"description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.",
"items": {
"_format": "int64",
"type": "integer"
},
"type": "array"
},
"sysctls": {
"description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl"
},
"type": "array"
},
"windowsOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions",
"description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": {
"description": "PortworxVolumeSource represents a Portworx volume resource.",
"properties": {
"fsType": {
"description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"volumeID": {
"description": "VolumeID uniquely identifies a Portworx volume",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm": {
"description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).",
"properties": {
"preference": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm",
"description": "A node selector term, associated with the corresponding weight."
},
"weight": {
"_format": "int32",
"description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
"type": "integer"
}
},
"required": [
"weight",
"preference"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe": {
"description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.",
"properties": {
"exec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"failureThreshold": {
"_format": "int32",
"description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
"type": "integer"
},
"httpGet": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"initialDelaySeconds": {
"_format": "int32",
"description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
"type": "integer"
},
"periodSeconds": {
"_format": "int32",
"description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
"type": "integer"
},
"successThreshold": {
"_format": "int32",
"description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.",
"type": "integer"
},
"tcpSocket": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
},
"timeoutSeconds": {
"_format": "int32",
"description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
"type": "integer"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource": {
"description": "Represents a projected volume source",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"sources": {
"description": "list of volume projections",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection"
},
"type": "array"
}
},
"required": [
"sources"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": {
"description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.",
"properties": {
"group": {
"description": "Group to map volume access to Default is no group",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.",
"type": "boolean"
},
"registry": {
"description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes",
"type": "string"
},
"tenant": {
"description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin",
"type": "string"
},
"user": {
"description": "User to map volume access to Defaults to serivceaccount user",
"type": "string"
},
"volume": {
"description": "Volume is a string that references an already created Quobyte volume by name.",
"type": "string"
}
},
"required": [
"registry",
"volume"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource": {
"description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd",
"type": "string"
},
"image": {
"description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"keyring": {
"description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"monitors": {
"description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"pool": {
"description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
},
"user": {
"description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors",
"image"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": {
"description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
"properties": {
"containerName": {
"description": "Container name: required for volumes, optional for env vars",
"type": "string"
},
"divisor": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Specifies the output format of the exposed resources, defaults to \"1\""
},
"resource": {
"description": "Required: resource to select",
"type": "string"
}
},
"required": [
"resource"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements": {
"description": "ResourceRequirements describes the compute resource requirements.",
"properties": {
"limits": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": "object"
},
"requests": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": {
"description": "SELinuxOptions are the labels to be applied to the container",
"properties": {
"level": {
"description": "Level is SELinux level label that applies to the container.",
"type": "string"
},
"role": {
"description": "Role is a SELinux role label that applies to the container.",
"type": "string"
},
"type": {
"description": "Type is a SELinux type label that applies to the container.",
"type": "string"
},
"user": {
"description": "User is a SELinux user label that applies to the container.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": {
"description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".",
"type": "string"
},
"gateway": {
"description": "The host address of the ScaleIO API Gateway.",
"type": "string"
},
"protectionDomain": {
"description": "The name of the ScaleIO Protection Domain for the configured storage.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
},
"sslEnabled": {
"description": "Flag to enable/disable SSL communication with Gateway, default false",
"type": "boolean"
},
"storageMode": {
"description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
"type": "string"
},
"storagePool": {
"description": "The ScaleIO Storage Pool associated with the protection domain.",
"type": "string"
},
"system": {
"description": "The name of the storage system as configured in ScaleIO.",
"type": "string"
},
"volumeName": {
"description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
"type": "string"
}
},
"required": [
"gateway",
"system",
"secretRef"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource": {
"description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector": {
"description": "SecretKeySelector selects a key of a Secret.",
"properties": {
"key": {
"description": "The key of the secret to select from. Must be a valid secret key.",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection": {
"description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": {
"description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"optional": {
"description": "Specify whether the Secret or its keys must be defined",
"type": "boolean"
},
"secretName": {
"description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext": {
"description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.",
"properties": {
"allowPrivilegeEscalation": {
"description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN",
"type": "boolean"
},
"capabilities": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities",
"description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime."
},
"privileged": {
"description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.",
"type": "boolean"
},
"procMount": {
"description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.",
"type": "string"
},
"readOnlyRootFilesystem": {
"description": "Whether this container has a read-only root filesystem. Default is false.",
"type": "boolean"
},
"runAsGroup": {
"_format": "int64",
"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "integer"
},
"runAsNonRoot": {
"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "boolean"
},
"runAsUser": {
"_format": "int64",
"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "integer"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
},
"windowsOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions",
"description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": {
"description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).",
"properties": {
"audience": {
"description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.",
"type": "string"
},
"expirationSeconds": {
"_format": "int64",
"description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.",
"type": "integer"
},
"path": {
"description": "Path is the path relative to the mount point of the file to project the token into.",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": {
"description": "Represents a StorageOS persistent volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted."
},
"volumeName": {
"description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.",
"type": "string"
},
"volumeNamespace": {
"description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl": {
"description": "Sysctl defines a kernel parameter to be set",
"properties": {
"name": {
"description": "Name of a property to set",
"type": "string"
},
"value": {
"description": "Value of a property to set",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction": {
"description": "TCPSocketAction describes an action based on opening a socket",
"properties": {
"host": {
"description": "Optional: Host name to connect to, defaults to the pod IP.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": {
"description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
"properties": {
"effect": {
"description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
"type": "string"
},
"key": {
"description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.",
"type": "string"
},
"operator": {
"description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.",
"type": "string"
},
"tolerationSeconds": {
"_format": "int64",
"description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.",
"type": "integer"
},
"value": {
"description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint": {
"description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
"properties": {
"labelSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain."
},
"maxSkew": {
"_format": "int32",
"description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.",
"type": "integer"
},
"topologyKey": {
"description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.",
"type": "string"
},
"whenUnsatisfiable": {
"description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.",
"type": "string"
}
},
"required": [
"maxSkew",
"topologyKey",
"whenUnsatisfiable"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume": {
"description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
"properties": {
"awsElasticBlockStore": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource",
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
},
"azureDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource",
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
},
"azureFile": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource",
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
},
"cephfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource",
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
},
"cinder": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource",
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
},
"configMap": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource",
"description": "ConfigMap represents a configMap that should populate this volume"
},
"csi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource",
"description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)."
},
"downwardAPI": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource",
"description": "DownwardAPI represents downward API about the pod that should populate this volume"
},
"emptyDir": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource",
"description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
},
"fc": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource",
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
},
"flexVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource",
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
},
"flocker": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource",
"description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
},
"gcePersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource",
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
},
"gitRepo": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource",
"description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
},
"glusterfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource",
"description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
},
"hostPath": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource",
"description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
},
"iscsi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource",
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
},
"name": {
"description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"nfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource",
"description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
},
"persistentVolumeClaim": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource",
"description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
},
"photonPersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource",
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
},
"portworxVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource",
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
},
"projected": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource",
"description": "Items for all in one resources secrets, configmaps, and downward API"
},
"quobyte": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource",
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
},
"rbd": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource",
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
},
"scaleIO": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource",
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
},
"secret": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource",
"description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
},
"storageos": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource",
"description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
},
"vsphereVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource",
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": {
"description": "volumeDevice describes a mapping of a raw block device within a container.",
"properties": {
"devicePath": {
"description": "devicePath is the path inside of the container that the device will be mapped to.",
"type": "string"
},
"name": {
"description": "name must match the name of a persistentVolumeClaim in the pod",
"type": "string"
}
},
"required": [
"name",
"devicePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": {
"description": "VolumeMount describes a mounting of a Volume within a container.",
"properties": {
"mountPath": {
"description": "Path within the container at which the volume should be mounted. Must not contain ':'.",
"type": "string"
},
"mountPropagation": {
"description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.",
"type": "string"
},
"name": {
"description": "This must match the Name of a Volume.",
"type": "string"
},
"readOnly": {
"description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
"type": "boolean"
},
"subPath": {
"description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
"type": "string"
},
"subPathExpr": {
"description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.",
"type": "string"
}
},
"required": [
"name",
"mountPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": {
"description": "Projection that may be projected along with other supported volume types",
"properties": {
"configMap": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection",
"description": "information about the configMap data to project"
},
"downwardAPI": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection",
"description": "information about the downwardAPI data to project"
},
"secret": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection",
"description": "information about the secret data to project"
},
"serviceAccountToken": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection",
"description": "information about the serviceAccountToken data to project"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": {
"description": "Represents a vSphere volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"storagePolicyID": {
"description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
"type": "string"
},
"storagePolicyName": {
"description": "Storage Policy Based Management (SPBM) profile name.",
"type": "string"
},
"volumePath": {
"description": "Path that identifies vSphere volume vmdk",
"type": "string"
}
},
"required": [
"volumePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": {
"description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
"properties": {
"podAffinityTerm": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm",
"description": "Required. A pod affinity term, associated with the corresponding weight."
},
"weight": {
"_format": "int32",
"description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
"type": "integer"
}
},
"required": [
"weight",
"podAffinityTerm"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": {
"description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
"properties": {
"gmsaCredentialSpec": {
"description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.",
"type": "string"
},
"gmsaCredentialSpecName": {
"description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
"type": "string"
},
"runAsUserName": {
"description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"description": "PodSpec is a description of a pod.",
"properties": {
"activeDeadlineSeconds": {
"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.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
],
"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",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
],
"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",
"null"
],
"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",
"null"
]
},
"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",
"null"
]
},
"hostPID": {
"description": "Use the host's pid namespace. Optional: Default to false.",
"type": [
"boolean",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
],
"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",
"null"
],
"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",
"null"
]
},
"nodeSelector": {
"additionalProperties": {
"type": [
"string",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
},
"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"
]
},
"priority": {
"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.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
},
"terminationGracePeriodSeconds": {
"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.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
],
"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",
"null"
],
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge,retainKeys"
}
},
"required": [
"containers"
],
"type": "object"
} | kb_734_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"compilationOptions": {
"description": "[Deprecated] Options that are passed to the compiler. Use 'buildOptions' instead.",
"type": "object",
"properties": {
"define": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"nowarn": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"warningsAsErrors": {
"type": "boolean",
"default": false
},
"allowUnsafe": {
"type": "boolean",
"default": false
},
"emitEntryPoint": {
"type": "boolean",
"default": false
},
"optimize": {
"type": "boolean",
"default": false
},
"platform": {
"type": "string",
"enum": [
"anycpu",
"anycpu32bitpreferred",
"ARM",
"x86",
"x64",
"Itanium"
]
},
"languageVersion": {
"type": "string",
"enum": [
"csharp1",
"csharp2",
"csharp3",
"csharp4",
"csharp5",
"csharp6",
"experimental"
]
},
"keyFile": {
"type": "string"
},
"delaySign": {
"type": "boolean",
"default": false
},
"publicSign": {
"type": "boolean",
"default": false
},
"debugType": {
"type": "string",
"enum": ["portable", "full", "none"]
},
"preserveCompilationContext": {
"type": "boolean",
"description": "Set this option to preserve reference assemblies and other context data to allow for runtime compilation"
},
"outputName": {
"type": "string"
}
}
},
"buildOptions": {
"description": "Options that are passed to the compiler.",
"type": "object",
"properties": {
"define": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"nowarn": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"warningsAsErrors": {
"type": "boolean",
"default": false
},
"allowUnsafe": {
"type": "boolean",
"default": false
},
"emitEntryPoint": {
"type": "boolean",
"default": false
},
"optimize": {
"type": "boolean",
"default": false
},
"platform": {
"type": "string",
"enum": [
"anycpu",
"anycpu32bitpreferred",
"ARM",
"x86",
"x64",
"Itanium"
]
},
"languageVersion": {
"type": "string",
"enum": [
"csharp1",
"csharp2",
"csharp3",
"csharp4",
"csharp5",
"csharp6",
"experimental"
]
},
"keyFile": {
"type": "string"
},
"delaySign": {
"type": "boolean",
"default": false
},
"publicSign": {
"type": "boolean",
"default": false
},
"debugType": {
"type": "string",
"enum": ["portable", "full", "none"]
},
"preserveCompilationContext": {
"type": "boolean",
"description": "Set this option to preserve reference assemblies and other context data to allow for runtime compilation."
},
"outputName": {
"type": "string"
},
"compilerName": {
"type": "string",
"default": "csc"
},
"compile": {
"description": "Defines glob patterns and file path to include for compilation.",
"type": ["string", "array", "object"],
"items": {
"type": "string"
},
"properties": {
"include": {
"type": ["string", "array"],
"items": {
"type": "string"
},
"description": "List of file globbing patterns to be included."
},
"exclude": {
"type": ["string", "array"],
"items": {
"type": "string"
},
"description": "List of file globbing patterns to be excluded."
},
"includeFiles": {
"type": ["string", "array"],
"items": {
"type": "string"
},
"description": "List of file paths to be included."
},
"excludeFiles": {
"type": ["string", "array"],
"items": {
"type": "string"
},
"description": "List of file paths to be excluded."
},
"builtIns": {
"type": ["string", "array", "object"],
"items": {
"type": "string"
},
"properties": {
"include": {
"type": ["string", "array"],
"items": {
"type": "string"
},
"description": "List of file globbing patterns to be included."
},
"exclude": {
"type": ["string", "array"],
"items": {
"type": "string"
},
"description": "List of file globbing patterns to be included."
}
}
},
"mappings": {
"type": "object",
"description": "Pairs of destination folders and glob patterns specifying additional files to include/exclude."
}
}
},
"embed": {
"allOf": [
{
"$ref": "#/definitions/buildOptions/properties/compile"
},
{
"description": "Defines glob patterns and file paths of resource files to include for compilation."
}
]
},
"copyToOutput": {
"allOf": [
{
"$ref": "#/definitions/buildOptions/properties/compile"
},
{
"description": "Defines glob patterns and file paths to include for copying to build output."
}
]
},
"xmlDoc": {
"type": "boolean"
},
"additionalArguments": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"runtimeOptions": {
"type": "object",
"properties": {
"configProperties": {
"type": "object",
"properties": {
"System.GC.Server": {
"type": "boolean",
"description": "Enables/disables server garbage collection.",
"default": false
},
"System.GC.Concurrent": {
"type": "boolean",
"description": "Enables/disables concurrent garbage collection.",
"default": true
},
"System.GC.HeapCount": {
"type": "integer",
"minimum": 0,
"description": "Limits the number of heaps created by the garbage collector."
},
"System.GC.HeapAffinitizeMask": {
"type": "integer",
"minimum": 0,
"description": "Specifies the exact processors that garbage collector threads should use."
},
"System.GC.GCHeapAffinitizeRanges": {
"type": "string",
"minLength": 1,
"description": "Specifies the list of processors to use for garbage collector threads."
},
"System.GC.NoAffinitize": {
"type": "boolean",
"description": "Specifies whether to affinitize garbage collection threads with processors. To affinitize a GC thread means that it can only run on its specific CPU. A heap is created for each GC thread.",
"default": false
},
"System.GC.HeapHardLimit": {
"type": "string",
"description": "Specifies the maximum commit size, in bytes, for the GC heap and GC bookkeeping."
},
"System.GC.HeapHardLimitPercent": {
"type": "number",
"description": "Specifies the GC heap usage as a percentage of the total memory."
},
"System.GC.RetainVM": {
"type": "boolean",
"description": "Configures whether segments that should be deleted are put on a standby list for future use or are released back to the operating system (OS).",
"default": false
},
"System.GC.LOHThreshold": {
"type": "integer",
"description": "Specifies the threshold size, in bytes, that causes objects to go on the large object heap (LOH).",
"default": 85000
},
"System.Threading.ThreadPool.MinThreads": {
"type": "integer",
"minimum": 1,
"description": "Sets the minimum number of threads for the thread pool."
},
"System.Threading.ThreadPool.MaxThreads": {
"type": "integer",
"minimum": 1,
"description": "Sets the maximum number of threads for the thread pool."
}
}
}
}
},
"packOptions": {
"description": "Defines options pertaining to the packaging of the project output into a NuGet package.",
"type": "object",
"properties": {
"summary": {
"description": "A short description of the package.",
"type": "string"
},
"tags": {
"description": "A space-delimited list of tags and keywords that describe the package.",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"owners": {
"description": "List of owners of the package.",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"releaseNotes": {
"description": "A description of the changes made in each release of the package.",
"type": "string"
},
"iconUrl": {
"description": "A URL for the image to use as the icon for the package. This should be a 32x32-pixel .png file that has a transparent background.",
"type": "string"
},
"licenseUrl": {
"description": "A link to the license for the package.",
"type": "string"
},
"requireLicenseAcceptance": {
"description": "A Boolean value that specifies whether the client needs to ensure that the package license (described by licenseUrl) is accepted before the package is installed.",
"type": "boolean",
"default": false
},
"repository": {
"type": "object",
"description": "Contains information about the repository where the project is stored.",
"properties": {
"type": {
"type": "string",
"enum": ["git"],
"default": "git"
},
"url": {
"type": "string",
"format": "uri"
}
},
"additionalProperties": {
"type": "string"
}
},
"files": {
"allOf": [
{
"$ref": "#/definitions/buildOptions/properties/compile"
},
{
"description": "Defines glob patterns and file paths to include in the generated NuGet package."
}
]
}
}
},
"publishOptions": {
"allOf": [
{
"$ref": "#/definitions/buildOptions/properties/compile"
},
{
"description": "Defines glob patterns and file paths to include in publish output."
}
]
},
"configType": {
"type": "object",
"properties": {
"dependencies": {
"$ref": "#/definitions/dependencies"
},
"compilationOptions": {
"$ref": "#/definitions/compilationOptions"
},
"buildOptions": {
"$ref": "#/definitions/buildOptions"
},
"frameworkAssemblies": {
"$ref": "#/definitions/dependencies"
},
"imports": {
"type": ["string", "array"],
"description": "Allow packages supporting these frameworks to be installed in this target, regardless of the compatibility rules.",
"items": {
"type": "string"
}
}
}
},
"libraryIncludeFlag": {
"type": "string",
"enum": [
"all",
"runtime",
"compile",
"build",
"contentFiles",
"native",
"analyzers",
"none"
]
},
"libraryIncludeFlags": {
"oneOf": [
{
"$ref": "#/definitions/libraryIncludeFlag"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/libraryIncludeFlag"
}
}
]
},
"dependencies": {
"type": "object",
"additionalProperties": {
"type": ["string", "object"],
"properties": {
"version": {
"type": "string"
},
"type": {
"type": "string",
"default": "default",
"enum": ["default", "build", "platform"]
},
"target": {
"type": "string",
"description": "Restrict this dependency to matching only a Project or a Package.",
"enum": ["project", "package"]
},
"include": {
"$ref": "#/definitions/libraryIncludeFlags"
},
"exclude": {
"$ref": "#/definitions/libraryIncludeFlags"
},
"suppressParent": {
"$ref": "#/definitions/libraryIncludeFlags"
}
}
},
"description": "Each dependency is defined by a name and a version. Dependencies are resolved from NuGet feeds defined by your package sources and projects located in the directories specified by the 'global.json' file."
},
"script": {
"type": ["string", "array"],
"items": {
"type": "string"
},
"description": "A command line script or scripts.\r\rAvailable variables:\r%project:Directory% - The project directory\r%project:Name% - The project name\r%project:Version% - The project version"
}
},
"id": "https://json.schemastore.org/project-1.0.0-rc2.json",
"properties": {
"authors": {
"description": "The author of the application.",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"packInclude": {
"description": "[Deprecated] Pairs of destination folders and glob patterns specifying additional files to include in the output NuGet package. (data type: JSON map). Example: { \"tools/\": \"tools/**/*.*\" }. Use 'files' in 'packOptions' instead.",
"type": "object"
},
"publishExclude": {
"description": "[Deprecated] Glob pattern to specify files to exclude from publish output. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'publishOptions' instead.",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": ["obj/**/*.*", "bin/**/*.*", "**/.*/**"]
},
"compile": {
"description": "[Deprecated] Glob pattern to specify files to compile. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'compile' in 'buildOptions' instead.",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": "**/*.cs"
},
"compileExclude": {
"description": "[Deprecated] Glob pattern to specify files to exclude from compilation. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'compile' in 'buildOptions' instead.",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"compileFiles": {
"description": "[Deprecated] Files to include in compilation (overrides 'compileExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]. Use 'compile' in 'buildOptions' instead.",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"content": {
"description": "[Deprecated] Glob pattern to specify files to include as content. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'publishOptions' to publish or 'copyToOutput' in 'buildOptions' to copy to build output instead.",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": "**/*"
},
"contentExclude": {
"description": "[Deprecated] Glob pattern to specify files to exclude from the content list. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'publishOptions' to publish or 'copyToOutput' in 'buildOptions' to copy to build output instead.",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"contentFiles": {
"description": "[Deprecated] Files to include as content (overrides 'contentExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]. Use 'publishOptions' to publish or 'copyToOutput' in 'buildOptions' to copy to build output instead.",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"preprocess": {
"description": "Glob pattern to specify files to use for preprocessing. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": "compiler/preprocess/**/*.cs"
},
"preprocessExclude": {
"description": "Glob pattern to specify files to exclude from use for preprocessing. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"preprocessFiles": {
"description": "Files to include to use for preprocessing (overrides 'preprocessExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"resource": {
"description": "[Deprecated] Glob pattern to specify files to include as resources. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'embed' in 'buildOptions' instead.",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": ["compiler/resources/**/*", "**/*.resx"]
},
"resourceExclude": {
"description": "[Deprecated] Glob pattern to specify files to exclude from the resources list. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'embed' in 'buildOptions' instead.",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"resourceFiles": {
"description": "[Deprecated] Files to include as resources (overrides 'resourceExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]. Use 'embed' in 'buildOptions' instead.",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"shared": {
"description": "Glob pattern to specify files to share with dependent projects. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": "compiler/shared/**/*.cs"
},
"sharedExclude": {
"description": "Glob pattern to specify files to exclude from sharing with dependent projects. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"sharedFiles": {
"description": "Files to include for sharing with dependent projects (overrides 'sharedExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"exclude": {
"description": "[Deprecated] Glob pattern to indicate files to exclude from other glob patterns, in addition to the default patterns specified in 'excludeBuiltIn'. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'exclude' within 'compile' or 'embed' instead.",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"excludeBuiltIn": {
"description": "[Deprecated] Default glob pattern to indicate files to exclude from other glob patterns. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'exclude' within 'compile' or 'embed' instead.",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": ["bin/**", "obj/**", "**/*.xproj"]
},
"testRunner": {
"description": "The name of the test runner to use with this project",
"type": "string"
},
"commands": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"compilationOptions": {
"$ref": "#/definitions/compilationOptions"
},
"buildOptions": {
"$ref": "#/definitions/buildOptions"
},
"packOptions": {
"$ref": "#/definitions/packOptions"
},
"runtimeOptions": {
"$ref": "#/definitions/runtimeOptions"
},
"publishOptions": {
"$ref": "#/definitions/publishOptions"
},
"configurations": {
"type": "object",
"description": "Configurations are named groups of compilation settings. There are two defaults built into the runtime: 'Debug' and 'Release'.",
"additionalProperties": {
"type": "object",
"properties": {
"compilationOptions": {
"$ref": "#/definitions/compilationOptions"
},
"buildOptions": {
"$ref": "#/definitions/buildOptions"
}
}
}
},
"dependencies": {
"$ref": "#/definitions/dependencies"
},
"copyright": {
"description": "Copyright details for the package.",
"type": "string"
},
"iconUrl": {
"description": "[Deprecated] A URL for the image to use as the icon for the package. This should be a 32x32-pixel .png file that has a transparent background. Use this in 'packOptions' instead.",
"type": "string"
},
"licenseUrl": {
"description": "[Deprecated] A link to the license for the package. Use this in 'packOptions' instead.",
"type": "string"
},
"requireLicenseAcceptance": {
"description": "[Deprecated] A Boolean value that specifies whether the client needs to ensure that the package license (described by licenseUrl) is accepted before the package is installed. Use this in 'packOptions' instead.",
"type": "boolean",
"default": false
},
"owners": {
"description": "[Deprecated] List of owners of the package. Use this in 'packOptions' instead.",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"projectUrl": {
"description": "A URL for the home page of the package.",
"type": "string"
},
"summary": {
"description": "[Deprecated] A short description of the package. Use this in 'packOptions' instead.",
"type": "string"
},
"tags": {
"description": "[Deprecated] A space-delimited list of tags and keywords that describe the package. Use this in 'packOptions' instead.",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"title": {
"description": "The human-friendly title of the package",
"type": "string"
},
"releaseNotes": {
"description": "[Deprecated] A description of the changes made in each release of the package. Use this in 'packOptions' instead.",
"type": "string"
},
"language": {
"description": "The locale ID for the package, such as en-us.",
"type": "string"
},
"description": {
"description": "The description of the project/package.",
"type": "string"
},
"frameworks": {
"description": "Target frameworks that will be built, and dependencies that are specific to the build of this project for that framework.",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/configType"
}
},
"namedResource": {
"type": "object",
"description": "Overrides the generated resource names with custom ones.",
"additionalProperties": {
"type": "string"
}
},
"repository": {
"type": "object",
"description": "[Deprecated] Contains information about the repository where the project is stored. Use this in 'packOptions' instead.",
"properties": {
"type": {
"type": "string",
"enum": ["git"],
"default": "git"
},
"url": {
"type": "string",
"format": "uri"
}
},
"additionalProperties": {
"type": "string"
}
},
"scripts": {
"type": "object",
"description": "Scripts to execute during the various stages.",
"properties": {
"precompile": {
"$ref": "#/definitions/script"
},
"postcompile": {
"$ref": "#/definitions/script"
},
"prepack": {
"$ref": "#/definitions/script"
},
"postpack": {
"$ref": "#/definitions/script"
},
"prepublish": {
"$ref": "#/definitions/script"
},
"postpublish": {
"$ref": "#/definitions/script"
},
"prerestore": {
"$ref": "#/definitions/script"
},
"postrestore": {
"$ref": "#/definitions/script"
},
"prepare": {
"$ref": "#/definitions/script"
}
}
},
"version": {
"description": "The version of the project/package. Examples: 1.2.3, 1.2.3-beta, 1.2.3-*",
"type": "string"
},
"tools": {
"description": "Project-specific command line tools accessible when in the project.json directory.",
"type": "object",
"additionalProperties": {
"type": ["string", "object"],
"properties": {
"version": {
"type": "string"
}
}
}
},
"runtimes": {
"description": "List of runtime identifiers supported by this project (used when building standalone applications).",
"type": "object"
}
},
"title": "JSON schema for .NET Core project.json files",
"type": "object"
}
| project-1 |
{
"id": "http://schemas.triniti.io/json-schema/triniti/common/mixin/swipeable/1-0-0.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"swipe": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"description": "A swipe (aka banner/label/overlay) is a short string used in a visual treatment on the node. e.g. \"Exclusive\", \"NSFW\", \"Breaking Bad Mojo\".",
"pbj": {
"type": "string",
"rule": "single"
}
}
},
"additionalProperties": true
} | o82723 |
{
"additionalProperties": false,
"properties": {
"config": {
"description": "Configuration body of an arbitrary type (as defined by the request `config_format`)."
},
"configId": {
"description": "Identifier of the current configuration.",
"type": "string"
},
"id": {
"description": "ID of the message used to match client response to the request.",
"multipleOf": 1.0,
"type": "number"
}
},
"required": [
"id",
"configId",
"config"
],
"title": "5/CMX configuration push request schema",
"type": "object"
} | o53900 |
{
"properties": {
"dimensions": {
"properties": {
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width",
"radius"
],
"type": "object"
},
"shape": {
"description": "The shape for which the area needs to be calculated",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_fe7185a7 |
{
"$id": "https://example.com/arrays.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "A representation of a person, company, organization, or place",
"type": "object",
"title": "quasar",
"properties": {
"fruits": {
"type": "array",
"items": {
"type": "string"
}
},
"vegetables": {
"type": "array",
"items": {
"$ref": "#/definitions/Name_Value_Item"
}
}
},
"definitions": {
"Name_Value_Item": {
"type": "object",
"required": [
"item",
"value"
],
"properties": {
"name": {
"type": "string",
"description": "The name of the vegetable."
},
"value": {
"type": "boolean",
"description": "Do I like this vegetable?"
}
}
}
}
} | o47150 |
{
"properties": {
"name": {
"description": "The name of the artist.",
"type": "string"
},
"popularity": {
"description": "The popularity of the artist. The value will be between 0 and 100, with 100 being the most popular. The artist's popularity is calculated from the popularity of all the artist's tracks.",
"type": "integer"
},
"type": {
"description": "The object type: 'artist'",
"type": "string"
},
"uri": {
"description": "The Spotify URI for the artist.",
"type": "string"
}
},
"type": "object"
} | o77704 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "USSD Say step",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"kind": {
"enum": [
"ussdSay"
]
},
"label": {
"type": "string"
},
"title": {
"type": "string"
},
"text": {
"type": "string"
},
"language": {
"type": [
"string",
"null"
]
},
"iface": {
"type": "object"
}
},
"required": [
"name",
"kind",
"label",
"title",
"text"
]
} | o58496 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": true,
"title": "MyJSON",
"definitions": {},
"type": "array",
"id": "https://niebert.github.io/json-editor",
"format": "tabs",
"items": {
"type": "object",
"id": "/items",
"_uniqueItems": true,
"headerTemplate": "({{i1}}){{self.id}}",
"defaultProperties": [
"id",
"collectionType",
"username",
"trapNumber",
"mpi",
"eggCount",
"comments",
"problem",
"problemIndoorOutdoor",
"problemIndoorOutdoorSituation",
"date",
"time",
"cityName",
"geoLocation"
],
"properties": {
"id": {
"type": "number",
"id": "/items/properties/id",
"title": "ID",
"default": 20170518090055960,
"description": "Unique 'id' for the record"
},
"collectionType": {
"type": "string",
"id": "/items/properties/collectionType",
"title": "OviTrap/Local",
"default": "OviTrap",
"enum": [
"OviTrap",
"Local"
],
"description": "Select Local for a local accessment of the Mosquito Problem and OviTrap for an assessment of egg count."
},
"username": {
"type": "string",
"id": "/items/properties/username",
"title": "Username",
"default": "adithya",
"format": "text",
"description": "An explanation for 'root.*.username' about the purpose of string instance with editor path 'root.*.username'."
},
"trapNumber": {
"type": "integer",
"id": "/items/properties/trapNumber",
"title": "Trap Number",
"default": 0,
"description": "All OviTraps have a unique trap number, add number here if applicable."
},
"mpi": {
"type": "string",
"id": "/items/properties/mpi",
"title": "MPI",
"default": "1-2",
"enum": [
"N/A",
"0",
"1-2",
"3-5",
"5-10",
">10"
],
"description": "Mosquito Perception Index - MPI"
},
"eggCount": {
"type": "integer",
"id": "/items/properties/eggCount",
"title": "Egg Count OviTrap",
"default": 45,
"description": "the number of eggs detected on the OviTrap"
},
"comments": {
"type": "string",
"id": "/items/properties/comments",
"title": "Title of 'root.*.comments' Type: 'string'",
"default": "",
"format": "text",
"description": "An explanation and additional comments of users."
},
"problem": {
"type": "string",
"id": "/items/properties/problem",
"title": "Problem Comment",
"default": "",
"format": "text",
"description": "Additional comments according to mosquito problem found at geolocation."
},
"problemIndoorOutdoor": {
"type": "string",
"id": "/items/properties/problemIndoorOutdoor",
"title": "Outdoor/Indoor Problem",
"default": "Out",
"description": "select option if the mosquito problem is Indoor or Outdoor"
},
"problemIndoorOutdoorSituation": {
"type": "string",
"id": "/items/properties/problemIndoorOutdoorSituation",
"title": "Indoor/Outdoor Situation",
"default": "",
"format": "text",
"description": "An explanation for problem situation (indoor or outdoor)"
},
"date": {
"type": "string",
"id": "/items/properties/date",
"title": "Date",
"default": "2017-05-18",
"format": "text",
"description": "Date when the data is collected"
},
"time": {
"type": "string",
"id": "/items/properties/time",
"title": "Time",
"default": "09:00",
"format": "text",
"description": "Time when the data is collected"
},
"cityName": {
"type": "string",
"id": "/items/properties/cityName",
"title": "City",
"default": "",
"format": "text",
"description": "Name of the City where the data was collected"
},
"geoLocation": {
"type": "string",
"id": "/items/properties/geoLocation",
"title": "GeoLocation",
"default": "",
"format": "text",
"description": "Geolocation where the data was collected"
}
}
}
} | o63478 |
{
"properties": {
"end_latitude": {
"description": "The latitude of the destination",
"type": "number"
},
"end_longitude": {
"description": "The longitude of the destination",
"type": "number"
},
"start_latitude": {
"description": "The latitude of the starting point",
"type": "number"
},
"start_longitude": {
"description": "The longitude of the starting point",
"type": "number"
}
},
"required": [
"start_latitude",
"start_longitude",
"end_latitude",
"end_longitude"
],
"type": "object"
} | calculate_distance_3ab416d8 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_ServiceReference": {
"description": "ServiceReference holds a reference to Service.legacy.k8s.io",
"properties": {
"name": {
"description": "`name` is the name of the service. Required",
"type": "string"
},
"namespace": {
"description": "`namespace` is the namespace of the service. Required",
"type": "string"
},
"path": {
"description": "`path` is an optional URL path which will be sent in any request to this service.",
"type": "string"
},
"port": {
"_format": "int32",
"description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).",
"type": "integer"
}
},
"required": [
"namespace",
"name"
],
"type": "object"
}
},
"description": "WebhookClientConfig contains the information to make a TLS connection with the webhook",
"properties": {
"caBundle": {
"description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.",
"format": "byte",
"type": [
"string",
"null"
]
},
"service": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_ServiceReference",
"description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`."
},
"url": {
"description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.",
"type": [
"string",
"null"
]
}
},
"type": "object"
} | kb_1148_Normalized |
{
"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"
},
"length": {
"description": "The length of the rectangle (if applicable)",
"type": "number"
},
"radius": {
"description": "The radius of the circle (if applicable)",
"type": "number"
},
"width": {
"description": "The width of the rectangle (if applicable)",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of shape (e.g., circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_87442b5f |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"license_key": {
"type": "string",
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
}
},
"required": [
"license_key"
]
} | o40229 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://git.openstack.org/cgit/openstack/cloud-data/plain/schema.json#",
"type": "object",
"properties": {
"auth_type": {
"name": "Auth Type",
"description": "Name of authentication plugin to be used",
"default": "password",
"type": "string"
},
"disable_vendor_agent": {
"name": "Disable Vendor Agent Properties",
"description": "Image properties required to disable vendor agent",
"type": "object",
"properties": {}
},
"floating_ip_source": {
"name": "Floating IP Source",
"description": "Which service provides Floating IPs",
"enum": [
"neutron",
"nova",
"None"
],
"default": "neutron"
},
"image_api_use_tasks": {
"name": "Image Task API",
"description": "Does the cloud require the Image Task API",
"default": false,
"type": "boolean"
},
"image_format": {
"name": "Image Format",
"description": "Format for uploaded Images",
"default": "qcow2",
"type": "string"
},
"interface": {
"name": "API Interface",
"description": "Which API Interface should connections hit",
"default": "public",
"enum": [
"public",
"internal",
"admin"
]
},
"secgroup_source": {
"name": "Security Group Source",
"description": "Which service provides security groups",
"default": "neutron",
"enum": [
"neutron",
"nova",
"None"
]
},
"baremetal_api_version": {
"name": "Baremetal API Service Type",
"description": "Baremetal API Service Type",
"default": "1",
"type": "string"
},
"compute_api_version": {
"name": "Compute API Version",
"description": "Compute API Version",
"default": "2",
"type": "string"
},
"database_api_version": {
"name": "Database API Version",
"description": "Database API Version",
"default": "1.0",
"type": "string"
},
"dns_api_version": {
"name": "DNS API Version",
"description": "DNS API Version",
"default": "2",
"type": "string"
},
"identity_api_version": {
"name": "Identity API Version",
"description": "Identity API Version",
"default": "2",
"type": "string"
},
"image_api_version": {
"name": "Image API Version",
"description": "Image API Version",
"default": "1",
"type": "string"
},
"network_api_version": {
"name": "Network API Version",
"description": "Network API Version",
"default": "2",
"type": "string"
},
"object_store_api_version": {
"name": "Object Storage API Version",
"description": "Object Storage API Version",
"default": "1",
"type": "string"
},
"volume_api_version": {
"name": "Volume API Version",
"description": "Volume API Version",
"default": "2",
"type": "string"
}
},
"required": [
"auth_type",
"baremetal_api_version",
"compute_api_version",
"database_api_version",
"disable_vendor_agent",
"dns_api_version",
"floating_ip_source",
"identity_api_version",
"image_api_use_tasks",
"image_api_version",
"image_format",
"interface",
"network_api_version",
"object_store_api_version",
"secgroup_source",
"volume_api_version"
]
} | o39075 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"description": "The list of items in the invoice",
"items": {
"properties": {
"price": {
"description": "The price of the product",
"type": "number"
},
"product_name": {
"description": "The name of the product",
"type": "string"
},
"quantity": {
"description": "The quantity of the product",
"type": "integer"
}
},
"required": [
"product_name",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"items"
],
"type": "object"
} | generate_invoice_67a11e89 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://json.schemastore.org/solution-filter.json",
"properties": {
"solution": {
"type": "object",
"description": "Solution filter description",
"properties": {
"path": {
"type": "string",
"description": "Path to filtered solution. Should be relative to current .slnf"
},
"projects": {
"description": "List of projects that will be included in filitered solution. Paths should be relative to solution rather than to .slnf",
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"title": "JSON Schema for MSBuild solution filters",
"type": "object"
}
| solution-filter |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Sane-Scanner",
"description": "Sane Scanner options",
"type": "object",
"properties": {
"host": {
"description": "The host of the scanner",
"type": "string"
},
"model": {
"description": "The model of the scanner",
"type": "string"
},
"name": {
"description": "The name of the scanner",
"type": "string"
},
"optionGroups": {
"description": "The unique identifier for a product",
"type": "array",
"items": {
"title": "optionGroup",
"type": "object",
"properties": {
"options": {
"type": "array",
"items": {
"type": "object"
},
"properties": {
"name": {
"type": "string"
},
"range": {
"type": "string"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
},
"units": {
"type": "string"
},
"value": {
"type": "number"
}
}
},
"title": {
"type": "string"
}
}
}
},
"type": {
"description": "The type of the device, SANE can connect with some otrer peripherals besides scanners",
"type": "string"
},
"vendor": {
"description": "The vendor of the scanner",
"type": "string"
}
},
"required": [
"host",
"model",
"name",
"optionGroups",
"vendor"
]
}
| o74549 |
{
"_comment": "The contents of this file should be in sync with the parameters of the add_disk command",
"properties": {
"address": {
"pattern": "^\\d+(:\\d+){1,3}$",
"type": "string"
},
"boot": {
"type": "boolean"
},
"bus_address": {
"type": "string"
},
"comments": {
"type": "string"
},
"controller": {
"enum": [
"sata",
"sas",
"scsi",
"cciss",
"flash",
"fibrechannel",
"ide",
"nvme"
]
},
"filesystem": {
"description": "Filesystem name where the virtual disk image is stored",
"type": "string"
},
"iops_limit": {
"minimum": 0,
"type": "integer"
},
"resourcegroup": {
"description": "Name of the resourcegroup which holds the share or filesystem",
"type": "string"
},
"share": {
"description": "NAS share where the virtual disk image is stored",
"type": "string"
},
"size": {
"description": "Disk size, in GiB",
"minimum": 0,
"type": "integer"
},
"snapshot": {
"type": "boolean"
},
"wwn": {
"type": "string"
}
},
"required": [
"size",
"controller"
],
"type": "object"
} | o69158 |
{
"properties": {
"adpttimeout": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"altsvc": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"apdexcltresptimethreshold": {
"type": "integer"
},
"apdexsvrresptimethreshold": {
"readonly": true,
"type": "integer"
},
"builtin": {
"enum": [
"MODIFIABLE",
"DELETABLE",
"IMMUTABLE",
"PARTITION_ALL"
],
"readonly": true,
"type": "object"
},
"clientiphdrexpr": {
"type": "string"
},
"cmponpush": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"conmultiplex": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"dropextracrlf": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"dropextradata": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"dropinvalreqs": {
"enum": [
"ENABLED",
"DISABLED"
],
"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"
},
"http2": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"http2direct": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"http2headertablesize": {
"type": "integer"
},
"http2initialwindowsize": {
"type": "integer"
},
"http2maxconcurrentstreams": {
"type": "integer"
},
"http2maxframesize": {
"type": "integer"
},
"http2maxheaderlistsize": {
"type": "integer"
},
"http2minseverconn": {
"type": "integer"
},
"http2strictcipher": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"incomphdrdelay": {
"type": "integer"
},
"markconnreqinval": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"markhttp09inval": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"marktracereqinval": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"maxheaderlen": {
"type": "integer"
},
"maxreq": {
"type": "integer"
},
"maxreusepool": {
"type": "integer"
},
"minreusepool": {
"type": "integer"
},
"name": {
"type": "string"
},
"persistentetag": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"refcnt": {
"readonly": true,
"type": "integer"
},
"reqtimeout": {
"type": "integer"
},
"reqtimeoutaction": {
"type": "string"
},
"reusepooltimeout": {
"type": "integer"
},
"rtsptunnel": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"spdy": {
"enum": [
"DISABLED",
"ENABLED",
"V2",
"V3"
],
"type": "string"
},
"weblog": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"websocket": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
}
},
"title": "nshttpprofile",
"type": "object"
} | o30762 |
{
"additionalProperties": false,
"properties": {
"value": {
"title": "Shalow Attribute",
"type": "string"
}
},
"title": "Shallow JSON object",
"type": "object"
} | o89680 |
{
"properties": {
"customer_info": {
"properties": {
"address": {
"description": "The mailing address of the customer",
"type": "string"
},
"email": {
"description": "The email address of the customer",
"type": "string"
},
"name": {
"description": "The name of the customer",
"type": "string"
}
},
"required": [
"name",
"email",
"address"
],
"type": "object"
},
"items": {
"items": {
"properties": {
"name": {
"description": "The name of the item",
"type": "string"
},
"price": {
"description": "The price of the item",
"type": "number"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
}
},
"required": [
"name",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_info",
"items"
],
"type": "object"
} | generate_invoice_d74503e8 |
{
"additionalProperties": true,
"description": "Schema for a StatusGator status change event",
"properties": {
"currentStatus": {
"maxLength": 128,
"type": "string"
},
"faviconUrl": {
"_format": "uri",
"maxLength": 8192,
"type": "string"
},
"homePageUrl": {
"_format": "uri",
"maxLength": 8192,
"type": "string"
},
"lastStatus": {
"maxLength": 128,
"type": "string"
},
"occurredAt": {
"_format": "date-time",
"type": "string"
},
"serviceName": {
"maxLength": 128,
"type": "string"
},
"statusPageUrl": {
"_format": "uri",
"maxLength": 8192,
"type": "string"
}
},
"self": {
"format": "jsonschema",
"name": "status_change",
"vendor": "com.statusgator",
"version": "1-0-0"
},
"type": "object"
} | sp_381_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"deviceId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"key": {
"type": "string"
},
"secret": {
"type": "string"
},
"tokenTTL": {
"type": "integer",
"minimum": 0
},
"requestedScopes": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string",
"enum": [
"all.Device",
"all.Device.read",
"data.export",
"data.timeSeriesQuery",
"data.lastValueQuery",
"device.commandStream",
"device.get",
"device.getCompositeState",
"device.getState",
"device.stateStream",
"device.getLogEntries",
"device.getCommand",
"device.debug",
"device.sendState",
"device.sendCommand",
"device.setConnectionStatus",
"devices.get",
"devices.sendCommand"
]
}
}
},
"required": [
"deviceId"
],
"additionalProperties": false
} | o9828 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"data_type": {
"enum": [
"licence"
]
},
"source_url": {
"type": "string"
},
"confidence": {
"type": "string"
},
"properties": {
"type": "object",
"properties": {
"regulator": {
"description": "The regulating body that issued the licence",
"type": "string"
},
"category": {
"description": "The category of licence. Current possible values are: 'Financial','Business'",
"enum": [
"Financial",
"Business"
]
},
"jurisdiction_code": {
"description": "The jurisdiction for which licence was issued",
"type": "string"
},
"licence_number": {
"description": "Licence number or code (can be null)",
"type": [
"string",
"null"
]
},
"jurisdiction_classification": {
"type": "array",
"description": "The local classification given by the regulator",
"minItems": 1
},
"oc_classification": {
"type": "array"
}
},
"required": [
"jurisdiction_code",
"jurisdiction_classification",
"category"
]
}
},
"required": [
"data_type",
"properties",
"source_url",
"confidence"
]
} | o65456 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"vendor": {
"type": "string"
},
"descriptor_version": {
"type": "string"
},
"number_of_endpoints": {
"type": "integer"
},
"root_requirement": {
"type": "string"
},
"test_access": {
"type": "string"
},
"connection": {
"type": "array",
"items": {
"type": "string"
}
},
"connectivity_type": {
"type": "string"
}
},
"required": [
"id",
"vendor",
"descriptor_version",
"number_of_endpoints",
"root_requirement",
"test_access",
"connection",
"connectivity_type"
]
} | o78892 |
{
"title": "Invocation manifest for BIDS fMRIPrep: A Robust Preprocessing Pipeline for fMRI Data",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"config": {
"type": "object",
"properties": {
"skip-bids-validation": {
"type": "boolean"
},
"task-id": {
"type": "string"
},
"echo-idx": {
"type": "string"
},
"nthreads": {
"type": "integer"
},
"omp-nthreads": {
"type": "integer"
},
"mem_mb": {
"type": "number"
},
"anat-only": {
"type": "boolean"
},
"boilerplate": {
"type": "boolean"
},
"error-on-aroma-warnings": {
"type": "boolean"
},
"verbose": {
"enum": [
"",
"v",
"vv",
"vvv"
],
"type": "string"
},
"ignore": {
"type": "string"
},
"longitudinal": {
"type": "boolean"
},
"t2s-coreg": {
"type": "boolean"
},
"output-spaces": {
"enum": [
"",
"MNI152Lin",
"MNI152NLin2009cAsym",
"MNI152NLin6Asym",
"MNI152NLin6Sym",
"MNIInfant",
"MNIPediatricAsym",
"NKI",
"OASIS30ANTs",
"PNC",
"fsLR",
"fsaverage"
],
"type": "string"
},
"bold2t1w-dof": {
"enum": [
"",
"6",
"9",
"12"
],
"type": "string"
},
"force-bbr": {
"type": "boolean"
},
"force-no-bbr": {
"type": "boolean"
},
"medial-surface-nan": {
"type": "boolean"
},
"dummy-scans": {
"type": "integer"
},
"use-aroma": {
"type": "boolean",
"default": false
},
"aroma-melodic-dimensionality": {
"type": "integer"
},
"return-all-components": {
"type": "boolean"
},
"fd-spike-threshold": {
"type": "number"
},
"dvars-spike-threshold": {
"type": "number"
},
"skull-strip-template": {
"enum": [
"",
"OASIS30ANTs",
"NKI"
],
"type": "string"
},
"skull-strip-fixed-seed": {
"type": "boolean"
},
"fmap-bspline": {
"type": "boolean"
},
"fmap-no-demean": {
"type": "boolean"
},
"use-syn-sdc": {
"type": "boolean"
},
"force-syn": {
"type": "boolean"
},
"no-submm-recon": {
"type": "boolean"
},
"cifti-output": {
"type": "boolean"
},
"fs-no-reconall": {
"type": "boolean"
},
"resource-monitor": {
"type": "boolean"
},
"reports-only": {
"type": "boolean"
},
"run-uuid": {
"type": "string"
},
"write-graph": {
"type": "boolean"
},
"stop-on-first-crash": {
"type": "boolean"
},
"notrack": {
"type": "boolean"
},
"gear-abort-on-bids-error": {
"default": false,
"type": "boolean"
},
"gear-log-level": {
"default": "INFO",
"type": "string",
"enum": [
"ERROR",
"WARNING",
"INFO",
"DEBUG"
]
},
"gear-run-bids-validation": {
"default": true,
"type": "boolean"
},
"gear-save-intermediate-output": {
"default": false,
"type": "boolean"
},
"gear-intermediate-files": {
"default": "",
"type": "string"
},
"gear-intermediate-folders": {
"default": "",
"type": "string"
},
"gear-dry-run": {
"default": false,
"type": "boolean"
},
"gear-keep-output": {
"default": false,
"type": "boolean"
},
"gear-FREESURFER_LICENSE": {
"type": "string"
}
},
"required": [
"use-aroma",
"gear-abort-on-bids-error",
"gear-log-level",
"gear-run-bids-validation",
"gear-save-intermediate-output",
"gear-intermediate-files",
"gear-intermediate-folders",
"gear-dry-run",
"gear-keep-output"
]
},
"inputs": {
"type": "object",
"properties": {
"key": {
"type": "object"
},
"freesurfer_license": {
"type": "object",
"properties": {}
}
},
"required": [
"key"
]
}
},
"required": [
"config",
"inputs"
]
} | o41193 |
{
"description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.",
"properties": {
"type": {
"description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.",
"type": [
"string",
"null"
]
}
},
"required": [
"type"
],
"type": "object"
} | kb_360_Normalized |
{
"anyOf": [
{
"$ref": "#/definitions/SkaffoldConfig"
}
],
"definitions": {
"Activation": {
"additionalProperties": false,
"description": "criteria by which a profile is auto-activated.",
"preferredOrder": [
"env",
"kubeContext",
"command"
],
"properties": {
"command": {
"description": "a Skaffold command for which the profile is auto-activated.",
"examples": [
"dev"
],
"type": "string",
"x-intellij-html-description": "a Skaffold command for which the profile is auto-activated."
},
"env": {
"description": "a key=value pair. The profile is auto-activated if an Environment Variable `key` has value `value`.",
"examples": [
"ENV=production"
],
"type": "string",
"x-intellij-html-description": "a key=value pair. The profile is auto-activated if an Environment Variable <code>key</code> has value <code>value</code>."
},
"kubeContext": {
"description": "a Kubernetes context for which the profile is auto-activated.",
"examples": [
"minikube"
],
"type": "string",
"x-intellij-html-description": "a Kubernetes context for which the profile is auto-activated."
}
},
"x-intellij-html-description": "criteria by which a profile is auto-activated."
},
"Artifact": {
"anyOf": [
{
"additionalProperties": false,
"preferredOrder": [
"image",
"context",
"sync",
"plugin"
],
"properties": {
"context": {
"default": ".",
"description": "directory where the artifact's sources are to be found.",
"type": "string",
"x-intellij-html-description": "directory where the artifact's sources are to be found."
},
"image": {
"description": "name of the image to be built.",
"examples": [
"gcr.io/k8s-skaffold/example"
],
"type": "string",
"x-intellij-html-description": "name of the image to be built."
},
"plugin": {
"$ref": "#/definitions/BuilderPlugin",
"description": "plugin used to build this artifact.",
"x-intellij-html-description": "plugin used to build this artifact."
},
"sync": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "*alpha* local files that can be synced to remote pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders.",
"examples": [
"{\"*.py\": \".\", \"css/**/*.css\": \"app/css\"}"
],
"type": "object",
"x-intellij-html-description": "<em>alpha</em> local files that can be synced to remote pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"image",
"context",
"sync",
"plugin",
"docker"
],
"properties": {
"context": {
"default": ".",
"description": "directory where the artifact's sources are to be found.",
"type": "string",
"x-intellij-html-description": "directory where the artifact's sources are to be found."
},
"docker": {
"$ref": "#/definitions/DockerArtifact",
"description": "*beta* describes an artifact built from a Dockerfile.",
"x-intellij-html-description": "<em>beta</em> describes an artifact built from a Dockerfile."
},
"image": {
"description": "name of the image to be built.",
"examples": [
"gcr.io/k8s-skaffold/example"
],
"type": "string",
"x-intellij-html-description": "name of the image to be built."
},
"plugin": {
"$ref": "#/definitions/BuilderPlugin",
"description": "plugin used to build this artifact.",
"x-intellij-html-description": "plugin used to build this artifact."
},
"sync": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "*alpha* local files that can be synced to remote pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders.",
"examples": [
"{\"*.py\": \".\", \"css/**/*.css\": \"app/css\"}"
],
"type": "object",
"x-intellij-html-description": "<em>alpha</em> local files that can be synced to remote pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"image",
"context",
"sync",
"plugin",
"bazel"
],
"properties": {
"bazel": {
"$ref": "#/definitions/BazelArtifact",
"description": "*beta* requires bazel CLI to be installed and the sources to contain [Bazel](https://bazel.build/) configuration files.",
"x-intellij-html-description": "<em>beta</em> requires bazel CLI to be installed and the sources to contain <a href=\"https://bazel.build/\">Bazel</a> configuration files."
},
"context": {
"default": ".",
"description": "directory where the artifact's sources are to be found.",
"type": "string",
"x-intellij-html-description": "directory where the artifact's sources are to be found."
},
"image": {
"description": "name of the image to be built.",
"examples": [
"gcr.io/k8s-skaffold/example"
],
"type": "string",
"x-intellij-html-description": "name of the image to be built."
},
"plugin": {
"$ref": "#/definitions/BuilderPlugin",
"description": "plugin used to build this artifact.",
"x-intellij-html-description": "plugin used to build this artifact."
},
"sync": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "*alpha* local files that can be synced to remote pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders.",
"examples": [
"{\"*.py\": \".\", \"css/**/*.css\": \"app/css\"}"
],
"type": "object",
"x-intellij-html-description": "<em>alpha</em> local files that can be synced to remote pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"image",
"context",
"sync",
"plugin",
"jibMaven"
],
"properties": {
"context": {
"default": ".",
"description": "directory where the artifact's sources are to be found.",
"type": "string",
"x-intellij-html-description": "directory where the artifact's sources are to be found."
},
"image": {
"description": "name of the image to be built.",
"examples": [
"gcr.io/k8s-skaffold/example"
],
"type": "string",
"x-intellij-html-description": "name of the image to be built."
},
"jibMaven": {
"$ref": "#/definitions/JibMavenArtifact",
"description": "*alpha* builds images using the [Jib plugin for Maven](https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin).",
"x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin\">Jib plugin for Maven</a>."
},
"plugin": {
"$ref": "#/definitions/BuilderPlugin",
"description": "plugin used to build this artifact.",
"x-intellij-html-description": "plugin used to build this artifact."
},
"sync": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "*alpha* local files that can be synced to remote pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders.",
"examples": [
"{\"*.py\": \".\", \"css/**/*.css\": \"app/css\"}"
],
"type": "object",
"x-intellij-html-description": "<em>alpha</em> local files that can be synced to remote pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"image",
"context",
"sync",
"plugin",
"jibGradle"
],
"properties": {
"context": {
"default": ".",
"description": "directory where the artifact's sources are to be found.",
"type": "string",
"x-intellij-html-description": "directory where the artifact's sources are to be found."
},
"image": {
"description": "name of the image to be built.",
"examples": [
"gcr.io/k8s-skaffold/example"
],
"type": "string",
"x-intellij-html-description": "name of the image to be built."
},
"jibGradle": {
"$ref": "#/definitions/JibGradleArtifact",
"description": "*alpha* builds images using the [Jib plugin for Gradle](https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin).",
"x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin\">Jib plugin for Gradle</a>."
},
"plugin": {
"$ref": "#/definitions/BuilderPlugin",
"description": "plugin used to build this artifact.",
"x-intellij-html-description": "plugin used to build this artifact."
},
"sync": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "*alpha* local files that can be synced to remote pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders.",
"examples": [
"{\"*.py\": \".\", \"css/**/*.css\": \"app/css\"}"
],
"type": "object",
"x-intellij-html-description": "<em>alpha</em> local files that can be synced to remote pods instead of triggering an image build when modified. This is a mapping of local files to sync to remote folders."
}
}
}
],
"description": "items that need to be built, along with the context in which they should be built.",
"required": [
"image"
],
"x-intellij-html-description": "items that need to be built, along with the context in which they should be built."
},
"BazelArtifact": {
"additionalProperties": false,
"description": "*beta* describes an artifact built with [Bazel](https://bazel.build/).",
"preferredOrder": [
"target",
"args"
],
"properties": {
"args": {
"default": "[]",
"description": "additional args to pass to `bazel build`.",
"examples": [
"[\"-flag\", \"--otherflag\"]"
],
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional args to pass to <code>bazel build</code>."
},
"target": {
"description": "`bazel build` target to run.",
"examples": [
"//:skaffold_example.tar"
],
"type": "string",
"x-intellij-html-description": "<code>bazel build</code> target to run."
}
},
"required": [
"target"
],
"x-intellij-html-description": "<em>beta</em> describes an artifact built with <a href=\"https://bazel.build/\">Bazel</a>."
},
"BuildConfig": {
"anyOf": [
{
"additionalProperties": false,
"preferredOrder": [
"artifacts",
"tagPolicy",
"executionEnvironment"
],
"properties": {
"artifacts": {
"description": "the images you're going to be building.",
"items": {
"$ref": "#/definitions/Artifact"
},
"type": "array",
"x-intellij-html-description": "the images you're going to be building."
},
"executionEnvironment": {
"$ref": "#/definitions/ExecutionEnvironment",
"description": "environment in which the build should run. Possible values: googleCloudBuild.",
"x-intellij-html-description": "environment in which the build should run. Possible values: googleCloudBuild."
},
"tagPolicy": {
"$ref": "#/definitions/TagPolicy",
"description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {}`.",
"x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {}</code>."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"artifacts",
"tagPolicy",
"executionEnvironment",
"local"
],
"properties": {
"artifacts": {
"description": "the images you're going to be building.",
"items": {
"$ref": "#/definitions/Artifact"
},
"type": "array",
"x-intellij-html-description": "the images you're going to be building."
},
"executionEnvironment": {
"$ref": "#/definitions/ExecutionEnvironment",
"description": "environment in which the build should run. Possible values: googleCloudBuild.",
"x-intellij-html-description": "environment in which the build should run. Possible values: googleCloudBuild."
},
"local": {
"$ref": "#/definitions/LocalBuild",
"description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.",
"x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository."
},
"tagPolicy": {
"$ref": "#/definitions/TagPolicy",
"description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {}`.",
"x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {}</code>."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"artifacts",
"tagPolicy",
"executionEnvironment",
"googleCloudBuild"
],
"properties": {
"artifacts": {
"description": "the images you're going to be building.",
"items": {
"$ref": "#/definitions/Artifact"
},
"type": "array",
"x-intellij-html-description": "the images you're going to be building."
},
"executionEnvironment": {
"$ref": "#/definitions/ExecutionEnvironment",
"description": "environment in which the build should run. Possible values: googleCloudBuild.",
"x-intellij-html-description": "environment in which the build should run. Possible values: googleCloudBuild."
},
"googleCloudBuild": {
"$ref": "#/definitions/GoogleCloudBuild",
"description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/).",
"x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/\">Google Cloud Build</a>."
},
"tagPolicy": {
"$ref": "#/definitions/TagPolicy",
"description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {}`.",
"x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {}</code>."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"artifacts",
"tagPolicy",
"executionEnvironment",
"kaniko"
],
"properties": {
"artifacts": {
"description": "the images you're going to be building.",
"items": {
"$ref": "#/definitions/Artifact"
},
"type": "array",
"x-intellij-html-description": "the images you're going to be building."
},
"executionEnvironment": {
"$ref": "#/definitions/ExecutionEnvironment",
"description": "environment in which the build should run. Possible values: googleCloudBuild.",
"x-intellij-html-description": "environment in which the build should run. Possible values: googleCloudBuild."
},
"kaniko": {
"$ref": "#/definitions/KanikoBuild",
"description": "*beta* describes how to do an on-cluster build using [Kaniko](https://github.com/GoogleContainerTools/kaniko).",
"x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build using <a href=\"https://github.com/GoogleContainerTools/kaniko\">Kaniko</a>."
},
"tagPolicy": {
"$ref": "#/definitions/TagPolicy",
"description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {}`.",
"x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {}</code>."
}
}
}
],
"description": "contains all the configuration for the build steps.",
"x-intellij-html-description": "contains all the configuration for the build steps."
},
"BuilderPlugin": {
"additionalProperties": false,
"description": "contains all fields necessary for specifying a build plugin.",
"preferredOrder": [
"name",
"properties"
],
"properties": {
"name": {
"description": "name of the build plugin.",
"type": "string",
"x-intellij-html-description": "name of the build plugin."
},
"properties": {
"additionalProperties": {},
"default": "{}",
"description": "key-value pairs passed to the plugin.",
"type": "object",
"x-intellij-html-description": "key-value pairs passed to the plugin."
}
},
"x-intellij-html-description": "contains all fields necessary for specifying a build plugin."
},
"DateTimeTagger": {
"additionalProperties": false,
"description": "*beta* tags images with the build timestamp.",
"preferredOrder": [
"format",
"timezone"
],
"properties": {
"format": {
"default": "2006-01-02_15-04-05.999_MST",
"description": "formats the date and time. See [#Time.Format](https://golang.org/pkg/time/#Time.Format).",
"type": "string",
"x-intellij-html-description": "formats the date and time. See <a href=\"https://golang.org/pkg/time/#Time.Format\">#Time.Format</a>."
},
"timezone": {
"description": "sets the timezone for the date and time. See [Time.LoadLocation](https://golang.org/pkg/time/#Time.LoadLocation). Defaults to the local timezone.",
"type": "string",
"x-intellij-html-description": "sets the timezone for the date and time. See <a href=\"https://golang.org/pkg/time/#Time.LoadLocation\">Time.LoadLocation</a>. Defaults to the local timezone."
}
},
"x-intellij-html-description": "<em>beta</em> tags images with the build timestamp."
},
"DeployConfig": {
"anyOf": [
{
"additionalProperties": false
},
{
"additionalProperties": false,
"preferredOrder": [
"helm"
],
"properties": {
"helm": {
"$ref": "#/definitions/HelmDeploy",
"description": "*beta* uses the `helm` CLI to apply the charts to the cluster.",
"x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"kubectl"
],
"properties": {
"kubectl": {
"$ref": "#/definitions/KubectlDeploy",
"description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.",
"x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"kustomize"
],
"properties": {
"kustomize": {
"$ref": "#/definitions/KustomizeDeploy",
"description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.",
"x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to "patch" a deployment for a target environment."
}
}
}
],
"description": "contains all the configuration needed by the deploy steps.",
"x-intellij-html-description": "contains all the configuration needed by the deploy steps."
},
"DockerArtifact": {
"additionalProperties": false,
"description": "*beta* describes an artifact built from a Dockerfile, usually using `docker build`.",
"preferredOrder": [
"dockerfile",
"target",
"buildArgs",
"cacheFrom"
],
"properties": {
"buildArgs": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "arguments passed to the docker build.",
"examples": [
"{\"key1\": \"value1\", \"key2\": \"value2\"}"
],
"type": "object",
"x-intellij-html-description": "arguments passed to the docker build."
},
"cacheFrom": {
"default": "[]",
"description": "the Docker images to consider as cache sources.",
"examples": [
"[\"golang:1.10.1-alpine3.7\", \"alpine:3.7\"]"
],
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "the Docker images to consider as cache sources."
},
"dockerfile": {
"default": "Dockerfile",
"description": "locates the Dockerfile relative to workspace.",
"type": "string",
"x-intellij-html-description": "locates the Dockerfile relative to workspace."
},
"target": {
"description": "Dockerfile target name to build.",
"type": "string",
"x-intellij-html-description": "Dockerfile target name to build."
}
},
"x-intellij-html-description": "<em>beta</em> describes an artifact built from a Dockerfile, usually using <code>docker build</code>."
},
"DockerConfig": {
"additionalProperties": false,
"description": "contains information about the docker `config.json` to mount.",
"preferredOrder": [
"path",
"secretName"
],
"properties": {
"path": {
"description": "path to the docker `config.json`.",
"type": "string",
"x-intellij-html-description": "path to the docker <code>config.json</code>."
},
"secretName": {
"description": "Kubernetes secret that will hold the Docker configuration.",
"type": "string",
"x-intellij-html-description": "Kubernetes secret that will hold the Docker configuration."
}
},
"x-intellij-html-description": "contains information about the docker <code>config.json</code> to mount."
},
"EnvTemplateTagger": {
"additionalProperties": false,
"description": "*beta* tags images with a configurable template string.",
"preferredOrder": [
"template"
],
"properties": {
"template": {
"description": "used to produce the image name and tag. See golang [text/template](https://golang.org/pkg/text/template/). The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section.",
"examples": [
"{{.RELEASE}}-{{.IMAGE_NAME}}"
],
"type": "string",
"x-intellij-html-description": "used to produce the image name and tag. See golang <a href=\"https://golang.org/pkg/text/template/\">text/template</a>. The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section."
}
},
"required": [
"template"
],
"x-intellij-html-description": "<em>beta</em> tags images with a configurable template string."
},
"ExecEnvironment": {
"type": "string"
},
"ExecutionEnvironment": {
"additionalProperties": false,
"description": "environment in which the build should run (ex. local or in-cluster, etc.).",
"preferredOrder": [
"name",
"properties"
],
"properties": {
"name": {
"$ref": "#/definitions/ExecEnvironment",
"description": "name of the environment.",
"x-intellij-html-description": "name of the environment."
},
"properties": {
"additionalProperties": {},
"default": "{}",
"description": "key-value pairs passed to the environment.",
"type": "object",
"x-intellij-html-description": "key-value pairs passed to the environment."
}
},
"x-intellij-html-description": "environment in which the build should run (ex. local or in-cluster, etc.)."
},
"GitTagger": {
"description": "*beta* tags images with the git tag or commit of the artifact's workspace.",
"x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace."
},
"GoogleCloudBuild": {
"additionalProperties": false,
"description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/docs/). Docker and Jib artifacts can be built on Cloud Build. The `projectId` needs to be provided and the currently logged in user should be given permissions to trigger new builds.",
"preferredOrder": [
"projectId",
"diskSizeGb",
"machineType",
"timeout",
"dockerImage",
"mavenImage",
"gradleImage"
],
"properties": {
"diskSizeGb": {
"description": "disk size of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).",
"type": "integer",
"x-intellij-html-description": "disk size of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>."
},
"dockerImage": {
"default": "gcr.io/cloud-builders/docker",
"description": "image that runs a Docker build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).",
"type": "string",
"x-intellij-html-description": "image that runs a Docker build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>."
},
"gradleImage": {
"default": "gcr.io/cloud-builders/gradle",
"description": "image that runs a Gradle build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).",
"type": "string",
"x-intellij-html-description": "image that runs a Gradle build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>."
},
"machineType": {
"description": "type of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).",
"type": "string",
"x-intellij-html-description": "type of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>."
},
"mavenImage": {
"default": "gcr.io/cloud-builders/mvn",
"description": "image that runs a Maven build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).",
"type": "string",
"x-intellij-html-description": "image that runs a Maven build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>."
},
"projectId": {
"description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name `gcr.io/myproject/image`, Skaffold will use the `myproject` GCP project.",
"type": "string",
"x-intellij-html-description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name <code>gcr.io/myproject/image</code>, Skaffold will use the <code>myproject</code> GCP project."
},
"timeout": {
"description": "amount of time (in seconds) that this build should be allowed to run. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build).",
"type": "string",
"x-intellij-html-description": "amount of time (in seconds) that this build should be allowed to run. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build\">Cloud Build Reference</a>."
}
},
"x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/docs/\">Google Cloud Build</a>. Docker and Jib artifacts can be built on Cloud Build. The <code>projectId</code> needs to be provided and the currently logged in user should be given permissions to trigger new builds."
},
"HelmConventionConfig": {
"description": "image config in the syntax of image.repository and image.tag.",
"x-intellij-html-description": "image config in the syntax of image.repository and image.tag."
},
"HelmDeploy": {
"additionalProperties": false,
"description": "*beta* uses the `helm` CLI to apply the charts to the cluster.",
"preferredOrder": [
"releases"
],
"properties": {
"releases": {
"description": "a list of Helm releases.",
"items": {
"$ref": "#/definitions/HelmRelease"
},
"type": "array",
"x-intellij-html-description": "a list of Helm releases."
}
},
"required": [
"releases"
],
"x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster."
},
"HelmFQNConfig": {
"additionalProperties": false,
"description": "image config to use the FullyQualifiedImageName as param to set.",
"preferredOrder": [
"property"
],
"properties": {
"property": {
"description": "defines the image config.",
"type": "string",
"x-intellij-html-description": "defines the image config."
}
},
"x-intellij-html-description": "image config to use the FullyQualifiedImageName as param to set."
},
"HelmImageStrategy": {
"anyOf": [
{
"additionalProperties": false
},
{
"additionalProperties": false,
"preferredOrder": [
"fqn"
],
"properties": {
"fqn": {
"$ref": "#/definitions/HelmFQNConfig",
"description": "image configuration uses the syntax `IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG`.",
"x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG</code>."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"helm"
],
"properties": {
"helm": {
"$ref": "#/definitions/HelmConventionConfig",
"description": "image configuration uses the syntax `IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG`.",
"x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG</code>."
}
}
}
],
"description": "adds image configurations to the Helm `values` file.",
"x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file."
},
"HelmPackaged": {
"additionalProperties": false,
"description": "parameters for packaging helm chart (`helm package`).",
"preferredOrder": [
"version",
"appVersion"
],
"properties": {
"appVersion": {
"description": "sets the `appVersion` on the chart to this version.",
"type": "string",
"x-intellij-html-description": "sets the <code>appVersion</code> on the chart to this version."
},
"version": {
"description": "sets the `version` on the chart to this semver version.",
"type": "string",
"x-intellij-html-description": "sets the <code>version</code> on the chart to this semver version."
}
},
"x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)."
},
"HelmRelease": {
"additionalProperties": false,
"preferredOrder": [
"name",
"chartPath",
"valuesFiles",
"values",
"namespace",
"version",
"setValues",
"setValueTemplates",
"wait",
"recreatePods",
"skipBuildDependencies",
"overrides",
"packaged",
"imageStrategy"
],
"properties": {
"chartPath": {
"description": "path to the Helm chart.",
"type": "string",
"x-intellij-html-description": "path to the Helm chart."
},
"imageStrategy": {
"$ref": "#/definitions/HelmImageStrategy",
"description": "adds image configurations to the Helm `values` file.",
"x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file."
},
"name": {
"description": "name of the Helm release.",
"type": "string",
"x-intellij-html-description": "name of the Helm release."
},
"namespace": {
"description": "Kubernetes namespace.",
"type": "string",
"x-intellij-html-description": "Kubernetes namespace."
},
"overrides": {
"description": "key-value pairs. If present, Skaffold will build a Helm `values` file that overrides the original and use it to call Helm CLI (`--f` flag).",
"x-intellij-html-description": "key-value pairs. If present, Skaffold will build a Helm <code>values</code> file that overrides the original and use it to call Helm CLI (<code>--f</code> flag)."
},
"packaged": {
"$ref": "#/definitions/HelmPackaged",
"description": "parameters for packaging helm chart (`helm package`).",
"x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)."
},
"recreatePods": {
"default": "false",
"description": "if `true`, Skaffold will send `--recreate-pods` flag to Helm CLI.",
"type": "boolean",
"x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--recreate-pods</code> flag to Helm CLI."
},
"setValueTemplates": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send `--set` flag to Helm CLI and append all parsed pairs after the flag.",
"type": "object",
"x-intellij-html-description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send <code>--set</code> flag to Helm CLI and append all parsed pairs after the flag."
},
"setValues": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "key-value pairs. If present, Skaffold will send `--set` flag to Helm CLI and append all pairs after the flag.",
"type": "object",
"x-intellij-html-description": "key-value pairs. If present, Skaffold will send <code>--set</code> flag to Helm CLI and append all pairs after the flag."
},
"skipBuildDependencies": {
"default": "false",
"description": "should build dependencies be skipped.",
"type": "boolean",
"x-intellij-html-description": "should build dependencies be skipped."
},
"values": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "key-value pairs supplementing the Helm `values` file\".",
"type": "object",
"x-intellij-html-description": "key-value pairs supplementing the Helm <code>values</code> file"."
},
"valuesFiles": {
"default": "[]",
"description": "paths to the Helm `values` files\".",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "paths to the Helm <code>values</code> files"."
},
"version": {
"description": "version of the chart.",
"type": "string",
"x-intellij-html-description": "version of the chart."
},
"wait": {
"default": "false",
"description": "if `true`, Skaffold will send `--wait` flag to Helm CLI.",
"type": "boolean",
"x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--wait</code> flag to Helm CLI."
}
},
"required": [
"name",
"chartPath"
]
},
"JSONPatch": {
"additionalProperties": false,
"description": "patch to be applied by a profile.",
"preferredOrder": [
"op",
"path",
"from",
"value"
],
"properties": {
"from": {
"description": "source position in the yaml, used for `copy` or `move` operations.",
"type": "string",
"x-intellij-html-description": "source position in the yaml, used for <code>copy</code> or <code>move</code> operations."
},
"op": {
"default": "replace",
"description": "operation carried by the patch: `add`, `remove`, `replace`, `move`, `copy` or `test`.",
"type": "string",
"x-intellij-html-description": "operation carried by the patch: <code>add</code>, <code>remove</code>, <code>replace</code>, <code>move</code>, <code>copy</code> or <code>test</code>."
},
"path": {
"description": "position in the yaml where the operation takes place. For example, this targets the `dockerfile` of the first artifact built.",
"examples": [
"/build/artifacts/0/docker/dockerfile"
],
"type": "string",
"x-intellij-html-description": "position in the yaml where the operation takes place. For example, this targets the <code>dockerfile</code> of the first artifact built."
},
"value": {
"description": "value to apply. Can be any portion of yaml.",
"x-intellij-html-description": "value to apply. Can be any portion of yaml."
}
},
"required": [
"path"
],
"x-intellij-html-description": "patch to be applied by a profile."
},
"JibGradleArtifact": {
"additionalProperties": false,
"description": "*alpha* builds images using the [Jib plugin for Gradle](https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin).",
"preferredOrder": [
"project",
"args"
],
"properties": {
"args": {
"default": "[]",
"description": "additional build flags passed to Gradle.",
"examples": [
"[\"--no-build-cache\"]"
],
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional build flags passed to Gradle."
},
"project": {
"description": "selects which Gradle project to build.",
"type": "string",
"x-intellij-html-description": "selects which Gradle project to build."
}
},
"x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin\">Jib plugin for Gradle</a>."
},
"JibMavenArtifact": {
"additionalProperties": false,
"description": "*alpha* builds images using the [Jib plugin for Maven](https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin).",
"preferredOrder": [
"module",
"profile",
"args"
],
"properties": {
"args": {
"default": "[]",
"description": "additional build flags passed to Maven.",
"examples": [
"[\"-x\", \"-DskipTests\"]"
],
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional build flags passed to Maven."
},
"module": {
"description": "selects which Maven module to build, for a multi module project.",
"type": "string",
"x-intellij-html-description": "selects which Maven module to build, for a multi module project."
},
"profile": {
"description": "selects which Maven profile to activate.",
"type": "string",
"x-intellij-html-description": "selects which Maven profile to activate."
}
},
"x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin\">Jib plugin for Maven</a>."
},
"KanikoBuild": {
"additionalProperties": false,
"description": "*beta* describes how to do an on-cluster build using [Kaniko](https://github.com/GoogleContainerTools/kaniko).",
"preferredOrder": [
"buildContext",
"cache",
"flags",
"pullSecret",
"pullSecretName",
"namespace",
"timeout",
"image",
"dockerConfig"
],
"properties": {
"buildContext": {
"$ref": "#/definitions/KanikoBuildContext",
"description": "defines where Kaniko gets the sources from.",
"x-intellij-html-description": "defines where Kaniko gets the sources from."
},
"cache": {
"$ref": "#/definitions/KanikoCache",
"description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.",
"x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds."
},
"dockerConfig": {
"$ref": "#/definitions/DockerConfig",
"description": "describes how to mount the local Docker configuration into the Kaniko pod.",
"x-intellij-html-description": "describes how to mount the local Docker configuration into the Kaniko pod."
},
"flags": {
"default": "[]",
"description": "additional flags to be passed to Kaniko command line. See [Kaniko Additional Flags](https://github.com/GoogleContainerTools/kaniko#additional-flags).",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional flags to be passed to Kaniko command line. See <a href=\"https://github.com/GoogleContainerTools/kaniko#additional-flags\">Kaniko Additional Flags</a>."
},
"image": {
"description": "Docker image used by the Kaniko pod. Defaults to the latest released version of `gcr.io/kaniko-project/executor`.",
"type": "string",
"x-intellij-html-description": "Docker image used by the Kaniko pod. Defaults to the latest released version of <code>gcr.io/kaniko-project/executor</code>."
},
"namespace": {
"description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration.",
"type": "string",
"x-intellij-html-description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration."
},
"pullSecret": {
"description": "path to the secret key file. See [Kaniko Documentation](https://github.com/GoogleContainerTools/kaniko#running-kaniko-in-a-kubernetes-cluster).",
"type": "string",
"x-intellij-html-description": "path to the secret key file. See <a href=\"https://github.com/GoogleContainerTools/kaniko#running-kaniko-in-a-kubernetes-cluster\">Kaniko Documentation</a>."
},
"pullSecretName": {
"default": "kaniko-secret",
"description": "name of the Kubernetes secret for pulling the files from the build context and pushing the final image.",
"type": "string",
"x-intellij-html-description": "name of the Kubernetes secret for pulling the files from the build context and pushing the final image."
},
"timeout": {
"description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (`20m`).",
"type": "string",
"x-intellij-html-description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (<code>20m</code>)."
}
},
"x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build using <a href=\"https://github.com/GoogleContainerTools/kaniko\">Kaniko</a>."
},
"KanikoBuildContext": {
"additionalProperties": false,
"description": "contains the different fields available to specify a Kaniko build context.",
"preferredOrder": [
"gcsBucket",
"localDir"
],
"properties": {
"gcsBucket": {
"description": "CGS bucket to which sources are uploaded by Skaffold. Kaniko will need access to that bucket to download the sources.",
"type": "string",
"x-intellij-html-description": "CGS bucket to which sources are uploaded by Skaffold. Kaniko will need access to that bucket to download the sources."
},
"localDir": {
"$ref": "#/definitions/LocalDir",
"description": "configures how Kaniko mounts sources directly via an `emptyDir` volume.",
"x-intellij-html-description": "configures how Kaniko mounts sources directly via an <code>emptyDir</code> volume."
}
},
"x-intellij-html-description": "contains the different fields available to specify a Kaniko build context."
},
"KanikoCache": {
"additionalProperties": false,
"description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.",
"preferredOrder": [
"repo"
],
"properties": {
"repo": {
"description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See [Kaniko Caching](https://github.com/GoogleContainerTools/kaniko#caching).",
"type": "string",
"x-intellij-html-description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See <a href=\"https://github.com/GoogleContainerTools/kaniko#caching\">Kaniko Caching</a>."
}
},
"x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds."
},
"KubectlDeploy": {
"additionalProperties": false,
"description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.",
"preferredOrder": [
"manifests",
"remoteManifests",
"flags"
],
"properties": {
"flags": {
"$ref": "#/definitions/KubectlFlags",
"description": "additional flags passed to `kubectl`.",
"x-intellij-html-description": "additional flags passed to <code>kubectl</code>."
},
"manifests": {
"default": "[\"k8s/*.yaml\"]",
"description": "the Kubernetes yaml or json manifests.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "the Kubernetes yaml or json manifests."
},
"remoteManifests": {
"default": "[]",
"description": "Kubernetes manifests in remote clusters.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "Kubernetes manifests in remote clusters."
}
},
"x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster."
},
"KubectlFlags": {
"additionalProperties": false,
"description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete).",
"preferredOrder": [
"global",
"apply",
"delete"
],
"properties": {
"apply": {
"default": "[]",
"description": "additional flags passed on creations (`kubectl apply`).",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional flags passed on creations (<code>kubectl apply</code>)."
},
"delete": {
"default": "[]",
"description": "additional flags passed on deletions (`kubectl delete`).",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional flags passed on deletions (<code>kubectl delete</code>)."
},
"global": {
"default": "[]",
"description": "additional flags passed on every command.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional flags passed on every command."
}
},
"x-intellij-html-description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete)."
},
"KustomizeDeploy": {
"additionalProperties": false,
"description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.",
"preferredOrder": [
"path",
"flags"
],
"properties": {
"flags": {
"$ref": "#/definitions/KubectlFlags",
"description": "additional flags passed to `kubectl`.",
"x-intellij-html-description": "additional flags passed to <code>kubectl</code>."
},
"path": {
"default": ".",
"description": "path to Kustomization files.",
"type": "string",
"x-intellij-html-description": "path to Kustomization files."
}
},
"x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to "patch" a deployment for a target environment."
},
"LocalBuild": {
"additionalProperties": false,
"description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.",
"preferredOrder": [
"push",
"useDockerCLI",
"useBuildkit"
],
"properties": {
"push": {
"description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster.",
"type": "boolean",
"x-intellij-html-description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster."
},
"useBuildkit": {
"default": "false",
"description": "use BuildKit to build Docker images.",
"type": "boolean",
"x-intellij-html-description": "use BuildKit to build Docker images."
},
"useDockerCLI": {
"default": "false",
"description": "use `docker` command-line interface instead of Docker Engine APIs.",
"type": "boolean",
"x-intellij-html-description": "use <code>docker</code> command-line interface instead of Docker Engine APIs."
}
},
"x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository."
},
"LocalDir": {
"description": "configures how Kaniko mounts sources directly via an `emptyDir` volume.",
"x-intellij-html-description": "configures how Kaniko mounts sources directly via an <code>emptyDir</code> volume."
},
"Profile": {
"additionalProperties": false,
"description": "*beta* profiles are used to override any `build`, `test` or `deploy` configuration.",
"preferredOrder": [
"name",
"build",
"test",
"deploy",
"patches",
"activation"
],
"properties": {
"activation": {
"description": "criteria by which a profile can be auto-activated.",
"items": {
"$ref": "#/definitions/Activation"
},
"type": "array",
"x-intellij-html-description": "criteria by which a profile can be auto-activated."
},
"build": {
"$ref": "#/definitions/BuildConfig",
"description": "replaces the main `build` configuration.",
"x-intellij-html-description": "replaces the main <code>build</code> configuration."
},
"deploy": {
"$ref": "#/definitions/DeployConfig",
"description": "replaces the main `deploy` configuration.",
"x-intellij-html-description": "replaces the main <code>deploy</code> configuration."
},
"name": {
"description": "a unique profile name.",
"examples": [
"profile-prod"
],
"type": "string",
"x-intellij-html-description": "a unique profile name."
},
"patches": {
"description": "a list of patches applied to the configuration. Patches use the JSON patch notation.",
"items": {
"$ref": "#/definitions/JSONPatch"
},
"type": "array",
"x-intellij-html-description": "a list of patches applied to the configuration. Patches use the JSON patch notation."
},
"test": {
"description": "replaces the main `test` configuration.",
"items": {
"$ref": "#/definitions/TestCase"
},
"type": "array",
"x-intellij-html-description": "replaces the main <code>test</code> configuration."
}
},
"required": [
"name"
],
"x-intellij-html-description": "<em>beta</em> profiles are used to override any <code>build</code>, <code>test</code> or <code>deploy</code> configuration."
},
"ShaTagger": {
"description": "*beta* tags images with their sha256 digest.",
"x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest."
},
"SkaffoldConfig": {
"additionalProperties": false,
"preferredOrder": [
"apiVersion",
"kind",
"build",
"test",
"deploy",
"profiles"
],
"properties": {
"apiVersion": {
"description": "version of the configuration.",
"type": "string",
"x-intellij-html-description": "version of the configuration."
},
"build": {
"$ref": "#/definitions/BuildConfig",
"description": "describes how images are built.",
"x-intellij-html-description": "describes how images are built."
},
"deploy": {
"$ref": "#/definitions/DeployConfig",
"description": "describes how images are deployed.",
"x-intellij-html-description": "describes how images are deployed."
},
"kind": {
"default": "Config",
"description": "always `Config`.",
"type": "string",
"x-intellij-html-description": "always <code>Config</code>."
},
"profiles": {
"description": "*beta* can override be used to `build`, `test` or `deploy` configuration.",
"items": {
"$ref": "#/definitions/Profile"
},
"type": "array",
"x-intellij-html-description": "<em>beta</em> can override be used to <code>build</code>, <code>test</code> or <code>deploy</code> configuration."
},
"test": {
"description": "describes how images are tested.",
"items": {
"$ref": "#/definitions/TestCase"
},
"type": "array",
"x-intellij-html-description": "describes how images are tested."
}
}
},
"TagPolicy": {
"additionalProperties": false,
"description": "contains all the configuration for the tagging step.",
"preferredOrder": [
"gitCommit",
"sha256",
"envTemplate",
"dateTime"
],
"properties": {
"dateTime": {
"$ref": "#/definitions/DateTimeTagger",
"description": "*beta* tags images with the build timestamp.",
"x-intellij-html-description": "<em>beta</em> tags images with the build timestamp."
},
"envTemplate": {
"$ref": "#/definitions/EnvTemplateTagger",
"description": "*beta* tags images with a configurable template string.",
"x-intellij-html-description": "<em>beta</em> tags images with a configurable template string."
},
"gitCommit": {
"$ref": "#/definitions/GitTagger",
"description": "*beta* tags images with the git tag or commit of the artifact's workspace.",
"x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace."
},
"sha256": {
"$ref": "#/definitions/ShaTagger",
"description": "*beta* tags images with their sha256 digest.",
"x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest."
}
},
"x-intellij-html-description": "contains all the configuration for the tagging step."
},
"TestCase": {
"additionalProperties": false,
"description": "a list of structure tests to run on images that Skaffold builds.",
"preferredOrder": [
"image",
"structureTests"
],
"properties": {
"image": {
"description": "artifact on which to run those tests.",
"examples": [
"gcr.io/k8s-skaffold/example"
],
"type": "string",
"x-intellij-html-description": "artifact on which to run those tests."
},
"structureTests": {
"default": "[]",
"description": "the [Container Structure Tests](https://github.com/GoogleContainerTools/container-structure-test) to run on that artifact.",
"examples": [
"[\"./test/*\"]"
],
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "the <a href=\"https://github.com/GoogleContainerTools/container-structure-test\">Container Structure Tests</a> to run on that artifact."
}
},
"required": [
"image"
],
"x-intellij-html-description": "a list of structure tests to run on images that Skaffold builds."
}
},
"type": "object"
} | o6361 |
{
"properties": {
"point1": {
"properties": {
"lat": {
"description": "The latitude of point 1",
"type": "number"
},
"lng": {
"description": "The longitude of point 1",
"type": "number"
}
},
"required": [
"lat",
"lng"
],
"type": "object"
},
"point2": {
"properties": {
"lat": {
"description": "The latitude of point 2",
"type": "number"
},
"lng": {
"description": "The longitude of point 2",
"type": "number"
}
},
"required": [
"lat",
"lng"
],
"type": "object"
}
},
"required": [
"point1",
"point2"
],
"type": "object"
} | calculate_distance_ab1900eb |
{
"additionalProperties": false,
"description": "Webhook event for changeing one of a company's property value.",
"properties": {
"appId": {
"description": "The ID of your application. (In case you have multiple applications pointing to the same webhook URL.)",
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"attemptNumber": {
"description": "Which attempt this is to notify your service of this event (starting at 0). If your service times-out or throws an error as described in 'Retries' below, we will attempt to send the notification to your service again.",
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"changeSource": {
"description": "The source of this change. Can be any of the change sources that you find on contact property histories.",
"maxLength": 128,
"type": "string"
},
"eventId": {
"description": "The unique ID of the event that triggered this notification.",
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"objectId": {
"description": "The ID of the object that was created/changed/deleted. For contacts this is the vid; for companies, the companyId; and for deals the dealId.",
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"occurredAt": {
"_format": "date-time",
"description": "When this event occurred.",
"type": "string"
},
"portalId": {
"description": "The customer's portalId that this event came from.",
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"propertyName": {
"description": "This is the name of the property that was changed.",
"maxLength": 255,
"type": "string"
},
"propertyValue": {
"description": "This is the new value that was set for this property that triggered this notification.",
"maxLength": 255,
"type": "string"
},
"subscriptionId": {
"description": "The ID of the subscription that caused us to send you a notification of this event.",
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
}
},
"self": {
"format": "jsonschema",
"name": "company_change",
"vendor": "com.hubspot",
"version": "1-0-0"
},
"type": "object"
} | sp_98_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"url": {
"type": "string",
"minLength": 1
}
},
"required": [
"name",
"url"
]
} | o12220 |
{
"type": "object",
"properties": {
"mib": {
"type": "string"
},
"modules": {
"type": "object",
"properties": {
"processors": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"oid": {
"type": "string"
},
"num_oid": {
"type": "string"
},
"index": {
"type": [
"integer",
"string"
]
},
"descr": {
"type": "string"
},
"precision": {
"type": "integer"
},
"value": {
"type": "string"
},
"type": {
"type": "string"
},
"skip_values": {
"anyOf": [
{
"type": "integer"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "integer"
},
{
"type": "object",
"properties": {
"oid": {
"type": "string"
},
"op": {
"$ref": "#/definitions/comparison"
},
"value": {
"type": [
"integer",
"string"
]
}
},
"additionalProperties": false,
"required": [
"oid",
"op",
"value"
]
}
]
}
}
]
},
"entPhysicalIndex": {
"type": "string"
},
"snmp_flags": {
"type": [
"string",
"array"
]
}
},
"additionalProperties": false,
"required": [
"num_oid",
"oid"
]
}
}
},
"additionalProperties": false,
"required": [
"data"
]
},
"sensors": {
"type": "object",
"properties": {
"state": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"oid": {
"type": "string"
},
"value": {
"type": "string"
},
"group": {
"type": "string"
},
"low_limit": {
"type": [
"number",
"string"
]
},
"low_warn_limit": {
"type": [
"number",
"string"
]
},
"warn_limit": {
"type": [
"number",
"string"
]
},
"high_limit": {
"type": [
"number",
"string"
]
},
"skip_value_lt": {
"type": "number"
},
"skip_value_gt": {
"type": "number"
},
"num_oid": {
"type": "string",
"pattern": "^(\\.\\d+)+(\\.?\\{\\{ \\$index \\}\\})?(\\.\\d+)*$"
},
"descr": {
"type": "string"
},
"index": {
"type": [
"integer",
"string"
]
},
"states": {
"type": "array",
"items": {
"type": "object",
"properties": {
"value": {
"type": "integer"
},
"descr": {
"type": "string"
},
"graph": {
"type": "integer"
},
"generic": {
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"descr",
"generic",
"graph",
"value"
]
}
},
"state_name": {
"type": "string"
},
"skip_values": {
"anyOf": [
{
"type": "integer"
},
{
"type": "array",
"items": {
"type": "object",
"properties": {
"oid": {
"type": "string"
},
"op": {
"$ref": "#/definitions/comparison"
},
"value": {
"type": [
"integer",
"string"
]
}
},
"required": [
"oid",
"op",
"value"
]
}
}
]
},
"snmp_flags": {
"type": [
"string",
"array"
]
},
"entPhysicalIndex": {
"type": [
"integer",
"string"
]
},
"entPhysicalIndex_measured": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"descr",
"num_oid",
"oid",
"states"
]
}
},
"options": {
"$ref": "#/definitions/options"
}
},
"required": [
"data"
]
},
"voltage": {
"$ref": "#/definitions/sensor"
},
"fanspeed": {
"$ref": "#/definitions/sensor"
},
"temperature": {
"$ref": "#/definitions/sensor"
},
"pre-cache": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"oid": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"oid"
]
}
}
},
"additionalProperties": false,
"required": [
"data"
]
},
"humidity": {
"$ref": "#/definitions/sensor"
},
"airflow": {
"$ref": "#/definitions/sensor"
},
"current": {
"$ref": "#/definitions/sensor"
},
"frequency": {
"$ref": "#/definitions/sensor"
},
"power": {
"$ref": "#/definitions/sensor"
},
"pressure": {
"$ref": "#/definitions/sensor"
},
"cooling": {
"$ref": "#/definitions/sensor"
},
"charge": {
"$ref": "#/definitions/sensor"
},
"runtime": {
"$ref": "#/definitions/sensor"
},
"dbm": {
"$ref": "#/definitions/sensor"
},
"load": {
"$ref": "#/definitions/sensor"
},
"chromatic_dispersion": {
"$ref": "#/definitions/sensor"
},
"delay": {
"$ref": "#/definitions/sensor"
},
"quality_factor": {
"$ref": "#/definitions/sensor"
},
"snr": {
"$ref": "#/definitions/sensor"
},
"waterflow": {
"$ref": "#/definitions/sensor"
},
"eer": {
"$ref": "#/definitions/sensor"
}
}
}
}
}
},
"additionalProperties": false,
"required": [
"modules"
],
"definitions": {
"sensor": {
"type": "object",
"properties": {
"data": {
"$ref": "#/definitions/data"
},
"options": {
"$ref": "#/definitions/options"
}
},
"additionalProperties": false,
"required": [
"data"
]
},
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"oid": {
"type": "string"
},
"num_oid": {
"type": "string",
"pattern": "^(\\.\\d+)+\\.?\\{\\{ \\$index \\}\\}(\\.\\d+)*$"
},
"index": {
"type": [
"integer",
"string"
]
},
"descr": {
"type": "string"
},
"divisor": {
"type": "integer"
},
"multiplier": {
"type": "integer"
},
"value": {
"type": "string"
},
"group": {
"type": "string"
},
"low_limit": {
"type": [
"number",
"string"
]
},
"low_warn_limit": {
"type": [
"number",
"string"
]
},
"warn_limit": {
"type": [
"number",
"string"
]
},
"high_limit": {
"type": [
"number",
"string"
]
},
"skip_value_lt": {
"type": "number"
},
"skip_value_gt": {
"type": "number"
},
"skip_values": {
"type": [
"number",
"array"
],
"items": {
"type": "object",
"properties": {
"oid": {
"type": "string"
},
"op": {
"$ref": "#/definitions/comparison"
},
"value": {
"type": [
"integer",
"string"
]
}
},
"additionalProperties": false,
"required": [
"oid",
"op",
"value"
]
}
},
"snmp_flags": {
"type": [
"string",
"array"
]
},
"entPhysicalIndex": {
"type": [
"integer",
"string"
]
},
"entPhysicalIndex_measured": {
"type": "string"
},
"user_func": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"descr",
"num_oid",
"oid"
]
}
},
"options": {
"type": "object",
"properties": {
"divisor": {
"type": "integer"
},
"skip_values": {
"anyOf": [
{
"type": "integer"
},
{
"type": "array",
"items": {
"type": "integer"
}
}
]
},
"skip_values_lt": {
"type": "integer"
}
},
"additionalProperties": false
},
"comparison": {
"type": "string",
"enum": [
"=",
"!=",
"==",
"!==",
"<=",
">=",
"<",
">",
"starts",
"ends",
"contains",
"regex",
"not_starts",
"not_ends",
"not_contains",
"not_regex",
"in_array",
"not_in_array"
]
}
}
}
| o70295 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://integracja.firefighters.ki.agh.edu.pl",
"description": "RS from notification center",
"type": "object",
"properties": {
"reportHeaders": {
"id": "http://integracja.firefighters.ki.agh.edu.pl/reportHeaders",
"type": "array",
"items": {
"id": "http://integracja.firefighters.ki.agh.edu.pl/reportHeaders/0",
"type": "object",
"properties": {
"reportId": {
"id": "http://integracja.firefighters.ki.agh.edu.pl/reportHeaders/0/reportId",
"type": "string"
},
"notificationDate": {
"id": "http://integracja.firefighters.ki.agh.edu.pl/reportHeaders/0/notificationDate",
"type": "string"
},
"actionName": {
"id": "http://integracja.firefighters.ki.agh.edu.pl/reportHeaders/0/actionName",
"type": "string"
},
"address": {
"id": "http://integracja.firefighters.ki.agh.edu.pl/reportHeaders/0/address",
"type": "string"
}
},
"additionalProperties": false
},
"additionalItems": false
}
},
"additionalProperties": false
} | o81499 |
{
"properties": {
"distance": {
"description": "The distance traveled in kilometers",
"type": "number"
},
"fuel_efficiency": {
"description": "The fuel efficiency of the vehicle in kilometers per liter",
"type": "number"
},
"occupancy": {
"description": "The number of people traveling in the vehicle",
"type": "integer"
},
"vehicle_type": {
"description": "The type of vehicle used, e.g. car",
"type": "string"
}
},
"required": [
"distance",
"vehicle_type"
],
"type": "object"
} | calculate_carbon_footprint_429d49a3 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"properties": {
"email": {
"_format": "email",
"maxLength": 1024,
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
} | o9948 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "List of Proverbs",
"type": "array",
"items": {
"title": "Proverb",
"description": "A Proverb",
"type": "array"
}
} | o17125 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A tag is some kind of a global keyword that could be set for some entries",
"id": "http://schlothauer.de/schemas/shared/domain.json",
"properties": {
"active": {
"type": "boolean"
},
"color": {
"description": "color that marks this tag",
"type": "string"
},
"comment": {
"description": "Comment to that tab",
"type": "string"
},
"created": {
"_format": "datetime",
"type": "string"
},
"group": {
"description": "Short text that describes the tag",
"type": "string"
},
"guid": {
"_format": "uuid",
"type": "string"
},
"internal": {
"type": "boolean"
},
"text": {
"description": "Short text that describes the tag",
"type": "string"
}
},
"required": [
"guid",
"text"
],
"type": "object",
"version": 1
} | o73998 |
{
"additionalProperties": false,
"definitions": {
"constraints": {
"service": {
"anyOf": [
{
"required": [
"build"
]
},
{
"required": [
"image"
]
}
],
"id": "#/definitions/constraints/service",
"properties": {
"build": {
"required": [
"context"
]
}
}
}
},
"healthcheck": {
"additionalProperties": false,
"id": "#/definitions/healthcheck",
"properties": {
"disable": {
"type": "boolean"
},
"interval": {
"type": "string"
},
"retries": {
"type": "number"
},
"test": {
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"timeout": {
"type": "string"
}
},
"type": "object"
},
"list_of_strings": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"list_or_dict": {
"oneOf": [
{
"additionalProperties": false,
"patternProperties": {
".+": {
"type": [
"string",
"number",
"null"
]
}
},
"type": "object"
},
{
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
}
]
},
"network": {
"additionalProperties": false,
"id": "#/definitions/network",
"properties": {
"driver": {
"type": "string"
},
"driver_opts": {
"patternProperties": {
"^.+$": {
"type": [
"string",
"number"
]
}
},
"type": "object"
},
"enable_ipv6": {
"type": "boolean"
},
"external": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": [
"boolean",
"object"
]
},
"internal": {
"type": "boolean"
},
"ipam": {
"additionalProperties": false,
"properties": {
"config": {
"type": "array"
},
"driver": {
"type": "string"
}
},
"type": "object"
},
"labels": {
"$ref": "#/definitions/list_or_dict"
}
},
"type": "object"
},
"service": {
"additionalProperties": false,
"dependencies": {
"memswap_limit": [
"mem_limit"
]
},
"id": "#/definitions/service",
"properties": {
"build": {
"oneOf": [
{
"type": "string"
},
{
"additionalProperties": false,
"properties": {
"args": {
"$ref": "#/definitions/list_or_dict"
},
"context": {
"type": "string"
},
"dockerfile": {
"type": "string"
}
},
"type": "object"
}
]
},
"cap_add": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"cap_drop": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"cgroup_parent": {
"type": "string"
},
"command": {
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"compote": {
"additionalProperties": false,
"properties": {
"commands": {
"additionalProperties": false,
"patternProperties": {
"^[a-zA-Z0-9._-]+$": {
"minLength": 1,
"type": "string"
}
},
"type": "object"
},
"extends": {
"oneOf": [
{
"$ref": "#/definitions/string_or_list"
},
{
"additionalProperties": false,
"patternProperties": {
"^.+$": {
"oneOf": [
{
"type": "null"
},
{
"additionalProperties": false,
"properties": {
"except": {
"$ref": "#/definitions/string_or_list"
},
"only": {
"$ref": "#/definitions/string_or_list"
}
},
"type": "object"
}
]
}
},
"type": "object"
}
]
},
"networks": {
"additionalProperties": false,
"patternProperties": {
"^[a-zA-Z0-9._-]+$": {
"$ref": "#/definitions/network"
}
},
"type": "object"
},
"volumes": {
"additionalProperties": false,
"patternProperties": {
"^[a-zA-Z0-9._-]+$": {
"$ref": "#/definitions/volume"
}
},
"type": "object"
}
},
"type": "object"
},
"container_name": {
"type": "string"
},
"cpu_quota": {
"type": [
"number",
"string"
]
},
"cpu_shares": {
"type": [
"number",
"string"
]
},
"cpuset": {
"type": "string"
},
"depends_on": {
"oneOf": [
{
"$ref": "#/definitions/list_of_strings"
},
{
"additionalProperties": false,
"patternProperties": {
"^[a-zA-Z0-9._-]+$": {
"additionalProperties": false,
"properties": {
"condition": {
"enum": [
"service_started",
"service_healthy"
],
"type": "string"
}
},
"required": [
"condition"
],
"type": "object"
}
},
"type": "object"
}
]
},
"devices": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"dns": {
"$ref": "#/definitions/string_or_list"
},
"dns_opt": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"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
},
"extends": {
"oneOf": [
{
"type": "string"
},
{
"additionalProperties": false,
"properties": {
"file": {
"type": "string"
},
"service": {
"type": "string"
}
},
"required": [
"service"
],
"type": "object"
}
]
},
"external_links": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"extra_hosts": {
"$ref": "#/definitions/list_or_dict"
},
"group_add": {
"items": {
"type": [
"string",
"number"
]
},
"type": "array",
"_uniqueItems": true
},
"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": {
"type": "object"
}
},
"type": "object"
},
"mac_address": {
"type": "string"
},
"mem_limit": {
"type": [
"number",
"string"
]
},
"mem_reservation": {
"type": [
"string",
"integer"
]
},
"mem_swappiness": {
"type": "integer"
},
"memswap_limit": {
"type": [
"number",
"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"
},
"link_local_ips": {
"$ref": "#/definitions/list_of_strings"
}
},
"type": "object"
},
{
"type": "null"
}
]
}
},
"type": "object"
}
]
},
"oom_score_adj": {
"maximum": 1000,
"minimum": -1000,
"type": "integer"
},
"pid": {
"type": [
"string",
"null"
]
},
"pids_limit": {
"type": [
"number",
"string"
]
},
"ports": {
"items": {
"format": "ports",
"type": [
"string",
"number"
]
},
"type": "array",
"_uniqueItems": true
},
"privileged": {
"type": "boolean"
},
"read_only": {
"type": "boolean"
},
"restart": {
"type": "string"
},
"security_opt": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"shm_size": {
"type": [
"number",
"string"
]
},
"stdin_open": {
"type": "boolean"
},
"stop_grace_period": {
"_format": "duration",
"type": "string"
},
"stop_signal": {
"type": "string"
},
"sysctls": {
"$ref": "#/definitions/list_or_dict"
},
"tmpfs": {
"$ref": "#/definitions/string_or_list"
},
"tty": {
"type": "boolean"
},
"ulimits": {
"patternProperties": {
"^[a-z]+$": {
"oneOf": [
{
"type": "integer"
},
{
"additionalProperties": false,
"properties": {
"hard": {
"type": "integer"
},
"soft": {
"type": "integer"
}
},
"required": [
"soft",
"hard"
],
"type": "object"
}
]
}
},
"type": "object"
},
"user": {
"type": "string"
},
"userns_mode": {
"type": "string"
},
"volume_driver": {
"type": "string"
},
"volumes": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"volumes_from": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"working_dir": {
"type": "string"
}
},
"type": "object"
},
"string_or_list": {
"oneOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/list_of_strings"
}
]
},
"volume": {
"additionalProperties": false,
"id": "#/definitions/volume",
"properties": {
"driver": {
"type": "string"
},
"driver_opts": {
"patternProperties": {
"^.+$": {
"type": [
"string",
"number"
]
}
},
"type": "object"
},
"external": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"type": [
"boolean",
"object"
]
},
"labels": {
"$ref": "#/definitions/list_or_dict"
}
},
"type": [
"object",
"null"
]
}
},
"properties": {
"compote": {
"additionalProperties": false,
"properties": {
"commands": {
"additionalProperties": false,
"patternProperties": {
"^[a-zA-Z0-9._-]+$": {
"minLength": 1,
"type": "string"
}
},
"type": "object"
},
"env_file": {
"$ref": "#/definitions/string_or_list"
},
"environment": {
"$ref": "#/definitions/list_or_dict"
},
"extends": {
"oneOf": [
{
"$ref": "#/definitions/string_or_list"
},
{
"additionalProperties": false,
"patternProperties": {
"^.+$": {
"oneOf": [
{
"type": "null"
},
{
"additionalProperties": false,
"properties": {
"except": {
"$ref": "#/definitions/string_or_list"
},
"only": {
"$ref": "#/definitions/string_or_list"
}
},
"type": "object"
}
]
}
},
"type": "object"
}
]
}
},
"type": "object"
},
"networks": {
"additionalProperties": false,
"patternProperties": {
"^[a-zA-Z0-9._-]+$": {
"$ref": "#/definitions/network"
}
},
"type": "object"
},
"services": {
"additionalProperties": false,
"patternProperties": {
"^[a-zA-Z0-9._-]+$": {
"$ref": "#/definitions/service"
}
},
"type": "object"
},
"version": {
"enum": [
"2.1"
],
"type": "string"
},
"volumes": {
"additionalProperties": false,
"patternProperties": {
"^[a-zA-Z0-9._-]+$": {
"$ref": "#/definitions/volume"
}
},
"type": "object"
}
},
"type": "object"
} | o84331 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "config.json",
"description": "The Ripple-REST configuration file",
"type": "object",
"properties": {
"rippled_servers": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"_uniqueItems": true
}
},
"required": [
"rippled_servers"
]
} | o89764 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"title": "Generation",
"definitions": {
"translations": {
"type": "object",
"properties": {
"cz": {
"type": "string"
},
"dk": {
"type": "string"
},
"fr": {
"type": "string"
},
"de": {
"type": "string"
},
"gr": {
"type": "string"
},
"it": {
"type": "string"
},
"pl": {
"type": "string"
},
"tr": {
"type": "string"
},
"en": {
"type": "string"
},
"jp": {
"type": "string"
},
"es": {
"type": "string"
}
},
"required": [
"en",
"de"
],
"additionalProperties": false
}
},
"properties": {
"number": {
"type": "integer",
"minimum": 1,
"maximum": 7
},
"names": {
"$ref": "#/definitions/translations"
},
"dex_name": {
"type": "string"
},
"games": {
"type": "array",
"minItems": 1,
"maxItems": 7,
"items": {
"$ref": "#/definitions/translations"
}
}
},
"required": [
"number",
"names",
"dex_name",
"games"
],
"additionalProperties": false
} | o48421 |
{
"properties": {
"activepolicy": {
"readonly": true,
"type": "integer"
},
"boundto": {
"type": "string"
},
"gotopriorityexpression": {
"readonly": true,
"type": "string"
},
"name": {
"type": "string"
},
"priority": {
"readonly": true,
"type": "integer"
}
},
"title": "tunneltrafficpolicy_tunnelglobal_binding",
"type": "object"
} | o31092 |
{
"title": "DatabaseCollection",
"description": "A collection from a certain namespace",
"oneOf": [
{
"type": "object",
"description": "A collection from the given namespace",
"properties": {
"name": {
"type": "string",
"pattern": "^[a-zA-Z0-9_\\.]+$",
"minLength": 2
},
"namespace": {
"type": "string",
"pattern": "^[a-zA-Z0-9_\\.]+$"
}
},
"required": [
"name",
"namespace"
],
"additionalProperties": false
},
{
"type": "string",
"description": "A collection from the default namespace",
"pattern": "^[a-zA-Z0-9_\\.~]+$"
}
]
}
| o10069 |
{
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the rectangle or triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"shape": {
"description": "The type of geometric shape",
"enum": [
"circle",
"rectangle",
"triangle"
],
"type": "string"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"shape"
],
"type": "object"
} | calculate_area_85d9648e |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"applicationId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"creationDate": {
"type": "string",
"format": "date-time"
},
"lastUpdated": {
"type": "string",
"format": "date-time"
},
"ownerId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"ownerType": {
"type": "string",
"enum": [
"user",
"organization"
]
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"description": {
"type": "string",
"maxLength": 32767
},
"summary": {
"type": "object",
"properties": {
"deviceCount": {
"type": "number"
},
"flowCount": {
"type": "number"
},
"webhookCount": {
"type": "number"
},
"eventCount": {
"type": "number"
},
"keyCount": {
"type": "number"
}
}
}
}
} | o6170 |
{
"definitions": {},
"links": [
{
"description": "link to the List of Scheduling Block instances",
"href": "scheduling_blocks",
"rel": "self"
}
],
"properties": {
"id": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"id",
"message"
],
"title": "Response to Scheduling Block instance DELETE request",
"type": "object"
} | o13687 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "pebl.xsd.PEBL",
"type": "object",
"properties": {
"pebl": {
"type": "object",
"properties": {
"benchmark": {
"$ref": "#/definitions/Benchmark"
},
"result": {
"$ref": "#/definitions/Result"
}
},
"additionalProperties": false
}
},
"definitions": {
"Benchmark": {
"type": "object",
"properties": {
"capabilities": {
"type": "object",
"properties": {
"capability": {
"type": "array",
"items": {
"$ref": "#/definitions/Capability"
}
}
}
},
"tests": {
"type": "object",
"properties": {
"test": {
"type": "array",
"items": {
"$ref": "#/definitions/Test"
}
}
}
},
"metricTypes": {
"type": "object",
"properties": {
"metricType": {
"type": "array",
"items": {
"$ref": "#/definitions/MetricType"
}
}
}
}
},
"additionalProperties": false
},
"Capability": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"languages": {
"type": "object",
"properties": {
"language": {
"type": "array",
"items": {
"$ref": "#/definitions/Language"
}
}
}
},
"metrics": {
"type": "object",
"properties": {
"metric": {
"type": "array",
"items": {
"$ref": "#/definitions/Metric"
}
}
}
},
"characteristics": {
"type": "array",
"items": {
"type": "string",
"enum": [
"FUNCTIONAL_COMPLETENESS",
"LEARNABILITY",
"ADAPTABILITY",
"AVAILABILITY",
"INTEGRITY",
"REPLACEABILITY",
"USER_INTERFACE_AESTHETICS",
"INTEROPERABILITY",
"ANALYSABILITY",
"FUNCTIONAL_SUITABILITY",
"PERFORMANCE_EFFICIENCY",
"COMPATABILITY",
"ACCESSIBILITY",
"FAULT_TOLERANCE",
"FUNCTIONAL_APPROPRIATENESS",
"RECOVERABILITY",
"ACCOUNTABILITY",
"MAINTAINABILITY",
"AUTHENTICITY",
"TIME_BEHAVIOUR",
"MODULARITY",
"MATURITY",
"NON_REPUDIATION",
"INSTALLABILITY",
"CONFIDENTIALITY",
"TESTABILITY",
"REUSABILITY",
"MODIFIABILITY",
"FUNCTIONAL_CORRECTNESS",
"USABILITY",
"RELIABILITY",
"SECURITY",
"CO_EXISTENCE",
"OPERABILITY",
"CAPACITY",
"APPROPRIATENESS_RECOGNISABILITY",
"PORTABILITY",
"RESOURCE_UTILISATION",
"USER_ERROR_PROTECTION"
]
}
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"id": {
"type": "string"
}
},
"additionalProperties": false
},
"Language": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"groups": {
"type": "object",
"properties": {
"group": {
"type": "array",
"items": {
"$ref": "#/definitions/Group"
}
}
}
},
"id": {
"type": "string"
},
"metrics": {
"type": "object",
"properties": {
"metric": {
"type": "array",
"items": {
"$ref": "#/definitions/Metric"
}
}
}
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
}
},
"additionalProperties": false
},
"Group": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"featureSets": {
"type": "object",
"properties": {
"featureSet": {
"type": "array",
"items": {
"$ref": "#/definitions/FeatureSet"
}
}
}
},
"id": {
"type": "string"
},
"metrics": {
"type": "object",
"properties": {
"metric": {
"type": "array",
"items": {
"$ref": "#/definitions/Metric"
}
}
}
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
}
},
"additionalProperties": false
},
"FeatureSet": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"features": {
"type": "object",
"properties": {
"feature": {
"type": "array",
"items": {
"$ref": "#/definitions/Feature"
}
}
}
},
"id": {
"type": "string"
},
"metrics": {
"type": "object",
"properties": {
"metric": {
"type": "array",
"items": {
"$ref": "#/definitions/Metric"
}
}
}
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
}
},
"additionalProperties": false
},
"Feature": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"metrics": {
"type": "object",
"properties": {
"metric": {
"type": "array",
"items": {
"$ref": "#/definitions/Metric"
}
}
}
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
}
},
"additionalProperties": false
},
"Metric": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"metricType": {
"type": "string"
}
},
"additionalProperties": false
},
"AdaptedMap": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"Test": {
"type": "object",
"properties": {
"feature": {
"type": "string"
},
"process": {
"type": "object"
},
"description": {
"type": "string"
},
"testCases": {
"type": "object",
"properties": {
"testCase": {
"type": "array",
"items": {
"$ref": "#/definitions/TestCase"
}
}
}
},
"files": {
"type": "array",
"items": {
"type": "string"
}
},
"testPartners": {
"type": "object",
"properties": {
"ruleBasedWSDLTestPartner": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/RuleBasedWSDLTestPartner"
},
{
"$ref": "#/definitions/WSDLTestPartner"
},
{
"$ref": "#/definitions/TestPartner"
}
]
}
},
"wsdlTestPartner": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/WSDLTestPartner"
},
{
"$ref": "#/definitions/RuleBasedWSDLTestPartner"
},
{
"$ref": "#/definitions/ScriptBasedWSDLTestPartner"
},
{
"$ref": "#/definitions/TestPartner"
}
]
}
},
"scriptBasedWSDLTestPartner": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/ScriptBasedWSDLTestPartner"
},
{
"$ref": "#/definitions/WSDLTestPartner"
},
{
"$ref": "#/definitions/TestPartner"
}
]
}
}
}
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"metrics": {
"type": "object",
"properties": {
"metric": {
"type": "array",
"items": {
"$ref": "#/definitions/Metric"
}
}
}
},
"id": {
"type": "string"
}
},
"additionalProperties": false
},
"TestCase": {
"type": "object",
"properties": {
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"name": {
"type": "string"
},
"number": {
"type": "integer"
},
"testSteps": {
"type": "object",
"properties": {
"startProcess": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/StartProcess"
},
{
"$ref": "#/definitions/TestStep"
}
]
}
},
"delayTesting": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/DelayTesting"
},
{
"$ref": "#/definitions/TestStep"
}
]
}
},
"executeScript": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/ExecuteScript"
},
{
"$ref": "#/definitions/TestStep"
}
]
}
},
"sendSoapMessage": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/SendSoapMessage"
},
{
"$ref": "#/definitions/TestStep"
}
]
}
},
"checkDeployment": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/CheckDeployment"
},
{
"$ref": "#/definitions/TestStep"
}
]
}
},
"gatherTraces": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/GatherTraces"
},
{
"$ref": "#/definitions/TestStep"
}
]
}
}
}
}
},
"additionalProperties": false
},
"StartProcess": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"description": {
"type": "string"
},
"testAssertions": {
"type": "object",
"properties": {
"assertScript": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertScript"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertXpath": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertXpath"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertDeployed": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertDeployed"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertSoapFault": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertSoapFault"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertExit": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertExit"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertTrace": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertTrace"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertNotDeployed": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertNotDeployed"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
}
}
},
"variables": {
"type": "object",
"properties": {
"variable": {
"type": "array",
"items": {
"$ref": "#/definitions/Variable"
}
}
}
},
"processName": {
"type": "string"
}
},
"additionalProperties": false
},
"AssertScript": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"groovyScript": {
"type": "string"
}
},
"additionalProperties": false
},
"TestAssertion": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
}
},
"additionalProperties": false
},
"AssertXpath": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"xpathExpression": {
"type": "string"
},
"expectedOutput": {
"type": "string"
}
},
"additionalProperties": false
},
"AssertDeployed": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
}
},
"additionalProperties": false
},
"AssertSoapFault": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"faultString": {
"type": "string"
}
},
"additionalProperties": false
},
"AssertExit": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
}
},
"additionalProperties": false
},
"AssertTrace": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"trace": {
"type": "string"
}
},
"additionalProperties": false
},
"AssertNotDeployed": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
}
},
"additionalProperties": false
},
"Variable": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"additionalProperties": false
},
"TestStep": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"description": {
"type": "string"
},
"testAssertions": {
"type": "object",
"properties": {
"assertScript": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertScript"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertXpath": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertXpath"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertDeployed": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertDeployed"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertSoapFault": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertSoapFault"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertExit": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertExit"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertTrace": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertTrace"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertNotDeployed": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertNotDeployed"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
}
}
}
},
"additionalProperties": false
},
"DelayTesting": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"description": {
"type": "string"
},
"testAssertions": {
"type": "object",
"properties": {
"assertScript": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertScript"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertXpath": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertXpath"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertDeployed": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertDeployed"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertSoapFault": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertSoapFault"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertExit": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertExit"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertTrace": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertTrace"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertNotDeployed": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertNotDeployed"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
}
}
},
"milliseconds": {
"type": "integer"
}
},
"additionalProperties": false
},
"ExecuteScript": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"description": {
"type": "string"
},
"testAssertions": {
"type": "object",
"properties": {
"assertScript": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertScript"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertXpath": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertXpath"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertDeployed": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertDeployed"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertSoapFault": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertSoapFault"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertExit": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertExit"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertTrace": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertTrace"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertNotDeployed": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertNotDeployed"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
}
}
},
"name": {
"type": "string"
},
"parameters": {
"$ref": "#/definitions/AdaptedMap"
}
},
"additionalProperties": false
},
"SendSoapMessage": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"description": {
"type": "string"
},
"testAssertions": {
"type": "object",
"properties": {
"assertScript": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertScript"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertXpath": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertXpath"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertDeployed": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertDeployed"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertSoapFault": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertSoapFault"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertExit": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertExit"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertTrace": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertTrace"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertNotDeployed": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertNotDeployed"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
}
}
},
"operation": {
"$ref": "#/definitions/WsdlOperation"
},
"service": {
"$ref": "#/definitions/WsdlService"
},
"soapMessage": {
"type": "string"
}
},
"additionalProperties": false
},
"WsdlOperation": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"isOneWay": {
"type": "boolean"
}
},
"additionalProperties": false
},
"WsdlService": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"additionalProperties": false
},
"CheckDeployment": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"description": {
"type": "string"
},
"testAssertions": {
"type": "object",
"properties": {
"assertScript": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertScript"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertXpath": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertXpath"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertDeployed": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertDeployed"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertSoapFault": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertSoapFault"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertExit": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertExit"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertTrace": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertTrace"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertNotDeployed": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertNotDeployed"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
}
}
}
},
"additionalProperties": false
},
"GatherTraces": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"description": {
"type": "string"
},
"testAssertions": {
"type": "object",
"properties": {
"assertScript": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertScript"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertXpath": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertXpath"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertDeployed": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertDeployed"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertSoapFault": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertSoapFault"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertExit": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertExit"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertTrace": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertTrace"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
},
"assertNotDeployed": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AssertNotDeployed"
},
{
"$ref": "#/definitions/TestAssertion"
}
]
}
}
}
}
},
"additionalProperties": false
},
"RuleBasedWSDLTestPartner": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"url": {
"type": "string"
},
"wsdl": {
"type": "object"
},
"WSDLUrl": {
"type": "string"
},
"publishedURL": {
"type": "string"
},
"rules": {
"type": "object",
"properties": {
"rule": {
"type": "array",
"items": {
"$ref": "#/definitions/OperationInputOutputRule"
}
}
}
}
},
"additionalProperties": false
},
"OperationInputOutputRule": {
"type": "object",
"properties": {
"operation": {
"type": "string"
},
"scriptPredicate": {
"anyOf": [
{
"$ref": "#/definitions/ScriptPredicate"
},
{
"$ref": "#/definitions/AnyInput"
}
]
},
"anyInput": {
"anyOf": [
{
"$ref": "#/definitions/AnyInput"
},
{
"$ref": "#/definitions/XpathPredicate"
},
{
"$ref": "#/definitions/ScriptPredicate"
}
]
},
"xpathPredicate": {
"anyOf": [
{
"$ref": "#/definitions/XpathPredicate"
},
{
"$ref": "#/definitions/AnyInput"
}
]
},
"soapFaultOutput": {
"anyOf": [
{
"$ref": "#/definitions/SoapFaultOutput"
},
{
"$ref": "#/definitions/SoapMessageOutput"
},
{
"$ref": "#/definitions/HttpOutput"
},
{
"$ref": "#/definitions/NoOutput"
}
]
},
"soapMessageOutput": {
"anyOf": [
{
"$ref": "#/definitions/SoapMessageOutput"
},
{
"$ref": "#/definitions/SoapFaultOutput"
},
{
"$ref": "#/definitions/HttpOutput"
},
{
"$ref": "#/definitions/NoOutput"
}
]
},
"scriptBasedOutput": {
"anyOf": [
{
"$ref": "#/definitions/ScriptBasedOutput"
},
{
"$ref": "#/definitions/NoOutput"
}
]
},
"noOutput": {
"anyOf": [
{
"$ref": "#/definitions/NoOutput"
},
{
"$ref": "#/definitions/HttpOutput"
},
{
"$ref": "#/definitions/SoapMessageOutput"
},
{
"$ref": "#/definitions/SoapFaultOutput"
},
{
"$ref": "#/definitions/ScriptBasedOutput"
}
]
},
"httpOutput": {
"anyOf": [
{
"$ref": "#/definitions/HttpOutput"
},
{
"$ref": "#/definitions/SoapMessageOutput"
},
{
"$ref": "#/definitions/SoapFaultOutput"
},
{
"$ref": "#/definitions/NoOutput"
}
]
}
},
"additionalProperties": false
},
"ScriptPredicate": {
"type": "string",
"additionalProperties": false
},
"AnyInput": {
"type": "object",
"properties": {
"type": {
"type": "string"
}
},
"additionalProperties": false
},
"XpathPredicate": {
"type": "string",
"additionalProperties": false
},
"SoapFaultOutput": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"statusCode": {
"type": "integer"
},
"mimetype": {
"type": "string"
},
"value": {
"type": "string"
}
},
"additionalProperties": false
},
"SoapMessageOutput": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"statusCode": {
"type": "integer"
},
"mimetype": {
"type": "string"
},
"value": {
"type": "string"
}
},
"additionalProperties": false
},
"HttpOutput": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"statusCode": {
"type": "integer"
},
"mimetype": {
"type": "string"
},
"value": {
"type": "string"
}
},
"additionalProperties": false
},
"NoOutput": {
"type": "object",
"properties": {
"type": {
"type": "string"
}
},
"additionalProperties": false
},
"ScriptBasedOutput": {
"type": "string",
"additionalProperties": false
},
"WSDLTestPartner": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"url": {
"type": "string"
},
"wsdl": {
"type": "object"
},
"WSDLUrl": {
"type": "string"
},
"publishedURL": {
"type": "string"
}
},
"additionalProperties": false
},
"TestPartner": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
}
},
"additionalProperties": false
},
"ScriptBasedWSDLTestPartner": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"url": {
"type": "string"
},
"wsdl": {
"type": "object"
},
"WSDLUrl": {
"type": "string"
},
"publishedURL": {
"type": "string"
},
"groovyScript": {
"type": "string"
}
},
"additionalProperties": false
},
"MetricType": {
"type": "object",
"properties": {
"dataType": {
"type": "string"
},
"id": {
"type": "string"
},
"description": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "string"
}
},
"additionalProperties": false
},
"Result": {
"type": "object",
"properties": {
"engines": {
"type": "object",
"properties": {
"engine": {
"type": "array",
"items": {
"$ref": "#/definitions/Engine"
}
}
}
},
"testResults": {
"type": "object",
"properties": {
"testResult": {
"type": "array",
"items": {
"$ref": "#/definitions/TestResult"
}
}
}
},
"aggregatedResults": {
"type": "object",
"properties": {
"aggregatedResult": {
"type": "array",
"items": {
"$ref": "#/definitions/AggregatedResult"
}
}
}
}
},
"additionalProperties": false
},
"Engine": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string"
},
"configuration": {
"type": "array",
"items": {
"type": "string"
}
},
"language": {
"type": "string"
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"id": {
"type": "string"
}
},
"additionalProperties": false
},
"TestResult": {
"type": "object",
"properties": {
"test": {
"type": "string"
},
"engine": {
"type": "string"
},
"tool": {
"type": "string"
},
"logs": {
"type": "array",
"items": {
"type": "string"
}
},
"deploymentPackage": {
"type": "object"
},
"files": {
"type": "array",
"items": {
"type": "string"
}
},
"measurements": {
"type": "object",
"properties": {
"measurement": {
"type": "array",
"items": {
"$ref": "#/definitions/Measurement"
}
}
}
},
"extensions": {
"$ref": "#/definitions/AdaptedMap"
},
"testCaseResults": {
"type": "object",
"properties": {
"testCaseResult": {
"type": "array",
"items": {
"$ref": "#/definitions/TestCaseResult"
}
}
}
}
},
"additionalProperties": false
},
"Measurement": {
"type": "object",
"properties": {
"metric": {
"type": "string"
},
"value": {
"type": "string"
}
},
"additionalProperties": false
},
"TestCaseResult": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"number": {
"type": "integer"
},
"value": {
"type": "string"
}
},
"additionalProperties": false
},
"AggregatedResult": {
"type": "object",
"properties": {
"measurements": {
"type": "object",
"properties": {
"measurement": {
"type": "array",
"items": {
"$ref": "#/definitions/Measurement"
}
}
}
},
"engine": {
"type": "string"
}
},
"additionalProperties": false
}
}
} | o83390 |
{
"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": "JobCondition describes current state of a job.",
"properties": {
"lastProbeTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Last time the condition was checked."
},
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Last time the condition transit from one status to another."
},
"message": {
"description": "Human readable message indicating details about last transition.",
"type": [
"string",
"null"
]
},
"reason": {
"description": "(brief) reason for the condition's last transition.",
"type": [
"string",
"null"
]
},
"status": {
"description": "Status of the condition, one of True, False, Unknown.",
"type": [
"string",
"null"
]
},
"type": {
"description": "Type of job condition, Complete or Failed.",
"type": [
"string",
"null"
]
}
},
"required": [
"type",
"status"
],
"type": "object"
} | kb_480_Normalized |
{
"properties": {
"end_time": {
"description": "The end time of the meeting",
"format": "date-time",
"type": "string"
},
"participants": {
"items": {
"description": "The email addresses of the participants",
"type": "string"
},
"type": "array"
},
"start_time": {
"description": "The start time of the meeting",
"format": "date-time",
"type": "string"
},
"title": {
"description": "The title of the meeting",
"type": "string"
}
},
"required": [
"title",
"participants",
"start_time",
"end_time"
],
"type": "object"
} | schedule_meeting_c300e0b7 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[0-9]+$"
},
"username": {
"type": "string"
},
"time": {
"description": "UNIX time at which the post was made",
"minimum": 1136091600,
"type": "integer"
},
"type": {
"type": "string",
"enum": [
"image",
"video"
]
},
"isRetweet": {
"type": "boolean"
},
"retweet": {
"type": "integer",
"minimum": 0
},
"favorite": {
"type": "integer",
"minimum": 0
},
"reply": {
"type": "integer",
"minimum": 0
},
"text": {
"type": "string"
},
"images": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
}
},
"additionalProperties": false,
"required": [
"id",
"username",
"time",
"type",
"isRetweet",
"retweet",
"favorite",
"reply",
"text",
"images"
]
} | o76764 |
{
"description": "ScaleStatus represents the current status of a scale subresource.",
"properties": {
"replicas": {
"description": "actual number of observed instances of the scaled object.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"selector": {
"additionalProperties": {
"type": [
"string",
"null"
]
},
"description": "label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors",
"type": [
"object",
"null"
]
},
"targetSelector": {
"description": "label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors",
"type": [
"string",
"null"
]
}
},
"required": [
"replicas"
],
"type": "object"
} | kb_921_Normalized |
{
"title": "JSON schema for Outblocks database table files",
"$schema": "http://json-schema.org/draft-04/schema",
"$ref": "#/definitions/OutblocksTable",
"definitions": {
"OutblocksTable": {
"title": "OutblocksTable",
"type": "object",
"additionalProperties": false,
"properties": {
"fields": {
"$ref": "#/definitions/Fields"
}
}
},
"Fields": {
"title": "Fields",
"type": "object",
"additionalProperties": true,
"patternProperties": {
"^[_a-zA-Z][a-zA-Z0-9_-]*$": {
"type": "object",
"properties": {
"type": {
"description": "The type of the field.",
"type": "string"
},
"default": {
"description": "Default value of the field."
}
},
"required": [
"type"
]
}
}
}
}
} | schema-table |
{
"id": "https://raw.githubusercontent.com/JSONScript/jsonscript-proxy/master/config_schema.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Configuration",
"description": "Schema for proxy server configuration file (and for config passed to proxy middleware)",
"type": "object",
"required": [
"services"
],
"properties": {
"services": {
"title": "proxied services",
"description": "each property name will be an executor exposed to JSONScript interpreter",
"type": "object",
"minProperties": 1,
"additionalProperties": false,
"patternProperties": {
"^[A-Za-z_$][A-Za-z_$0-9]+$": {
"$ref": "#/definitions/service"
}
}
},
"jsonscript": {
"description": "options passed to JSONScript interpreter",
"type": "object"
},
"processResponse": {
"$ref": "#/definitions/processResponse"
},
"Promise": {
"description": "Promise class to use, will be ignored if used from command line",
"typeof": "function"
}
},
"definitions": {
"service": {
"description": "proxied service definition",
"required": [
"basePath"
],
"properties": {
"basePath": {
"type": "string",
"format": "uri"
},
"processResponse": {
"$ref": "#/definitions/processResponse"
}
}
},
"processResponse": {
"description": "defines how response from service is processed",
"anyOf": [
{
"description": "return only response body if status code is < 300, throw an exception otherwise",
"type": "string",
"enum": [
"body"
]
},
{
"description": "uses custom keyword 'typeof', function should return result or throw exception",
"not": {
"type": [
"string",
"number",
"array",
"object",
"boolean",
"null"
]
},
"typeof": "function"
}
]
}
}
} | o7574 |
{
"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"
}
},
"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"
} | kb_458_Normalized |
{
"properties": {
"dimensions": {
"properties": {
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle or triangle base",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_8b10db51 |
{
"additionalProperties": false,
"definitions": {
"config": {
"additionalProperties": false,
"id": "#/definitions/config",
"patternProperties": {
"^x-": {}
},
"properties": {
"external": {
"properties": {
"name": {
"type": "string"
}
},
"type": [
"boolean",
"object"
]
},
"file": {
"type": "string"
},
"labels": {
"$ref": "#/definitions/list_or_dict"
},
"name": {
"type": "string"
},
"template_driver": {
"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"
},
"max_replicas_per_node": {
"type": "integer"
},
"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"
},
"rollback_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"
},
"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",
"patternProperties": {
"^x-": {}
},
"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",
"patternProperties": {
"^x-": {}
},
"properties": {
"driver": {
"type": "string"
},
"driver_opts": {
"patternProperties": {
"^.+$": {
"type": [
"string",
"number"
]
}
},
"type": "object"
},
"external": {
"properties": {
"name": {
"type": "string"
}
},
"type": [
"boolean",
"object"
]
},
"file": {
"type": "string"
},
"labels": {
"$ref": "#/definitions/list_or_dict"
},
"name": {
"type": "string"
},
"template_driver": {
"type": "string"
}
},
"type": "object"
},
"service": {
"additionalProperties": false,
"id": "#/definitions/service",
"patternProperties": {
"^x-": {}
},
"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": {
"config": {
"type": "string"
},
"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"
},
"init": {
"type": "boolean"
},
"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",
"patternProperties": {
"^x-": {}
},
"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"
} | o83850 |
{
"description": "HTTPHeader describes a custom header to be used in HTTP probes",
"properties": {
"name": {
"description": "The header field name",
"type": [
"string",
"null"
]
},
"value": {
"description": "The header field value",
"type": [
"string",
"null"
]
}
},
"required": [
"name",
"value"
],
"type": "object"
} | kb_424_Normalized |
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://dwp.gov.uk/exchange/publishing-tools/apigw/catalogue-entry-schema.json",
"title": "Catalogue entry",
"type": "object",
"required": [
"description",
"primaryContact",
"filters",
"searchTags"
],
"properties": {
"description": {
"type": "string",
"minLength": 10,
"maxLength": 200
},
"primaryContact": {
"type": "object",
"title": "Primary contact",
"description": "Contact details for the owner of the asset, i.e. the Product Owner.These details will be used when customers make enquiries or request access to the asset through the portal.",
"required": [
"emailAddress"
],
"properties": {
"name": {
"type": "string",
"minLength": 2,
"maxLength": 35
},
"emailAddress": {
"type": "string",
"description": "must end with `gov.uk`",
"pattern": "^.*@.*gov\\.uk$"
},
"role": {
"type": "string",
"minLength": 2
}
},
"additionalProperties": false,
"examples": [
{
"name": "Jo Doe",
"emailAddress": "[email protected]",
"role": "PO"
}
]
},
"technical_documentation": {
"type": "object",
"title": "Technical documentation",
"description": "Allows you to provide paths to technical documentation to be published to the portal.",
"required": [
"oas_path"
],
"properties": {
"oas_path": {
"type": "string",
"description": "Path to the technical documentation, relative to the current working directory.",
"pattern": "((?:[^\/]*\/)*)(?=\\.(yaml|yml|json))"
}
},
"additionalProperties": false,
"examples": [
{
"oas_path": "../oas/pet-store.yaml"
}
]
},
"filters": {
"title": "Filters",
"type": "object",
"description": "A list of filtering options to improve searchability on the portal. Please check the README file to check the valid combinations of `lifecycle`, `profile`, and `access`.",
"required": [
"asset_type",
"owner",
"categories",
"visibility",
"lifecycle",
"profile",
"access"
],
"allOf": [
{"$ref": "#/properties/filters/definitions/active-lifecycle"},
{"$ref": "#/properties/filters/definitions/deprecated-lifecycle"}
],
"definitions": {
"active-lifecycle": {
"if": {
"properties": {
"lifecycle": {
"enum": [
"In Development",
"Pre-Prod",
"Prod"
]
}
}
},
"then": {
"properties": {
"profile": {
"enum": [
"Strategic",
"Transitional"
]
},
"access": {
"enum": [
"Open",
"Closed"
]
}
}
}
},
"deprecated-lifecycle": {
"if": {
"properties": {
"lifecycle": {
"enum": [
"Deprecated",
"Removed"
]
}
}
},
"then": {
"properties": {
"profile": {
"const": "Legacy"
},
"access": {
"const": "Closed"
}
}
}
}
},
"properties": {
"asset_type": {
"type": "string",
"enum": [
"REST API",
"SOAP API",
"Event",
"Datasets"
],
"examples": [
"REST API"
]
},
"owner": {
"type": "string",
"enum": [
"AME Payments",
"Citizen Income",
"Citizen Information",
"Document Repository Services",
"Integration",
"Legacy Bridge",
"Notifications Platform",
"Personal Independence Payment",
"Reference Data Service",
"Retirement, Bereavement & Care",
"Common Capabilities",
"Other"
],
"examples": [
"Integration"
]
},
"categories": {
"title": "Categories",
"type": "array",
"minLength": 1,
"maxLength": 3,
"items": {
"type": "string",
"enum": [
"Address",
"Awards",
"Citizen",
"Data",
"Document Services",
"Financial",
"GUID",
"SMS",
"Other"
]
},
"examples": [
[
"Address"
]
]
},
"visibility": {
"type": "string",
"enum": [
"Internal",
"Public"
],
"examples": [
"Internal"
]
},
"lifecycle": {
"type": "string",
"enum": [
"In Development",
"Pre-Prod",
"Prod",
"Deprecated",
"Removed"
],
"examples": [
"In Development"
]
},
"profile": {
"type": "string",
"title": "The profile Schema",
"enum": [
"Strategic",
"Transitional",
"Legacy"
],
"examples": [
"Strategic"
]
},
"access": {
"type": "string",
"enum": [
"Open",
"Closed"
],
"examples": [
"Open"
]
}
},
"additionalProperties": false,
"examples": [
{
"asset_type": "REST API",
"owner": "Integration",
"categories": [
"Address"
],
"visibility": "Internal",
"lifecycle": "Prod",
"profile": "Transitional",
"access": "Open"
}
]
},
"searchTags": {
"type": "string",
"description": "Tags to label the asset in order to increase discoverability. Minimum of 3 in CSV format.",
"pattern": "^([^,]+(,|$)){3,}$",
"examples": [
"tag1, tag2, tag3"
]
},
"relatedAssets": {
"title": "Related assets",
"description": "A list of other assets that are related to the asset being published. Must match the Asset ID on the related asset's business documentation page on the portal at https://gitlab.com/dwp/integration/api-exchange/exchange-content/-/tree/main/output/dwp/portal/workspaces/primary/content/_catalogueEntries.",
"type": "array",
"items": {
"type": "string",
"examples": [
"integration-alive-check-service-v1"
]
}
}
},
"additionalProperties": false,
"examples": [
{
"description": "This is an example service",
"primaryContact": {
"emailAddress": "[email protected]"
},
"technical_documentation": {
"oas_path": "../oas/path-to-spec.yml"
},
"filters": {
"asset_type": "REST API",
"owner": "Integration",
"categories": [
"Address"
],
"visibility": "Internal",
"lifecycle": "Pre-Prod",
"profile": "Transitional",
"access": "Closed"
},
"searchTags": "test1,test2,test3"
}
]
}
| catalogue-entry-schema |
{
"additionalProperties": false,
"description": "Schema for an app state transition event",
"properties": {
"attributes": {},
"isFirstRun": {
"type": "boolean"
},
"isUpgrade": {
"type": "boolean"
},
"jsonPayload": {
"type": "string"
},
"launchParams": {
"type": "string"
},
"launchReferral": {
"type": "string"
},
"referralApplication": {
"type": "string"
},
"successfullyClosed": {
"type": "boolean"
},
"transitionType": {
"type": "string"
}
},
"required": [
"transitionType"
],
"self": {
"format": "jsonschema",
"name": "appstatetransition_event",
"vendor": "com.mparticle.snowplow",
"version": "1-0-0"
},
"type": "object"
} | sp_140_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_CSIDriverSpec": {
"description": "CSIDriverSpec is the specification of a CSIDriver.",
"properties": {
"attachRequired": {
"description": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.",
"type": "boolean"
},
"podInfoOnMount": {
"description": "If set to true, podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations. If set to false, pod information will not be passed on mount. Default is false. The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" iff the volume is an ephemeral inline volume\n defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.",
"type": "boolean"
},
"volumeLifecycleModes": {
"description": "VolumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism. The other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume. For more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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": "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. CSI drivers do not need to create the CSIDriver object directly. Instead they may use the cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically creates a CSIDriver object representing the driver. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"enum": [
"storage.k8s.io/v1beta1"
],
"type": [
"string",
"null"
]
},
"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": [
"CSIDriver"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object metadata. metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. 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_storage_v1beta1_CSIDriverSpec",
"description": "Specification of the CSI Driver."
}
},
"required": [
"spec"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "storage.k8s.io",
"kind": "CSIDriver",
"version": "v1beta1"
}
]
} | kb_160_Normalized |
{
"$schema": "http://json-schema.org/draft-07/schema",
"title": "Karma Target",
"description": "Karma target options for Build Facade.",
"type": "object",
"properties": {
"main": {
"type": "string",
"description": "The name of the main entry-point file."
},
"tsConfig": {
"type": "string",
"description": "The name of the TypeScript configuration file."
},
"karmaConfig": {
"type": "string",
"description": "The name of the Karma configuration file."
},
"polyfills": {
"type": "string",
"description": "The name of the polyfills file."
},
"assets": {
"type": "array",
"description": "List of static application assets.",
"default": [],
"items": {
"$ref": "#/definitions/assetPattern"
}
},
"scripts": {
"description": "Global scripts to be included in the build.",
"type": "array",
"default": [],
"items": {
"$ref": "#/definitions/extraEntryPoint"
}
},
"styles": {
"description": "Global styles to be included in the build.",
"type": "array",
"default": [],
"items": {
"$ref": "#/definitions/extraEntryPoint"
}
},
"stylePreprocessorOptions": {
"description": "Options to pass to style preprocessors",
"type": "object",
"properties": {
"includePaths": {
"description": "Paths to include. Paths will be resolved to project root.",
"type": "array",
"items": {
"type": "string"
},
"default": []
}
},
"additionalProperties": false
},
"environment": {
"type": "string",
"description": "Defines the build environment.",
"x-deprecated": "This option has no effect."
},
"include": {
"type": "array",
"items": {
"type": "string"
},
"description": "Globs of files to include, relative to workspace or project root. \nThere are 2 special cases:\n - when a path to directory is provided, all spec files ending \".spec.@(ts|tsx)\" will be included\n - when a path to a file is provided, and a matching spec file exists it will be included instead"
},
"sourceMap": {
"description": "Output sourcemaps.",
"default": true,
"oneOf": [
{
"type": "object",
"properties": {
"scripts": {
"type": "boolean",
"description": "Output sourcemaps for all scripts.",
"default": true
},
"styles": {
"type": "boolean",
"description": "Output sourcemaps for all styles.",
"default": true
},
"vendor": {
"type": "boolean",
"description": "Resolve vendor packages sourcemaps.",
"default": false
}
},
"additionalProperties": false
},
{
"type": "boolean"
}
]
},
"vendorSourceMap": {
"type": "boolean",
"description": "Resolve vendor packages sourcemaps.",
"x-deprecated": true,
"default": false
},
"evalSourceMap": {
"type": "boolean",
"description": "Output in-file eval sourcemaps.",
"x-deprecated": true
},
"progress": {
"type": "boolean",
"description": "Log progress to the console while building."
},
"watch": {
"type": "boolean",
"description": "Run build when files change."
},
"poll": {
"type": "number",
"description": "Enable and define the file watching poll time period in milliseconds."
},
"preserveSymlinks": {
"type": "boolean",
"description": "Do not use the real path when resolving modules. If unset then will default to `true` if NodeJS option --preserve-symlinks is set."
},
"browsers": {
"type": "string",
"description": "Override which browsers tests are run against."
},
"codeCoverage": {
"type": "boolean",
"description": "Output a code coverage report.",
"default": false
},
"codeCoverageExclude": {
"type": "array",
"description": "Globs to exclude from code coverage.",
"items": {
"type": "string"
},
"default": []
},
"fileReplacements": {
"description": "Replace files with other files in the build.",
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"properties": {
"src": {
"type": "string"
},
"replaceWith": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"src",
"replaceWith"
]
},
{
"type": "object",
"properties": {
"replace": {
"type": "string"
},
"with": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"replace",
"with"
]
}
]
},
"default": []
},
"reporters": {
"type": "array",
"description": "Karma reporters to use. Directly passed to the karma runner.",
"items": {
"type": "string"
}
},
"webWorkerTsConfig": {
"type": "string",
"description": "TypeScript configuration for Web Worker modules."
}
},
"additionalProperties": false,
"required": [
"main",
"tsConfig",
"karmaConfig"
],
"definitions": {
"assetPattern": {
"oneOf": [
{
"type": "object",
"properties": {
"glob": {
"type": "string",
"description": "The pattern to match."
},
"input": {
"type": "string",
"description": "The input directory path in which to apply 'glob'. Defaults to the project root."
},
"output": {
"type": "string",
"description": "Absolute path within the output."
},
"ignore": {
"description": "An array of globs to ignore.",
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"glob",
"input",
"output"
]
},
{
"type": "string"
}
]
},
"extraEntryPoint": {
"oneOf": [
{
"type": "object",
"properties": {
"input": {
"type": "string",
"description": "The file to include."
},
"bundleName": {
"type": "string",
"description": "The bundle name for this extra entry point."
},
"lazy": {
"type": "boolean",
"description": "If the bundle will be lazy loaded.",
"default": false,
"x-deprecated": "Use 'inject' option with 'false' value instead."
},
"inject": {
"type": "boolean",
"description": "If the bundle will be referenced in the HTML file.",
"default": true
}
},
"additionalProperties": false,
"required": [
"input"
]
},
{
"type": "string",
"description": "The file to include."
}
]
}
}
} | o58446 |
{
"id": "http://schemas.opentranslatorstothings.org/opent2t.error#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "",
"title": "OpenT2T Error",
"definitions": {
"opent2t.error": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "ReadOnly, Gets the name for the error"
},
"statusCode": {
"type": "number",
"description": "ReadOnly, Gets the status code for the error."
},
"message": {
"type": "string",
"description": "ReadOnly, Gets the message for the error"
},
"innerErrorMessage": {
"type": "string",
"description": "ReadOnly, Gets the message for the inner error"
},
"innerErrorName": {
"type": "string",
"description": "ReadOnly, Gets the name for the inner error"
},
"innerErrorStack": {
"type": "string",
"description": "ReadOnly, Gets the server call stack for the inner error."
}
}
}
},
"type": "object",
"allOf": [
{
"$ref": "#/definitions/opent2t.error"
}
],
"required": [
"name",
"statusCode"
]
} | o65361 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "RetryExam test options",
"description": "Options for a RetryExam test.",
"type": "object",
"additionalProperties": false,
"properties": {
"questionGroups": {
"description": "Array of QID difficulty groups, one per difficulty level of questions.",
"type": "array",
"items": {
"description": "Array of QID topic groups, one per topic of questions.",
"type": "array",
"items": {
"description": "Array of question IDs (QIDs) for this topic and difficulty.",
"type": "array",
"item": {
"description": "A single test question.",
"type": "object",
"additionalProperties": false,
"properties": {
"qid": {
"$ref": "#/definitions/questionQID"
},
"points": {
"$ref": "#/definitions/questionPoints"
}
},
"required": [
"qid",
"points"
]
}
}
}
},
"zones": {
"description": "Array of \"zones\" in the test, each containing questions that can be randomized within the zone.",
"type": "array",
"items": {
"$ref": "#/definitions/zone"
}
},
"unlimitedVariants": {
"description": "Whether to generate new variants for all students, rather than using a limited set.",
"type": "boolean",
"default": false
},
"variantsPerQuestion": {
"description": "Number of variants to select from per question.",
"type": "integer",
"minimum": 1,
"default": 3
},
"availDate": {
"description": "The date after which the test is available for students to view.",
"type": "string"
},
"nQuestions": {
"description": "The number of questions to select for each instance of this test.",
"type": "integer"
},
"timeLimitMin": {
"description": "The number of minutes allowed for this test.",
"type": "integer"
},
"text": {
"description": "HTML text shown on the test overview page.",
"type": "string"
}
},
"oneOf": [
{
"type": "object",
"required": [
"questionGroups",
"nQuestions"
]
},
{
"type": "object",
"required": [
"zones"
],
"not": {
"type": "object",
"required": [
"nQuestions"
]
}
}
],
"definitions": {
"zone": {
"type": "object",
"properties": {
"title": {
"description": "Zone title, displayed to the students at the top of the question list for the zone.",
"type": "string"
},
"questions": {
"description": "Array of questions in the zone.",
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/question"
}
}
},
"required": [
"questions"
]
},
"question": {
"type": "object",
"properties": {
"points": {
"$ref": "#/definitions/questionPoints"
},
"qid": {
"$ref": "#/definitions/questionQID"
},
"qids": {
"description": "Array of possible qids for a question.",
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/questionQID"
}
}
},
"required": [
"points"
],
"oneOf": [
{
"type": "object",
"required": [
"qid"
]
},
{
"type": "object",
"required": [
"qids"
]
}
]
},
"questionPoints": {
"description": "An array of points values.",
"type": "array",
"minItems": 1,
"items": {
"type": "integer"
}
},
"questionQID": {
"description": "Question ID.",
"type": "string"
}
}
} | o57539 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"order_items": {
"items": {
"properties": {
"price": {
"description": "The price per unit of the product",
"type": "number"
},
"product_name": {
"description": "The name of the product",
"type": "string"
},
"quantity": {
"description": "The quantity of the product",
"type": "integer"
}
},
"required": [
"product_name",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"order_items"
],
"type": "object"
} | generate_invoice_3cf1c488 |
{
"properties": {
"customer_details": {
"properties": {
"address": {
"description": "The address of the customer",
"type": "string"
},
"name": {
"description": "The name of the customer",
"type": "string"
}
},
"required": [
"name",
"address"
],
"type": "object"
},
"items": {
"items": {
"properties": {
"price": {
"description": "The price of the product",
"type": "number"
},
"product": {
"description": "The name of the product",
"type": "string"
},
"quantity": {
"description": "The quantity of the product",
"type": "integer"
}
},
"required": [
"product",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_details",
"items"
],
"type": "object"
} | generate_invoice_b81e92ab |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Project Schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the project"
},
"short_name": {
"type": "string",
"description": "The short name of the project."
},
"description": {
"type": "string",
"description": "A short description of the project."
},
"category_id": {
"type": "integer",
"description": "The category ID of the project."
},
"webhook": {
"type": "string",
"description": "A webhook URL for the project."
}
},
"additionalProperties": {
"type": "string",
"description": "Additional keys and values used to update the project's info field."
}
} | o20389 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.