json_schema
stringlengths 43
1.28M
| unique_id
stringlengths 2
41
|
---|---|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Domain set",
"type": "array",
"items": {
"title": "Domain",
"type": "object",
"properties": {
"apiVersion": {
"enum": [
"v1beta1",
"v1.0",
"v1"
]
},
"kind": {
"enum": [
"Domain",
"domain"
],
"readOnly": true
},
"metadata": {
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 3,
"maxLength": 30
},
"createdOn": {
"type": "string",
"readOnly": true
},
"modifiedOn": {
"type": "string",
"readOnly": true
},
"ref": {
"type": "string",
"readOnly": true,
"minLength": 3,
"maxLength": 24
}
},
"required": [
"name"
]
},
"spec": {
"type": "object",
"properties": {
"context": {
"type": "object",
"properties": {
"domainUri": {
"type": "string",
"readOnly": true,
"minLength": 1
},
"egressPolicy": {
"type": "object",
"properties": {
"rule": {
"type": "string"
},
"numberRef": {
"type": "string"
}
},
"required": [
"rule",
"numberRef"
]
},
"accessControlList": {
"type": "object",
"properties": {
"allow": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"_uniqueItems": true
},
"deny": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"_uniqueItems": true
}
}
}
},
"required": [
"domainUri"
]
}
},
"required": [
"context"
]
}
},
"required": [
"apiVersion",
"kind",
"spec",
"metadata"
]
}
} | o68600 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"description": "The items included 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_2c02e40e |
{
"properties": {
"boundto": {
"type": "string"
},
"name": {
"type": "string"
},
"priority": {
"readonly": true,
"type": "integer"
}
},
"title": "authorizationpolicy_authorizationpolicylabel_binding",
"type": "object"
} | o31608 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource": {
"description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource": {
"description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret must be defined",
"type": "boolean"
}
},
"type": "object"
}
},
"description": "EnvFromSource represents the source of a set of ConfigMaps",
"properties": {
"configMapRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource",
"description": "The ConfigMap to select from"
},
"prefix": {
"description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
"type": [
"string",
"null"
]
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource",
"description": "The Secret to select from"
}
},
"type": "object"
} | kb_317_Normalized |
{
"description": "Initiate the background execution of a specific export (e.g. export template). Required parameters are the identity that the export belongs to, and the **id** of the export that you wish to run. This will create an instance of a running **export_file**, which is what you can monitor to determine when the export is ready to be downloaded. The **id** in the response from this call is the handle to that running export_file and what is used in future calls to check on the status of the run.\n\n_Important note: this **id** representing the handle to the running instance of the export is not always uniquely generated with each run \u2013 if you attempt to run the same export several times in close succession, you will receive back the id of the already-running instance of that export. This is a safeguard to prevent many accidental simultaneous runs of the exact same export \u2013 one must finish before a new one can be initiated._",
"links": [
{
"description": "Initiate the background execution of a specific export.",
"href": "/api/v1/user_identities/:user_identity_id/exports/:export_id/export_files",
"http_header": {
"x-api-key": "0123456789abcdef0123456789abcdef"
},
"method": "POST",
"rel": "create",
"schema": {
"properties": {
"callback": {
"description": "For requests using the optional \u201ccallback\u201d parameter, you should build your request as follows: /api/v1/user_identities/:user_identity_id/exports/:export_id/ export_files?callback=http://someurl.com/your_callback.cgi When the file is ready, WebAdMIT will POST to the callback URL that you specify with the following form POST parameters: export_file[id] export_file[export_id] export_file[status] An example of the body of a POST to a callback when a file is ready is as follows: export_file[id]=99752&export_file[export_id]=123316&export_file[status]=Available This gives you the export_file_id of the file that\u2019s ready for download once it is available (you will use the export_id and the export_file_id POSTed here to form the next API call in item 5 below to actually get the URL to download the now-ready file). We recommend the use of the public RequestBin (http://requestb.in/) service in order to test out how this particular call works.",
"example": "http://someurl.com/your_callback.cgi",
"format": "uri",
"type": "string"
}
},
"type": "object"
},
"targetSchema": {
"properties": {
"export_files": {
"properties": {
"export_id": {
"description": "Unique identifier of the associated export.",
"example": 86446,
"type": "integer"
},
"href": {
"description": "Hypertext reference to this resource.",
"example": "/api/v1/exports/86466/export_files/74780",
"pattern": "/api/v1/exports/\\d+/export_files/\\d+",
"type": "string"
},
"id": {
"description": "Unique identifier of this export file.",
"example": 74780,
"type": "integer"
},
"status": {
"description": "Current status of this export file.",
"enum": [
"Initializing",
"Queued",
"In Progress",
"Available",
"Success With Errors",
"Empty List",
"Failed"
],
"example": "Available",
"type": "string"
}
},
"required": [
"id",
"href",
"export_id",
"status"
],
"type": "object"
}
}
},
"title": ""
}
],
"properties": {
"export_files": {
"items": {
"properties": {
"export_id": {
"description": "Unique identifier of the associated export.",
"example": 86446,
"type": "integer"
},
"href": {
"description": "Hypertext reference to this resource.",
"example": "/api/v1/exports/86466/export_files/74780",
"pattern": "/api/v1/exports/\\d+/export_files/\\d+",
"type": "string"
},
"id": {
"description": "Unique identifier of this export file.",
"example": 74780,
"type": "integer"
},
"status": {
"description": "Current status of this export file.",
"enum": [
"Initializing",
"Queued",
"In Progress",
"Available",
"Success With Errors",
"Empty List",
"Failed"
],
"example": "Available",
"type": "string"
}
},
"required": [
"id",
"href",
"export_id",
"status"
],
"type": "object"
},
"type": "array"
},
"href": {
"description": "Hypertext reference to this resource.",
"example": "/api/v1/user_identities/37442/export_files",
"pattern": "/api/v1/user_identities/\\d+/export_files",
"type": "string"
}
},
"stability": "production",
"strictProperties": true,
"title": "Export/Report Files (initiate a run)",
"type": "object"
} | o9513 |
{
"properties": {
"dimensions": {
"properties": {
"height": {
"description": "The height of the shape",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width"
],
"type": "object"
},
"shape": {
"description": "The shape for which the area needs to be calculated",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_0668f32b |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"items": {
"properties": {
"name": {
"description": "The name of the item",
"type": "string"
},
"price": {
"description": "The price of the item",
"type": "number"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
}
},
"required": [
"name",
"price",
"quantity"
],
"type": "object"
},
"type": "array"
},
"order_total": {
"description": "The total amount of the order",
"type": "number"
}
},
"required": [
"customer_name",
"order_total",
"items"
],
"type": "object"
} | generate_invoice_c57328a1 |
{
"properties": {
"point1": {
"properties": {
"latitude": {
"description": "The latitude of point 1",
"type": "number"
},
"longitude": {
"description": "The longitude of point 1",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
},
"point2": {
"properties": {
"latitude": {
"description": "The latitude of point 2",
"type": "number"
},
"longitude": {
"description": "The longitude of point 2",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
}
},
"required": [
"point1",
"point2"
],
"type": "object"
} | calculate_distance_1244b889 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Result of validation attempt",
"type": "object",
"properties": {
"result": {
"description": "The result may be valid or not_valid",
"type": "string"
},
"contexts": {
"description": "Values of the context that causes FM to be void",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"required": [
"id",
"value"
]
}
}
},
"additionalProperties": false,
"required": [
"result"
]
} | o7294 |
{
"properties": {
"appfwsessionid": {
"readonly": true,
"type": "string"
},
"clientip": {
"readonly": true,
"type": "string"
},
"destip": {
"readonly": true,
"type": "string"
},
"endtime": {
"readonly": true,
"type": "string"
},
"httptransactionid": {
"readonly": true,
"type": "integer"
},
"nodeid": {
"type": "integer"
},
"packetengineid": {
"readonly": true,
"type": "integer"
},
"profilename": {
"readonly": true,
"type": "string"
},
"requestcontentlength": {
"readonly": true,
"type": "integer"
},
"requestmaxprocessingtime": {
"readonly": true,
"type": "integer"
},
"requestyields": {
"readonly": true,
"type": "integer"
},
"responsecontentlength": {
"readonly": true,
"type": "integer"
},
"responsemaxprocessingtime": {
"readonly": true,
"type": "integer"
},
"responseyields": {
"readonly": true,
"type": "integer"
},
"starttime": {
"readonly": true,
"type": "string"
},
"url": {
"readonly": true,
"type": "string"
}
},
"title": "appfwtransactionrecords",
"type": "object"
} | o30029 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"type": "object",
"properties": {
"timeSincePath": {
"title": "Time Since Path",
"description": "JSON path to store the time since last not throttled payload",
"type": "string",
"minLength": 1
},
"ratePerMinute": {
"title": "Rate (per minute)",
"description": "Number of payloads to allow per minute",
"type": "integer",
"minimum": 1
}
},
"required": [
"ratePerMinute"
]
} | o6228 |
{
"id": "http://www.gandhi.io/schema/project",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"required": [
"id",
"title",
"cycle_id"
],
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"cycle_id": {
"type": "string"
},
"title": {
"type": "string"
},
"status_id": {
"type": "string"
},
"events": {
"type": "object",
"default": {},
"additionalProperties": {
"$ref": "#/definitions/event"
}
},
"contents": {
"type": "object",
"default": {},
"additionalProperties": {
"$ref": "#/definitions/content"
}
},
"assignments": {
"type": "object",
"default": {},
"additionalProperties": {
"$ref": "#/definitions/assignment"
}
},
"invitations": {
"type": "object",
"default": {},
"additionalProperties": {
"$ref": "#/definitions/invitation"
}
},
"updated": {
"type": "number"
},
"created": {
"type": "number"
}
},
"definitions": {
"assignment": {
"type": "object",
"additionalProperties": false,
"required": [
"id",
"role_id"
],
"properties": {
"id": {
"type": "string",
"constant": {
"$data": "0"
}
},
"role_id": {
"type": "string"
},
"invitation_id": {
"type": [
"string",
"null"
],
"default": null
}
}
},
"content": {
"type": "object",
"required": [
"id"
],
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"constant": {
"$data": "0"
}
},
"exports": {
"type": "object",
"default": {}
},
"data": {
"type": "object",
"default": {},
"additionalProperties": true
},
"status_id": {
"type": "string",
"default": "none",
"enum": [
"none",
"draft",
"complete"
]
}
}
},
"event": {
"type": "array",
"default": [],
"items": {
"type": "object",
"required": [
"value",
"timestamp"
],
"additionalProperties": false,
"properties": {
"value": {
"type": "boolean"
},
"timestamp": {
"type": "number"
}
}
}
},
"invitation": {
"type": "object",
"additionalProperties": false,
"required": [
"id",
"role_id"
],
"properties": {
"id": {
"type": "string",
"constant": {
"$data": "0"
}
},
"role_id": {
"type": "string"
},
"name": {
"type": "string",
"default": ""
},
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"message": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
}
}
}
} | o60759 |
{
"properties": {
"paging": {
"properties": {
"addPageInfo": {
"default": false,
"type": "boolean"
},
"limit": {
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}
},
"title": "Cursor request parameters",
"type": "object"
} | o10091 |
{
"properties": {
"include_digits": {
"description": "Include digits in the password",
"type": "boolean"
},
"include_lowercase": {
"description": "Include lowercase letters in the password",
"type": "boolean"
},
"include_symbols": {
"description": "Include symbols in the password",
"type": "boolean"
},
"include_uppercase": {
"description": "Include uppercase letters in the password",
"type": "boolean"
},
"length": {
"description": "The length of the password",
"type": "integer"
}
},
"required": [
"length"
],
"type": "object"
} | generate_random_password_adc9cd6f |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius"
],
"type": "object"
},
"shape": {
"description": "The shape (e.g. circle, triangle, rectangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_7986d578 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"order_items": {
"items": {
"properties": {
"product_name": {
"description": "The name of the product",
"type": "string"
},
"quantity": {
"description": "The quantity of the product",
"type": "integer"
},
"unit_price": {
"description": "The unit price of the product",
"type": "number"
}
},
"required": [
"product_name",
"quantity",
"unit_price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"order_items"
],
"type": "object"
} | generate_invoice_734e9b33 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"username": {
"type": "string"
},
"id": {
"type": "string"
},
"loop": {
"type": "integer",
"minimum": 0
},
"comment": {
"type": "integer",
"minimum": 0
},
"repost": {
"type": "integer",
"minimum": 0
},
"like": {
"type": "integer",
"minimum": 0
},
"time": {
"type": "integer"
},
"text": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"username",
"id",
"comment",
"repost",
"like",
"time",
"text"
]
} | o76766 |
{
"$id": "https://json.schemastore.org/nodemon.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"pathPattern": {
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"re": {
"type": "string"
}
},
"additionalProperties": false,
"required": ["re"],
"description": "Regular expression"
}
]
},
"terminationSignals": {
"anyOf": [
{
"const": "SIGTERM"
},
{
"const": "SIGINT"
},
{
"const": "SIGQUIT"
},
{
"const": "SIGKILL"
},
{
"const": "SIGHUP"
}
]
},
"variables": {
"anyOf": [
{
"const": "{{pwd}}",
"description": "The current directory"
},
{
"const": "{{filename}}",
"description": "The filename you pass to nodemon"
}
]
}
},
"dependencies": {
"pollingInterval": {
"required": ["legacyWatch"]
},
"nodeArgs": {
"exec": {
"const": "node"
},
"required": ["exec"]
}
},
"properties": {
"colours": {
"default": true,
"description": "set to false to disable color output",
"type": "boolean"
},
"cwd": {
"description": "change into <dir> before running the script",
"type": "string"
},
"delay": {
"default": 0,
"description": "debounce restart for a number of milliseconds",
"type": "number"
},
"dump": {
"default": false,
"description": "print full debug configuration",
"type": "boolean"
},
"exec": {
"description": "execute script with \"app\", ie. -x \"python -v\". May use variables.",
"examples": ["{{pwd}}/index.js --some-arg", "{{filename}}"],
"format": "<app> <your args>",
"type": "string"
},
"execMap": {
"description": "The global config file is useful for setting up default executables",
"type": "object"
},
"exitcrash": {
"description": "Exit nodemon after crash",
"type": "boolean"
},
"ext": {
"default": "*",
"description": "extensions to look for, ie. \"js,jade,hbs\"",
"type": "string"
},
"ignore": {
"description": "Ignore directory or file. One entry per ignored value. Wildcards are allowed.",
"items": {
"$ref": "#/definitions/pathPattern",
"description": "Path or pattern of file or directory to ignore. Can also use regular expressions wrapped in an object with a single property named \"re\".",
"examples": [
".gitignore",
".vscode",
"__tests__/*",
"__*__/*.js",
"*.test.js"
]
},
"type": "array"
},
"ignoreRoot": {
"description": "root paths to ignore",
"items": {
"type": "string"
},
"type": "array"
},
"legacyWatch": {
"default": false,
"description": "use polling to watch for changes (typically needed when watching over a network/Docker)",
"type": "boolean"
},
"noUpdateNotifier": {
"default": false,
"description": "opt-out of update version check",
"type": "boolean"
},
"nodeArgs": {
"description": "arguments to pass to node if exec is \"node\"",
"type": "array"
},
"pollingInterval": {
"default": 100,
"description": "combined with legacyWatch, milliseconds to poll for (default 100)",
"type": "number"
},
"quiet": {
"default": false,
"description": "minimise nodemon messages to start/stop only",
"type": "boolean"
},
"runOnChangeOnly": {
"default": false,
"description": "execute script on change only, not startup",
"type": "boolean"
},
"signal": {
"$ref": "#/definitions/terminationSignals",
"description": "use specified kill signal instead of default (ex. SIGTERM)",
"type": "string"
},
"spawn": {
"default": false,
"description": "force nodemon to use spawn (over fork) [node only]",
"type": "boolean"
},
"stdin": {
"default": true,
"description": "set to false to have nodemon pass stdin directly to child process",
"type": "boolean"
},
"verbose": {
"default": false,
"description": "show detail on what is causing restarts",
"type": "boolean"
},
"watch": {
"description": "Watch directory or file. One entry per watched value. Wildcards are allowed.",
"items": {
"$ref": "#/definitions/pathPattern",
"description": "Path or pattern of file or directory to watch. Can also use regular expressions wrapped in an object with a single property named \"re\".",
"examples": ["src/index.js", "src", "src/*.js", "*.js"]
},
"type": "array"
}
},
"title": "JSON Schema for Nodemon Config",
"type": "object"
}
| nodemon |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9._-]+$": {
"$ref": "#/definitions/service"
}
},
"definitions": {
"service": {
"type": "object",
"properties": {
"build": {
"type": "string"
},
"cap_add": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"cap_drop": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"command": {
"$ref": "#/definitions/string_or_list"
},
"container_name": {
"type": "string"
},
"cpu_shares": {
"type": "string"
},
"cpuset": {
"type": "string"
},
"detach": {
"type": "boolean"
},
"devices": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"dns": {
"$ref": "#/definitions/string_or_list"
},
"dns_search": {
"$ref": "#/definitions/string_or_list"
},
"dockerfile": {
"type": "string"
},
"domainname": {
"type": "string"
},
"entrypoint": {
"type": "string"
},
"env_file": {
"$ref": "#/definitions/string_or_list"
},
"environment": {
"oneOf": [
{
"type": "object"
},
{
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
}
]
},
"expose": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"extends": {
"type": "object",
"properties": {
"service": {
"type": "string"
},
"file": {
"type": "string"
}
},
"required": [
"service"
],
"additionalProperties": false
},
"extra_hosts": {
"$ref": "#/definitions/list_or_dict"
},
"external_links": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"hostname": {
"type": "string"
},
"image": {
"type": "string"
},
"labels": {
"$ref": "#/definitions/list_or_dict"
},
"links": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"load_image": {
"type": "string"
},
"log_driver": {
"type": "string"
},
"log_opt": {
"type": "object"
},
"mac_address": {
"type": "string"
},
"mem_limit": {
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
]
},
"memswap_limit": {
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
]
},
"name": {
"type": "string"
},
"net": {
"type": "string"
},
"pid": {
"type": "string"
},
"ports": {
"type": "array",
"items": {
"oneOf": [
{
"type": "string",
"format": "ports"
},
{
"type": "number",
"format": "ports"
}
]
},
"_uniqueItems": true
},
"privileged": {
"type": "string"
},
"read_only": {
"type": "boolean"
},
"restart": {
"type": "string"
},
"security_opt": {
"type": "string"
},
"stdin_open": {
"type": "string"
},
"tty": {
"type": "string"
},
"user": {
"type": "string"
},
"volumes": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"volumes_from": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"working_dir": {
"type": "string"
}
},
"anyOf": [
{
"required": [
"build"
],
"not": {
"required": [
"image"
]
}
},
{
"required": [
"image"
],
"not": {
"anyOf": [
{
"required": [
"build"
]
},
{
"required": [
"dockerfile"
]
}
]
}
},
{
"required": [
"extends"
],
"not": {
"required": [
"build",
"image"
]
}
}
],
"dependencies": {
"memswap_limit": [
"mem_limit"
]
},
"additionalProperties": false
},
"string_or_list": {
"oneOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/list_of_strings"
}
]
},
"list_of_strings": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"list_or_dict": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
{
"type": "object"
}
]
}
},
"additionalProperties": false
} | o4139 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "zipcode",
"description": "Zip Code",
"type": "string",
"minLength": 5,
"maxLength": 10,
"pattern": "^([0-9]{5})(-([0-9]{4}))?$"
} | o70294 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"side": {
"description": "The side length of the square or rectangle",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of shape (circle, triangle, square, rectangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_0c056a88 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$",
"type": "string"
},
"analytics_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations."
},
"change_history": {
"items": {
"additionalProperties": false,
"properties": {
"note": {
"description": "A summary of the change",
"type": "string"
},
"public_timestamp": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"public_timestamp",
"note"
],
"type": "object"
},
"type": "array"
},
"description": {
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"additionalProperties": false,
"properties": {
"change_history": {
"$ref": "#/definitions/change_history"
}
},
"type": "object"
},
"first_published_at": {
"_format": "date-time",
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"frontend_links": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"frontend_links_with_base_path": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"guid": {
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$",
"type": "string"
},
"locale": {
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
],
"type": "string"
},
"public_updated_at": {
"_format": "date-time",
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"publishing_app_name": {
"description": "The application that published this item.",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
],
"type": "string"
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"publishing_scheduled_at": {
"_format": "date-time",
"description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.",
"type": "string"
},
"rendering_app": {
"description": "The application that renders this item.",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
],
"type": "string"
},
"scheduled_publishing_delay_seconds": {
"description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.",
"type": "integer"
},
"title": {
"type": "string"
},
"withdrawn_notice": {
"additionalProperties": false,
"properties": {
"explanation": {
"type": "string"
},
"withdrawn_at": {
"format": "date-time"
}
},
"type": "object"
}
},
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"enum": [
"aaib_report",
"about",
"about_our_services",
"accessible_documents_policy",
"access_and_opening",
"ambassador_role",
"answer",
"asylum_support_decision",
"authored_article",
"board_member_role",
"business_finance_support_scheme",
"calculator",
"calendar",
"case_study",
"chief_professional_officer_role",
"chief_scientific_officer_role",
"chief_scientific_advisor_role",
"closed_consultation",
"cma_case",
"coming_soon",
"complaints_procedure",
"completed_transaction",
"consultation",
"consultation_outcome",
"contact",
"coronavirus_landing_page",
"corporate_report",
"correspondence",
"countryside_stewardship_grant",
"decision",
"deputy_head_of_mission_role",
"detailed_guidance",
"detailed_guide",
"dfid_research_output",
"document_collection",
"drug_safety_update",
"email_alert_signup",
"employment_appeal_tribunal_decision",
"employment_tribunal_decision",
"equality_and_diversity",
"esi_fund",
"export_health_certificate",
"external_content",
"facet",
"facet_group",
"facet_value",
"fatality_notice",
"field_of_operation",
"finder",
"finder_email_signup",
"foi_release",
"form",
"gone",
"government",
"government_response",
"governor_role",
"guidance",
"guide",
"help_page",
"high_commissioner_role",
"history",
"hmrc_manual",
"hmrc_manual_section",
"homepage",
"html_publication",
"impact_assessment",
"imported",
"independent_report",
"international_development_fund",
"international_treaty",
"knowledge_alpha",
"licence",
"license_finder",
"local_transaction",
"maib_report",
"mainstream_browse_page",
"manual",
"manual_section",
"map",
"marine_notice",
"media_enquiries",
"medical_safety_alert",
"membership",
"military_role",
"ministerial_role",
"ministers_index",
"national",
"national_statistics",
"national_statistics_announcement",
"need",
"news_article",
"news_story",
"notice",
"official",
"official_statistics",
"official_statistics_announcement",
"open_consultation",
"oral_statement",
"organisation",
"our_energy_use",
"our_governance",
"person",
"personal_information_charter",
"petitions_and_campaigns",
"place",
"placeholder",
"placeholder_ministerial_role",
"placeholder_organisation",
"placeholder_person",
"placeholder_policy_area",
"placeholder_topical_event",
"placeholder_world_location",
"placeholder_world_location_news_page",
"placeholder_worldwide_organisation",
"policy_area",
"policy_paper",
"press_release",
"procurement",
"promotional",
"publication_scheme",
"raib_report",
"recruitment",
"redirect",
"regulation",
"research",
"residential_property_tribunal_decision",
"role_appointment",
"search",
"service_manual_guide",
"service_manual_homepage",
"service_manual_service_standard",
"service_manual_service_toolkit",
"service_manual_topic",
"service_sign_in",
"service_standard_report",
"services_and_information",
"simple_smart_answer",
"smart_answer",
"social_media_use",
"special_representative_role",
"special_route",
"speech",
"staff_update",
"statistical_data_set",
"statistics",
"statistics_announcement",
"statutory_guidance",
"statutory_instrument",
"step_by_step_nav",
"take_part",
"tax_tribunal_decision",
"taxon",
"terms_of_reference",
"topic",
"topical_event",
"topical_event_about_page",
"traffic_commissioner_regulatory_decision",
"traffic_commissioner_role",
"transaction",
"transparency",
"travel_advice",
"travel_advice_index",
"unpublishing",
"uk_market_conformity_assessment_body",
"utaac_decision",
"vanish",
"welsh_language_scheme",
"working_group",
"world_location",
"world_location_news_article",
"world_news_story",
"worldwide_office_staff_role",
"worldwide_organisation",
"written_statement"
],
"type": "string"
},
"first_published_at": {
"anyOf": [
{
"$ref": "#/definitions/first_published_at"
},
{
"type": "null"
}
]
},
"links": {
"additionalProperties": false,
"properties": {
"available_translations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"child_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"children": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"document_collections": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"facet_groups": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers links from content back to finders the content is surfaced on"
},
"lead_organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"level_one_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"mainstream_browse_pages": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The user needs this piece of content meets."
},
"ministers": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The parent content item.",
"maxItems": 1
},
"part_of_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policies": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policy_areas": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"related_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"role_appointments": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"secondary_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Prototype-stage taxonomy label for this content item"
},
"topic_taxonomy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"topics": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"need_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"enum": [
"alpha",
"beta",
"live"
],
"type": "string"
},
"public_updated_at": {
"anyOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"publishing_request_id": {
"$ref": "#/definitions/publishing_request_id"
},
"publishing_scheduled_at": {
"anyOf": [
{
"$ref": "#/definitions/publishing_scheduled_at"
},
{
"type": "null"
}
]
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"scheduled_publishing_delay_seconds": {
"anyOf": [
{
"$ref": "#/definitions/scheduled_publishing_delay_seconds"
},
{
"type": "null"
}
]
},
"schema_name": {
"enum": [
"generic"
],
"type": "string"
},
"title": {
"$ref": "#/definitions/title"
},
"updated_at": {
"_format": "date-time",
"type": "string"
},
"withdrawn_notice": {
"$ref": "#/definitions/withdrawn_notice"
}
},
"required": [
"base_path",
"content_id",
"description",
"details",
"document_type",
"links",
"locale",
"public_updated_at",
"schema_name",
"title",
"updated_at"
],
"type": "object"
} | o21227 |
{
"description": "Available events to bind actions to for the <a href=\"#controller-gamepad\">controller gamepad.</a>",
"properties": {
"onDown": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
],
"description": "The action or array of actions uid to trigger on button down event",
"title": "onDown"
},
"onHold": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
],
"description": "The action or array of actions uid to trigger on button hold event",
"title": "onHold"
},
"onUp": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
],
"description": "The action or array of actions uid to trigger on button up event",
"title": "onUp"
}
},
"title": "ControllerGamepadButtonBindingEventsConfig",
"type": "object"
} | o44241 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"name": "Repository Configuration",
"properties": {
"abandoned": {
"additionalProperties": {
"description": "A valid Package name",
"type": [
"boolean",
"string"
]
},
"description": "List of packages marked as abandoned for this repository, the mark can be boolean or a package name/URL pointing to a recommended alternative.",
"type": "object"
},
"archive": {
"additionalProperties": false,
"description": "Options for creating package archives for distribution.",
"properties": {
"absolute-directory": {
"description": "The absolute path of the dist files.",
"type": "string"
},
"blacklist": {
"description": "List of blacklisted packages.",
"items": {
"type": "string"
},
"type": "array"
},
"checksum": {
"description": "If false, will not provide the sha1 checksum for the dist files.",
"type": "boolean"
},
"directory": {
"description": "The location of the dist files.",
"type": "string"
},
"format": {
"description": "Archive format.",
"pattern": "^zip|tar$",
"type": "string"
},
"prefix-url": {
"_format": "uri",
"description": "Location of the downloads.",
"type": "string"
},
"skip-dev": {
"description": "If true, will not create downloads for branches.",
"type": "boolean"
},
"whitelist": {
"description": "List of whitelisted packages.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"directory"
],
"type": "object"
},
"config": {
"description": "Composer options.",
"properties": {
"autoloader-suffix": {
"description": "Optional string to be used as a suffix for the generated Composer autoloader. When null a random one will be generated.",
"type": "string"
},
"bin-compat": {
"description": "The compatibility of the binaries, defaults to \"auto\" (automatically guessed) and can be \"full\" (compatible with both Windows and Unix-based systems).",
"enum": [
"auto",
"full"
]
},
"bin-dir": {
"description": "The location where all binaries are linked, defaults to \"vendor/bin\".",
"type": "string"
},
"cache-dir": {
"description": "The location where all caches are located, defaults to \"~/.composer/cache\" on *nix and \"%LOCALAPPDATA%\\Composer\" on windows.",
"type": "string"
},
"cache-files-dir": {
"description": "The location where files (zip downloads) are cached, defaults to \"{$cache-dir}/files\".",
"type": "string"
},
"cache-files-maxsize": {
"description": "The cache max size for the files cache, defaults to \"300MiB\".",
"type": [
"string",
"integer"
]
},
"cache-files-ttl": {
"description": "The cache time-to-live for files, defaults to the value of cache-ttl.",
"type": "integer"
},
"cache-repo-dir": {
"description": "The location where repo (git/hg repo clones) are cached, defaults to \"{$cache-dir}/repo\".",
"type": "string"
},
"cache-ttl": {
"description": "The default cache time-to-live, defaults to 15552000 (6 months).",
"type": "integer"
},
"cache-vcs-dir": {
"description": "The location where vcs infos (git clones, github api calls, etc. when reading vcs repos) are cached, defaults to \"{$cache-dir}/vcs\".",
"type": "string"
},
"classmap-authoritative": {
"description": "If true, the composer autoloader will not scan the filesystem for classes that are not found in the class map, defaults to false.",
"type": "boolean"
},
"discard-changes": {
"description": "The default style of handling dirty updates, defaults to false and can be any of true, false or \"stash\".",
"type": [
"string",
"boolean"
]
},
"github-domains": {
"description": "A list of domains to use in github mode. This is used for GitHub Enterprise setups, defaults to [\"github.com\"].",
"items": {
"type": "string"
},
"type": "array"
},
"github-expose-hostname": {
"description": "Defaults to true. If set to false, the OAuth tokens created to access the github API will have a date instead of the machine hostname.",
"type": "boolean"
},
"github-oauth": {
"additionalProperties": true,
"description": "A hash of domain name => github API oauth tokens, typically {\"github.com\":\"<token>\"}.",
"type": "object"
},
"github-protocols": {
"description": "A list of protocols to use for github.com clones, in priority order, defaults to [\"git\", \"https\", \"http\"].",
"items": {
"type": "string"
},
"type": "array"
},
"http-basic": {
"additionalProperties": true,
"description": "A hash of domain name => {\"username\": \"...\", \"password\": \"...\"}.",
"type": "object"
},
"notify-on-install": {
"description": "Composer allows repositories to define a notification URL, so that they get notified whenever a package from that repository is installed. This option allows you to disable that behaviour, defaults to true.",
"type": "boolean"
},
"optimize-autoloader": {
"description": "Always optimize when dumping the autoloader.",
"type": "boolean"
},
"platform": {
"additionalProperties": true,
"description": "This is a hash of package name (keys) and version (values) that will be used to mock the platform packages on this machine.",
"type": "object"
},
"preferred-install": {
"description": "The install method Composer will prefer to use, defaults to auto and can be any of source, dist or auto.",
"type": "string"
},
"prepend-autoloader": {
"description": "If false, the composer autoloader will not be prepended to existing autoloaders, defaults to true.",
"type": "boolean"
},
"process-timeout": {
"description": "The timeout in seconds for process executions, defaults to 300 (5mins).",
"type": "integer"
},
"store-auths": {
"description": "What to do after prompting for authentication, one of: true (store), false (do not store) or \"prompt\" (ask every time), defaults to prompt.",
"type": [
"string",
"boolean"
]
},
"use-include-path": {
"description": "If true, the Composer autoloader will also look for classes in the PHP include path.",
"type": "boolean"
},
"vendor-dir": {
"description": "The location where all packages are installed, defaults to \"vendor\".",
"type": "string"
}
},
"type": "object"
},
"description": {
"description": "Short Repository description.",
"type": "string"
},
"homepage": {
"_format": "uri",
"description": "Homepage URL for the Repository.",
"type": "string"
},
"minimum-stability": {
"description": "The minimum stability the packages must have to be install-able. Possible values are: dev, alpha, beta, RC, stable.",
"enum": [
"dev",
"alpha",
"beta",
"rc",
"RC",
"stable"
],
"type": [
"string"
]
},
"name": {
"description": "Repository name.",
"type": "string"
},
"notify-batch": {
"description": "a URL that will be called every time a user installs a package.",
"type": "string"
},
"output-dir": {
"description": "The directory where the static Repository is built.",
"type": "string"
},
"output-html": {
"description": "If true, build a static web page.",
"type": "boolean"
},
"repositories": {
"additionalProperties": true,
"description": "A set of additional repositories where packages can be found.",
"type": [
"object",
"array"
]
},
"require": {
"additionalProperties": {
"description": "A valid version constraint",
"type": "string"
},
"description": "This is a hash of package name (keys) and version constraints (values) that are required to run this package.",
"minProperties": 1,
"type": "object"
},
"require-all": {
"description": "If true, selects all versions of all packages in the repositories defined.",
"type": "boolean"
},
"require-dependencies": {
"description": "If true, resolve and add all dependencies of each required package.",
"type": "boolean"
},
"require-dev-dependencies": {
"description": "If true, resolve and add all Dev dependencies of each required package.",
"type": "boolean"
},
"twig-template": {
"description": "Path to a template for the static web page.",
"type": "string"
}
},
"required": [
"name",
"homepage"
],
"type": "object"
} | o27793 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition",
"definitions": {
"strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition": {
"type": "object",
"properties": {
"avroName": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition/definitions/avro_name"
},
"doc": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition/definitions/doc"
},
"name": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition/definitions/name"
},
"namespace": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition/definitions/namespace"
},
"nodes": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition/definitions/nodes"
}
},
"patternProperties": {
"^avro_name$": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition/definitions/avro_name"
}
},
"additionalProperties": {
"title": "Unknown field"
},
"definitions": {
"avro_name": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "string avro_name = 5;",
"description": "avro compatible name set by creator OR derived from name (thus ignore_empty = true)",
"default": ""
},
"doc": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "string doc = 3;",
"default": ""
},
"name": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "string name = 1;",
"description": "constraints: printable characters",
"default": ""
},
"namespace": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "string namespace = 2;",
"description": "constraints:\ndot separated sequence of name constraints\nmust be Avro compatible. When absent becomes <handle>.<name>.v<version>",
"default": ""
},
"nodes": {
"oneOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode",
"title": "strmprivacy.api.entities.v1.SimpleSchemaNode",
"default": {
}
}
},
{
"type": "null"
}
],
"title": "repeated strmprivacy.api.entities.v1.SimpleSchemaNode nodes = 4;",
"default": [
{
}
]
}
},
"description": "constraints: overall size < 100000 TBD"
},
"strmprivacy.api.entities.v1.SimpleSchemaNode": {
"type": "object",
"properties": {
"avroName": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/avro_name"
},
"doc": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/doc"
},
"name": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/name"
},
"nodes": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/nodes"
},
"repeated": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/repeated"
},
"required": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/required"
},
"type": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/type"
}
},
"patternProperties": {
"^avro_name$": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode/definitions/avro_name"
}
},
"additionalProperties": {
"title": "Unknown field"
},
"definitions": {
"avro_name": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "string avro_name = 7;",
"description": "avro compatible name set by creator OR derived from name",
"default": ""
},
"doc": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "string doc = 6;",
"description": "constraints:\nsize < 5000",
"default": ""
},
"name": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "string name = 2;",
"description": "constraints: same as SimpleSchemaDefinition",
"default": ""
},
"nodes": {
"oneOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNode",
"title": "strmprivacy.api.entities.v1.SimpleSchemaNode",
"default": {
}
}
},
{
"type": "null"
}
],
"title": "repeated strmprivacy.api.entities.v1.SimpleSchemaNode nodes = 5;",
"default": [
{
}
]
},
"repeated": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "bool repeated = 3;",
"default": false
},
"required": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "bool required = 4;",
"default": false
},
"type": {
"oneOf": [
{
"$ref": "#/definitions/strmprivacy.api.entities.v1.SimpleSchemaNodeType"
},
{
"type": "null"
}
],
"title": "strmprivacy.api.entities.v1.SimpleSchemaNodeType type = 1;",
"default": "SIMPLE_SCHEMA_NODE_TYPE_UNSPECIFIED"
}
}
},
"strmprivacy.api.entities.v1.SimpleSchemaNodeType": {
"enum": [
"SIMPLE_SCHEMA_NODE_TYPE_UNSPECIFIED",
0,
"STRING",
1,
"BOOLEAN",
2,
"FLOAT",
3,
"INTEGER",
4,
"LONG",
5,
"NODE",
10
],
"markdownEnumDescriptions": [
"(or 0) ",
"(or \"SIMPLE_SCHEMA_NODE_TYPE_UNSPECIFIED\") ",
"(or 1) ",
"(or \"STRING\") ",
"(or 2) ",
"(or \"BOOLEAN\") ",
"(or 3) ",
"(or \"FLOAT\") ",
"(or 4) ",
"(or \"INTEGER\") ",
"(or 5) ",
"(or \"LONG\") ",
"(or 10) ",
"(or \"NODE\") "
]
}
},
"title": "strmprivacy.api.entities.v1.Schema.SimpleSchemaDefinition"
} | strmprivacy |
{
"properties": {
"keywords": {
"description": "The keywords to search for in job opportunities",
"items": {
"type": "string"
},
"type": "array"
},
"location": {
"description": "The location to search for job opportunities",
"type": "string"
},
"salary_range": {
"properties": {
"max": {
"description": "The maximum salary range",
"type": "number"
},
"min": {
"description": "The minimum salary range",
"type": "number"
}
},
"type": "object"
}
},
"type": "object"
} | search_jobs_5a64299e |
{
"properties": {
"end_date": {
"description": "The end date and time of the event",
"format": "date-time",
"type": "string"
},
"location": {
"description": "The location of the event",
"type": "string"
},
"start_date": {
"description": "The start date and time of the event",
"format": "date-time",
"type": "string"
},
"title": {
"description": "The title of the event",
"type": "string"
}
},
"required": [
"title",
"start_date",
"end_date",
"location"
],
"type": "object"
} | create_calendar_event_c2876547 |
{
"definitions": {
"CampaignMission": {
"type": "object",
"additionalProperties": false,
"properties": {
"missionNumber": {
"type": "integer",
"multipleOf": 1
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"imageUrl": {
"type": "string"
},
"type": {
"type": "string"
},
"id": {
"type": "string"
},
"contentId": {
"type": "string"
}
},
"required": [
"missionNumber",
"name",
"description",
"imageUrl",
"type",
"id",
"contentId"
]
}
},
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"$ref": "#/definitions/CampaignMission"
}
} | o5463 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://atomicbits.io/raml10/bbox.json",
"description": "A bounding box as defined by GeoJSON",
"type": "array",
"items": {
"type": "number"
}
} | o24474 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The value returned by GET /_active_tasks",
"items": {
"properties": {
"changes_done": {
"type": "number"
},
"database": {
"type": "string"
},
"pid": {
"type": "string"
},
"progress": {
"type": "number"
},
"started_on": {
"type": "number"
},
"status": {
"type": "string"
},
"task": {
"type": "string"
},
"total_changes": {
"type": "number"
},
"type": {
"type": "string"
},
"updated_on": {
"type": "number"
}
},
"required": [
"changes_done",
"database",
"pid",
"progress",
"started_on",
"status",
"task",
"total_changes",
"type",
"updated_on"
],
"type": "object"
},
"title": "CouchDB _active_tasks",
"type": "array"
} | o60108 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Data Frequency",
"description": "Defines the format for describing the update frequency of a data source",
"type": "object",
"properties": {
"split": {
"description": "The final component of the data packet name, i.e. the dimension on which data source packets are split.",
"type": "string",
"enum": [
"segment",
"timestamp",
"version"
]
},
"avg": {
"description": "The average frequency (in ms) for data updates",
"type": "integer",
"minimum": 0
},
"max": {
"description": "The maximum expected frequency (in ms) for data updates",
"type": "integer",
"minimum": 0
},
"min": {
"description": "The minimum expected frequency (in ms) for data updates",
"type": "integer",
"minimum": 0
}
},
"required": [
"avg",
"min",
"max"
]
} | o47061 |
{
"id": "http://www.gandhi.io/schema/cycle",
"$schema": "http://json-schema.org/draft-04/schema",
"required": [
"id",
"title"
],
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string"
},
"description": {
"type": "string",
"default": ""
},
"options": {
"type": "object",
"default": {
"open": true,
"close": false
},
"properties": {
"open": {
"type": [
"boolean",
"number"
],
"default": true
},
"close": {
"type": [
"boolean",
"number"
],
"default": false
}
}
},
"instructions": {
"type": "string",
"default": ""
},
"triggers": {
"type": "object",
"default": {
"open": {
"id": "open",
"title": "Application Opens",
"conditions": [
[
{
"name": "date",
"invert": false,
"options": {
"timestamp": 0
}
}
]
],
"actions": []
},
"close": {
"id": "close",
"title": "Application Closes",
"conditions": [
[
{
"name": "date",
"invert": false,
"options": {
"timestamp": 0
}
}
]
],
"actions": []
}
},
"additionalProperties": {
"$ref": "#/definitions/trigger"
}
},
"defaults": {
"type": "object",
"default": {
"role_id": "applicant",
"status_id": "active"
},
"properties": {
"role_id": {
"type": "string",
"default": "applicant"
},
"status_id": {
"type": "string",
"default": "active"
}
}
},
"stages": {
"type": "object",
"default": {
"start": {
"id": "start",
"title": "Start",
"description": "Start your application!",
"visible": {
"applicant": {
"open": [
"open"
],
"close": false
}
},
"component": {
"name": "start",
"options": {},
"permissions": {
"write": {
"applicant": true
}
}
},
"order": 0
}
},
"additionalProperties": {
"$ref": "#/definitions/stage"
}
},
"roles": {
"type": "object",
"default": {
"applicant": {
"id": "applicant",
"title": "Applicant",
"visible": {
"applicant": true
},
"assignable": {
"applicant": true
}
}
},
"additionalProperties": {
"$ref": "#/definitions/role"
}
},
"status_id": {
"type": "string",
"default": "draft",
"enum": [
"draft",
"active",
"archived"
]
},
"statuses": {
"type": "object",
"default": {
"active": {
"id": "active",
"title": "Active"
},
"archived": {
"id": "archived",
"title": "Archived"
}
},
"additionalProperties": {
"$ref": "#/definitions/status"
}
},
"assignments": {
"type": "object",
"default": {},
"additionalProperties": {
"$ref": "#/definitions/assignment"
}
},
"invitations": {
"type": "object",
"default": {},
"additionalProperties": {
"$ref": "#/definitions/invitation"
}
},
"updated": {
"type": "number"
},
"created": {
"type": "number"
},
"permissions": {
"type": "object",
"required": [
"project:read",
"project:create",
"project:update",
"project:delete",
"project/assignments:read",
"project/assignments:write",
"project/invitations:read",
"project/invitations:write",
"project/contents:read",
"project/contents:write"
],
"properties": {
"project:read": {
"$ref": "#/definitions/permission",
"default": {}
},
"project:create": {
"$ref": "#/definitions/permission",
"default": {}
},
"project:update": {
"$ref": "#/definitions/permission",
"default": {}
},
"project:delete": {
"$ref": "#/definitions/permission",
"default": {}
},
"project/assignments:read": {
"$ref": "#/definitions/permission",
"default": {}
},
"project/assignments:write": {
"$ref": "#/definitions/permission",
"default": {}
},
"project/contents:read": {
"$ref": "#/definitions/permission",
"default": {}
},
"project/contents:write": {
"$ref": "#/definitions/permission",
"default": {}
},
"project/invitations:read": {
"$ref": "#/definitions/permission",
"default": {}
},
"project/invitations:write": {
"$ref": "#/definitions/permission",
"default": {}
}
},
"default": {
"project:read": {
"applicant": true
},
"project:create": {
"applicant": true
},
"project:update": {
"applicant": true
},
"project:delete": {
"applicant": false
},
"project/assignments:read": {
"applicant": true
},
"project/assignments:write": {
"applicant": true
},
"project/contents:read": {
"applicant": true
},
"project/contents:write": {
"applicant": true
},
"project/invitations:read": {
"applicant": true
},
"project/invitations:write": {
"applicant": true
}
}
}
},
"definitions": {
"assignment": {
"type": "object",
"additionalProperties": false,
"required": [
"id",
"role_id"
],
"properties": {
"id": {
"type": "string",
"constant": {
"$data": "0"
}
},
"role_id": {
"type": "string"
},
"invitation_id": {
"type": [
"string",
"null"
],
"default": null
}
}
},
"invitation": {
"type": "object",
"additionalProperties": false,
"required": [
"id",
"role_id"
],
"properties": {
"id": {
"type": "string",
"constant": {
"$data": "0"
}
},
"role_id": {
"type": "string"
},
"name": {
"type": "string",
"default": ""
},
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"message": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
}
},
"permission": {
"type": "object",
"default": {},
"additionalProperties": {
"anyOf": [
{
"type": "object",
"additionalProperties": false,
"default": {
"open": true,
"close": false
},
"required": [
"open",
"close"
],
"properties": {
"open": {
"default": true,
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "boolean"
}
]
},
"close": {
"default": false,
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "boolean"
}
]
}
}
},
{
"type": "boolean"
}
]
}
},
"role": {
"type": "object",
"required": [
"id",
"title",
"visible",
"assignable"
],
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"constant": {
"$data": "0"
}
},
"title": {
"type": "string"
},
"visible": {
"$ref": "#/definitions/permission",
"default": {}
},
"assignable": {
"$ref": "#/definitions/permission",
"default": {}
}
}
},
"stage": {
"type": "object",
"required": [
"id",
"title",
"component"
],
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"constant": {
"$data": "0"
}
},
"title": {
"type": "string"
},
"description": {
"type": "string",
"default": ""
},
"visible": {
"$ref": "#/definitions/permission",
"default": {}
},
"component": {
"type": "object",
"required": [
"name"
],
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"options": {
"type": "object",
"default": {},
"additionalProperties": true
},
"permissions": {
"type": "object",
"default": {},
"additionalProperties": {
"$ref": "#/definitions/permission"
}
},
"manifest": {
"type": "object",
"default": {},
"additionalProperties": {
"type": "object",
"required": [
"id",
"title",
"schema"
],
"properties": {
"id": {
"type": "string",
"constant": {
"$data": "0"
}
},
"title": {
"type": "string"
},
"schema": {
"type": "object"
},
"template": {
"type": "string",
"default": "{{ value }}"
},
"options": {
"type": "object",
"default": {}
}
}
}
}
}
},
"order": {
"type": "number",
"default": 0
}
}
},
"status": {
"type": "object",
"required": [
"id",
"title"
],
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"constant": {
"$data": "0"
}
},
"title": {
"type": "string"
}
}
},
"trigger": {
"type": "object",
"required": [
"id",
"title"
],
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"constant": {
"$data": "0"
}
},
"title": {
"type": "string"
},
"description": {
"type": "string",
"default": ""
},
"conditions": {
"type": "array",
"default": [],
"items": {
"type": "array",
"minItems": 1,
"items": {
"anyOf": [
{
"type": "object",
"required": [
"name",
"options"
],
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"constant": "date"
},
"invert": {
"type": "boolean",
"default": false
},
"options": {
"type": "object",
"additionalProperties": false,
"required": [
"timestamp"
],
"properties": {
"timestamp": {
"type": "number"
}
}
}
}
},
{
"type": "object",
"required": [
"name",
"options"
],
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"constant": "project_status"
},
"invert": {
"type": "boolean",
"default": false
},
"options": {
"type": "object",
"additionalProperties": false,
"required": [
"status_id"
],
"properties": {
"status_id": {
"type": "string"
}
}
}
}
},
{
"type": "object",
"required": [
"name",
"options"
],
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"constant": "content_status"
},
"invert": {
"type": "boolean",
"default": false
},
"options": {
"type": "object",
"additionalProperties": false,
"required": [
"status_id",
"content_id"
],
"properties": {
"status_id": {
"type": "string"
},
"content_id": {
"type": "string"
}
}
}
}
},
{
"type": "object",
"required": [
"name",
"options"
],
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"constant": "export"
},
"invert": {
"type": "boolean",
"default": false
},
"options": {
"type": "object",
"additionalProperties": false,
"required": [
"content_id",
"export_id",
"value"
],
"properties": {
"content_id": {
"type": "string"
},
"export_id": {
"type": "string"
},
"op": {
"type": "string"
},
"value": {}
}
}
}
}
]
}
}
},
"actions": {
"type": "array",
"default": [],
"items": {
"type": "object",
"required": [
"name"
],
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"options": {
"type": "object",
"additionalProperties": true,
"default": {}
}
}
}
}
}
}
}
} | o60756 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "verifyPaymentChannelClaim",
"type": "boolean",
"additionalProperties": false
} | o70564 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": {
"description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
"type": "integer"
},
"readOnly": {
"description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "boolean"
},
"volumeID": {
"description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity": {
"description": "Affinity is a group of affinity scheduling rules.",
"properties": {
"nodeAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity",
"description": "Describes node affinity scheduling rules for the pod."
},
"podAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity",
"description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))."
},
"podAntiAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity",
"description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": {
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
"properties": {
"cachingMode": {
"description": "Host Caching mode: None, Read Only, Read Write.",
"type": "string"
},
"diskName": {
"description": "The Name of the data disk in the blob storage",
"type": "string"
},
"diskURI": {
"description": "The URI the data disk in the blob storage",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"kind": {
"description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
}
},
"required": [
"diskName",
"diskURI"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource": {
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.",
"properties": {
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretName": {
"description": "the name of secret that contains Azure Storage Account Name and Key",
"type": "string"
},
"shareName": {
"description": "Share Name",
"type": "string"
}
},
"required": [
"secretName",
"shareName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": {
"description": "Represents a source location of a volume to mount, managed by an external CSI driver",
"properties": {
"driver": {
"description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.",
"type": "string"
},
"nodePublishSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed."
},
"readOnly": {
"description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).",
"type": "boolean"
},
"volumeAttributes": {
"additionalProperties": {
"type": "string"
},
"description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.",
"type": "object"
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": {
"description": "Adds and removes POSIX capabilities from running containers.",
"properties": {
"add": {
"description": "Added capabilities",
"items": {
"type": "string"
},
"type": "array"
},
"drop": {
"description": "Removed capabilities",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": {
"description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"monitors": {
"description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "boolean"
},
"secretFile": {
"description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
},
"user": {
"description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource": {
"description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack."
},
"volumeID": {
"description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource": {
"description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector": {
"description": "Selects a key from a ConfigMap.",
"properties": {
"key": {
"description": "The key to select.",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its key must be defined",
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection": {
"description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": {
"description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the ConfigMap or its keys must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container": {
"description": "A single application container that you want to run within a pod.",
"properties": {
"args": {
"description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"description": "List of environment variables to set in the container. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"envFrom": {
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"image": {
"description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.",
"type": "string"
},
"imagePullPolicy": {
"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
"type": "string"
},
"lifecycle": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle",
"description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated."
},
"livenessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"name": {
"description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.",
"type": "string"
},
"ports": {
"description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"containerPort",
"protocol"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "containerPort",
"x-kubernetes-patch-strategy": "merge"
},
"readinessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"resources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements",
"description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/"
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext",
"description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
},
"startupProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes"
},
"stdin": {
"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
"type": "boolean"
},
"stdinOnce": {
"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
"type": "boolean"
},
"terminationMessagePath": {
"description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
"type": "string"
},
"terminationMessagePolicy": {
"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
"type": "string"
},
"tty": {
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
"type": "boolean"
},
"volumeDevices": {
"description": "volumeDevices is the list of block devices to be used by the container.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice"
},
"type": "array",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge"
},
"volumeMounts": {
"description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort": {
"description": "ContainerPort represents a network port in a single container.",
"properties": {
"containerPort": {
"_format": "int32",
"description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.",
"type": "integer"
},
"hostIP": {
"description": "What host IP to bind the external port to.",
"type": "string"
},
"hostPort": {
"_format": "int32",
"description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.",
"type": "integer"
},
"name": {
"description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.",
"type": "string"
},
"protocol": {
"description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
"type": "string"
}
},
"required": [
"containerPort"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": {
"description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.",
"properties": {
"items": {
"description": "Items is a list of DownwardAPIVolume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": {
"description": "DownwardAPIVolumeFile represents information to create the file containing the pod field",
"properties": {
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported."
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'",
"type": "string"
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported."
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": {
"description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "Items is a list of downward API volume file",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": {
"description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.",
"properties": {
"medium": {
"description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir",
"type": "string"
},
"sizeLimit": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource": {
"description": "EnvFromSource represents the source of a set of ConfigMaps",
"properties": {
"configMapRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource",
"description": "The ConfigMap to select from"
},
"prefix": {
"description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
"type": "string"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource",
"description": "The Secret to select from"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar": {
"description": "EnvVar represents an environment variable present in a Container.",
"properties": {
"name": {
"description": "Name of the environment variable. Must be a C_IDENTIFIER.",
"type": "string"
},
"value": {
"description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".",
"type": "string"
},
"valueFrom": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource",
"description": "Source for the environment variable's value. Cannot be used if value is not empty."
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource": {
"description": "EnvVarSource represents a source for the value of an EnvVar.",
"properties": {
"configMapKeyRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector",
"description": "Selects a key of a ConfigMap."
},
"fieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector",
"description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs."
},
"resourceFieldRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector",
"description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported."
},
"secretKeyRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector",
"description": "Selects a key of a secret in the pod's namespace"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer": {
"description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.",
"properties": {
"args": {
"description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell",
"items": {
"type": "string"
},
"type": "array"
},
"env": {
"description": "List of environment variables to set in the container. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"envFrom": {
"description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource"
},
"type": "array"
},
"image": {
"description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images",
"type": "string"
},
"imagePullPolicy": {
"description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images",
"type": "string"
},
"lifecycle": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle",
"description": "Lifecycle is not allowed for ephemeral containers."
},
"livenessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"name": {
"description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.",
"type": "string"
},
"ports": {
"description": "Ports are not allowed for ephemeral containers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort"
},
"type": "array"
},
"readinessProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"resources": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements",
"description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod."
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext",
"description": "SecurityContext is not allowed for ephemeral containers."
},
"startupProbe": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe",
"description": "Probes are not allowed for ephemeral containers."
},
"stdin": {
"description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
"type": "boolean"
},
"stdinOnce": {
"description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
"type": "boolean"
},
"targetContainerName": {
"description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.",
"type": "string"
},
"terminationMessagePath": {
"description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.",
"type": "string"
},
"terminationMessagePolicy": {
"description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.",
"type": "string"
},
"tty": {
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
"type": "boolean"
},
"volumeDevices": {
"description": "volumeDevices is the list of block devices to be used by the container.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice"
},
"type": "array",
"x-kubernetes-patch-merge-key": "devicePath",
"x-kubernetes-patch-strategy": "merge"
},
"volumeMounts": {
"description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount"
},
"type": "array",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": {
"description": "ExecAction describes a \"run in container\" action.",
"properties": {
"command": {
"description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": {
"description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "Optional: FC target lun number",
"type": "integer"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"targetWWNs": {
"description": "Optional: FC target worldwide names (WWNs)",
"items": {
"type": "string"
},
"type": "array"
},
"wwids": {
"description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource": {
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
"properties": {
"driver": {
"description": "Driver is the name of the driver to use for this volume.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.",
"type": "string"
},
"options": {
"additionalProperties": {
"type": "string"
},
"description": "Optional: Extra command options if any.",
"type": "object"
},
"readOnly": {
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts."
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": {
"description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.",
"properties": {
"datasetName": {
"description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated",
"type": "string"
},
"datasetUUID": {
"description": "UUID of the dataset. This is unique identifier of a Flocker dataset",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": {
"description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "integer"
},
"pdName": {
"description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
"type": "boolean"
}
},
"required": [
"pdName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource": {
"description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
"properties": {
"directory": {
"description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.",
"type": "string"
},
"repository": {
"description": "Repository URL",
"type": "string"
},
"revision": {
"description": "Commit hash for the specified revision.",
"type": "string"
}
},
"required": [
"repository"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": {
"description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.",
"properties": {
"endpoints": {
"description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"path": {
"description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "boolean"
}
},
"required": [
"endpoints",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction": {
"description": "HTTPGetAction describes an action based on HTTP Get requests.",
"properties": {
"host": {
"description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
"type": "string"
},
"httpHeaders": {
"description": "Custom headers to set in the request. HTTP allows repeated headers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader"
},
"type": "array"
},
"path": {
"description": "Path to access on the HTTP server.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
},
"scheme": {
"description": "Scheme to use for connecting to the host. Defaults to HTTP.",
"type": "string"
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": {
"description": "HTTPHeader describes a custom header to be used in HTTP probes",
"properties": {
"name": {
"description": "The header field name",
"type": "string"
},
"value": {
"description": "The header field value",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": {
"description": "Handler defines a specific action that should be taken",
"properties": {
"exec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"httpGet": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"tcpSocket": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias": {
"description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
"properties": {
"hostnames": {
"description": "Hostnames for the above IP address.",
"items": {
"type": "string"
},
"type": "array"
},
"ip": {
"description": "IP address of the host file entry.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": {
"description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
},
"type": {
"description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource": {
"description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
"properties": {
"chapAuthDiscovery": {
"description": "whether support iSCSI Discovery CHAP authentication",
"type": "boolean"
},
"chapAuthSession": {
"description": "whether support iSCSI Session CHAP authentication",
"type": "boolean"
},
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi",
"type": "string"
},
"initiatorName": {
"description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
"type": "string"
},
"iqn": {
"description": "Target iSCSI Qualified Name.",
"type": "string"
},
"iscsiInterface": {
"description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
"type": "string"
},
"lun": {
"_format": "int32",
"description": "iSCSI Target Lun number.",
"type": "integer"
},
"portals": {
"description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"items": {
"type": "string"
},
"type": "array"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "CHAP Secret for iSCSI target and initiator authentication"
},
"targetPortal": {
"description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"type": "string"
}
},
"required": [
"targetPortal",
"iqn",
"lun"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath": {
"description": "Maps a string key to a path within a volume.",
"properties": {
"key": {
"description": "The key to project.",
"type": "string"
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.",
"type": "string"
}
},
"required": [
"key",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle": {
"description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.",
"properties": {
"postStart": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler",
"description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
},
"preStop": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler",
"description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": {
"description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": {
"description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "boolean"
},
"server": {
"description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
"type": "string"
}
},
"required": [
"server",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity": {
"description": "Node affinity is a group of node affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector",
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": {
"description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.",
"properties": {
"nodeSelectorTerms": {
"description": "Required. A list of node selector terms. The terms are ORed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm"
},
"type": "array"
}
},
"required": [
"nodeSelectorTerms"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": {
"description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "The label key that the selector applies to.",
"type": "string"
},
"operator": {
"description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
"type": "string"
},
"values": {
"description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": {
"description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.",
"properties": {
"matchExpressions": {
"description": "A list of node selector requirements by node's labels.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
},
"matchFields": {
"description": "A list of node selector requirements by node's fields.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": {
"description": "ObjectFieldSelector selects an APIVersioned field of an object.",
"properties": {
"apiVersion": {
"description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
"type": "string"
},
"fieldPath": {
"description": "Path of the field to select in the specified API version.",
"type": "string"
}
},
"required": [
"fieldPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": {
"description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).",
"properties": {
"claimName": {
"description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
"type": "string"
},
"readOnly": {
"description": "Will force the ReadOnly setting in VolumeMounts. Default false.",
"type": "boolean"
}
},
"required": [
"claimName"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": {
"description": "Represents a Photon Controller persistent disk resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"pdID": {
"description": "ID that identifies Photon Controller persistent disk",
"type": "string"
}
},
"required": [
"pdID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity": {
"description": "Pod affinity is a group of inter pod affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": {
"description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running",
"properties": {
"labelSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "A label query over a set of resources, in this case pods."
},
"namespaces": {
"description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"",
"items": {
"type": "string"
},
"type": "array"
},
"topologyKey": {
"description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.",
"type": "string"
}
},
"required": [
"topologyKey"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": {
"description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm"
},
"type": "array"
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig": {
"description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.",
"properties": {
"nameservers": {
"description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.",
"items": {
"type": "string"
},
"type": "array"
},
"options": {
"description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption"
},
"type": "array"
},
"searches": {
"description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption": {
"description": "PodDNSConfigOption defines DNS resolver options of a pod.",
"properties": {
"name": {
"description": "Required.",
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate": {
"description": "PodReadinessGate contains the reference to a pod condition",
"properties": {
"conditionType": {
"description": "ConditionType refers to a condition in the pod's condition list with matching type.",
"type": "string"
}
},
"required": [
"conditionType"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext": {
"description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.",
"properties": {
"fsGroup": {
"_format": "int64",
"description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.",
"type": "integer"
},
"fsGroupChangePolicy": {
"description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".",
"type": "string"
},
"runAsGroup": {
"_format": "int64",
"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"type": "integer"
},
"runAsNonRoot": {
"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "boolean"
},
"runAsUser": {
"_format": "int64",
"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
"type": "integer"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container."
},
"supplementalGroups": {
"description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.",
"items": {
"_format": "int64",
"type": "integer"
},
"type": "array"
},
"sysctls": {
"description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl"
},
"type": "array"
},
"windowsOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions",
"description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec": {
"description": "PodSpec is a description of a pod.",
"properties": {
"activeDeadlineSeconds": {
"_format": "int64",
"description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.",
"type": "integer"
},
"affinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity",
"description": "If specified, the pod's scheduling constraints"
},
"automountServiceAccountToken": {
"description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.",
"type": "boolean"
},
"containers": {
"description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"dnsConfig": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig",
"description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy."
},
"dnsPolicy": {
"description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.",
"type": "string"
},
"enableServiceLinks": {
"description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.",
"type": "boolean"
},
"ephemeralContainers": {
"description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"hostAliases": {
"description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias"
},
"type": "array",
"x-kubernetes-patch-merge-key": "ip",
"x-kubernetes-patch-strategy": "merge"
},
"hostIPC": {
"description": "Use the host's ipc namespace. Optional: Default to false.",
"type": "boolean"
},
"hostNetwork": {
"description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.",
"type": "boolean"
},
"hostPID": {
"description": "Use the host's pid namespace. Optional: Default to false.",
"type": "boolean"
},
"hostname": {
"description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.",
"type": "string"
},
"imagePullSecrets": {
"description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"initContainers": {
"description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
},
"nodeName": {
"description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.",
"type": "string"
},
"nodeSelector": {
"additionalProperties": {
"type": "string"
},
"description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/",
"type": "object"
},
"overhead": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.",
"type": "object"
},
"preemptionPolicy": {
"description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.",
"type": "string"
},
"priority": {
"_format": "int32",
"description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.",
"type": "integer"
},
"priorityClassName": {
"description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.",
"type": "string"
},
"readinessGates": {
"description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate"
},
"type": "array"
},
"restartPolicy": {
"description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy",
"type": "string"
},
"runtimeClassName": {
"description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.",
"type": "string"
},
"schedulerName": {
"description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.",
"type": "string"
},
"securityContext": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext",
"description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field."
},
"serviceAccount": {
"description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
"type": "string"
},
"serviceAccountName": {
"description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/",
"type": "string"
},
"shareProcessNamespace": {
"description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.",
"type": "boolean"
},
"subdomain": {
"description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.",
"type": "string"
},
"terminationGracePeriodSeconds": {
"_format": "int64",
"description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.",
"type": "integer"
},
"tolerations": {
"description": "If specified, the pod's tolerations.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration"
},
"type": "array"
},
"topologySpreadConstraints": {
"description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is only honored by clusters that enable the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"topologyKey",
"whenUnsatisfiable"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "topologyKey",
"x-kubernetes-patch-strategy": "merge"
},
"volumes": {
"description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume"
},
"type": "array",
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge,retainKeys"
}
},
"required": [
"containers"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec": {
"description": "PodTemplateSpec describes the data a pod should have when created from a template",
"properties": {
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec",
"description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": {
"description": "PortworxVolumeSource represents a Portworx volume resource.",
"properties": {
"fsType": {
"description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"volumeID": {
"description": "VolumeID uniquely identifies a Portworx volume",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm": {
"description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).",
"properties": {
"preference": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm",
"description": "A node selector term, associated with the corresponding weight."
},
"weight": {
"_format": "int32",
"description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
"type": "integer"
}
},
"required": [
"weight",
"preference"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe": {
"description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.",
"properties": {
"exec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"failureThreshold": {
"_format": "int32",
"description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
"type": "integer"
},
"httpGet": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"initialDelaySeconds": {
"_format": "int32",
"description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
"type": "integer"
},
"periodSeconds": {
"_format": "int32",
"description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
"type": "integer"
},
"successThreshold": {
"_format": "int32",
"description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.",
"type": "integer"
},
"tcpSocket": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
},
"timeoutSeconds": {
"_format": "int32",
"description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
"type": "integer"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource": {
"description": "Represents a projected volume source",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"sources": {
"description": "list of volume projections",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection"
},
"type": "array"
}
},
"required": [
"sources"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": {
"description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.",
"properties": {
"group": {
"description": "Group to map volume access to Default is no group",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.",
"type": "boolean"
},
"registry": {
"description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes",
"type": "string"
},
"tenant": {
"description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin",
"type": "string"
},
"user": {
"description": "User to map volume access to Defaults to serivceaccount user",
"type": "string"
},
"volume": {
"description": "Volume is a string that references an already created Quobyte volume by name.",
"type": "string"
}
},
"required": [
"registry",
"volume"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource": {
"description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd",
"type": "string"
},
"image": {
"description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"keyring": {
"description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"monitors": {
"description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"items": {
"type": "string"
},
"type": "array"
},
"pool": {
"description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
},
"user": {
"description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": "string"
}
},
"required": [
"monitors",
"image"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": {
"description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
"properties": {
"containerName": {
"description": "Container name: required for volumes, optional for env vars",
"type": "string"
},
"divisor": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "Specifies the output format of the exposed resources, defaults to \"1\""
},
"resource": {
"description": "Required: resource to select",
"type": "string"
}
},
"required": [
"resource"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements": {
"description": "ResourceRequirements describes the compute resource requirements.",
"properties": {
"limits": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": "object"
},
"requests": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": {
"description": "SELinuxOptions are the labels to be applied to the container",
"properties": {
"level": {
"description": "Level is SELinux level label that applies to the container.",
"type": "string"
},
"role": {
"description": "Role is a SELinux role label that applies to the container.",
"type": "string"
},
"type": {
"description": "Type is a SELinux type label that applies to the container.",
"type": "string"
},
"user": {
"description": "User is a SELinux user label that applies to the container.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": {
"description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".",
"type": "string"
},
"gateway": {
"description": "The host address of the ScaleIO API Gateway.",
"type": "string"
},
"protectionDomain": {
"description": "The name of the ScaleIO Protection Domain for the configured storage.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
},
"sslEnabled": {
"description": "Flag to enable/disable SSL communication with Gateway, default false",
"type": "boolean"
},
"storageMode": {
"description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.",
"type": "string"
},
"storagePool": {
"description": "The ScaleIO Storage Pool associated with the protection domain.",
"type": "string"
},
"system": {
"description": "The name of the storage system as configured in ScaleIO.",
"type": "string"
},
"volumeName": {
"description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.",
"type": "string"
}
},
"required": [
"gateway",
"system",
"secretRef"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource": {
"description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.",
"properties": {
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector": {
"description": "SecretKeySelector selects a key of a Secret.",
"properties": {
"key": {
"description": "The key of the secret to select from. Must be a valid secret key.",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"required": [
"key"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection": {
"description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.",
"properties": {
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"optional": {
"description": "Specify whether the Secret or its key must be defined",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": {
"description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.",
"properties": {
"defaultMode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": "array"
},
"optional": {
"description": "Specify whether the Secret or its keys must be defined",
"type": "boolean"
},
"secretName": {
"description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext": {
"description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.",
"properties": {
"allowPrivilegeEscalation": {
"description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN",
"type": "boolean"
},
"capabilities": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities",
"description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime."
},
"privileged": {
"description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.",
"type": "boolean"
},
"procMount": {
"description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.",
"type": "string"
},
"readOnlyRootFilesystem": {
"description": "Whether this container has a read-only root filesystem. Default is false.",
"type": "boolean"
},
"runAsGroup": {
"_format": "int64",
"description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "integer"
},
"runAsNonRoot": {
"description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "boolean"
},
"runAsUser": {
"_format": "int64",
"description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "integer"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
},
"windowsOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions",
"description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": {
"description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).",
"properties": {
"audience": {
"description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.",
"type": "string"
},
"expirationSeconds": {
"_format": "int64",
"description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.",
"type": "integer"
},
"path": {
"description": "Path is the path relative to the mount point of the file to project the token into.",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": {
"description": "Represents a StorageOS persistent volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference",
"description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted."
},
"volumeName": {
"description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.",
"type": "string"
},
"volumeNamespace": {
"description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl": {
"description": "Sysctl defines a kernel parameter to be set",
"properties": {
"name": {
"description": "Name of a property to set",
"type": "string"
},
"value": {
"description": "Value of a property to set",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction": {
"description": "TCPSocketAction describes an action based on opening a socket",
"properties": {
"host": {
"description": "Optional: Host name to connect to, defaults to the pod IP.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": {
"description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
"properties": {
"effect": {
"description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
"type": "string"
},
"key": {
"description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.",
"type": "string"
},
"operator": {
"description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.",
"type": "string"
},
"tolerationSeconds": {
"_format": "int64",
"description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.",
"type": "integer"
},
"value": {
"description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint": {
"description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
"properties": {
"labelSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain."
},
"maxSkew": {
"_format": "int32",
"description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.",
"type": "integer"
},
"topologyKey": {
"description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.",
"type": "string"
},
"whenUnsatisfiable": {
"description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.",
"type": "string"
}
},
"required": [
"maxSkew",
"topologyKey",
"whenUnsatisfiable"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume": {
"description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
"properties": {
"awsElasticBlockStore": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource",
"description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore"
},
"azureDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource",
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod."
},
"azureFile": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource",
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
},
"cephfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource",
"description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime"
},
"cinder": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource",
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
},
"configMap": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource",
"description": "ConfigMap represents a configMap that should populate this volume"
},
"csi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource",
"description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)."
},
"downwardAPI": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource",
"description": "DownwardAPI represents downward API about the pod that should populate this volume"
},
"emptyDir": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource",
"description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
},
"fc": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource",
"description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod."
},
"flexVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource",
"description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin."
},
"flocker": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource",
"description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running"
},
"gcePersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource",
"description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
},
"gitRepo": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource",
"description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container."
},
"glusterfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource",
"description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md"
},
"hostPath": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource",
"description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
},
"iscsi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource",
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md"
},
"name": {
"description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"nfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource",
"description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
},
"persistentVolumeClaim": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource",
"description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims"
},
"photonPersistentDisk": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource",
"description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine"
},
"portworxVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource",
"description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine"
},
"projected": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource",
"description": "Items for all in one resources secrets, configmaps, and downward API"
},
"quobyte": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource",
"description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime"
},
"rbd": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource",
"description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md"
},
"scaleIO": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource",
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
},
"secret": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource",
"description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret"
},
"storageos": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource",
"description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes."
},
"vsphereVolume": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource",
"description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": {
"description": "volumeDevice describes a mapping of a raw block device within a container.",
"properties": {
"devicePath": {
"description": "devicePath is the path inside of the container that the device will be mapped to.",
"type": "string"
},
"name": {
"description": "name must match the name of a persistentVolumeClaim in the pod",
"type": "string"
}
},
"required": [
"name",
"devicePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": {
"description": "VolumeMount describes a mounting of a Volume within a container.",
"properties": {
"mountPath": {
"description": "Path within the container at which the volume should be mounted. Must not contain ':'.",
"type": "string"
},
"mountPropagation": {
"description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.",
"type": "string"
},
"name": {
"description": "This must match the Name of a Volume.",
"type": "string"
},
"readOnly": {
"description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
"type": "boolean"
},
"subPath": {
"description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
"type": "string"
},
"subPathExpr": {
"description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.",
"type": "string"
}
},
"required": [
"name",
"mountPath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": {
"description": "Projection that may be projected along with other supported volume types",
"properties": {
"configMap": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection",
"description": "information about the configMap data to project"
},
"downwardAPI": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection",
"description": "information about the downwardAPI data to project"
},
"secret": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection",
"description": "information about the secret data to project"
},
"serviceAccountToken": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection",
"description": "information about the serviceAccountToken data to project"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": {
"description": "Represents a vSphere volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"storagePolicyID": {
"description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
"type": "string"
},
"storagePolicyName": {
"description": "Storage Policy Based Management (SPBM) profile name.",
"type": "string"
},
"volumePath": {
"description": "Path that identifies vSphere volume vmdk",
"type": "string"
}
},
"required": [
"volumePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": {
"description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
"properties": {
"podAffinityTerm": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm",
"description": "Required. A pod affinity term, associated with the corresponding weight."
},
"weight": {
"_format": "int32",
"description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
"type": "integer"
}
},
"required": [
"weight",
"podAffinityTerm"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": {
"description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
"properties": {
"gmsaCredentialSpec": {
"description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.",
"type": "string"
},
"gmsaCredentialSpecName": {
"description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.",
"type": "string"
},
"runAsUserName": {
"description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"description": "ReplicaSetSpec is the specification of a ReplicaSet.",
"properties": {
"minReadySeconds": {
"description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)",
"format": "int32",
"type": [
"integer",
"null"
]
},
"replicas": {
"description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller",
"format": "int32",
"type": [
"integer",
"null"
]
},
"selector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors"
},
"template": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec",
"description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template"
}
},
"required": [
"selector"
],
"type": "object"
} | kb_809_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": {
"description": "SELinuxOptions are the labels to be applied to the container",
"properties": {
"level": {
"description": "Level is SELinux level label that applies to the container.",
"type": "string"
},
"role": {
"description": "Role is a SELinux role label that applies to the container.",
"type": "string"
},
"type": {
"description": "Type is a SELinux type label that applies to the container.",
"type": "string"
},
"user": {
"description": "User is a SELinux user label that applies to the container.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_AllowedCSIDriver": {
"description": "AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.",
"properties": {
"name": {
"description": "Name is the registered name of the CSI driver",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_AllowedFlexVolume": {
"description": "AllowedFlexVolume represents a single Flexvolume that is allowed to be used.",
"properties": {
"driver": {
"description": "driver is the name of the Flexvolume driver.",
"type": "string"
}
},
"required": [
"driver"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_AllowedHostPath": {
"description": "AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined.",
"properties": {
"pathPrefix": {
"description": "pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path.\n\nExamples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo`",
"type": "string"
},
"readOnly": {
"description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_FSGroupStrategyOptions": {
"description": "FSGroupStrategyOptions defines the strategy type and options used to create the strategy.",
"properties": {
"ranges": {
"description": "ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_IDRange"
},
"type": "array"
},
"rule": {
"description": "rule is the strategy that will dictate what FSGroup is used in the SecurityContext.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_HostPortRange": {
"description": "HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.",
"properties": {
"max": {
"_format": "int32",
"description": "max is the end of the range, inclusive.",
"type": "integer"
},
"min": {
"_format": "int32",
"description": "min is the start of the range, inclusive.",
"type": "integer"
}
},
"required": [
"min",
"max"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_IDRange": {
"description": "IDRange provides a min/max of an allowed range of IDs.",
"properties": {
"max": {
"_format": "int64",
"description": "max is the end of the range, inclusive.",
"type": "integer"
},
"min": {
"_format": "int64",
"description": "min is the start of the range, inclusive.",
"type": "integer"
}
},
"required": [
"min",
"max"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_RunAsGroupStrategyOptions": {
"description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.",
"properties": {
"ranges": {
"description": "ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_IDRange"
},
"type": "array"
},
"rule": {
"description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.",
"type": "string"
}
},
"required": [
"rule"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_RunAsUserStrategyOptions": {
"description": "RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.",
"properties": {
"ranges": {
"description": "ranges are the allowed ranges of uids that may be used. If you would like to force a single uid then supply a single range with the same start and end. Required for MustRunAs.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_IDRange"
},
"type": "array"
},
"rule": {
"description": "rule is the strategy that will dictate the allowable RunAsUser values that may be set.",
"type": "string"
}
},
"required": [
"rule"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_RuntimeClassStrategyOptions": {
"description": "RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.",
"properties": {
"allowedRuntimeClassNames": {
"description": "allowedRuntimeClassNames is a whitelist of RuntimeClass names that may be specified on a pod. A value of \"*\" means that any RuntimeClass name is allowed, and must be the only item in the list. An empty list requires the RuntimeClassName field to be unset.",
"items": {
"type": "string"
},
"type": "array"
},
"defaultRuntimeClassName": {
"description": "defaultRuntimeClassName is the default RuntimeClassName to set on the pod. The default MUST be allowed by the allowedRuntimeClassNames list. A value of nil does not mutate the Pod.",
"type": "string"
}
},
"required": [
"allowedRuntimeClassNames"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_SELinuxStrategyOptions": {
"description": "SELinuxStrategyOptions defines the strategy type and any options used to create the strategy.",
"properties": {
"rule": {
"description": "rule is the strategy that will dictate the allowable labels that may be set.",
"type": "string"
},
"seLinuxOptions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions",
"description": "seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/"
}
},
"required": [
"rule"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_SupplementalGroupsStrategyOptions": {
"description": "SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.",
"properties": {
"ranges": {
"description": "ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_IDRange"
},
"type": "array"
},
"rule": {
"description": "rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.",
"type": "string"
}
},
"type": "object"
}
},
"description": "PodSecurityPolicySpec defines the policy enforced.",
"properties": {
"allowPrivilegeEscalation": {
"description": "allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.",
"type": [
"boolean",
"null"
]
},
"allowedCSIDrivers": {
"description": "AllowedCSIDrivers is a whitelist of inline CSI drivers that must be explicitly set to be embedded within a pod spec. An empty value indicates that any CSI driver can be used for inline ephemeral volumes. This is an alpha field, and is only honored if the API server enables the CSIInlineVolume feature gate.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_AllowedCSIDriver"
},
"type": [
"array",
"null"
]
},
"allowedCapabilities": {
"description": "allowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author's discretion. You must not list a capability in both allowedCapabilities and requiredDropCapabilities.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"allowedFlexVolumes": {
"description": "allowedFlexVolumes is a whitelist of allowed Flexvolumes. Empty or nil indicates that all Flexvolumes may be used. This parameter is effective only when the usage of the Flexvolumes is allowed in the \"volumes\" field.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_AllowedFlexVolume"
},
"type": [
"array",
"null"
]
},
"allowedHostPaths": {
"description": "allowedHostPaths is a white list of allowed host paths. Empty indicates that all host paths may be used.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_AllowedHostPath"
},
"type": [
"array",
"null"
]
},
"allowedProcMountTypes": {
"description": "AllowedProcMountTypes is a whitelist of allowed ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"allowedUnsafeSysctls": {
"description": "allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to whitelist all allowed unsafe sysctls explicitly to avoid rejection.\n\nExamples: e.g. \"foo/*\" allows \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" allows \"foo.bar\", \"foo.baz\", etc.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"defaultAddCapabilities": {
"description": "defaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both defaultAddCapabilities and requiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the allowedCapabilities list.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"defaultAllowPrivilegeEscalation": {
"description": "defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.",
"type": [
"boolean",
"null"
]
},
"forbiddenSysctls": {
"description": "forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of forbidden sysctls. Single * means all sysctls are forbidden.\n\nExamples: e.g. \"foo/*\" forbids \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" forbids \"foo.bar\", \"foo.baz\", etc.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"fsGroup": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_FSGroupStrategyOptions",
"description": "fsGroup is the strategy that will dictate what fs group is used by the SecurityContext."
},
"hostIPC": {
"description": "hostIPC determines if the policy allows the use of HostIPC in the pod spec.",
"type": [
"boolean",
"null"
]
},
"hostNetwork": {
"description": "hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.",
"type": [
"boolean",
"null"
]
},
"hostPID": {
"description": "hostPID determines if the policy allows the use of HostPID in the pod spec.",
"type": [
"boolean",
"null"
]
},
"hostPorts": {
"description": "hostPorts determines which host port ranges are allowed to be exposed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_HostPortRange"
},
"type": [
"array",
"null"
]
},
"privileged": {
"description": "privileged determines if a pod can request to be run as privileged.",
"type": [
"boolean",
"null"
]
},
"readOnlyRootFilesystem": {
"description": "readOnlyRootFilesystem when set to true will force containers to run with a read only root file system. If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to.",
"type": [
"boolean",
"null"
]
},
"requiredDropCapabilities": {
"description": "requiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"runAsGroup": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_RunAsGroupStrategyOptions",
"description": "RunAsGroup is the strategy that will dictate the allowable RunAsGroup values that may be set. If this field is omitted, the pod's RunAsGroup can take any value. This field requires the RunAsGroup feature gate to be enabled."
},
"runAsUser": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_RunAsUserStrategyOptions",
"description": "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set."
},
"runtimeClass": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_RuntimeClassStrategyOptions",
"description": "runtimeClass is the strategy that will dictate the allowable RuntimeClasses for a pod. If this field is omitted, the pod's runtimeClassName field is unrestricted. Enforcement of this field depends on the RuntimeClass feature gate being enabled."
},
"seLinux": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_SELinuxStrategyOptions",
"description": "seLinux is the strategy that will dictate the allowable labels that may be set."
},
"supplementalGroups": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_SupplementalGroupsStrategyOptions",
"description": "supplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext."
},
"volumes": {
"description": "volumes is a white list of allowed volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use '*'.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
}
},
"required": [
"seLinux",
"runAsUser",
"supplementalGroups",
"fsGroup"
],
"type": "object"
} | kb_727_Normalized |
{
"properties": {
"dimensions": {
"properties": {
"height": {
"description": "The height of the object",
"type": "number"
},
"length": {
"description": "The length of the object",
"type": "number"
},
"width": {
"description": "The width of the object",
"type": "number"
}
},
"required": [
"length",
"width",
"height"
],
"type": "object"
},
"shape": {
"description": "The shape of the object (e.g., cube, sphere)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_volume_8bfb0169 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "avalon-core:subset-2.0",
"description": "A container of instances",
"type": "object",
"additionalProperties": true,
"required": [
"schema",
"type",
"parent",
"name",
"data"
],
"properties": {
"schema": {
"description": "The schema associated with this document",
"type": "string",
"enum": [
"avalon-core:subset-2.0"
],
"example": "avalon-core:subset-2.0"
},
"type": {
"description": "The type of document",
"type": "string",
"enum": [
"subset"
],
"example": "subset"
},
"parent": {
"description": "Unique identifier to parent document",
"example": "592c33475f8c1b064c4d1696"
},
"name": {
"description": "Name of directory",
"type": "string",
"pattern": "^[a-zA-Z0-9_.]*$",
"example": "shot01"
},
"data": {
"type": "object",
"description": "Document metadata",
"example": {
"frameStart": 1000,
"frameEnd": 1201
}
}
}
} | o60874 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": true,
"definitions": {
"gateState": {
"description": "for actions that are apply gates, true if the gate has been passed for this specific candidate + job, false if it was failed - this field should only be present when there is a result",
"type": "boolean"
},
"name": {
"description": "fixed name for this action, containing only lower case alpha, digits and '-' characters, length <= 30",
"type": "string"
}
},
"description": "the logical information needed to populate a button/control at runtime",
"properties": {
"backgroundColor": {
"description": "the color that the button's background should be rendered in, in 6 character hex format without leading #, e.g. 00ff00",
"type": "string"
},
"disabled": {
"description": "true if the button/control should appear disabled, i.e. the action can be seen but not performed",
"type": "boolean"
},
"gateState": {
"$ref": "#/definitions/gateState"
},
"imageUri": {
"_format": "uri",
"description": "the url of an image to be displayed for this action (i.e. instead of a dynamically set up button)",
"type": "string"
},
"label": {
"description": "a string indicating what the action will do, used as the label on its button/control",
"type": "string"
},
"name": {
"$ref": "#/definitions/name",
"description": "fixed name for this action, containing only lower case alpha, digits and '-' characters, length <= 30"
},
"textColor": {
"description": "the color that the button's text should be rendered in, in 6 character hex format without leading #, e.g. 00ff00",
"type": "string"
},
"type": {
"enum": [
"image",
"button"
]
},
"uri": {
"_format": "uri",
"description": "the url that the button/control will redirect the user to when pressed, or use to populate an iframe inside a modal",
"type": "string"
}
},
"required": [
"name",
"label",
"uri",
"disabled"
],
"type": "object"
} | o79503 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"config",
"inputs"
],
"type": "object",
"properties": {
"inputs": {
"required": [
"NIFTI"
],
"type": "object",
"properties": {
"SLICE_FILE": {
"type": "object",
"properties": {
"type": {
"enum": [
"text"
]
}
}
},
"NIFTI": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
}
}
},
"config": {
"required": [
"NOISE_LVL",
"HPF_CUTOF",
"INT_NORM",
"MC",
"STC",
"T_SMOOTH",
"REG_STANDARD_IMAGE",
"Z_THRESH",
"BB_THRESH",
"FWHM",
"HPF",
"BET"
],
"type": "object",
"properties": {
"NOISE_LVL": {
"default": 0.66,
"type": "number"
},
"HPF_CUTOF": {
"default": 100,
"type": "number"
},
"INT_NORM": {
"default": 1,
"minimum": 0,
"type": "integer",
"maximum": 1
},
"MC": {
"default": 1,
"minimum": 0,
"type": "integer",
"maximum": 1
},
"STC": {
"default": 1,
"type": "integer"
},
"T_SMOOTH": {
"default": 0.34,
"type": "number"
},
"REG_STANDARD_IMAGE": {
"default": 0,
"minimum": 0,
"type": "integer",
"maximum": 1
},
"Z_THRESH": {
"default": 5.3,
"type": "number"
},
"BB_THRESH": {
"default": 10,
"type": "number"
},
"FWHM": {
"default": 5,
"type": "number"
},
"HPF": {
"default": 1,
"minimum": 0,
"type": "integer",
"maximum": 1
},
"BET": {
"default": 1,
"minimum": 0,
"type": "integer",
"maximum": 1
}
}
}
},
"title": "Invocation manifest for FSL: FEAT - fMRI preprocessing (v6.0)"
} | o41278 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"base_path",
"content_id",
"document_type",
"govuk_request_id",
"locale",
"payload_version",
"schema_name"
],
"additionalProperties": false,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"content_purpose_document_supertype": {
"description": "DEPRECATED. Use `content_purpose_subgroup`.",
"type": "string"
},
"content_purpose_subgroup": {
"description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.",
"type": "string"
},
"content_purpose_supergroup": {
"description": "Document supergroup grouping documents by a purpose",
"type": "string"
},
"description": {
"type": "null"
},
"details": {
"type": "object",
"additionalProperties": false,
"properties": {}
},
"document_type": {
"type": "string",
"enum": [
"redirect"
]
},
"email_document_supertype": {
"description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions",
"type": "string"
},
"expanded_links": {
"type": "object",
"additionalProperties": false,
"properties": {
"available_translations": {
"description": "Link type automatically added by Publishing API",
"$ref": "#/definitions/frontend_links_with_base_path"
},
"child_taxons": {
"description": "Link type automatically added by Publishing API",
"$ref": "#/definitions/frontend_links_with_base_path"
},
"children": {
"description": "Link type automatically added by Publishing API",
"$ref": "#/definitions/frontend_links_with_base_path"
},
"document_collections": {
"description": "Link type automatically added by Publishing API",
"$ref": "#/definitions/frontend_links_with_base_path"
},
"level_one_taxons": {
"description": "Link type automatically added by Publishing API",
"$ref": "#/definitions/frontend_links_with_base_path"
},
"ministers": {
"description": "Link type automatically added by Publishing API",
"$ref": "#/definitions/frontend_links"
},
"part_of_step_navs": {
"description": "Link type automatically added by Publishing API",
"$ref": "#/definitions/frontend_links_with_base_path"
},
"policies": {
"description": "Link type automatically added by Publishing API",
"$ref": "#/definitions/frontend_links_with_base_path"
},
"related_to_step_navs": {
"description": "Link type automatically added by Publishing API",
"$ref": "#/definitions/frontend_links_with_base_path"
},
"role_appointments": {
"description": "Link type automatically added by Publishing API",
"$ref": "#/definitions/frontend_links"
},
"secondary_to_step_navs": {
"description": "Link type automatically added by Publishing API",
"$ref": "#/definitions/frontend_links_with_base_path"
},
"topic_taxonomy_taxons": {
"description": "Link type automatically added by Publishing API",
"$ref": "#/definitions/frontend_links_with_base_path"
}
}
},
"first_published_at": {
"$ref": "#/definitions/first_published_at"
},
"government_document_supertype": {
"description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions",
"type": "string"
},
"govuk_request_id": {
"$ref": "#/definitions/govuk_request_id"
},
"links": {
"type": "object",
"additionalProperties": false,
"properties": {}
},
"locale": {
"$ref": "#/definitions/locale"
},
"navigation_document_supertype": {
"description": "Document type grouping powering the new taxonomy-based navigation pages",
"type": "string"
},
"need_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"payload_version": {
"$ref": "#/definitions/payload_version"
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"type": "string",
"enum": [
"alpha",
"beta",
"live"
]
},
"public_updated_at": {
"$ref": "#/definitions/public_updated_at"
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"publishing_request_id": {
"$ref": "#/definitions/publishing_request_id"
},
"redirects": {
"$ref": "#/definitions/redirects"
},
"rendering_app": {
"type": "null"
},
"routes": {
"type": "array",
"additionalItems": false,
"items": {}
},
"schema_name": {
"type": "string",
"enum": [
"redirect"
]
},
"search_user_need_document_supertype": {
"description": "Document supertype grouping core and government documents",
"type": "string"
},
"title": {
"type": "null"
},
"update_type": {
"$ref": "#/definitions/update_type"
},
"user_journey_document_supertype": {
"description": "Document type grouping powering analytics of user journeys",
"type": "string"
},
"user_need_document_supertype": {
"description": "DEPRECATED. Use `content_purpose_document_supertype`.",
"type": "string"
},
"withdrawn_notice": {
"$ref": "#/definitions/withdrawn_notice"
}
},
"definitions": {
"absolute_fullpath": {
"description": "A path with optional query string and/or fragment.",
"type": "string",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?(\\?([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)?(#([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)?$"
},
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"type": "string",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$"
},
"analytics_identifier": {
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations.",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"first_published_at": {
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string",
"format": "date-time"
},
"frontend_links": {
"type": "array",
"items": {
"type": "object",
"required": [
"content_id",
"locale",
"title"
],
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string",
"format": "uri"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"type": "object",
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
}
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string",
"format": "uri"
}
}
}
},
"frontend_links_with_base_path": {
"type": "array",
"items": {
"type": "object",
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string",
"format": "uri"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"type": "object",
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
}
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string",
"format": "uri"
}
}
}
},
"govuk_request_id": {
"type": [
"string",
"null"
]
},
"govuk_subdomain_url": {
"description": "A URL under the gov.uk domain with optional query string and/or fragment.",
"type": "string",
"pattern": "^https://([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[A-Za-z0-9])?\\.)*gov\\.uk(/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?(\\?([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)?(#([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)?)?$"
},
"guid": {
"type": "string",
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$"
},
"locale": {
"type": "string",
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
]
},
"payload_version": {
"description": "Counter to indicate when the payload was generated",
"type": "integer"
},
"public_updated_at": {
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string",
"format": "date-time"
},
"publishing_app_name": {
"description": "The application that published this item.",
"type": "string",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
]
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"redirect_route": {
"type": "object",
"required": [
"path",
"type",
"destination"
],
"additionalProperties": false,
"properties": {
"destination": {
"type": "string",
"anyOf": [
{
"$ref": "#/definitions/absolute_fullpath"
},
{
"$ref": "#/definitions/govuk_subdomain_url"
}
]
},
"path": {
"$ref": "#/definitions/absolute_path"
},
"segments_mode": {
"description": "For prefix redirects, preserve or ignore the rest of the fullpath. For exact, preserve or ignore the querystring.",
"enum": [
"preserve",
"ignore"
]
},
"type": {
"enum": [
"prefix",
"exact"
]
}
}
},
"redirects": {
"type": "array",
"items": {
"$ref": "#/definitions/redirect_route"
},
"minItems": 1
},
"update_type": {
"enum": [
"major",
"minor",
"republish"
]
},
"withdrawn_notice": {
"type": "object",
"additionalProperties": false,
"properties": {
"explanation": {
"type": "string"
},
"withdrawn_at": {
"format": "date-time"
}
}
}
}
} | o21332 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the shape",
"type": "number"
},
"height": {
"description": "The height of the shape",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The shape for which the area needs to be calculated",
"enum": [
"square",
"rectangle",
"circle",
"triangle"
],
"type": "string"
}
},
"type": "object"
} | calculate_area_123f4fe8 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the shape (for triangle)",
"type": "number"
},
"height": {
"description": "The height of the shape (for triangle)",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape (for circle)",
"type": "number"
},
"width": {
"description": "The width of the shape (for rectangle)",
"type": "number"
}
},
"required": [
"length"
],
"type": "object"
},
"shape": {
"description": "The type of geometric shape, e.g. 'rectangle', 'circle', 'triangle'",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_8fdada79 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$",
"type": "string"
},
"analytics_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations."
},
"change_history": {
"items": {
"additionalProperties": false,
"properties": {
"note": {
"description": "A summary of the change",
"type": "string"
},
"public_timestamp": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"public_timestamp",
"note"
],
"type": "object"
},
"type": "array"
},
"description": {
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"additionalProperties": false,
"properties": {
"change_history": {
"$ref": "#/definitions/change_history"
},
"groups": {
"$ref": "#/definitions/service_manual_topic_groups"
},
"visually_collapsed": {
"description": "A flag set by a content designer when they want the sections of a topic to be collapsed into an accordion. This will likely be used when there are many items in the topic.",
"type": "boolean"
},
"withdrawn_notice": {
"$ref": "#/definitions/withdrawn_notice"
}
},
"type": "object"
},
"first_published_at": {
"_format": "date-time",
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"frontend_links": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"frontend_links_with_base_path": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"govuk_request_id": {
"type": [
"string",
"null"
]
},
"guid": {
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$",
"type": "string"
},
"guid_list": {
"items": {
"$ref": "#/definitions/guid"
},
"type": "array",
"_uniqueItems": true
},
"locale": {
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
],
"type": "string"
},
"payload_version": {
"description": "Counter to indicate when the payload was generated",
"type": "integer"
},
"public_updated_at": {
"_format": "date-time",
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"publishing_app_name": {
"description": "The application that published this item.",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
],
"type": "string"
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"rendering_app": {
"description": "The application that renders this item.",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
],
"type": "string"
},
"route": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"type": {
"enum": [
"prefix",
"exact"
]
}
},
"required": [
"path",
"type"
],
"type": "object"
},
"routes": {
"items": {
"$ref": "#/definitions/route"
},
"minItems": 1,
"type": "array"
},
"service_manual_topic_groups": {
"description": "Lists of items with titles & content IDs in named groups, used for service manual topic pages",
"items": {
"additionalProperties": false,
"properties": {
"content_ids": {
"$ref": "#/definitions/guid_list"
},
"description": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"type": "array"
},
"title": {
"type": "string"
},
"update_type": {
"enum": [
"major",
"minor",
"republish"
]
},
"withdrawn_notice": {
"additionalProperties": false,
"properties": {
"explanation": {
"type": "string"
},
"withdrawn_at": {
"format": "date-time"
}
},
"type": "object"
}
},
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"content_purpose_document_supertype": {
"description": "DEPRECATED. Use `content_purpose_subgroup`.",
"type": "string"
},
"content_purpose_subgroup": {
"description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.",
"type": "string"
},
"content_purpose_supergroup": {
"description": "Document supergroup grouping documents by a purpose",
"type": "string"
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"enum": [
"service_manual_topic"
],
"type": "string"
},
"email_document_supertype": {
"description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions",
"type": "string"
},
"expanded_links": {
"additionalProperties": false,
"properties": {
"available_translations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"child_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"children": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"content_owners": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "References a page of a GDS community responsible for maintaining the guide e.g. Agile delivery community, Design community"
},
"document_collections": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"email_alert_signup": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "References an email alert signup page for this topic"
},
"facet_groups": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers links from content back to finders the content is surfaced on"
},
"lead_organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"level_one_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"linked_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Includes all content ids referenced in 'details'. This is a temporary measure to expand content ids for frontends which is planned to be replaced by a dependency resolution service."
},
"mainstream_browse_pages": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The user needs this piece of content meets."
},
"ministers": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The parent content item.",
"maxItems": 1
},
"part_of_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policies": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policy_areas": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"related_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"role_appointments": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"secondary_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Prototype-stage taxonomy label for this content item"
},
"topic_taxonomy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"topics": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
}
},
"type": "object"
},
"first_published_at": {
"$ref": "#/definitions/first_published_at"
},
"government_document_supertype": {
"description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions",
"type": "string"
},
"govuk_request_id": {
"$ref": "#/definitions/govuk_request_id"
},
"links": {
"additionalProperties": false,
"properties": {
"content_owners": {
"$ref": "#/definitions/guid_list",
"description": "References a page of a GDS community responsible for maintaining the guide e.g. Agile delivery community, Design community"
},
"email_alert_signup": {
"$ref": "#/definitions/guid_list",
"description": "References an email alert signup page for this topic"
},
"facet_groups": {
"$ref": "#/definitions/guid_list",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/guid_list",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/guid_list",
"description": "Powers links from content back to finders the content is surfaced on"
},
"lead_organisations": {
"$ref": "#/definitions/guid_list",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"linked_items": {
"$ref": "#/definitions/guid_list",
"description": "Includes all content ids referenced in 'details'. This is a temporary measure to expand content ids for frontends which is planned to be replaced by a dependency resolution service."
},
"mainstream_browse_pages": {
"$ref": "#/definitions/guid_list",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/guid_list",
"description": "The user needs this piece of content meets."
},
"ordered_related_items": {
"$ref": "#/definitions/guid_list",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/guid_list",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/guid_list",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/guid_list",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/guid_list",
"description": "The parent content item.",
"maxItems": 1
},
"policy_areas": {
"$ref": "#/definitions/guid_list",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/guid_list",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/guid_list",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/guid_list",
"description": "Prototype-stage taxonomy label for this content item"
},
"topics": {
"$ref": "#/definitions/guid_list",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"navigation_document_supertype": {
"description": "Document type grouping powering the new taxonomy-based navigation pages",
"type": "string"
},
"need_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"payload_version": {
"$ref": "#/definitions/payload_version"
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"enum": [
"alpha",
"beta",
"live"
],
"type": "string"
},
"public_updated_at": {
"$ref": "#/definitions/public_updated_at"
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"publishing_request_id": {
"$ref": "#/definitions/publishing_request_id"
},
"redirects": {
"additionalItems": false,
"items": {},
"type": "array"
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"routes": {
"$ref": "#/definitions/routes"
},
"schema_name": {
"enum": [
"service_manual_topic"
],
"type": "string"
},
"search_user_need_document_supertype": {
"description": "Document supertype grouping core and government documents",
"type": "string"
},
"title": {
"$ref": "#/definitions/title"
},
"update_type": {
"$ref": "#/definitions/update_type"
},
"user_journey_document_supertype": {
"description": "Document type grouping powering analytics of user journeys",
"type": "string"
},
"user_need_document_supertype": {
"description": "DEPRECATED. Use `content_purpose_document_supertype`.",
"type": "string"
},
"withdrawn_notice": {
"$ref": "#/definitions/withdrawn_notice"
}
},
"required": [
"analytics_identifier",
"base_path",
"content_id",
"description",
"details",
"document_type",
"email_document_supertype",
"expanded_links",
"first_published_at",
"government_document_supertype",
"govuk_request_id",
"links",
"locale",
"navigation_document_supertype",
"payload_version",
"phase",
"public_updated_at",
"publishing_app",
"redirects",
"rendering_app",
"routes",
"schema_name",
"title",
"update_type",
"user_journey_document_supertype"
],
"type": "object"
} | o21360 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"meta": {
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
},
"type": {
"type": "string",
"enum": [
"EiffelEnvironmentDefinedEvent"
]
},
"version": {
"type": "string",
"enum": [
"3.0.0"
],
"default": "3.0.0"
},
"time": {
"type": "integer"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"source": {
"type": "object",
"properties": {
"domainId": {
"type": "string"
},
"host": {
"type": "string"
},
"name": {
"type": "string"
},
"serializer": {
"type": "string",
"pattern": "^pkg:"
},
"uri": {
"type": "string"
}
},
"additionalProperties": false
},
"security": {
"type": "object",
"properties": {
"authorIdentity": {
"type": "string"
},
"integrityProtection": {
"type": "object",
"properties": {
"signature": {
"type": "string"
},
"alg": {
"type": "string",
"enum": [
"HS256",
"HS384",
"HS512",
"RS256",
"RS384",
"RS512",
"ES256",
"ES384",
"ES512",
"PS256",
"PS384",
"PS512"
]
},
"publicKey": {
"type": "string"
}
},
"required": [
"signature",
"alg"
],
"additionalProperties": false
},
"sequenceProtection": {
"type": "array",
"items": {
"type": "object",
"properties": {
"sequenceName": {
"type": "string"
},
"position": {
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"sequenceName",
"position"
]
}
}
},
"additionalProperties": false,
"required": [
"authorIdentity"
]
}
},
"required": [
"id",
"type",
"version",
"time"
],
"additionalProperties": false
},
"data": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string"
},
"image": {
"type": "string"
},
"host": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"user": {
"type": "string"
}
},
"required": [
"name",
"user"
],
"additionalProperties": false
},
"uri": {
"type": "string"
},
"customData": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"value": {}
},
"required": [
"key",
"value"
],
"additionalProperties": false
}
}
},
"required": [
"name"
],
"additionalProperties": false
},
"links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"target": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
}
},
"required": [
"type",
"target"
],
"additionalProperties": false
}
}
},
"required": [
"meta",
"data",
"links"
],
"additionalProperties": false
} | o5370 |
{
"id": "https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/schemas/v1.2/dataTypeBase.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Data type fields (section 4.3.3)",
"type": "object",
"oneOf": [
{
"required": [
"type"
]
},
{
"required": [
"$ref"
]
}
],
"properties": {
"type": {
"type": "string"
},
"$ref": {
"type": "string"
},
"format": {
"type": "string"
},
"defaultValue": {
"not": {
"type": [
"array",
"object",
"null"
]
}
},
"enum": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true,
"minItems": 1
},
"minimum": {
"type": "string"
},
"maximum": {
"type": "string"
},
"items": {
"$ref": "#/definitions/itemsObject"
},
"_uniqueItems": {
"type": "boolean"
}
},
"dependencies": {
"format": {
"oneOf": [
{
"properties": {
"type": {
"enum": [
"integer"
]
},
"format": {
"enum": [
"int32",
"int64"
]
}
}
},
{
"properties": {
"type": {
"enum": [
"number"
]
},
"format": {
"enum": [
"float",
"double"
]
}
}
},
{
"properties": {
"type": {
"enum": [
"string"
]
},
"format": {
"enum": [
"byte",
"date",
"date-time"
]
}
}
}
]
}
},
"definitions": {
"itemsObject": {
"oneOf": [
{
"type": "object",
"required": [
"$ref"
],
"properties": {
"$ref": {
"type": "string"
}
},
"additionalProperties": false
},
{
"allOf": [
{
"$ref": "#"
},
{
"required": [
"type"
],
"properties": {
"type": {},
"format": {}
},
"additionalProperties": false
}
]
}
]
}
}
} | o12175 |
{
"properties": {},
"required": [],
"title": "NgRx Component NgRxPush Migration from async to ngrxPush",
"type": "object"
} | o63326 |
{
"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",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
},
"type": [
"array",
"null"
]
}
},
"type": "object"
} | kb_167_Normalized |
{
"properties": {
"client": {
"description": "The name of the client",
"type": "string"
},
"items": {
"items": {
"properties": {
"description": {
"description": "The description of the item",
"type": "string"
},
"price": {
"description": "The price per unit of the item",
"type": "number"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
}
},
"required": [
"description",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"client",
"items"
],
"type": "object"
} | create_invoice_08d4a43a |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"attribute": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"deviceTags": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"value": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"additionalProperties": false
},
"maxItems": 100
},
"deviceIds": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"maxItems": 1000
}
},
"additionalProperties": false
} | o9925 |
{
"id": "http://schemas.triniti.io/json-schema/triniti/apollo/mixin/poll-answer/1-0-0.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"_id": {
"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}$",
"pbj": {
"type": "uuid",
"rule": "single"
}
},
"title": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"pbj": {
"type": "string",
"rule": "single"
}
},
"url": {
"type": "string",
"pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$",
"pbj": {
"type": "text",
"rule": "single",
"format": "url"
}
},
"initial_votes": {
"type": "integer",
"default": 0,
"minimum": 0,
"maximum": 4294967295,
"pbj": {
"type": "int",
"rule": "single"
}
}
},
"required": [
"_id"
],
"additionalProperties": true
} | o82616 |
{
"properties": {
"customer": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"description": "The list of items in the invoice",
"items": {
"properties": {
"name": {
"description": "The name of the item",
"type": "string"
},
"price": {
"description": "The price of the item",
"type": "number"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
}
},
"required": [
"name",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer",
"items"
],
"type": "object"
} | create_invoice_1c8ffeb0 |
{
"id": "https://opendesk.cc/schemata/base/exception.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Winnow Exception Value",
"type": "object",
"properties": {
"key": {
"type": "string"
},
"type": {
"type": "string"
},
"values": {},
"context": {}
},
"required": [
"key",
"type",
"values",
"context"
]
} | o65508 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Element Info",
"description": "Info files for v3 elements.",
"type": "object",
"additionalProperties": false,
"required": [
"controller"
],
"properties": {
"controller": {
"description": "The name of the element's controller file.",
"type": "string"
},
"dependencies": {
"description": "The element's client-side dependencies.",
"type": "object",
"additionalProperties": false,
"properties": {
"coreStyles": {
"description": "The styles required by this element from /public/stylesheets.",
"type": "array",
"items": {
"description": "A .css file located in /public/stylesheets.",
"type": "string"
}
},
"coreScripts": {
"description": "The scripts required by this element from /public/javascripts.",
"type": "array",
"items": {
"description": "A .js file located in /public/javascripts.",
"type": "string"
}
},
"nodeModulesStyles": {
"description": "The styles required by this element from /node_modules.",
"type": "array",
"items": {
"description": "A .css file located in /node_modules.",
"type": "string"
}
},
"nodeModulesScripts": {
"description": "The scripts required by this element from /node_modules.",
"type": "array",
"items": {
"description": "A .js file located in /node_modules.",
"type": "string"
}
},
"clientFilesCourseStyles": {
"description": "The styles required by this element from clientFilesCourse.",
"type": "array",
"items": {
"description": "A .css file located in clientFilesCourse.",
"type": "string"
}
},
"clientFilesCourseScripts": {
"description": "The styles required by this element from clientFilesCourse.",
"type": "array",
"items": {
"description": "A .js file located in clientFilesCourse.",
"type": "string"
}
},
"elementStyles": {
"description": "The styles required by this element from the element's directory.",
"type": "array",
"items": {
"description": "A .css file located in the element's directory.",
"type": "string"
}
},
"elementScripts": {
"description": "The scripts required by this element from the element's directory.",
"type": "array",
"items": {
"description": "A .js file located in the element's directory.",
"type": "string"
}
}
}
}
}
} | o79727 |
{
"properties": {
"category": {
"description": "The category of the news articles (e.g. business, sports, entertainment)",
"type": "string"
},
"country": {
"description": "The country of the news articles (e.g. US, GB, DE)",
"type": "string"
},
"keywords": {
"description": "The keywords to be used in the news search",
"items": {
"type": "string"
},
"type": "array"
},
"language": {
"description": "The language of the news articles (e.g. en, de, fr)",
"type": "string"
}
},
"required": [
"keywords"
],
"type": "object"
} | search_news_dc3048f7 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"id": "https://json.schemastore.org/traefik-v2.json",
"properties": {
"accessLog": {
"type": "object",
"properties": {
"filePath": {
"type": "string"
},
"format": {
"type": "string"
},
"filters": {
"type": "object",
"properties": {
"statusCodes": {
"type": "array",
"items": {
"type": "string"
}
},
"retryAttempts": {
"type": "boolean"
},
"minDuration": {
"type": "string"
}
}
},
"fields": {
"type": "object",
"properties": {
"defaultMode": {
"type": "string"
},
"names": {
"type": "object",
"patternProperties": {
"[a-zA-Z0-9-_]+": {
"type": "string"
}
}
},
"headers": {
"type": "object",
"properties": {
"defaultMode": {
"type": "string"
},
"names": {
"type": "object",
"patternProperties": {
"[a-zA-Z0-9-_]+": {
"type": "string"
}
}
}
}
}
}
},
"bufferingSize": {
"type": "integer"
}
},
"additionalProperties": false
},
"api": {
"type": "object",
"properties": {
"insecure": {
"type": "boolean"
},
"dashboard": {
"type": "boolean"
},
"debug": {
"type": "boolean"
}
},
"additionalProperties": false
},
"certificatesResolvers": {
"type": "object",
"patternProperties": {
"[a-zA-Z0-9-_]+": {
"type": "object",
"properties": {
"acme": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"caServer": {
"type": "string"
},
"certificatesDuration": {
"type": "integer"
},
"preferredChain": {
"type": "string"
},
"storage": {
"type": "string"
},
"keyType": {
"type": "string"
},
"eab": {
"type": "object",
"properties": {
"kid": {
"type": "string"
},
"hmacEncoded": {
"type": "string"
}
}
},
"dnsChallenge": {
"type": "object",
"properties": {
"provider": {
"type": "string"
},
"delayBeforeCheck": {
"type": "string"
},
"resolvers": {
"type": "array",
"items": {
"type": "string"
}
},
"disablePropagationCheck": {
"type": "boolean"
}
}
},
"httpChallenge": {
"type": "object",
"properties": {
"entryPoint": {
"type": "string"
}
}
},
"tlsChallenge": {
"type": "object"
}
}
}
},
"additionalProperties": false
}
}
},
"entryPoints": {
"type": "object",
"patternProperties": {
"[a-zA-Z0-9-_]+": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"transport": {
"type": "object",
"properties": {
"lifeCycle": {
"type": "object",
"properties": {
"requestAcceptGraceTimeout": {
"type": "string"
},
"graceTimeOut": {
"type": "string"
}
}
},
"respondingTimeouts": {
"type": "object",
"properties": {
"readTimeout": {
"type": "string"
},
"writeTimeout": {
"type": "string"
},
"idleTimeout": {
"type": "string"
}
}
}
}
},
"proxyProtocol": {
"type": "object",
"properties": {
"insecure": {
"type": "boolean"
},
"trustedIPs": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"forwardedHeaders": {
"type": "object",
"properties": {
"insecure": {
"type": "boolean"
},
"trustedIPs": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"http": {
"type": "object",
"properties": {
"redirections": {
"type": "object",
"properties": {
"entryPoint": {
"type": "object",
"properties": {
"to": {
"type": "string"
},
"scheme": {
"type": "string"
},
"permanent": {
"type": "boolean"
},
"priority": {
"type": "integer"
}
}
}
}
},
"middlewares": {
"type": "array",
"items": {
"type": "string"
}
},
"tls": {
"type": "object",
"properties": {
"options": {
"type": "string"
},
"certResolver": {
"type": "string"
},
"domains": {
"type": "array",
"items": {
"type": "object",
"properties": {
"main": {
"type": "string"
},
"sans": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
}
},
"http2": {
"type": "object",
"properties": {
"maxConcurrentStreams": {
"type": "integer"
}
}
},
"http3": {
"type": "object",
"properties": {
"advertisedPort": {
"type": "integer"
}
}
},
"udp": {
"type": "object",
"properties": {
"timeout": {
"type": "string"
}
}
}
},
"additionalProperties": false
}
}
},
"experimental": {
"type": "object",
"properties": {
"kubernetesGateway": {
"type": "boolean"
},
"http3": {
"type": "boolean"
},
"hub": {
"type": "boolean"
},
"plugins": {
"type": "object",
"patternProperties": {
"[a-zA-Z0-9-_]+": {
"type": "object",
"properties": {
"moduleName": {
"type": "string"
},
"version": {
"type": "string"
}
},
"additionalProperties": false
}
}
},
"localPlugins": {
"type": "object",
"patternProperties": {
"[a-zA-Z0-9-_]+": {
"type": "object",
"properties": {
"moduleName": {
"type": "string"
}
},
"additionalProperties": false
}
}
}
},
"additionalProperties": false
},
"global": {
"type": "object",
"properties": {
"checkNewVersion": {
"type": "boolean"
},
"sendAnonymousUsage": {
"type": "boolean"
}
},
"additionalProperties": false
},
"hostResolver": {
"type": "object",
"properties": {
"cnameFlattening": {
"type": "boolean"
},
"resolvConfig": {
"type": "string"
},
"resolvDepth": {
"type": "integer"
}
},
"additionalProperties": false
},
"hub": {
"type": "object",
"properties": {
"tls": {
"type": "object",
"properties": {
"insecure": {
"type": "boolean"
},
"ca": {
"type": "string"
},
"cert": {
"type": "string"
},
"key": {
"type": "string"
}
}
}
},
"additionalProperties": false
},
"log": {
"type": "object",
"properties": {
"level": {
"type": "string"
},
"filePath": {
"type": "string"
},
"format": {
"type": "string"
}
},
"additionalProperties": false
},
"metrics": {
"type": "object",
"properties": {
"prometheus": {
"type": "object",
"properties": {
"buckets": {
"type": "array",
"items": {
"type": "number"
}
},
"addEntryPointsLabels": {
"type": "boolean"
},
"addRoutersLabels": {
"type": "boolean"
},
"addServicesLabels": {
"type": "boolean"
},
"entryPoint": {
"type": "string"
},
"manualRouting": {
"type": "boolean"
}
},
"additionalProperties": false
},
"datadog": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"pushInterval": {
"type": "string"
},
"addEntryPointsLabels": {
"type": "boolean"
},
"addRoutersLabels": {
"type": "boolean"
},
"addServicesLabels": {
"type": "boolean"
},
"prefix": {
"type": "string"
}
},
"additionalProperties": false
},
"statsD": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"pushInterval": {
"type": "string"
},
"addEntryPointsLabels": {
"type": "boolean"
},
"addRoutersLabels": {
"type": "boolean"
},
"addServicesLabels": {
"type": "boolean"
},
"prefix": {
"type": "string"
}
},
"additionalProperties": false
},
"influxDB": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"protocol": {
"type": "string"
},
"pushInterval": {
"type": "string"
},
"database": {
"type": "string"
},
"retentionPolicy": {
"type": "string"
},
"username": {
"type": "string"
},
"password": {
"type": "string"
},
"addEntryPointsLabels": {
"type": "boolean"
},
"addRoutersLabels": {
"type": "boolean"
},
"addServicesLabels": {
"type": "boolean"
},
"additionalLabels": {
"type": "object"
}
},
"additionalProperties": false
},
"influxDB2": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"token": {
"type": "string"
},
"pushInterval": {
"type": "string"
},
"org": {
"type": "string"
},
"bucket": {
"type": "string"
},
"addEntryPointsLabels": {
"type": "boolean"
},
"addRoutersLabels": {
"type": "boolean"
},
"addServicesLabels": {
"type": "boolean"
},
"additionalLabels": {
"type": "object"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"pilot": {
"type": "object",
"properties": {
"token": {
"type": "string"
},
"dashboard": {
"type": "boolean"
}
},
"additionalProperties": false
},
"ping": {
"type": "object",
"properties": {
"entryPoint": {
"type": "string"
},
"manualRouting": {
"type": "boolean"
},
"terminatingStatusCode": {
"type": "integer"
}
},
"additionalProperties": false
},
"providers": {
"type": "object",
"properties": {
"providersThrottleDuration": {
"type": "string"
},
"docker": {
"type": "object",
"properties": {
"allowEmptyServices": {
"type": "boolean"
},
"constraints": {
"type": "string"
},
"defaultRule": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"exposedByDefault": {
"type": "boolean"
},
"httpClientTimeout": {
"type": "string"
},
"network": {
"type": "string"
},
"swarmMode": {
"type": "boolean"
},
"swarmModeRefreshSeconds": {
"type": "string"
},
"tls": {
"type": "object",
"properties": {
"ca": {
"type": "string"
},
"caOptional": {
"type": "boolean"
},
"cert": {
"type": "string"
},
"key": {
"type": "string"
},
"insecureSkipVerify": {
"type": "boolean"
}
},
"additionalProperties": false
},
"useBindPortIP": {
"type": "boolean"
},
"watch": {
"type": "boolean"
}
},
"additionalProperties": false
},
"file": {
"type": "object",
"properties": {
"directory": {
"type": "string"
},
"watch": {
"type": "boolean"
},
"filename": {
"type": "string"
},
"debugLogGeneratedTemplate": {
"type": "boolean"
}
},
"additionalProperties": false
},
"marathon": {
"type": "object",
"properties": {
"constraints": {
"type": "string"
},
"trace": {
"type": "boolean"
},
"watch": {
"type": "boolean"
},
"endpoint": {
"type": "string"
},
"defaultRule": {
"type": "string"
},
"exposedByDefault": {
"type": "boolean"
},
"dcosToken": {
"type": "string"
},
"tls": {
"type": "object",
"properties": {
"ca": {
"type": "string"
},
"caOptional": {
"type": "boolean"
},
"cert": {
"type": "string"
},
"key": {
"type": "string"
},
"insecureSkipVerify": {
"type": "boolean"
}
},
"additionalProperties": false
},
"dialerTimeout": {
"type": "string"
},
"responseHeaderTimeout": {
"type": "string"
},
"tlsHandshakeTimeout": {
"type": "string"
},
"keepAlive": {
"type": "string"
},
"forceTaskHostname": {
"type": "boolean"
},
"basic": {
"type": "object",
"properties": {
"httpBasicAuthUser": {
"type": "string"
},
"httpBasicPassword": {
"type": "string"
}
},
"additionalProperties": false
},
"respectReadinessChecks": {
"type": "boolean"
}
},
"additionalProperties": false
},
"kubernetesIngress": {
"type": "object",
"properties": {
"endpoint": {
"type": "string"
},
"token": {
"type": "string"
},
"certAuthFilePath": {
"type": "string"
},
"namespaces": {
"type": "array",
"items": {
"type": "string"
}
},
"labelSelector": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"throttleDuration": {
"type": "string"
},
"allowEmptyServices": {
"type": "boolean"
},
"allowExternalNameServices": {
"type": "boolean"
},
"ingressEndpoint": {
"type": "object",
"properties": {
"ip": {
"type": "string"
},
"hostname": {
"type": "string"
},
"publishedService": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"kubernetesCRD": {
"type": "object",
"properties": {
"endpoint": {
"type": "string"
},
"token": {
"type": "string"
},
"certAuthFilePath": {
"type": "string"
},
"namespaces": {
"type": "array",
"items": {
"type": "string"
}
},
"allowCrossNamespace": {
"type": "boolean"
},
"allowExternalNameServices": {
"type": "boolean"
},
"labelSelector": {
"type": "string"
},
"ingressClass": {
"type": "string"
},
"throttleDuration": {
"type": "string"
},
"allowEmptyServices": {
"type": "boolean"
}
},
"additionalProperties": false
},
"kubernetesGateway": {
"type": "object",
"properties": {
"endpoint": {
"type": "string"
},
"token": {
"type": "string"
},
"certAuthFilePath": {
"type": "string"
},
"namespaces": {
"type": "array",
"items": {
"type": "string"
}
},
"labelSelector": {
"type": "string"
},
"throttleDuration": {
"type": "string"
}
},
"additionalProperties": false
},
"rest": {
"type": "object",
"properties": {
"insecure": {
"type": "boolean"
}
},
"additionalProperties": false
},
"rancher": {
"type": "object",
"properties": {
"constraints": {
"type": "string"
},
"watch": {
"type": "boolean"
},
"defaultRule": {
"type": "string"
},
"exposedByDefault": {
"type": "boolean"
},
"enableServiceHealthFilter": {
"type": "boolean"
},
"refreshSeconds": {
"type": "integer"
},
"intervalPoll": {
"type": "boolean"
},
"prefix": {
"type": "string"
}
},
"additionalProperties": false
},
"consulCatalog": {
"type": "object",
"properties": {
"constraints": {
"type": "string"
},
"prefix": {
"type": "string"
},
"refreshInterval": {
"type": "string"
},
"requireConsistent": {
"type": "boolean"
},
"stale": {
"type": "boolean"
},
"cache": {
"type": "boolean"
},
"exposedByDefault": {
"type": "boolean"
},
"defaultRule": {
"type": "string"
},
"connectAware": {
"type": "boolean"
},
"connectByDefault": {
"type": "boolean"
},
"serviceName": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaces": {
"type": "array",
"items": {
"type": "string"
}
},
"watch": {
"type": "boolean"
},
"endpoint": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"scheme": {
"type": "string"
},
"datacenter": {
"type": "string"
},
"token": {
"type": "string"
},
"endpointWaitTime": {
"type": "string"
},
"tls": {
"type": "object",
"properties": {
"ca": {
"type": "string"
},
"caOptional": {
"type": "boolean"
},
"cert": {
"type": "string"
},
"key": {
"type": "string"
},
"insecureSkipVerify": {
"type": "boolean"
}
},
"additionalProperties": false
},
"httpAuth": {
"type": "object",
"properties": {
"username": {
"type": "string"
},
"password": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
}
},
"nomad": {
"type": "object",
"properties": {
"constraints": {
"type": "string"
},
"prefix": {
"type": "string"
},
"refreshInterval": {
"type": "string"
},
"stale": {
"type": "boolean"
},
"exposedByDefault": {
"type": "boolean"
},
"defaultRule": {
"type": "string"
},
"namespace": {
"type": "string"
},
"endpoint": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"region": {
"type": "string"
},
"token": {
"type": "string"
},
"endpointWaitTime": {
"type": "string"
},
"tls": {
"type": "object",
"properties": {
"ca": {
"type": "string"
},
"caOptional": {
"type": "boolean"
},
"cert": {
"type": "string"
},
"key": {
"type": "string"
},
"insecureSkipVerify": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"ecs": {
"type": "object",
"properties": {
"constraints": {
"type": "string"
},
"exposedByDefault": {
"type": "boolean"
},
"ecsAnywhere": {
"type": "boolean"
},
"refreshSeconds": {
"type": "integer"
},
"defaultRule": {
"type": "string"
},
"clusters": {
"type": "array",
"items": {
"type": "string"
}
},
"autoDiscoverClusters": {
"type": "boolean"
},
"region": {
"type": "string"
},
"accessKeyID": {
"type": "string"
},
"secretAccessKey": {
"type": "string"
}
},
"additionalProperties": false
},
"consul": {
"type": "object",
"properties": {
"rootKey": {
"type": "string"
},
"endpoints": {
"type": "array",
"items": {
"type": "string"
}
},
"token": {
"type": "string"
},
"namespace": {
"type": "string"
},
"namespaces": {
"type": "array",
"items": {
"type": "string"
}
},
"tls": {
"type": "object",
"properties": {
"ca": {
"type": "string"
},
"caOptional": {
"type": "boolean"
},
"cert": {
"type": "string"
},
"key": {
"type": "string"
},
"insecureSkipVerify": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"etcd": {
"type": "object",
"properties": {
"rootKey": {
"type": "string"
},
"endpoints": {
"type": "array",
"items": {
"type": "string"
}
},
"username": {
"type": "string"
},
"password": {
"type": "string"
},
"tls": {
"type": "object",
"properties": {
"ca": {
"type": "string"
},
"caOptional": {
"type": "boolean"
},
"cert": {
"type": "string"
},
"key": {
"type": "string"
},
"insecureSkipVerify": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"zooKeeper": {
"type": "object",
"properties": {
"rootKey": {
"type": "string"
},
"endpoints": {
"type": "array",
"items": {
"type": "string"
}
},
"username": {
"type": "string"
},
"password": {
"type": "string"
}
},
"additionalProperties": false
},
"redis": {
"type": "object",
"properties": {
"rootKey": {
"type": "string"
},
"endpoints": {
"type": "array",
"items": {
"type": "string"
}
},
"username": {
"type": "string"
},
"password": {
"type": "string"
},
"db": {
"type": "integer"
},
"tls": {
"type": "object",
"properties": {
"ca": {
"type": "string"
},
"caOptional": {
"type": "boolean"
},
"cert": {
"type": "string"
},
"key": {
"type": "string"
},
"insecureSkipVerify": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"http": {
"type": "object",
"properties": {
"endpoint": {
"type": "string"
},
"pollInterval": {
"type": "string"
},
"pollTimeout": {
"type": "string"
},
"tls": {
"type": "object",
"properties": {
"ca": {
"type": "string"
},
"caOptional": {
"type": "boolean"
},
"cert": {
"type": "string"
},
"key": {
"type": "string"
},
"insecureSkipVerify": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"plugin": {
"type": "object",
"patternProperties": {
"[a-zA-Z0-9-_]+": {
"type": "object"
}
}
}
}
},
"serversTransport": {
"type": "object",
"properties": {
"insecureSkipVerify": {
"type": "boolean"
},
"rootCAs": {
"type": "array",
"items": {
"type": "string"
}
},
"maxIdleConnsPerHost": {
"type": "integer"
},
"forwardingTimeouts": {
"type": "object",
"properties": {
"dialTimeout": {
"type": "string"
},
"responseHeaderTimeout": {
"type": "string"
},
"idleConnTimeout": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"tracing": {
"type": "object",
"properties": {
"serviceName": {
"type": "string"
},
"spanNameLimit": {
"type": "integer"
},
"jaeger": {
"type": "object",
"properties": {
"samplingServerURL": {
"type": "string"
},
"samplingType": {
"type": "string"
},
"samplingParam": {
"type": "integer"
},
"localAgentHostPort": {
"type": "string"
},
"gen128Bit": {
"type": "boolean"
},
"propagation": {
"type": "string"
},
"traceContextHeaderName": {
"type": "string"
},
"disableAttemptReconnecting": {
"type": "boolean"
},
"collector": {
"type": "object",
"properties": {
"endpoint": {
"type": "string"
},
"user": {
"type": "string"
},
"password": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"zipkin": {
"type": "object",
"properties": {
"httpEndpoint": {
"type": "string"
},
"sameSpan": {
"type": "boolean"
},
"id128Bit": {
"type": "boolean"
},
"sampleRate": {
"type": "integer"
}
},
"additionalProperties": false
},
"datadog": {
"type": "object",
"properties": {
"localAgentHostPort": {
"type": "string"
},
"globalTag": {
"type": "string"
},
"globalTags": {
"type": "object",
"description": "Sets a list of key:value tags on all spans.",
"patternProperties": {
"[a-zA-Z0-9-_]+": {
"type": "string"
}
}
},
"debug": {
"type": "boolean"
},
"prioritySampling": {
"type": "boolean"
},
"traceIDHeaderName": {
"type": "string"
},
"parentIDHeaderName": {
"type": "string"
},
"samplingPriorityHeaderName": {
"type": "string"
},
"bagagePrefixHeaderName": {
"type": "string"
}
},
"additionalProperties": false
},
"instana": {
"type": "object",
"properties": {
"localAgentHost": {
"type": "string"
},
"localAgentPort": {
"type": "integer"
},
"logLevel": {
"type": "string"
},
"enableAutoProfile": {
"type": "boolean"
}
},
"additionalProperties": false
},
"haystack": {
"type": "object",
"properties": {
"localAgentHost": {
"type": "string"
},
"localAgentPort": {
"type": "integer"
},
"globalTag": {
"type": "string"
},
"traceIDHeaderName": {
"type": "string"
},
"parentIDHeaderName": {
"type": "string"
},
"spanIDHeaderName": {
"type": "string"
},
"baggagePrefixHeaderName": {
"type": "string"
}
},
"additionalProperties": false
},
"elastic": {
"type": "object",
"properties": {
"serverURL": {
"type": "string"
},
"secretToken": {
"type": "string"
},
"serviceEnvironment": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
},
"type": "object"
}
| traefik-v2 |
{
"additionalProperties": false,
"description": "Schema for a Google Analytics enhanced e-commerce product entity",
"properties": {
"brand": {
"maxLength": 500,
"type": [
"string",
"null"
]
},
"category": {
"maxLength": 500,
"type": [
"string",
"null"
]
},
"couponCode": {
"maxLength": 500,
"type": [
"string",
"null"
]
},
"currencyCode": {
"maxLength": 10,
"type": [
"string",
"null"
]
},
"index": {
"maximum": 200,
"minimum": 1,
"type": "integer"
},
"name": {
"maxLength": 500,
"type": [
"string",
"null"
]
},
"position": {
"type": [
"integer",
"null"
]
},
"price": {
"multipleOf": 0.01,
"type": [
"number",
"null"
]
},
"quantity": {
"type": [
"integer",
"null"
]
},
"sku": {
"maxLength": 500,
"type": [
"string",
"null"
]
},
"variant": {
"maxLength": 500,
"type": [
"string",
"null"
]
}
},
"self": {
"format": "jsonschema",
"name": "product",
"vendor": "com.google.analytics.measurement-protocol",
"version": "1-0-0"
},
"type": "object"
} | sp_50_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$",
"type": "string"
},
"analytics_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations."
},
"body_html_and_govspeak": {
"anyOf": [
{
"$ref": "#/definitions/multiple_content_types"
}
],
"description": "The main content provided as HTML with the govspeak markdown it's rendered from"
},
"change_history": {
"items": {
"additionalProperties": false,
"properties": {
"note": {
"description": "A summary of the change",
"type": "string"
},
"public_timestamp": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"public_timestamp",
"note"
],
"type": "object"
},
"type": "array"
},
"choose_sign_in": {
"additionalProperties": false,
"properties": {
"description": {
"$ref": "#/definitions/body_html_and_govspeak"
},
"options": {
"additionalProperties": false,
"items": {
"properties": {
"hint_text": {
"type": "string"
},
"text": {
"type": "string"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"type": "object"
},
"required": [
"text",
"url"
],
"type": "array"
},
"slug": {
"_format": "uri",
"type": "string"
},
"title": {
"type": "string"
},
"tracking_code": {
"type": "string"
},
"tracking_domain": {
"type": "string"
},
"tracking_name": {
"type": "string"
}
},
"required": [
"title",
"slug",
"options"
],
"type": "object"
},
"create_new_account": {
"additionalProperties": false,
"properties": {
"body": {
"$ref": "#/definitions/body_html_and_govspeak"
},
"slug": {
"_format": "uri",
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"slug",
"body"
],
"type": "object"
},
"description": {
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"additionalProperties": false,
"properties": {
"change_history": {
"$ref": "#/definitions/change_history"
},
"choose_sign_in": {
"$ref": "#/definitions/choose_sign_in"
},
"create_new_account": {
"$ref": "#/definitions/create_new_account"
}
},
"required": [
"choose_sign_in"
],
"type": "object"
},
"first_published_at": {
"_format": "date-time",
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"frontend_links": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"frontend_links_with_base_path": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"govuk_request_id": {
"type": [
"string",
"null"
]
},
"guid": {
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$",
"type": "string"
},
"guid_list": {
"items": {
"$ref": "#/definitions/guid"
},
"type": "array",
"_uniqueItems": true
},
"locale": {
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
],
"type": "string"
},
"multiple_content_types": {
"items": {
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"content_type": {
"type": "string"
}
},
"required": [
"content_type",
"content"
],
"type": "object"
},
"type": "array"
},
"payload_version": {
"description": "Counter to indicate when the payload was generated",
"type": "integer"
},
"public_updated_at": {
"_format": "date-time",
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"publishing_app_name": {
"description": "The application that published this item.",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
],
"type": "string"
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"rendering_app": {
"description": "The application that renders this item.",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
],
"type": "string"
},
"route": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"type": {
"enum": [
"prefix",
"exact"
]
}
},
"required": [
"path",
"type"
],
"type": "object"
},
"routes": {
"items": {
"$ref": "#/definitions/route"
},
"minItems": 1,
"type": "array"
},
"title": {
"type": "string"
},
"update_type": {
"enum": [
"major",
"minor",
"republish"
]
},
"withdrawn_notice": {
"additionalProperties": false,
"properties": {
"explanation": {
"type": "string"
},
"withdrawn_at": {
"format": "date-time"
}
},
"type": "object"
}
},
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"content_purpose_document_supertype": {
"description": "DEPRECATED. Use `content_purpose_subgroup`.",
"type": "string"
},
"content_purpose_subgroup": {
"description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.",
"type": "string"
},
"content_purpose_supergroup": {
"description": "Document supergroup grouping documents by a purpose",
"type": "string"
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"enum": [
"service_sign_in"
],
"type": "string"
},
"email_document_supertype": {
"description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions",
"type": "string"
},
"expanded_links": {
"additionalProperties": false,
"properties": {
"available_translations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"child_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"children": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"document_collections": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"facet_groups": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers links from content back to finders the content is surfaced on"
},
"lead_organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"level_one_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"mainstream_browse_pages": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The user needs this piece of content meets."
},
"ministers": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The parent content item.",
"maxItems": 1
},
"part_of_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policies": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policy_areas": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"related_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"role_appointments": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"secondary_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Prototype-stage taxonomy label for this content item"
},
"topic_taxonomy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"topics": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
}
},
"type": "object"
},
"first_published_at": {
"$ref": "#/definitions/first_published_at"
},
"government_document_supertype": {
"description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions",
"type": "string"
},
"govuk_request_id": {
"$ref": "#/definitions/govuk_request_id"
},
"links": {
"additionalProperties": false,
"properties": {
"facet_groups": {
"$ref": "#/definitions/guid_list",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/guid_list",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/guid_list",
"description": "Powers links from content back to finders the content is surfaced on"
},
"lead_organisations": {
"$ref": "#/definitions/guid_list",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"mainstream_browse_pages": {
"$ref": "#/definitions/guid_list",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/guid_list",
"description": "The user needs this piece of content meets."
},
"ordered_related_items": {
"$ref": "#/definitions/guid_list",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/guid_list",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/guid_list",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/guid_list",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/guid_list",
"description": "The parent content item.",
"maxItems": 1
},
"policy_areas": {
"$ref": "#/definitions/guid_list",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/guid_list",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/guid_list",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/guid_list",
"description": "Prototype-stage taxonomy label for this content item"
},
"topics": {
"$ref": "#/definitions/guid_list",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"navigation_document_supertype": {
"description": "Document type grouping powering the new taxonomy-based navigation pages",
"type": "string"
},
"need_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"payload_version": {
"$ref": "#/definitions/payload_version"
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"enum": [
"alpha",
"beta",
"live"
],
"type": "string"
},
"public_updated_at": {
"$ref": "#/definitions/public_updated_at"
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"publishing_request_id": {
"$ref": "#/definitions/publishing_request_id"
},
"redirects": {
"additionalItems": false,
"items": {},
"type": "array"
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"routes": {
"$ref": "#/definitions/routes"
},
"schema_name": {
"enum": [
"service_sign_in"
],
"type": "string"
},
"search_user_need_document_supertype": {
"description": "Document supertype grouping core and government documents",
"type": "string"
},
"title": {
"$ref": "#/definitions/title"
},
"update_type": {
"$ref": "#/definitions/update_type"
},
"user_journey_document_supertype": {
"description": "Document type grouping powering analytics of user journeys",
"type": "string"
},
"user_need_document_supertype": {
"description": "DEPRECATED. Use `content_purpose_document_supertype`.",
"type": "string"
},
"withdrawn_notice": {
"$ref": "#/definitions/withdrawn_notice"
}
},
"required": [
"analytics_identifier",
"base_path",
"content_id",
"description",
"details",
"document_type",
"email_document_supertype",
"expanded_links",
"first_published_at",
"government_document_supertype",
"govuk_request_id",
"links",
"locale",
"navigation_document_supertype",
"payload_version",
"phase",
"public_updated_at",
"publishing_app",
"redirects",
"rendering_app",
"routes",
"schema_name",
"title",
"update_type",
"user_journey_document_supertype"
],
"type": "object"
} | o21364 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"parameter": {
"properties": {
"metadata": {
"description": "Client specific parameter metadata",
"type": "object"
},
"value": {
"description": "Input value to the template",
"type": [
"string",
"boolean",
"integer",
"array",
"object",
"null"
]
}
},
"required": [
"value"
],
"type": "object"
}
},
"description": "An Azure deployment parameter file",
"id": "https://schema.management.azure.com/schemas/2014-04-01-preview/deploymentParameters.json#",
"properties": {
"$schema": {
"type": "string"
},
"contentVersion": {
"description": "A 4 number format for the version number of this parameter file. For example, 1.0.0.0",
"pattern": "(^[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+$)",
"type": "string"
},
"parameters": {
"additionalProperties": {
"$ref": "#/definitions/parameter"
},
"description": "Collection of parameters to pass into a template",
"type": "object"
}
},
"required": [
"$schema",
"contentVersion",
"parameters"
],
"title": "Parameters",
"type": "object"
} | o1529 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Kubient Adapter Params",
"description": "A schema which validates params accepted by the Kubient adapter",
"type": "object",
"properties": {
"zoneid": {
"type": "string",
"description": "Zone ID identifies Kubient placement ID.",
"minLength": 1
}
}
} | o68315 |
{
"additionalProperties": false,
"description": "Schema for an IP anonymization enrichment",
"properties": {
"enabled": {
"type": "boolean"
},
"name": {
"type": "string"
},
"parameters": {
"additionalProperties": false,
"properties": {
"anonOctets": {
"description": "Number of IPv4 octets to anonymize",
"maximum": 4,
"minimum": 1,
"type": "number"
},
"anonSegments": {
"description": "Number of IPv6 segments to anonymize",
"maximum": 8,
"minimum": 1,
"type": "integer"
}
},
"required": [
"anonOctets"
],
"type": "object"
},
"vendor": {
"type": "string"
}
},
"required": [
"name",
"vendor",
"enabled",
"parameters"
],
"self": {
"format": "jsonschema",
"name": "anon_ip",
"vendor": "com.snowplowanalytics.snowplow",
"version": "1-0-1"
},
"type": "object"
} | sp_255_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "flutter.yaml",
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"uses-material-design": {
"type": "boolean"
},
"assets": {
"type": "array",
"items": {
"type": "string"
}
},
"services": {
"type": "array",
"items": {
"type": "string"
}
},
"fonts": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"family": {
"type": "string"
},
"fonts": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"asset": {
"type": "string"
},
"weight": {
"type": "integer"
},
"style": {
"enum": [
"normal",
"italic"
]
}
}
}
}
}
}
}
}
} | o19155 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Schema for Interra site config object",
"properties": {
"description": {
"description": "Description of the site",
"title": "Description",
"type": "string"
},
"devdUrl": {
"_format": "uri",
"description": "A URL for the development instance. In most cases use http://localhost:3000",
"title": "Development URL",
"type": "string"
},
"fontConfig": {
"Title": "Font Config",
"description": "Configuration object for fonts",
"type": "object"
},
"front-page-icon-collection": {
"Title": "Front page icon collection",
"description": "The collection to be used for front page icons",
"pattern": "^[a-z]*$",
"type": "string"
},
"front-page-icons": {
"Title": "Front page icons",
"description": "The icons to be used for front page icons",
"type": "array"
},
"identifier": {
"description": "Unique ID of the site",
"pattern": "^[a-z0-9-]*$",
"title": "Identifier",
"type": "string"
},
"name": {
"description": "The name of the site",
"title": "Name",
"type": "string"
},
"private": {
"description": "Private settings that should not be exported publicly with the rest of the config. Used for aws or other credentials.",
"properties": {
"aws": {
"description": "Object to hold AWS settings such as secret key and access id",
"properties": {
"accessKeyId": {
"type": "string"
},
"es": {
"properties": {
"endpoint": {
"_format": "uri",
"description": "The endpoint used to push to docs to. Can be the same as the public search endpoint though would recommend using API Gateway.",
"title": "Endpoint",
"type": "string"
},
"index": {
"description": "Index to push to",
"title": "Index",
"type": "string"
}
},
"type": "object"
},
"region": {
"type": "string"
},
"secretAccessKey": {
"type": "string"
}
},
"title": "AWS settings",
"type": "object"
}
},
"title": "Private settings",
"type": "object"
},
"prodUrl": {
"_format": "uri",
"description": "A URL for the production instance.",
"title": "Production URL",
"type": "string"
},
"schema": {
"description": "The schema of the site",
"enum": [
"pod-full",
"pod",
"test-schema"
],
"title": "Schema",
"type": "string"
},
"search": {
"description": "Search settings",
"properties": {
"endpoint": {
"_format": "uri",
"description": "The endpoint used for the search. For use with Algolia and ElasticSearch",
"title": "Endpoint",
"type": "string"
},
"fields": {
"descprition": "List of fields to include in the search index. Only these fields are part of the search.",
"title": "Fields",
"type": "array"
},
"type": {
"descprition": "The type of search the site should use.",
"enum": [
"simpleSearch",
"elasticSearch",
"elasticLunr"
],
"title": "Search backend",
"type": "string"
}
},
"required": [
"type",
"fields"
],
"title": "Search",
"type": "object"
},
"testUrl": {
"_format": "uri",
"description": "A URL for the test instance.",
"title": "Test URL",
"type": "string"
}
},
"required": [
"name",
"schema",
"identifier",
"search",
"prodUrl",
"devUrl"
],
"title": "Interra Catalog Site Config",
"type": "object"
} | o47976 |
{
"properties": {
"builtin": {
"enum": [
"MODIFIABLE",
"DELETABLE",
"IMMUTABLE",
"PARTITION_ALL"
],
"readonly": true,
"type": "object"
},
"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"
},
"stateupdate": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
}
},
"title": "csparameter",
"type": "object"
} | o30360 |
{
"$defs": {},
"$id": "https://json.schemastore.org/clang-format.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": {},
"description": "The .clang-format file is a YAML file defining formatting styles used by clang-format.\r\r see https://clang.llvm.org/docs/ClangFormatStyleOptions.html",
"patternProperties": {
"^x-": {
"$comment": "yaml marker for multiple documents in one single yaml file"
}
},
"properties": {
"BasedOnStyle": {
"$comment": "clang-format ignores cases. For the sake of consistency, use one of following enums",
"description": "The style used for all options not specifically set in the configuration.",
"type": "string",
"enum": [
"Chromium",
"Google",
"LLVM",
"Mozilla",
"WebKit",
"Microsoft",
"GNU",
"InheritParentConfig",
"chromium",
"google",
"llvm",
"mozilla",
"webkit",
"microsoft",
"gnu",
"inheritparentconfig"
]
},
"AccessModifierOffset": {
"description": "clang-format 3.3\r\r The extra indent or outdent of access modifiers, e.g. public:.",
"type": "integer"
},
"AlignAfterOpenBracket": {
"description": "clang-format 3.8\r\r This applies to round brackets (parentheses), angle brackets and square brackets.",
"type": "string",
"enum": ["Align", "DontAlign", "AlwaysBreak", "BlockIndent"]
},
"AlignArrayOfStructures": {
"description": "clang-format 13\r\r if not None, when using initialization for an array of structs aligns the fields into columns.\r\r NOTE: In clang-format 15 this option only applied to arrays with equal number of columns per row.",
"type": "string",
"enum": ["None", "Left", "Right"]
},
"AlignConsecutiveMacros": {
"oneOf": [
{
"description": "clang-format 9\r\r Style of aligning consecutive macros.",
"type": "string",
"enum": [
"None",
"Consecutive",
"AcrossEmptyLines",
"AcrossComments",
"AcrossEmptyLinesAndComments"
]
},
{
"description": "clang-format 15\r\r Alignment options.",
"type": "object",
"properties": {
"Enabled": {
"description": "Whether aligning is enabled.",
"type": "boolean"
},
"AcrossEmptyLines": {
"description": "Whether to align across empty lines.",
"type": "boolean"
},
"AcrossComments": {
"description": "Whether to align across comments.",
"type": "boolean"
}
}
}
]
},
"AlignConsecutiveAssignments": {
"oneOf": [
{
"description": "clang-format 3.8\r\r Style of aligning consecutive assignments.",
"type": "string",
"enum": [
"None",
"Consecutive",
"AcrossEmptyLines",
"AcrossComments",
"AcrossEmptyLinesAndComments"
]
},
{
"description": "clang-format 15\r\r Alignment options.",
"type": "object",
"properties": {
"Enabled": {
"description": "Whether aligning is enabled.",
"type": "boolean"
},
"AcrossEmptyLines": {
"description": "Whether to align across empty lines.",
"type": "boolean"
},
"AcrossComments": {
"description": "Whether to align across comments.",
"type": "boolean"
},
"AlignCompound": {
"description": "Whether compound assignments like += are aligned along with =.",
"type": "boolean"
},
"PadOperators": {
"description": "Whether short assignment operators are left-padded to the same length as long ones in order to put all assignment operators to the right of the left hand side.",
"type": "boolean"
}
}
}
]
},
"AlignConsecutiveBitFields": {
"oneOf": [
{
"description": "clang-format 11\r\r Style of aligning consecutive bit fields.",
"type": "string",
"enum": [
"None",
"Consecutive",
"AcrossEmptyLines",
"AcrossComments",
"AcrossEmptyLinesAndComments"
]
},
{
"description": "clang-format 15\r\r Alignment options.",
"type": "object",
"properties": {
"Enabled": {
"description": "Whether aligning is enabled.",
"type": "boolean"
},
"AcrossEmptyLines": {
"description": "Whether to align across empty lines.",
"type": "boolean"
},
"AcrossComments": {
"description": "Whether to align across comments.",
"type": "boolean"
}
}
}
]
},
"AlignConsecutiveDeclarations": {
"oneOf": [
{
"description": "clang-format 3.8\r\r Style of aligning consecutive declarations.",
"type": "string",
"enum": [
"None",
"Consecutive",
"AcrossEmptyLines",
"AcrossComments",
"AcrossEmptyLinesAndComments"
]
},
{
"description": "clang-format 15\r\r Alignment options.",
"type": "object",
"properties": {
"Enabled": {
"description": "Whether aligning is enabled.",
"type": "boolean"
},
"AcrossEmptyLines": {
"description": "Whether to align across empty lines.",
"type": "boolean"
},
"AcrossComments": {
"description": "Whether to align across comments.",
"type": "boolean"
}
}
}
]
},
"AlignEscapedNewlines": {
"description": "clang-format 5\r\r Options for aligning backslashes in escaped newlines.",
"type": "string",
"enum": ["Left", "Right", "DontAlign"]
},
"AlignOperands": {
"description": "clang-format 3.5\r\r If true, horizontally align operands of binary and ternary expressions.",
"type": "string",
"enum": ["Align", "DontAlign", "AlignAfterOperator"]
},
"AlignTrailingComments": {
"oneOf": [
{
"description": "clang-format 3.7\r\r Control of trailing comments.\r\r NOTE: In clang-format 16 this option is not a bool but can be set to the options. Conventional bool options still can be parsed as before.",
"type": "boolean"
},
{
"description": "clang-format 16\r\r Alignment options.",
"type": "object",
"properties": {
"Kind": {
"description": "Specifies the way to align trailing comments.",
"type": "string",
"enum": ["Leave", "Always", "Never"]
},
"OverEmptyLines": {
"description": "How many empty lines to apply alignment.",
"type": "integer",
"minimum": 0
}
}
}
]
},
"AllowAllArgumentsOnNextLine": {
"description": "clang-format 9\r\r If a function call or braced initializer list doesn't fit on a line, allow putting all arguments onto the next line, even if BinPackArguments is false.",
"type": "boolean"
},
"AllowAllConstructorInitializersOnNextLine": {
"description": "clang-format 9\r\r This option is deprecated in clang-format 15. See NextLine of PackConstructorInitializers.\r\r If a constructor definition with a member initializer list doesn't fit on a single line, allow putting all member initializers onto the next line, if `ConstructorInitializerAllOnOneLineOrOnePerLine` is true. Note that this parameter has no effect if `ConstructorInitializerAllOnOneLineOrOnePerLine` is false.",
"type": "boolean"
},
"AllowAllParametersOfDeclarationOnNextLine": {
"description": "clang-format 3.3\r\r If the function declaration doesn't fit on a line, allow putting all parameters of a function declaration onto the next line even if BinPackParameters is false.",
"type": "boolean"
},
"AllowShortEnumsOnASingleLine": {
"description": "clang-format 11\r\r Allow short enums on a single line.",
"type": "boolean"
},
"AllowShortBlocksOnASingleLine": {
"description": "clang-format 3.5\r\r Dependent on the value, while (true) { continue; } can be put on a single line.",
"type": "string",
"enum": ["Never", "Empty", "Always"]
},
"AllowShortCaseLabelsOnASingleLine": {
"description": "clang-format 3.6\r\r If true, short case labels will be contracted to a single line.",
"type": "boolean"
},
"AllowShortFunctionsOnASingleLine": {
"description": "clang-format 3.5\r\r Dependent on the value, int f() { return 0; } can be put on a single line.",
"type": "string",
"enum": ["All", "None", "Inline", "Empty", "InlineOnly"]
},
"AllowShortLambdasOnASingleLine": {
"description": "clang-format 9\r\r Dependent on the value, auto lambda []() { return 0; } can be put on a single line.",
"type": "string",
"enum": ["None", "Empty", "Inline", "All"]
},
"AllowShortIfStatementsOnASingleLine": {
"description": "clang-format 9\r\r If true, if (a) return; can be put on a single line.",
"type": "string",
"enum": ["AllIfsAndElse", "Never", "WithoutElse", "OnlyFirstIf"]
},
"AllowShortLoopsOnASingleLine": {
"description": "clang-format 3.7\r\r If true, while (true) continue; can be put on a single line.",
"type": "boolean"
},
"AlwaysBreakAfterDefinitionReturnType": {
"description": "clang-format 3.7\r\r This option is deprecated and is retained for backwards compatibility.\r\r The function definition return type breaking style to use. This option is deprecated and is retained for backwards compatibility",
"type": "string",
"enum": ["None", "All", "TopLevel"]
},
"AlwaysBreakAfterReturnType": {
"description": "clang-format 3.8\r\r The function declaration return type breaking style to use.",
"type": "string",
"enum": [
"None",
"All",
"TopLevel",
"AllDefinitions",
"TopLevelDefinitions"
]
},
"AlwaysBreakBeforeMultilineStrings": {
"description": "clang-format 3.4\r\r If true, always break before multiline string literals.",
"type": "boolean"
},
"AlwaysBreakTemplateDeclarations": {
"description": "clang-format 7\r\r The template declaration breaking style to use.",
"type": "string",
"enum": ["Yes", "No", "MultiLine"]
},
"AttributeMacros": {
"description": "clang-format 12\r\r A vector of strings that should be interpreted as attributes/qualifiers instead of identifiers. This can be useful for language extensions or static analyzer annotations.",
"type": "array",
"items": {
"type": "string",
"examples": ["__capability", "__output", "__ununsed"]
}
},
"BinPackArguments": {
"description": "clang-format 3.7\r\r If false, a function call's arguments will either be all on the same line or will have one line each.",
"type": "boolean"
},
"BinPackParameters": {
"description": "clang-format 3.7\r\r If false, a function declaration's or function definition's parameters will either all be on the same line or will have one line each.",
"type": "boolean"
},
"BitFieldColonSpacing": {
"description": "clang-format 12\r\r The BitFieldColonSpacingStyle to use for bitfields.",
"type": "string",
"enum": ["Both", "None", "Before", "After"]
},
"BraceWrapping": {
"description": "clang-format 3.8\r\r Control of individual brace wrapping cases.If BreakBeforeBraces is set to BS_Custom, use this to specify how each individual brace case should be handled. Otherwise, this is ignored.",
"type": "object",
"properties": {
"AfterCaseLabel": {
"description": "Wrap case labels.",
"type": "boolean"
},
"AfterClass": {
"description": "Wrap class definitions.",
"type": "boolean"
},
"AfterControlStatement": {
"description": "Wrap control statements (if/for/while/switch/...).",
"type": "string",
"enum": ["Never", "MultiLine", "Always"]
},
"AfterEnum": {
"description": "Wrap enum definitions.",
"type": "boolean"
},
"AfterFunction": {
"description": "Wrap function definitions.",
"type": "boolean"
},
"AfterNamespace": {
"description": "Wrap namespace definitions.",
"type": "boolean"
},
"AfterObjCDeclaration": {
"description": "Wrap ObjC definitions (interfaces, implementations…). @autoreleasepool and @synchronized blocks are wrapped according to AfterControlStatement flag.",
"type": "boolean"
},
"AfterStruct": {
"description": "Wrap struct definitions.",
"type": "boolean"
},
"AfterUnion": {
"description": "Wrap union definitions.",
"type": "boolean"
},
"AfterExternBlock": {
"description": "Wrap extern blocks.",
"type": "boolean"
},
"BeforeCatch": {
"description": "Wrap before catch.",
"type": "boolean"
},
"BeforeElse": {
"description": "Wrap before else.",
"type": "boolean"
},
"BeforeLambdaBody": {
"description": "Wrap lambda block.",
"type": "boolean"
},
"BeforeWhile": {
"description": "Wrap before while.",
"type": "boolean"
},
"IndentBraces": {
"description": "Indent the wrapped braces themselves.",
"type": "boolean"
},
"SplitEmptyFunction": {
"description": "If false, empty function body can be put on a single line. This option is used only if the opening brace of the function has already been wrapped, i.e. the AfterFunction brace wrapping mode is set, and the function could/should not be put on a single line (as per AllowShortFunctionsOnASingleLine and constructor formatting options).",
"type": "boolean"
},
"SplitEmptyRecord": {
"description": "If false, empty record (e.g. class, struct or union) body can be put on a single line. This option is used only if the opening brace of the record has already been wrapped, i.e. the AfterClass (for classes) brace wrapping mode is set.",
"type": "boolean"
},
"SplitEmptyNamespace": {
"description": "If false, empty namespace body can be put on a single line. This option is used only if the opening brace of the namespace has already been wrapped, i.e. the AfterNamespace brace wrapping mode is set.",
"type": "boolean"
}
}
},
"BreakAfterAttributes": {
"description": "clang-format 16\r\r Break after a group of C++11 attributes before a function declaration/definition name.",
"type": "string",
"enum": ["Always", "Leave", "Never"]
},
"BreakAfterJavaFieldAnnotations": {
"description": "clang-format 3.8\r\r Break after each annotation on a field in Java files.",
"type": "boolean"
},
"BreakArrays": {
"description": "clang-format 16\r\r If true, clang-format will always break after a Json array [ otherwise it will scan until the closing ] to determine if it should add newlines between elements (prettier compatible).",
"type": "boolean"
},
"BreakBeforeInlineASMColon": {
"description": "clang-format 16\r\r The inline ASM colon style to use..",
"type": "string",
"enum": ["Never", "OnlyMultiline", "Always"]
},
"BreakBeforeBinaryOperators": {
"description": "clang-format 3.6\r\r The way to wrap binary operators.",
"type": "string",
"enum": ["None", "NonAssignment", "All"]
},
"BreakBeforeBraces": {
"description": "clang-format 3.7\r\r The brace breaking style to use.",
"type": "string",
"enum": [
"Attach",
"Linux",
"Mozilla",
"Stroustrup",
"Allman",
"Whitesmiths",
"GNU",
"WebKit",
"Custom"
]
},
"BreakBeforeConceptDeclarations": {
"oneOf": [
{
"type": "boolean"
},
{
"description": "clang-format 12\r\r The concept declaration style to use.",
"type": "string",
"enum": ["Never", "Allowed", "Always"]
}
]
},
"BreakBeforeInheritanceComma": {
"description": "clnag-format 5\r\r If true, in the class inheritance expression clang-format will break before : and , if there is multiple inheritance.",
"type": "boolean"
},
"BreakBeforeTernaryOperators": {
"description": "clang-format 3.7\r\r If true, ternary operators will be placed after line breaks.",
"type": "boolean"
},
"BreakConstructorInitializers": {
"description": "clang-format 5\r\r The constructor initializers style to use.",
"type": "string",
"enum": ["BeforeColon", "BeforeComma", "AfterColon"]
},
"BreakInheritanceList": {
"description": "clang-format 7\r\r The inheritance list style to use.",
"type": "string",
"enum": ["BeforeColon", "BeforeComma", "AfterColon", "AfterComma"]
},
"BreakStringLiterals": {
"description": "clang-format 3.9\r\r Allow breaking string literals when formatting.",
"type": "boolean"
},
"BreakConstructorInitializersBeforeComma": {
"description": "clang-format 3.8\r\r Always break constructor initializers before commas and align the commas with the colon.",
"type": "boolean"
},
"ColumnLimit": {
"description": "clang-format 3.7\r\r The column limit.",
"type": "integer",
"minimum": 0
},
"CommentPragmas": {
"description": "clang-format 3.7\r\r A regular expression that describes comments with special meaning, which should not be split into lines or otherwise changed.",
"type": "string"
},
"CompactNamespaces": {
"description": "clang-format 5\r\r If true, consecutive namespace declarations will be on the same line. If false, each namespace is declared on a new line.",
"type": "boolean"
},
"ConstructorInitializerAllOnOneLineOrOnePerLine": {
"description": "clang-format 3.7\r\r This option is deprecated. See CurrentLine of PackConstructorInitializers.",
"type": "boolean"
},
"ConstructorInitializerIndentWidth": {
"description": "clang-format 3.7\r\r The number of characters to use for indentation of constructor initializer lists as well as inheritance lists.",
"type": "integer",
"minimum": 0
},
"ContinuationIndentWidth": {
"description": "clang-format 3.7\r\r Indent width for line continuations.",
"type": "integer",
"minimum": 0
},
"Cpp11BracedListStyle": {
"description": "clang-format 3.4\r\r If true, format braced lists as best suited for C++11 braced lists.",
"type": "boolean"
},
"DeriveLineEnding": {
"description": "clang-format 10\r\r Analyze the formatted file for the most used line ending (\r\n or \n). UseCRLF is only used as a fallback if none can be derived.\r\r This option is deprecated in clang-format 16. See DeriveLF and DeriveCRLF of LineEnding.",
"type": "boolean"
},
"DerivePointerAlignment": {
"description": "clang-format 3.7\r\r If true, analyze the formatted file for the most common alignment of & and *. Pointer and reference alignment styles are going to be updated according to the preferences found in the file. PointerAlignment is then used only as fallback.",
"type": "boolean"
},
"DisableFormat": {
"description": "clang-format 3.7\r\r Disables formatting completely.",
"type": "boolean"
},
"EmptyLineAfterAccessModifier": {
"description": "clang-format 13\r\r Defines when to put an empty line after access modifiers. EmptyLineBeforeAccessModifier configuration handles the number of empty lines between two access modifiers.",
"type": "string",
"enum": ["Never", "Leave", "Always"]
},
"EmptyLineBeforeAccessModifier": {
"description": "clang-format 12\r\r Defines in which cases to put empty line before access modifiers.",
"type": "string",
"enum": ["LogicalBlock", "Never", "Leave", "Always"]
},
"ExperimentalAutoDetectBinPacking": {
"description": "clang-format 3.7\r\r If true, clang-format detects whether function calls and definitions are formatted with one parameter per line.",
"type": "boolean"
},
"FixNamespaceComments": {
"description": "clang-format 5\r\r If true, clang-format adds missing namespace end comments for short namespaces and fixes invalid existing ones. This doesn't affect short namespaces, which are controlled by \"ShortNamespaceLines\".",
"type": "boolean"
},
"ForEachMacros": {
"description": "clang-format 3.7\r\r A vector of macros that should be interpreted as foreach loops instead of as function calls.",
"type": "array",
"items": {
"type": "string",
"examples": ["foreach", "Q_FOREACH", "BOOST_FOREACH"]
}
},
"IfMacros": {
"description": "clang-format 13\r\r A vector of macros that should be interpreted as conditionals instead of as function calls.",
"type": "array",
"items": {
"type": "string",
"examples": ["KJ_IF_MAYBE"]
}
},
"IncludeBlocks": {
"description": "clang-format 7\r\r Dependent on the value, multiple #include blocks can be sorted as one and divided based on category.",
"type": "string",
"enum": ["Regroup", "Preserve", "Merge"]
},
"IncludeCategories": {
"description": "clang-format 7\r\r Regular expressions denoting the different #include categories used for ordering #includes. If none of the regular expressions match, INT_MAX is assigned as category.The main header for a source file automatically gets category 0. so that it is generally kept at the beginning of the #includes (https://llvm.org/docs/CodingStandards.html#include-style). However, you can also assign negative priorities if you have certain headers that always need to be first. \r There is a third and optional field SortPriority which can used while IncludeBlocks = IBS_Regroup to define the priority in which #includes should be ordered. The value of Priority defines the order of #include blocks and also allows the grouping of #includes of different priority. SortPriority is set to the value of Priority as default if it is not assigned.",
"type": "array",
"items": {
"type": "object",
"properties": {
"Regex": {
"type": "string"
},
"Priority": {
"type": "integer",
"minimum": 0
},
"SortPriority": {
"type": "integer",
"minimum": 0
},
"CaseSensitive": {
"type": "boolean"
}
},
"required": ["Regex", "Priority"]
}
},
"IncludeIsMainRegex": {
"description": "clang-format 7\r\r Specify a regular expression of suffixes that are allowed in the file-to-main-include mapping.\rWhen guessing whether a #include is the \"main\" include (to assign category 0, see above), use this regex of allowed suffixes to the header stem. A partial match is done, so that: - \"\" means \"arbitrary suffix\" - \"$\" means \"no suffix\"\rFor example, if configured to \"(_test)?$\", then a header a.h would be seen as the \"main\" include in both a.cc and a_test.cc.",
"type": "string"
},
"IncludeIsMainSourceRegex": {
"description": "clang-format 7\r\r Specify a regular expression for files being formatted that are allowed to be considered \"main\" in the file-to-main-include mapping.\rBy default, clang-format considers files as \"main\" only when they end with: .c, .cc, .cpp, .c++, .cxx, .m or .mm extensions. For these files a guessing of \"main\" include takes place (to assign category 0, see above). This config option allows for additional suffixes and extensions for files to be considered as \"main\".\rBy default, clang-format considers files as \"main\" only when they end with: .c, .cc, .cpp, .c++, .cxx, .m or .mm extensions. For these files a guessing of \"main\" include takes place (to assign category 0, see above). This config option allows for additional suffixes and extensions for files to be considered as \"main\". ",
"type": "string"
},
"IndentAccessModifiers": {
"description": "clang-format 13\r\r Specify whether access modifiers should have their own indentation level.\rWhen false, access modifiers are indented (or outdented) relative to the record members, respecting the AccessModifierOffset. Record members are indented one level below the record. When true, access modifiers get their own indentation level. As a consequence, record members are always indented 2 levels below the record, regardless of the access modifier presence. Value of the AccessModifierOffset is ignored.",
"type": "boolean"
},
"IndentCaseBlocks": {
"description": "clang-format 11\r\r Indent case label blocks one level from the case label.\rWhen false, the block following the case label uses the same indentation level as for the case label, treating the case label the same as an if-statement. When true, the block gets indented as a scope block.",
"type": "boolean"
},
"IndentCaseLabels": {
"description": "clang-format 3.3\r\r Indent case labels one level from the switch statement.\rWhen false, use the same indentation level as for the switch statement. Switch statement body is always indented one level more than case labels (except the first block following the case label, which itself indents the code - unless IndentCaseBlocks is enabled).",
"type": "boolean"
},
"IndentExternBlock": {
"description": "clang-format 11\r\r IndentExternBlockStyle is the type of indenting of extern blocks.",
"type": "string",
"enum": ["AfterExternBlock", "NoIndent", "Indent"]
},
"IndentGotoLabels": {
"description": "clang-format 10\r\r Indent goto labels.\rWhen false, goto labels are flushed left.",
"type": "boolean"
},
"IndentPPDirectives": {
"description": "clang-format 6\r\r The preprocessor directive indenting style to use.",
"type": "string",
"enum": ["None", "AfterHash", "BeforeHash"]
},
"IndentRequiresClause": {
"description": "clang-format 15\r\r Indent the requires clause in a template. This only applies when RequiresClausePosition is OwnLine, or WithFollowing.",
"type": "boolean"
},
"IndentRequires": {
"description": "clang-format 12-14\r\r Indent the requires clause in a template. This only applies when RequiresClausePosition is OwnLine, or WithFollowing. In clang-format 12, 13 and 14 it was named IndentRequires.",
"type": "boolean"
},
"IndentWidth": {
"description": "clang-format 3.7\r\r The number of columns to use for indentation.",
"type": "integer",
"minimum": 0
},
"IndentWrappedFunctionNames": {
"description": "clang-format 3.7\r\r Indent if a function definition or declaration is wrapped after the type.",
"type": "boolean"
},
"InsertBraces": {
"description": "clang-fomrat 15\r Insert braces after control statements (if, else, for, do, and while) in C++ unless the control statements are inside macro definitions or the braces would enclose preprocessor directives.\r\r Warning: Setting this option to true could lead to incorrect code formatting due to clang-format's lack of complete semantic information. As such, extra care should be taken to review code changes made by this option.",
"type": "boolean"
},
"InsertNewlineAtEOF": {
"description": "clang-fomrat 16\r Insert a newline at end of file if missing.",
"type": "boolean"
},
"InsertTrailingCommas": {
"description": "clang-fromat 11\r\r If set to TCS_Wrapped will insert trailing commas in container literals (arrays and objects) that wrap across multiple lines. It is currently only available for JavaScript and disabled by default TCS_None. InsertTrailingCommas cannot be used together with BinPackArguments as inserting the comma disables bin-packing.",
"type": "string",
"enum": ["None", "Wrapped"]
},
"IntegerLiteralSeparator": {
"description": "clang-format 16\r\r Format integer literal separators (' for C++ and _ for C#, Java, and JavaScript).\r\r Separator format of integer literals of different bases. If negative, remove separators. If 0, leave the literal as is. If positive, insert separators between digits starting from the rightmost digit.\r\r You can also specify a minimum number of digits (BinaryMinDigits, DecimalMinDigits, and HexMinDigits) the integer literal must have in order for the separators to be inserted.",
"type": "object",
"properties": {
"Binary": {
"description": "Format separators in binary literals.",
"type": "integer"
},
"BinaryMinDigits": {
"description": "Format separators in binary literals with a minimum number of digits.",
"type": "integer"
},
"Decimal": {
"description": "Format separators in decimal literals.",
"type": "integer"
},
"DecimalMinDigits": {
"description": "Format separators in decimal literals with a minimum number of digits.",
"type": "integer"
},
"Hex": {
"description": "Format separators in hexadecimal literals",
"type": "integer"
},
"HexMinDigits": {
"description": "Format separators in hexadecimal literals with a minimum number of digits.",
"type": "integer"
}
}
},
"JavaImportGroup": {
"description": "clang-format 8\r\r The JavaScriptQuoteStyle to use for JavaScript strings.",
"type": "array"
},
"JavaScriptQuotes": {
"description": "clang-fromat 3.9\r\r The JavaScriptQuoteStyle to use for JavaScript strings.",
"type": "string",
"enum": ["Leave", "Single", "Double"]
},
"JavaScriptWrapImports": {
"description": "clang-format 3.9\r\r Whether to wrap JavaScript import/export statements.",
"type": "boolean"
},
"KeepEmptyLinesAtTheStartOfBlocks": {
"description": "clang-format 3.7\r\r If true, the empty line at the start of blocks is kept.",
"type": "boolean"
},
"LambdaBodyIndentation": {
"description": "clang-format 13\r\r The indentation style of lambda bodies. Signature (the default) causes the lambda body to be indented one additional level relative to the indentation level of the signature. OuterScope forces the lambda body to be indented one additional level relative to the parent scope containing the lambda signature. For callback-heavy code, it may improve readability to have the signature indented two levels and to use OuterScope. The KJ style guide requires OuterScope. KJ style guide",
"type": "string",
"enum": ["Signature", "OuterScope"]
},
"Language": {
"description": "clang-format 3.5\r\r Language, this format style is targeted at.",
"type": "string",
"enum": [
"None",
"Cpp",
"ObjC",
"CSharp",
"Java",
"JavaScript",
"Json",
"Proto",
"TableGen",
"TextProto",
"Verilog"
]
},
"LineEnding": {
"description": "clang-format 16\r\r Line ending style (\\n or \\r\\n) to use.",
"type": "string",
"enum": ["LF", "CRLF", "DeriveLF", "DeriveCRLF"]
},
"MacroBlockBegin": {
"description": "clang-format 3.7\r\r A regular expression matching macros that start a block.",
"type": "string",
"examples": ["^NS_MAP_BEGIN|NS_TABLE_HEAD$"]
},
"MacroBlockEnd": {
"description": "clang-format 3.7\r\r A regular expression matching macros that end a block.",
"type": "string",
"examples": ["^NS_MAP_END|NS_TABLE_.*_END$"]
},
"MaxEmptyLinesToKeep": {
"description": "clang-format 3.7\r\r The maximum number of consecutive empty lines to keep.",
"type": "integer",
"default": 1,
"minimum": 0
},
"NamespaceIndentation": {
"description": "clnag-format 3.7\r\r The indentation used for namespaces.",
"type": "string",
"enum": ["None", "Inner", "All"]
},
"NamespaceMacros": {
"description": "clnag-format 9\r\r A vector of macros which are used to open namespace blocks.",
"type": "array",
"items": {
"type": "string",
"examples": ["TESTSUITE"]
}
},
"ObjCBinPackProtocolList": {
"description": "clang-format 7\r\r Controls bin-packing Objective-C protocol conformance list items into as few lines as possible when they go over ColumnLimit.If Auto (the default), delegates to the value in BinPackParameters. If that is true, bin-packs Objective-C protocol conformance list items into as few lines as possible whenever they go over ColumnLimit.\rIf Always, always bin-packs Objective-C protocol conformance list items into as few lines as possible whenever they go over ColumnLimit.\rIf Never, lays out Objective-C protocol conformance list items onto individual lines whenever they go over ColumnLimit.",
"type": "string",
"default": "Auto",
"enum": ["Never", "Auto", "Always"]
},
"ObjCBlockIndentWidth": {
"description": "clang-format 3.7\r\r The number of characters to use for indentation of ObjC blocks.",
"type": "integer",
"minimum": 0
},
"ObjCBreakBeforeNestedBlockParam": {
"description": "clang-format 11\r\r Break parameters list into lines when there is nested block parameters in a function call.",
"type": "boolean"
},
"ObjCSpaceAfterProperty": {
"description": "clang-format 3.7\r\r Add a space after @property in Objective-C, i.e. use @property (readonly) instead of @property(readonly).",
"type": "boolean"
},
"ObjCSpaceBeforeProtocolList": {
"description": "clang-format 3.7\r\r Add a space in front of an Objective-C protocol list, i.e. use Foo <Protocol> instead of Foo<Protocol>.",
"type": "boolean"
},
"PPIndentWidth": {
"description": "clang-format 13\r\r The number of columns to use for indentation of preprocessor statements. When set to -1 (default) IndentWidth is used also for preprocessor statements.",
"type": "integer",
"default": -1
},
"PackConstructorInitializers": {
"description": "clang-format 14\r\r The pack constructor initializers style to use.",
"type": "string",
"enum": ["Never", "BinPack", "CurrentLine", "NextLine"]
},
"PenaltyBreakAssignment": {
"description": "clang-format 5\r\r The penalty for breaking around an assignment operator.",
"type": "integer",
"minimum": 0
},
"PenaltyBreakBeforeFirstCallParameter": {
"description": "clang-format 3.7\r\r The penalty for breaking a function call after call(.",
"type": "integer",
"minimum": 0
},
"PenaltyBreakComment": {
"description": "clang-format 3.7\r\r The penalty for each line break introduced inside a comment.",
"type": "integer",
"minimum": 0
},
"PenaltyBreakFirstLessLess": {
"description": "clang-format 3.7\r\r The penalty for breaking before the first <<.",
"type": "integer",
"minimum": 0
},
"PenaltyBreakOpenParenthesis": {
"description": "clang-format 14\r\r The penalty for breaking after (.",
"type": "integer",
"minimum": 0
},
"PenaltyBreakString": {
"description": "clang-format 3.7\r\r The penalty for each line break introduced inside a string literal.",
"type": "integer",
"minimum": 0
},
"PenaltyBreakTemplateDeclaration": {
"description": "clang-format 7\r\r The penalty for breaking after template declaration.",
"type": "integer",
"minimum": 0
},
"PenaltyExcessCharacter": {
"description": "clang-format 3.7\r\r The penalty for each character outside of the column limit.",
"type": "integer",
"minimum": 0
},
"PenaltyIndentedWhitespace": {
"description": "clang-format 12\r\r Penalty for each character of whitespace indentation (counted relative to leading non-whitespace column).",
"type": "integer",
"minimum": 0
},
"PenaltyReturnTypeOnItsOwnLine": {
"description": "clang-format 3.7\r\r Penalty for putting the return type of a function onto its own line.",
"type": "integer",
"minimum": 0
},
"PointerAlignment": {
"description": "clang-format 3.7\r\r Pointer and reference alignment style.",
"type": "string",
"enum": ["Left", "Right", "Middle"]
},
"QualifierAlignment": {
"description": "clang-format 14\r\r Different ways to arrange specifiers and qualifiers (e.g. const/volatile).\r\r Warning:Setting QualifierAlignment to something other than Leave, COULD lead to incorrect code formatting due to incorrect decisions made due to clang-formats lack of complete semantic information.\r\r As such extra care should be taken to review code changes made by the use of this option.",
"type": "string",
"enum": ["Leave", "Left", "Right", "Custom"]
},
"QualifierOrder": {
"description": "clang-format 14\r\r The order in which the qualifiers appear. Order is an array that can contain any of the following. \r\r Note: it MUST contain 'type'. Items to the left of 'type' will be placed to the left of the type and aligned in the order supplied. Items to the right of 'type' will be placed to the right of the type and aligned in the order supplied.",
"type": "array",
"contains": {
"type": "string",
"enum": ["type"]
},
"items": {
"type": "string",
"enum": [
"const",
"inline",
"static",
"constexpr",
"volatile",
"restrict",
"type"
]
}
},
"RawStringFormats": {
"description": "clang-format 6\r\r Defines hints for detecting supported languages code blocks in raw strings.",
"type": "array",
"items": {
"type": "object",
"properties": {
"Language": {
"$ref": "#/properties/Language"
},
"Delimiters": {
"type": "array",
"items": {
"type": "string"
}
},
"CanonicalDelimiter": {
"type": "string"
},
"BasedOnStyle": {
"$ref": "#/properties/BasedOnStyle"
},
"EnclosingFunctions": {
"type": "array",
"items": {
"type": "string"
}
}
},
"examples": [
{
"Language": "Cpp",
"Delimiters": ["cc", "CC", "cpp", "Cpp", "CPP", "c++", "C++"],
"CanonicalDelimiter": "",
"BasedOnStyle": "google"
},
{
"Language": "TextProto",
"Delimiters": ["pb", "PB", "proto", "PROTO"],
"EnclosingFunctions": [
"EqualsProto",
"EquivToProto",
"PARSE_PARTIAL_TEXT_PROTO",
"PARSE_TEST_PROTO",
"PARSE_TEXT_PROTO",
"ParseTextOrDie",
"ParseTextProtoOrDie",
"ParseTestProto",
"ParsePartialTestProto"
],
"CanonicalDelimiter": "pb",
"BasedOnStyle": "google"
}
]
}
},
"ReferenceAlignment": {
"description": "clang-format 13\r\r Reference alignment style (overrides PointerAlignment for references).",
"type": "string",
"enum": ["Pointer", "Left", "Right", "Middle"]
},
"ReflowComments": {
"description": "clang-format 4\r\r If true, clang-format will attempt to re-flow comments. That is it will touch a comment and reflow long comments into new lines, trying to obey the ColumnLimit.",
"type": "boolean"
},
"RemoveSemicolon": {
"description": "clang-format 16\r\r Remove semicolons after the closing brace of a non-empty function.\r\r Warning: Setting this option to true could lead to incorrect code formatting due to clang-format's lack of complete semantic information. As such, extra care should be taken to review code changes made by this option.",
"type": "boolean"
},
"RemoveBracesLLVM": {
"description": "clang-format 14\r\r Remove optional braces of control statements (if, else, for, and while) in C++ according to the LLVM coding style. \r\r Warning: This option will be renamed and expanded to support other styles.\r\r Setting this option to true could lead to incorrect code formatting due to clang-format's lack of complete semantic information. As such, extra care should be taken to review code changes made by this option.",
"type": "boolean"
},
"RequiresClausePosition": {
"description": "clang-format 15\r\r The position of the requires clause.",
"type": "string",
"enum": ["OwnLine", "WithPreceding", "WithFollowing", "SingleLine"]
},
"RequiresExpressionIndentation": {
"description": "clang-format 16 \r\r The indentation used for requires expression bodies.",
"type": "string",
"enum": ["OuterScope", "Keyword"]
},
"SeparateDefinitionBlocks": {
"description": "clang-format 14\r\r Specifies the use of empty lines to separate definition blocks, including classes, structs, enums, and functions.",
"type": "string",
"enum": ["Leave", "Always", "Never"]
},
"ShortNamespaceLines": {
"description": "clang-format 13\r\r The maximal number of unwrapped lines that a short namespace spans. Defaults to 1.",
"type": "integer",
"default": 1,
"minimum": 0
},
"SortIncludes": {
"description": "clang-format 4\r\r Controls if and how clang-format will sort #includes. If Never, includes are never sorted. If CaseInsensitive, includes are sorted in an ASCIIbetical or case insensitive fashion. If CaseSensitive, includes are sorted in an alphabetical or case sensitive fashion.",
"type": "string",
"enum": ["CaseSensitive", "CaseInsensitive", "Never"]
},
"SortJavaStaticImport": {
"description": "clang-format 12\r\r When sorting Java imports, by default static imports are placed before non-static imports. If JavaStaticImportAfterImport is After, static imports are placed after non-static imports.",
"type": "string",
"enum": ["Before", "After"]
},
"SortUsingDeclarations": {
"oneOf": [
{
"description": "clang-format 5\r\r If true, clang-format will sort using declarations.",
"type": "boolean"
},
{
"description": "clang-format 16\r\r Controls if and how clang-format will sort using declarations.",
"type": "string",
"enum": ["Never", "Lexicographic", "LexicographicNumeric"]
}
]
},
"SpaceAfterCStyleCast": {
"description": "clang-format 3.5\r\r If true, a space is inserted after C style casts.",
"type": "boolean"
},
"SpaceAfterLogicalNot": {
"description": "clang-format 9\r\r If true, a space is inserted after the logical not operator (!).",
"type": "boolean"
},
"SpaceAfterTemplateKeyword": {
"description": "clang-format 4\r\r If true, a space will be inserted after the 'template' keyword.",
"type": "boolean"
},
"SpaceAroundPointerQualifiers": {
"description": "clang-format 12\r\r Defines in which cases to put a space before or after pointer qualifiers",
"type": "string",
"enum": ["Default", "Before", "After", "Both"]
},
"SpaceBeforeAssignmentOperators": {
"description": "clang-format 3.7\r\r If false, spaces will be removed before assignment operators.",
"type": "boolean"
},
"SpaceBeforeCaseColon": {
"description": "clang-format 12\r\r If false, spaces will be removed before case colon.",
"type": "boolean"
},
"SpaceBeforeCpp11BracedList": {
"description": "clang-format 7\r\r If true, a space will be inserted before a C++11 braced list used to initialize an object (after the preceding identifier or type).",
"type": "boolean"
},
"SpaceBeforeCtorInitializerColon": {
"description": "clang-format 7\r\r If false, spaces will be removed before constructor initializer colon.",
"type": "boolean"
},
"SpaceBeforeInheritanceColon": {
"description": "clang-format 7\r\r If false, spaces will be removed before inheritance colon.",
"type": "boolean"
},
"SpaceBeforeParens": {
"description": "clang-format 3.5\r\r Defines in which cases to put a space before opening parentheses.",
"type": "string",
"enum": [
"ControlStatements",
"Never",
"ControlStatementsExceptControlMacros",
"NonEmptyParentheses",
"Always",
"Custom"
]
},
"SpaceBeforeParensOptions": {
"description": "clang-format 14\r\r Control of individual space before parentheses.\r\r If SpaceBeforeParens is set to Custom, use this to specify how each individual space before parentheses case should be handled. Otherwise, this is ignored.",
"type": "object",
"properties": {
"AfterControlStatements": {
"description": "If true, put space betwee control statement keywords (for/if/while…) and opening parentheses.",
"type": "boolean"
},
"AfterForeachMacros": {
"description": "If true, put space between foreach macros and opening parentheses.",
"type": "boolean"
},
"AfterFunctionDeclarationName": {
"description": "If true, put a space between function declaration name and opening parentheses.",
"type": "boolean"
},
"AfterFunctionDefinitionName": {
"description": "If true, put a space between function definition name and opening parentheses.",
"type": "boolean"
},
"AfterIfMacros": {
"description": "If true, put space between if macros and opening parentheses.",
"type": "boolean"
},
"AfterOverloadedOperator": {
"description": "If true, put a space between operator overloading and opening parentheses.",
"type": "boolean"
},
"AfterRequiresInClause": {
"description": "If true, put space between requires keyword in a requires clause and opening parentheses, if there is one.",
"type": "boolean"
},
"AfterRequiresInExpression": {
"description": "If true, put space between requires keyword in a requires expression and opening parentheses.",
"type": "boolean"
},
"BeforeNonEmptyParentheses": {
"description": "If true, put a space before opening parentheses only if the parentheses are not empty.",
"type": "boolean"
}
}
},
"SpaceBeforeRangeBasedForLoopColon": {
"description": "clang-format 7\r\r If false, spaces will be removed before range-based for loop colon.",
"type": "boolean"
},
"SpaceBeforeSquareBrackets": {
"description": "clang-format 10\r\r If true, spaces will be before [. Lambdas will not be affected. Only the first [ will get a space added.",
"type": "boolean"
},
"SpaceInEmptyBlock": {
"description": "clang-format 10\r\r If true, spaces will be inserted into {}.",
"type": "boolean"
},
"SpaceInEmptyParentheses": {
"description": "clang-format 3.7\r\r If true, spaces may be inserted into ().",
"type": "boolean"
},
"SpacesBeforeTrailingComments": {
"description": "clang-format 3.7\r\r The number of spaces before trailing line comments (// - comments).\r\rThis does not affect trailing block comments (/* - comments) as those commonly have different usage patterns and a number of special cases.",
"type": "integer",
"minimum": 0
},
"SpacesInAngles": {
"description": "clang-format 3.4\r\r The SpacesInAnglesStyle to use for template argument lists.",
"type": "string",
"enum": ["Never", "Always", "Leave"]
},
"SpacesInCStyleCastParentheses": {
"description": "clang-format 3.7\r\r If true, spaces may be inserted into C style casts.",
"type": "boolean"
},
"SpacesInConditionalStatement": {
"description": "clang-format 10\r\r If true, spaces will be inserted around if/for/switch/while conditions.",
"type": "boolean"
},
"SpacesInContainerLiterals": {
"description": "clang-format 3.7\r\r If true, spaces are inserted inside container literals (e.g. ObjC and Javascript array and dict literals).",
"type": "boolean"
},
"SpacesInLineCommentPrefix": {
"description": "clang-format 13\r\r How many spaces are allowed at the start of a line comment. To disable the maximum set it to -1, apart from that the maximum takes precedence over the minimum.\r\r In clang-format 16, his option has only effect if ReflowComments is set to true.",
"type": "object",
"properties": {
"Minimum": {
"type": "integer",
"default": 1
},
"Maximum": {
"type": "integer",
"default": 1
}
}
},
"SpacesInParentheses": {
"description": "clang-format 3.7\r\r If true, spaces will be inserted after ( and before ).",
"type": "boolean"
},
"SpacesInSquareBrackets": {
"description": "clang-format 3.7\r\r If true, spaces will be inserted after [ and before ]. Lambdas without arguments or unspecified size array declarations will not be affected.",
"type": "boolean"
},
"Standard": {
"description": "clang-format 3.7\r\r Parse and format C++ constructs compatible with this standard.",
"type": "string",
"enum": ["Auto", "Latest", "c++03", "c++11", "c++14", "c++17", "c++20"]
},
"StatementAttributeLikeMacros": {
"description": "clang-format 12\r\r Macros which are ignored in front of a statement, as if they were an attribute. So that they are not parsed as identifier, for example for Qts emit.",
"type": "array",
"items": {
"type": "string",
"examples": ["Q_EMIT"]
}
},
"StatementMacros": {
"description": "clnag-format 8\r\r A vector of macros that should be interpreted as complete statements.\r\r Typical macros are expressions, and require a semi-colon to be added; sometimes this is not the case, and this allows to make clang-format aware of such cases.",
"type": "array",
"items": {
"type": "string",
"examples": ["Q_UNUSED", "QT_REQUIRE_VERSION"]
}
},
"TabWidth": {
"description": "clang-format 3.7\r\r The number of columns used for tab stops.",
"type": "integer",
"minimum": 0
},
"TypenameMacros": {
"description": "clang-format 9\r\r A vector of macros that should be interpreted as type declarations instead of as function calls.\r\rFor example: OpenSSL STACK_OF, BSD LIST_ENTRY.",
"type": "array",
"items": {
"type": "string",
"examples": ["STACK_OF", "LIST_ENTRY"]
}
},
"UseCRLF": {
"description": "clang-format 10\r\r Use \r\n instead of \n for line breaks. Also used as fallback if DeriveLineEnding is true.\r\r This option is deprecated in clang-format 16. See LF and CRLF of LineEnding.",
"type": "boolean"
},
"UseTab": {
"description": "clang-format 3.7\r\r The way to use tab characters in the resulting file.",
"type": "string",
"enum": [
"Never",
"ForIndentation",
"ForContinuationAndIndentation",
"AlignWithSpaces",
"Always"
]
},
"WhitespaceSensitiveMacros": {
"description": "clang-format 11\r\r A vector of macros which are whitespace-sensitive and should not be touched.\r\r For example: BOOST_PP_STRINGIZE",
"type": "array",
"items": {
"type": "string",
"examples": [
"STRINGIZE",
"PP_STRINGIZE",
"BOOST_PP_STRINGIZE",
"NS_SWIFT_NAME",
"CF_SWIFT_NAME"
]
}
}
},
"title": ".clang-format config",
"type": "object"
}
| clang-format |
{
"id": "http://schemas.triniti.io/json-schema/gdbots/ncr/mixin/lockable/1-0-0.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"_id": {
"type": "string",
"pattern": "^[\\w\\/\\.:-]+$",
"description": "The \"_id\" value: - MUST NOT change for the life of the node. - SHOULD be globally unique - SHOULD be generated by the app (ideally in default value closure... e.g. UuidIdentifier::generate())",
"pbj": {
"type": "identifier",
"rule": "single",
"overridable": true
}
},
"status": {
"type": "string",
"default": "draft",
"enum": [
"unknown",
"published",
"scheduled",
"pending",
"draft",
"expired",
"archived",
"deleted"
],
"pbj": {
"type": "string-enum",
"rule": "single"
}
},
"etag": {
"type": "string",
"pattern": "^[\\w\\.:-]+$",
"pbj": {
"type": "string",
"rule": "single"
}
},
"created_at": {
"type": "string",
"pattern": "^[1-9]{1}[0-9]{12,15}$",
"pbj": {
"type": "microtime",
"rule": "single"
}
},
"creator_ref": {
"type": "object",
"properties": {
"curie": {
"type": "string",
"pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$",
"minLength": 0,
"maxLength": 146
},
"id": {
"type": "string",
"pattern": "^[A-Za-z0-9:_\\-]+$",
"minLength": 0,
"maxLength": 255
},
"tag": {
"type": "string",
"pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$",
"minLength": 0,
"maxLength": 255
}
},
"required": [
"curie",
"id"
],
"additionalProperties": false,
"description": "A fully qualified reference to what created this node. This is intentionally a message-ref and not a user id because it is often a program that creates nodes, not a user.",
"pbj": {
"type": "message-ref",
"rule": "single"
}
},
"updated_at": {
"type": "string",
"pattern": "^[1-9]{1}[0-9]{12,15}$",
"pbj": {
"type": "microtime",
"rule": "single",
"useTypeDefault": false
}
},
"updater_ref": {
"type": "object",
"properties": {
"curie": {
"type": "string",
"pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$",
"minLength": 0,
"maxLength": 146
},
"id": {
"type": "string",
"pattern": "^[A-Za-z0-9:_\\-]+$",
"minLength": 0,
"maxLength": 255
},
"tag": {
"type": "string",
"pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$",
"minLength": 0,
"maxLength": 255
}
},
"required": [
"curie",
"id"
],
"additionalProperties": false,
"description": "A fully qualified reference to what updated this node. This is intentionally a message-ref and not a user id because it is often a program that updates nodes, not a user. E.g. \"acme:iam:node:app:cli-scheduler\" or \"acme:iam:node:user:60c71df0-fda8-11e5-bfb9-30342d363854\"",
"pbj": {
"type": "message-ref",
"rule": "single"
}
},
"last_event_ref": {
"type": "object",
"properties": {
"curie": {
"type": "string",
"pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$",
"minLength": 0,
"maxLength": 146
},
"id": {
"type": "string",
"pattern": "^[A-Za-z0-9:_\\-]+$",
"minLength": 0,
"maxLength": 255
},
"tag": {
"type": "string",
"pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$",
"minLength": 0,
"maxLength": 255
}
},
"required": [
"curie",
"id"
],
"additionalProperties": false,
"description": "A reference to the last event that changed the state of this node. E.g. \"acme:blog:event:article-published:60c71df0-fda8-11e5-bfb9-30342d363854\"",
"pbj": {
"type": "message-ref",
"rule": "single"
}
},
"title": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"pbj": {
"type": "string",
"rule": "single"
}
},
"is_locked": {
"type": "boolean",
"description": "A node being locked will vary in how it's implemented but the general idea is that only the user who locked it can modify it.",
"pbj": {
"type": "boolean",
"rule": "single"
}
},
"locked_by_ref": {
"type": "string",
"pattern": "^[\\w\\/\\.:-]+$",
"description": "The user (or app) that has \"locked\" the node.",
"pbj": {
"type": "identifier",
"rule": "single"
}
}
},
"required": [
"_id"
],
"additionalProperties": true
} | o82503 |
{
"$id": "https://json.schemastore.org/aliases.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "An alias of the current directory\nhttps://github.com/sebglazebrook/aliases#usage",
"patternProperties": {
"^[^ ]+$": {
"title": "alias",
"description": "An alias of the current directory\nhttps://github.com/sebglazebrook/aliases#usage",
"type": "object",
"required": ["command"],
"properties": {
"command": {
"title": "command",
"description": "A command of the current alias\nhttps://github.com/sebglazebrook/aliases#usage",
"type": "string",
"minLength": 1,
"examples": ["ls"]
},
"confirm": {
"title": "confirm",
"description": "Whether to confirm a command execution of the current alias\nhttps://github.com/sebglazebrook/aliases#usage",
"type": "boolean",
"default": false
},
"confirmation_message": {
"title": "confirmation message",
"description": "A confirmation message of the current alias\nhttps://github.com/sebglazebrook/aliases#usage",
"type": "string",
"minLength": 1,
"examples": ["Do you want to execute this command?"]
},
"conditional": {
"title": "conditional",
"description": "A conditional of the current alias\nhttps://github.com/sebglazebrook/aliases#usage",
"type": "string",
"minLength": 1,
"examples": ["/bin/true"]
},
"backout_seconds": {
"title": "backout seconds",
"description": "A backout of the current alias\nhttps://github.com/sebglazebrook/aliases#usage",
"type": "integer",
"minimum": 0
},
"unit_test": {
"title": "conditional",
"description": "A unit test of the current alias\nhttps://github.com/sebglazebrook/aliases#usage",
"type": "string",
"minLength": 1,
"examples": ["[ true = true ]"]
},
"quiet": {
"title": "quiet",
"description": "Whether to display a command before execution of the current alias\nhttps://github.com/sebglazebrook/aliases#usage",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
}
},
"title": "alias",
"type": "object"
}
| aliases |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"BuildConfiguration": {
"description": "Available build configurations. Mirorred from `UnrealTargetConfiguration`.",
"type": "string",
"enum": [
"Unknown",
"Debug",
"DebugGame",
"Development",
"Shipping",
"Test"
]
},
"BuildTargetType": {
"description": "Enumerates build target types.",
"type": "string",
"enum": ["Unknown", "Game", "Server", "Client", "Editor", "Program"]
},
"ModuleDescriptor": {
"description": "Description of a loadable module.",
"type": "object",
"properties": {
"AdditionalDependencies": {
"description": "List of additional dependencies for building this module.",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"HasExplicitPlatforms": {
"description": "When true, an empty PlatformAllowList is interpeted as 'no platforms' with the expectation that explict platforms will be added in plugin extensions",
"type": "boolean",
"default": false
},
"LoadingPhase": {
"description": "When should the module be loaded during the startup sequence? This is sort of an advanced setting.",
"type": "string",
"enum": [
"EarliestPossible",
"PostConfigInit",
"PostSplashScreen",
"PreEarlyLoadingScreen",
"PreLoadingScreen",
"PreDefault",
"Default",
"PostDefault",
"PostEngineInit",
"None",
"Max"
]
},
"Name": {
"description": "Name of this module",
"type": "string"
},
"PlatformAllowList": {
"description": "List of allowed platforms",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"PlatformDenyList": {
"description": "List of disallowed platforms",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"ProgramAllowList": {
"description": "List of allowed programs",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"ProgramDenyList": {
"description": "List of disallowed programs",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"TargetAllowList": {
"description": "List of allowed targets",
"type": "array",
"uniqueItems": true,
"items": {
"$ref": "#/definitions/BuildTargetType"
}
},
"TargetConfigurationAllowList": {
"description": "List of allowed target configurations",
"type": "array",
"uniqueItems": true,
"items": {
"$ref": "#/definitions/BuildConfiguration"
}
},
"TargetConfigurationDenyList": {
"description": "List of disallowed target configurations",
"type": "array",
"uniqueItems": true,
"items": {
"$ref": "#/definitions/BuildConfiguration"
}
},
"TargetDenyList": {
"description": "List of disallowed targets",
"type": "array",
"uniqueItems": true,
"items": {
"$ref": "#/definitions/BuildTargetType"
}
},
"Type": {
"description": "Usage type of module",
"type": "string",
"enum": [
"Runtime",
"RuntimeNoCommandlet",
"RuntimeAndProgram",
"CookedOnly",
"UncookedOnly",
"Developer",
"DeveloperTool",
"Editor",
"EditorNoCommandlet",
"EditorAndProgram",
"Program",
"ServerOnly",
"ClientOnly",
"ClientOnlyNoCommandlet",
"Max"
]
}
}
},
"PluginReferenceDescriptor": {
"description": "Descriptor for a plugin reference.",
"type": "object",
"properties": {
"Enabled": {
"description": "Whether it should be enabled by default",
"type": "boolean",
"default": true
},
"HasExplicitPlatforms": {
"description": "When true, empty `SupportedTargetPlatforms` and `PlatformAllowList` are interpreted as *no platforms* with the expectation that explicit platforms will be added in plugin platform extensions",
"type": "boolean",
"default": false
},
"Optional": {
"description": "Whether this plugin is optional, and the game should silently ignore it not being present",
"type": "boolean",
"default": false
},
"Description": {
"description": "Description of the plugin for users that do not have it installed.",
"type": "string"
},
"MarketplaceURL": {
"description": "URL for this plugin on the marketplace, if the user doesn't have it installed.",
"type": "string"
},
"Name": {
"description": "Name of the plugin",
"type": "string"
},
"PlatformAllowList": {
"description": "List of allowed platforms",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"PlatformDenyList": {
"description": "List of disallowed platforms",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"TargetAllowList": {
"description": "List of allowed targets",
"type": "array",
"uniqueItems": true,
"items": {
"$ref": "#/definitions/BuildTargetType"
}
},
"TargetConfigurationAllowList": {
"description": "List of allowed target configurations",
"type": "array",
"uniqueItems": true,
"items": {
"$ref": "#/definitions/BuildConfiguration"
}
},
"TargetConfigurationDenyList": {
"description": "List of disallowed target configurations",
"type": "array",
"uniqueItems": true,
"items": {
"$ref": "#/definitions/BuildConfiguration"
}
},
"TargetDenyList": {
"description": "List of disallowed targets",
"type": "array",
"uniqueItems": true,
"items": {
"$ref": "#/definitions/BuildTargetType"
}
}
},
"required": ["Enabled", "Name"]
}
},
"description": "Descriptor for plugins. Contains all the information contained within a `.uplugin` file.",
"id": "https://json.schemastore.org/uplugin.json",
"properties": {
"CanContainContent": {
"description": "Can this plugin contain content?",
"type": "boolean",
"default": false
},
"CanContainVerse": {
"description": "Can this plugin contain Verse code?",
"type": "boolean",
"default": false
},
"ExplicitlyLoaded": {
"description": "When true, this plugin's modules will not be loaded automatically nor will it's content be mounted automatically.",
"type": "boolean",
"default": false
},
"HasExplicitPlatforms": {
"description": "When true, an empty SupportedTargetPlatforms is interpreted as 'no platforms' with the expectation that explicit platforms will be added in plugin platform extensions",
"type": "boolean",
"default": false
},
"Installed": {
"description": "Signifies that the plugin was installed on top of the engine",
"type": "boolean",
"default": false
},
"IsBetaVersion": {
"description": "Marks the plugin as beta in the UI",
"type": "boolean",
"default": false
},
"IsExperimentalVersion": {
"description": "Marks the plugin as experimental in the UI",
"type": "boolean",
"default": false
},
"IsHidden": {
"description": "For auto-generated plugins that should not be listed in the plugin browser for users to disable freely.",
"type": "boolean",
"default": false
},
"IsPluginExtension": {
"description": "If true, this plugin from a platform extension extending another plugin",
"type": "boolean",
"default": false
},
"RequiresBuildPlatform": {
"description": "For plugins that are under a platform folder (eg. /PS4/), determines whether compiling the plugin requires the build platform and/or SDK to be available",
"type": "boolean",
"default": false
},
"Category": {
"description": "The name of the category this plugin",
"type": "string",
"default": "Other"
},
"CreatedBy": {
"description": "The company or individual who created this plugin.",
"type": "string"
},
"CreatedByURL": {
"description": "Hyperlink URL string for the company or individual who created this plugin. This is optional.",
"type": "string"
},
"Description": {
"description": "Description of the plugin",
"type": "string"
},
"DocsURL": {
"description": "Documentation URL string.",
"type": "string"
},
"EditorCustomVirtualPath": {
"description": "Optional custom virtual path to display in editor to better organize.",
"type": "string"
},
"EnabledByDefault": {
"description": "Whether this plugin should be enabled by default for all projects",
"type": "string",
"enum": ["Unspecified", "Enabled", "Disabled"]
},
"EngineVersion": {
"description": "Version of the engine that this plugin is compatible with",
"type": "string"
},
"FileVersion": {
"description": "Descriptor version number.",
"type": "number",
"default": 3
},
"FriendlyName": {
"description": "Friendly name of the plugin",
"type": "string"
},
"LocalizationTargets": {
"description": "List of all localization targets associated with this plugin",
"type": "array",
"uniqueItems": true,
"items": {
"type": "object",
"required": ["LoadingPolicy", "Name"],
"properties": {
"LoadingPolicy": {
"description": "When should the localization data associated with a target should be loaded?",
"type": "string",
"enum": [
"Never",
"Always",
"Editor",
"Game",
"PropertyNames",
"ToolTips",
"Max"
]
},
"Name": {
"description": "Name of this target",
"type": "string"
}
}
}
},
"MarketplaceURL": {
"description": "Marketplace URL for this plugin.",
"type": "string"
},
"Modules": {
"description": "List of all modules associated with this plugin",
"type": "array",
"uniqueItems": true,
"items": {
"$ref": "#/definitions/ModuleDescriptor"
}
},
"ParentPluginName": {
"description": "If specified, this is the real plugin that this one is just extending",
"type": "string"
},
"Plugins": {
"description": "Plugins used by this plugin",
"type": "array",
"uniqueItems": true,
"items": {
"$ref": "#/definitions/PluginReferenceDescriptor"
}
},
"PostBuildSteps": {
"description": "Post-build steps for each host platform",
"type": "object",
"$comment": "Define platform as key, command as value."
},
"PreBuildSteps": {
"description": "Pre-build steps for each host platform",
"type": "object",
"$comment": "Define platform as key, command as value."
},
"SupportedPrograms": {
"description": "List of programs that are supported by this plugin.",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"SupportedTargetPlatforms": {
"description": "Controls a subset of platforms that can use this plugin, and which ones will stage the `.uplugin` file and content files.",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"SupportURL": {
"description": "Support URL/email for this plugin.",
"type": "string"
},
"Version": {
"description": "Version number for the plugin.",
"type": "number",
"default": 1
},
"VersionName": {
"description": "Name of the version for this plugin.",
"type": "string",
"default": "1.0"
}
},
"required": ["FileVersion"],
"title": "JSON schema for Unreal Engine uplugin",
"type": "object"
}
| uplugin |
{
"description": "UserSubject holds detailed information for user-kind subject.",
"properties": {
"name": {
"description": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
"type": [
"string",
"null"
]
}
},
"required": [
"name"
],
"type": "object"
} | kb_1093_Normalized |
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://www.yacpdb.org/schemas/yacpdb-person.schema.json",
"type": "object",
"properties": {
"familyname": {
"$ref": "#/definitions/name_type"
},
"givennames": {
"$ref": "#/definitions/name_type"
},
"foreignids": {
"type": "array",
"items": {
"$ref": "#/definitions/foreignid_type"
},
"minItems": 1
},
"comments": {
"$ref": "#/definitions/text_list"
}
},
"required": [
"familyname",
"givennames"
],
"additionalProperties": false,
"definitions": {
"text": {
"anyOf": [
{
"type": "number"
},
{
"type": "string",
"minLength": 1
}
]
},
"text_list": {
"type": "array",
"elements": {
"$ref": "#/definitions/text"
},
"minItems": 1,
"_uniqueItems": true
},
"name_type": {
"type": "string",
"pattern": "^[^,\"]+$",
"maxLength": 255
},
"ISO31661alpha3": {
"type": "string",
"pattern": "^(ABW|AFG|AGO|AIA|ALB|AND|ANT|ARE|ARG|ARM|ASM|ATA|ATF|ATG|AUS|AUT|AZE|BDI|BEL|BEN|BFA|BGD|BGR|BHR|BHS|BIH|BLR|BLZ|BMU|BOL|BRA|BRB|BRN|BTN|BVT|BWA|CAF|CAN|CCK|CHE|CHL|CHN|CIV|CMR|COD|COG|COK|COL|COM|CPV|CRI|CUB|CXR|CYM|CYP|CZE|DEU|DJI|DMA|DNK|DOM|DZA|ECU|EGY|ERI|ESH|ESP|EST|ETH|FIN|FJI|FLK|FRA|FRO|FSM|GAB|GBR|GEO|GGY|GHA|GIB|GIN|GLP|GMB|GNB|GNQ|GRC|GRD|GRL|GTM|GUF|GUM|GUY|HKG|HMD|HND|HRV|HTI|HUN|IDN|IMN|IND|IOT|IRL|IRN|IRQ|ISL|ISR|ITA|JAM|JEY|JOR|JPN|KAZ|KEN|KGZ|KHM|KIR|KNA|KOR|KWT|LAO|LBN|LBR|LBY|LCA|LIE|LKA|LSO|LTU|LUX|LVA|MAC|MAR|MCO|MDA|MDG|MDV|MEX|MHL|MKD|MLI|MLT|MMR|MNE|MNG|MNP|MOZ|MRT|MSR|MTQ|MUS|MWI|MYS|MYT|NAM|NCL|NER|NFK|NGA|NIC|NIU|NLD|NOR|NPL|NRU|NZL|OMN|PAK|PAN|PCN|PER|PHL|PLW|PNG|POL|PRI|PRK|PRT|PRY|PSE|PYF|QAT|REU|ROU|RUS|RWA|SAU|SDN|SEN|SGP|SGS|SHN|SJM|SLB|SLE|SLV|SMR|SOM|SPM|SRB|STP|SUR|SVK|SVN|SWE|SWZ|SYC|SYR|TCA|TCD|TGO|THA|TJK|TKL|TKM|TLS|TON|TTO|TUN|TUR|TUV|TWN|TZA|UGA|UKR|UMI|URY|USA|UZB|VAT|VCT|VEN|VGB|VIR|VNM|VUT|WLF|WSM|YEM|ZAF|ZMB|ZWE)$",
"maxLength": 255
},
"foreignid_type": {
"type": "object",
"properties": {
"domain": {
"type": "string",
"pattern": "^database\\.wfcc\\.ch$"
},
"id": {
"type": "integer",
"minimum": 1
}
},
"required": [
"domain",
"id"
],
"additionalProperties": false
}
}
} | o37613 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"additionalProperties": false,
"definitions": {
"___traits_trait_additional_properties_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": {},
"description": "A grab-bag object for non-validatable data.",
"title": "Has additional properties",
"type": "object"
},
"___traits_trait_channel_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An optional list of output types for which this element should be visible",
"items": {
"type": "string"
},
"title": "Channel trait",
"type": "array"
},
"___traits_trait_id_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A globally unique identifier of the content in the ANS repository.",
"title": "Globally Unique ID trait",
"type": "string"
},
"___traits_trait_subtype_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.",
"title": "Subtype or Template",
"type": "string"
}
},
"description": "An oembed object",
"properties": {
"_id": {
"$ref": "#/definitions/___traits_trait_id_json"
},
"additional_properties": {
"$ref": "#/definitions/___traits_trait_additional_properties_json"
},
"channels": {
"$ref": "#/definitions/___traits_trait_channel_json"
},
"raw_oembed": {
"additionalProperties": {},
"type": "object"
},
"referent": {
"additionalProperties": false,
"properties": {
"id": {
"description": "The id passed to the provider to retrieve an ANS document",
"type": "string"
},
"provider": {
"description": "A URL that can resolve the id into an ANS element",
"type": "string"
}
},
"required": [
"provider",
"id"
],
"type": "object"
},
"subtype": {
"$ref": "#/definitions/___traits_trait_subtype_json"
},
"type": {
"enum": [
"oembed_response"
]
}
},
"type": "object"
} | wp_111_Normalized |
{
"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 type, e.g. rectangle, circle",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_d9b62a4c |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the triangle (required if shape is 'triangle')",
"type": "number"
},
"height": {
"description": "The height of the triangle (required if shape is 'triangle')",
"type": "number"
},
"radius": {
"description": "The radius of the circle (required if shape is 'circle')",
"type": "number"
},
"side": {
"description": "The side length of the square (required if shape is 'square')",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The shape for which to calculate the area (e.g. circle, triangle, square)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_38f54c08 |
{
"properties": {
"end_time": {
"description": "The end time of the event in the format 'YYYY-MM-DD HH:MM'",
"type": "string"
},
"location": {
"description": "The location of the event",
"type": "string"
},
"start_time": {
"description": "The start time of the event in the format 'YYYY-MM-DD HH:MM'",
"type": "string"
},
"title": {
"description": "The title of the event",
"type": "string"
}
},
"required": [
"title",
"start_time",
"end_time"
],
"type": "object"
} | create_calendar_event_771e7edd |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"order_details": {
"properties": {
"product_name": {
"description": "The name of the product",
"type": "string"
},
"quantity": {
"description": "The quantity of the product",
"type": "integer"
},
"unit_price": {
"description": "The unit price of the product",
"type": "number"
}
},
"required": [
"product_name",
"quantity",
"unit_price"
],
"type": "object"
}
},
"required": [
"customer_name",
"order_details"
],
"type": "object"
} | generate_invoice_15a037c1 |
{
"properties": {
"grafana": {
"description": "grafana service configuration properties",
"properties": {
"admin_password": {
"default": "admin",
"description": "Admin password.",
"type": "string"
},
"cpus": {
"default": 0.3,
"description": "CPU shares to allocate to each service instance.",
"minimum": 0.3,
"type": "number"
},
"mem": {
"default": 512.0,
"description": "Memory to allocate to each service instance.",
"minimum": 512.0,
"type": "number"
}
},
"required": [
"cpus",
"mem"
],
"type": "object"
},
"networking": {
"description": "Grafana networking configuration properties",
"properties": {
"external_access": {
"description": "Enable access from outside the cluster through Marathon-LB.\nNOTE: this connection is unencrypted.",
"properties": {
"enable": {
"default": true,
"description": "Enable or disable creating a VIP for external access through a public node running Marathon-LB.",
"type": "boolean"
},
"external_access_port": {
"default": 13000,
"description": "For external access, port number to be used for clear communication in the external Marathon-LB load balancer",
"type": "number"
},
"virtual_host": {
"default": "grafana.example.org",
"description": "For external access, Virtual Host URL to be used in the external load balancer.",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"service": {
"description": "DC/OS service configuration properties",
"properties": {
"name": {
"default": "grafana",
"description": "Name of this service instance.",
"type": "string"
}
},
"type": "object"
}
}
} | o90700 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "boolean",
"default": false
} | o63996 |
{
"description": "A MWF supplemental navigation component's schema definition.",
"properties": {
"content": {
"properties": {
"links": {
"items": {
"properties": {
"config": {
"properties": {
"state": {
"enum": [
"collapsed",
"expanded"
],
"type": "string"
}
},
"required": [
"state"
],
"type": "object"
},
"content": {
"properties": {
"id": {
"type": "string"
},
"links": {
"items": {
"properties": {
"config": {
"properties": {
"active": {
"type": "boolean"
}
},
"required": [
"active"
],
"type": "object"
},
"content": {
"properties": {
"text": {
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}
},
"required": [
"config",
"content"
],
"type": "object"
},
"type": "array"
},
"text": {
"type": "string"
}
},
"required": [
"id",
"text",
"links"
],
"type": "object"
}
},
"required": [
"config",
"content"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"links"
],
"type": "object"
}
},
"required": [
"content"
],
"title": "Supplemental navigation",
"type": "object"
} | o85211 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"event_type",
"owner_id",
"product_id",
"product_status",
"event_timestamp"
],
"properties": {
"product_id": {
"type": "string"
},
"event_type": {
"enum": [
"create",
"update",
"delete"
]
},
"owner_id": {
"type": "string"
},
"event_timestamp": {
"type": "string",
"_format": "date-time",
"description": "Timestamp of when this event was published. Each attempt to publish may result in a new timestamp"
},
"product_status": {
"enum": [
"active",
"inactive"
]
},
"product": {
"$ref": "#/definitions/Product",
"description": "The product will be present for CREATE or UPDATE events"
}
},
"additional_properties": false,
"definitions": {
"Attribute": {
"type": "object",
"required": [
"type",
"values"
],
"properties": {
"type": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"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}$",
"description": "This is a UUID value"
}
}
},
"values": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/Value"
}
}
}
},
"Value": {
"oneOf": [
{
"$ref": "#/definitions/ReferenceValue"
},
{
"$ref": "#/definitions/BooleanValue"
},
{
"$ref": "#/definitions/StringValue"
},
{
"$ref": "#/definitions/LocalizedStringValue"
},
{
"$ref": "#/definitions/IntegerValue"
},
{
"$ref": "#/definitions/DecimalValue"
},
{
"$ref": "#/definitions/DatetimeValue"
},
{
"$ref": "#/definitions/StructuredValue"
}
]
},
"ReferenceValue": {
"type": "object",
"description": "A reference to an attribute, by ID, in the master-attributes service",
"required": [
"discrim",
"attribute"
],
"properties": {
"discrim": {
"enum": [
"ref"
]
},
"attribute": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"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}$",
"description": "This is a UUID value"
}
}
}
}
},
"BooleanValue": {
"type": "object",
"required": [
"discrim",
"value"
],
"properties": {
"discrim": {
"enum": [
"boolean"
]
},
"value": {
"type": "boolean"
}
},
"additionalProperties": false
},
"StringValue": {
"type": "object",
"required": [
"discrim",
"value"
],
"properties": {
"discrim": {
"enum": [
"string"
]
},
"value": {
"type": "string"
}
},
"additionalProperties": false
},
"LocalizedStringValue": {
"type": "object",
"required": [
"discrim",
"id"
],
"properties": {
"discrim": {
"enum": [
"localized"
]
},
"id": {
"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}$",
"description": "The UUID ID of this text in the localized text service in SPP"
}
},
"additionalProperties": false
},
"IntegerValue": {
"type": "object",
"required": [
"discrim",
"value"
],
"properties": {
"discrim": {
"enum": [
"integer"
]
},
"value": {
"type": "integer",
"minimum": -9223372036854775808,
"maximum": 9223372036854775807
}
},
"additionalProperties": false
},
"DecimalValue": {
"type": "object",
"required": [
"discrim",
"value"
],
"properties": {
"discrim": {
"enum": [
"decimal"
]
},
"value": {
"type": "number"
}
},
"additionalProperties": false
},
"DatetimeValue": {
"type": "object",
"required": [
"discrim",
"value"
],
"properties": {
"discrim": {
"enum": [
"datetime"
]
},
"value": {
"type": "string",
"_format": "date-time"
}
},
"additionalProperties": false
},
"StructuredValue": {
"type": "object",
"required": [
"discrim",
"values"
],
"properties": {
"discrim": {
"enum": [
"struct"
]
},
"values": {
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/Attribute"
}
}
}
},
"Product": {
"type": "object",
"required": [
"attributes"
],
"properties": {
"attributes": {
"type": "array",
"items": {
"$ref": "#/definitions/Attribute"
}
}
}
}
}
}
| o90912 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "",
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"allowStealFocus": {
"type": "boolean"
},
"bookmarkThumbHeight": {
"type": "number"
},
"bookmarkThumbWidth": {
"type": "number"
},
"dropEnabled": {
"type": "boolean"
},
"footerPanelEnabled": {
"type": "boolean"
},
"headerPanelEnabled": {
"type": "boolean"
},
"leftPanelEnabled": {
"type": "boolean"
},
"limitLocales": {
"type": "boolean"
},
"metrics": {
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"items": {
"required": [
"type",
"minWidth",
"maxWidth"
],
"properties": {
"type": {
"type": "string",
"minLength": 1
},
"minWidth": {
"type": "number"
},
"maxWidth": {
"type": "number"
}
}
}
},
"multiSelectionMimeType": {
"type": "string",
"minLength": 1
},
"navigatorEnabled": {
"type": "boolean"
},
"openTemplate": {
"type": "string",
"minLength": 1
},
"overrideFullScreen": {
"type": "boolean"
},
"pagingEnabled": {
"type": "boolean"
},
"pagingOptionEnabled": {
"type": "boolean"
},
"pessimisticAccessControl": {
"type": "boolean"
},
"preserveViewport": {
"type": "boolean"
},
"rightPanelEnabled": {
"type": "boolean"
},
"saveUserSettings": {
"type": "boolean"
},
"clickToZoomEnabled": {
"type": "boolean"
},
"searchWithinEnabled": {
"type": "boolean"
},
"termsOfUseEnabled": {
"type": "boolean"
},
"theme": {
"type": "string",
"minLength": 1
},
"tokenStorage": {
"type": "string",
"minLength": 1
},
"useArrowKeysToNavigate": {
"type": "boolean"
},
"zoomToSearchResultEnabled": {
"type": "boolean"
}
},
"required": [
"allowStealFocus",
"bookmarkThumbHeight",
"bookmarkThumbWidth",
"dropEnabled",
"footerPanelEnabled",
"headerPanelEnabled",
"leftPanelEnabled",
"limitLocales",
"metrics",
"multiSelectionMimeType",
"navigatorEnabled",
"openTemplate",
"overrideFullScreen",
"pagingEnabled",
"pagingOptionEnabled",
"pessimisticAccessControl",
"preserveViewport",
"rightPanelEnabled",
"saveUserSettings",
"clickToZoomEnabled",
"searchWithinEnabled",
"termsOfUseEnabled",
"theme",
"tokenStorage",
"useArrowKeysToNavigate",
"zoomToSearchResultEnabled"
]
},
"modules": {
"type": "object",
"properties": {
"contentLeftPanel": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"defaultToTreeEnabled": {
"type": "boolean"
},
"defaultToTreeIfGreaterThan": {
"type": "number"
},
"elideCount": {
"type": "number"
},
"expandFullEnabled": {
"type": "boolean"
},
"galleryThumbChunkedResizingThreshold": {
"type": "number"
},
"galleryThumbHeight": {
"type": "number"
},
"galleryThumbLoadPadding": {
"type": "number"
},
"galleryThumbWidth": {
"type": "number"
},
"oneColThumbHeight": {
"type": "number"
},
"oneColThumbWidth": {
"type": "number"
},
"pageModeEnabled": {
"type": "boolean"
},
"panelAnimationDuration": {
"type": "number"
},
"panelCollapsedWidth": {
"type": "number"
},
"panelExpandedWidth": {
"type": "number"
},
"panelOpen": {
"type": "boolean"
},
"tabOrder": {
"type": "string"
},
"thumbsEnabled": {
"type": "boolean"
},
"thumbsExtraHeight": {
"type": "number"
},
"thumbsImageFadeInDuration": {
"type": "number"
},
"thumbsLoadRange": {
"type": "number"
},
"treeEnabled": {
"type": "boolean"
},
"twoColThumbHeight": {
"type": "number"
},
"twoColThumbWidth": {
"type": "number"
}
},
"required": [
"defaultToTreeEnabled",
"defaultToTreeIfGreaterThan",
"elideCount",
"expandFullEnabled",
"galleryThumbChunkedResizingThreshold",
"galleryThumbHeight",
"galleryThumbLoadPadding",
"galleryThumbWidth",
"oneColThumbHeight",
"oneColThumbWidth",
"pageModeEnabled",
"panelAnimationDuration",
"panelCollapsedWidth",
"panelExpandedWidth",
"panelOpen",
"tabOrder",
"thumbsEnabled",
"thumbsExtraHeight",
"thumbsImageFadeInDuration",
"thumbsLoadRange",
"treeEnabled",
"twoColThumbHeight",
"twoColThumbWidth"
]
},
"content": {
"type": "object",
"properties": {
"collapse": {
"type": "string",
"minLength": 1
},
"collapseFull": {
"type": "string",
"minLength": 1
},
"date": {
"type": "string",
"minLength": 1
},
"expand": {
"type": "string",
"minLength": 1
},
"expandFull": {
"type": "string",
"minLength": 1
},
"index": {
"type": "string",
"minLength": 1
},
"searchResult": {
"type": "string",
"minLength": 1
},
"searchResults": {
"type": "string",
"minLength": 1
},
"sortBy": {
"type": "string",
"minLength": 1
},
"thumbnails": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string",
"minLength": 1
},
"volume": {
"type": "string",
"minLength": 1
}
},
"required": [
"collapse",
"collapseFull",
"date",
"expand",
"expandFull",
"index",
"searchResult",
"searchResults",
"sortBy",
"thumbnails",
"title",
"volume"
]
}
},
"required": [
"options",
"content"
]
},
"dialogue": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"close": {
"type": "string",
"minLength": 1
}
},
"required": [
"close"
]
}
},
"required": [
"content"
]
},
"downloadDialogue": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"confinedImageSize": {
"type": "number"
},
"currentViewDisabledPercentage": {
"type": "number"
},
"maxImageWidth": {
"type": "number"
},
"optionsExplanatoryTextEnabled": {
"type": "boolean"
},
"selectionEnabled": {
"type": "boolean"
}
},
"required": [
"confinedImageSize",
"currentViewDisabledPercentage",
"maxImageWidth",
"optionsExplanatoryTextEnabled",
"selectionEnabled"
]
},
"content": {
"type": "object",
"properties": {
"currentViewAsJpg": {
"type": "string",
"minLength": 1
},
"currentViewAsJpgExplanation": {
"type": "string",
"minLength": 1
},
"download": {
"type": "string",
"minLength": 1
},
"downloadSelection": {
"type": "string",
"minLength": 1
},
"downloadSelectionExplanation": {
"type": "string",
"minLength": 1
},
"editSettings": {
"type": "string",
"minLength": 1
},
"entireDocument": {
"type": "string",
"minLength": 1
},
"entireFileAsOriginal": {
"type": "string",
"minLength": 1
},
"noneAvailable": {
"type": "string",
"minLength": 1
},
"pagingNote": {
"type": "string",
"minLength": 1
},
"preview": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string",
"minLength": 1
},
"wholeImageHighRes": {
"type": "string",
"minLength": 1
},
"wholeImageHighResExplanation": {
"type": "string",
"minLength": 1
},
"wholeImagesHighRes": {
"type": "string",
"minLength": 1
},
"wholeImagesHighResExplanation": {
"type": "string",
"minLength": 1
},
"wholeImageLowResAsJpg": {
"type": "string",
"minLength": 1
},
"wholeImageLowResAsJpgExplanation": {
"type": "string",
"minLength": 1
}
},
"required": [
"currentViewAsJpg",
"currentViewAsJpgExplanation",
"download",
"downloadSelection",
"downloadSelectionExplanation",
"editSettings",
"entireDocument",
"entireFileAsOriginal",
"noneAvailable",
"pagingNote",
"preview",
"title",
"wholeImageHighRes",
"wholeImageHighResExplanation",
"wholeImagesHighRes",
"wholeImagesHighResExplanation",
"wholeImageLowResAsJpg",
"wholeImageLowResAsJpgExplanation"
]
}
},
"required": [
"options",
"content"
]
},
"footerPanel": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"bookmarkEnabled": {
"type": "boolean"
},
"downloadEnabled": {
"type": "boolean"
},
"embedEnabled": {
"type": "boolean"
},
"feedbackEnabled": {
"type": "boolean"
},
"fullscreenEnabled": {
"type": "boolean"
},
"minimiseButtons": {
"type": "boolean"
},
"moreInfoEnabled": {
"type": "boolean"
},
"openEnabled": {
"type": "boolean"
},
"printEnabled": {
"type": "boolean"
},
"shareEnabled": {
"type": "boolean"
}
},
"required": [
"bookmarkEnabled",
"downloadEnabled",
"embedEnabled",
"feedbackEnabled",
"fullscreenEnabled",
"minimiseButtons",
"moreInfoEnabled",
"openEnabled",
"printEnabled",
"shareEnabled"
]
},
"content": {
"type": "object",
"properties": {
"bookmark": {
"type": "string",
"minLength": 1
},
"download": {
"type": "string",
"minLength": 1
},
"embed": {
"type": "string",
"minLength": 1
},
"feedback": {
"type": "string",
"minLength": 1
},
"exitFullScreen": {
"type": "string",
"minLength": 1
},
"fullScreen": {
"type": "string",
"minLength": 1
},
"open": {
"type": "string",
"minLength": 1
},
"share": {
"type": "string",
"minLength": 1
}
},
"required": [
"bookmark",
"download",
"embed",
"feedback",
"exitFullScreen",
"fullScreen",
"open",
"share"
]
}
},
"required": [
"options",
"content"
]
},
"genericDialogue": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"emptyValue": {
"type": "string",
"minLength": 1
},
"invalidNumber": {
"type": "string",
"minLength": 1
},
"noMatches": {
"type": "string",
"minLength": 1
},
"ok": {
"type": "string",
"minLength": 1
},
"pageNotFound": {
"type": "string",
"minLength": 1
},
"refresh": {
"type": "string",
"minLength": 1
}
},
"required": [
"emptyValue",
"invalidNumber",
"noMatches",
"ok",
"pageNotFound",
"refresh"
]
}
},
"required": [
"content"
]
},
"headerPanel": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"localeToggleEnabled": {
"type": "boolean"
},
"settingsButtonEnabled": {
"type": "boolean"
}
},
"required": [
"localeToggleEnabled",
"settingsButtonEnabled"
]
}
},
"required": [
"options"
]
},
"helpDialogue": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"text": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string",
"minLength": 1
}
},
"required": [
"text",
"title"
]
}
},
"required": [
"content"
]
},
"moreInfoRightPanel": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"canvasDisplayOrder": {
"type": "string"
},
"canvasExclude": {
"type": "string"
},
"copyToClipboardEnabled": {
"type": "boolean"
},
"manifestDisplayOrder": {
"type": "string"
},
"manifestExclude": {
"type": "string"
},
"panelAnimationDuration": {
"type": "number"
},
"panelCollapsedWidth": {
"type": "number"
},
"panelExpandedWidth": {
"type": "number"
},
"panelOpen": {
"type": "boolean"
},
"rtlLanguageCodes": {
"type": "string",
"minLength": 1
},
"showAllLanguages": {
"type": "boolean"
},
"textLimit": {
"type": "number"
},
"textLimitType": {
"type": "string",
"minLength": 1
}
},
"required": [
"canvasDisplayOrder",
"canvasExclude",
"copyToClipboardEnabled",
"manifestDisplayOrder",
"manifestExclude",
"panelAnimationDuration",
"panelCollapsedWidth",
"panelExpandedWidth",
"panelOpen",
"rtlLanguageCodes",
"showAllLanguages",
"textLimit",
"textLimitType"
]
},
"content": {
"type": "object",
"properties": {
"attribution": {
"type": "string",
"minLength": 1
},
"collapse": {
"type": "string",
"minLength": 1
},
"collapseFull": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string",
"minLength": 1
},
"expand": {
"type": "string",
"minLength": 1
},
"expandFull": {
"type": "string",
"minLength": 1
},
"holdingText": {
"type": "string",
"minLength": 1
},
"less": {
"type": "string",
"minLength": 1
},
"license": {
"type": "string",
"minLength": 1
},
"logo": {
"type": "string",
"minLength": 1
},
"more": {
"type": "string",
"minLength": 1
},
"noData": {
"type": "string",
"minLength": 1
},
"page": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string",
"minLength": 1
},
"manifestHeader": {
"type": "string",
"minLength": 1
},
"canvasHeader": {
"type": "string",
"minLength": 1
},
"copyToClipboard": {
"type": "string",
"minLength": 1
},
"copiedToClipboard": {
"type": "string",
"minLength": 1
}
},
"required": [
"attribution",
"collapse",
"collapseFull",
"description",
"expand",
"expandFull",
"holdingText",
"less",
"license",
"logo",
"more",
"noData",
"page",
"title",
"manifestHeader",
"canvasHeader",
"copyToClipboard",
"copiedToClipboard"
]
}
},
"required": [
"options",
"content"
]
},
"multiSelectDialogue": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"galleryThumbChunkedResizingEnabled": {
"type": "boolean"
},
"galleryThumbChunkedResizingThreshold": {
"type": "number"
},
"galleryThumbHeight": {
"type": "number"
},
"galleryThumbLoadPadding": {
"type": "number"
},
"galleryThumbWidth": {
"type": "number"
},
"pageModeEnabled": {
"type": "boolean"
}
},
"required": [
"galleryThumbChunkedResizingEnabled",
"galleryThumbChunkedResizingThreshold",
"galleryThumbHeight",
"galleryThumbLoadPadding",
"galleryThumbWidth",
"pageModeEnabled"
]
},
"content": {
"type": "object",
"properties": {
"select": {
"type": "string",
"minLength": 1
},
"selectAll": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string",
"minLength": 1
}
},
"required": [
"select",
"selectAll",
"title"
]
}
},
"required": [
"options",
"content"
]
},
"pagingHeaderPanel": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"autoCompleteBoxEnabled": {
"type": "boolean"
},
"galleryButtonEnabled": {
"type": "boolean"
},
"imageSelectionBoxEnabled": {
"type": "boolean"
},
"pageModeEnabled": {
"type": "boolean"
},
"pagingToggleEnabled": {
"type": "boolean"
}
},
"required": [
"autoCompleteBoxEnabled",
"galleryButtonEnabled",
"imageSelectionBoxEnabled",
"pageModeEnabled",
"pagingToggleEnabled"
]
},
"content": {
"type": "object",
"properties": {
"close": {
"type": "string",
"minLength": 1
},
"emptyValue": {
"type": "string",
"minLength": 1
},
"first": {
"type": "string",
"minLength": 1
},
"firstImage": {
"type": "string",
"minLength": 1
},
"firstPage": {
"type": "string",
"minLength": 1
},
"folio": {
"type": "string",
"minLength": 1
},
"gallery": {
"type": "string",
"minLength": 1
},
"go": {
"type": "string",
"minLength": 1
},
"help": {
"type": "string",
"minLength": 1
},
"image": {
"type": "string",
"minLength": 1
},
"last": {
"type": "string",
"minLength": 1
},
"lastImage": {
"type": "string",
"minLength": 1
},
"lastPage": {
"type": "string",
"minLength": 1
},
"next": {
"type": "string",
"minLength": 1
},
"nextImage": {
"type": "string",
"minLength": 1
},
"nextPage": {
"type": "string",
"minLength": 1
},
"of": {
"type": "string",
"minLength": 1
},
"oneUp": {
"type": "string",
"minLength": 1
},
"page": {
"type": "string",
"minLength": 1
},
"previous": {
"type": "string",
"minLength": 1
},
"previousImage": {
"type": "string",
"minLength": 1
},
"previousPage": {
"type": "string",
"minLength": 1
},
"settings": {
"type": "string",
"minLength": 1
},
"twoUp": {
"type": "string",
"minLength": 1
}
},
"required": [
"close",
"emptyValue",
"first",
"firstImage",
"firstPage",
"folio",
"gallery",
"go",
"help",
"image",
"last",
"lastImage",
"lastPage",
"next",
"nextImage",
"nextPage",
"of",
"oneUp",
"page",
"previous",
"previousImage",
"previousPage",
"settings",
"twoUp"
]
}
},
"required": [
"options",
"content"
]
},
"seadragonCenterPanel": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"animationTime": {
"type": "number"
},
"autoHideControls": {
"type": "boolean"
},
"attributionEnabled": {
"type": "boolean"
},
"blendTime": {
"type": "number"
},
"constrainDuringPan": {
"type": "boolean"
},
"controlsFadeAfterInactive": {
"type": "number"
},
"controlsFadeDelay": {
"type": "number"
},
"controlsFadeLength": {
"type": "number"
},
"defaultZoomLevel": {
"type": "number"
},
"immediateRender": {
"type": "boolean"
},
"maxZoomPixelRatio": {
"type": "number"
},
"navigatorPosition": {
"type": "string",
"minLength": 1
},
"pageGap": {
"type": "number"
},
"showHomeControl": {
"type": "boolean"
},
"trimAttributionCount": {
"type": "number"
},
"visibilityRatio": {
"type": "number"
}
},
"required": [
"animationTime",
"autoHideControls",
"attributionEnabled",
"blendTime",
"constrainDuringPan",
"controlsFadeAfterInactive",
"controlsFadeDelay",
"controlsFadeLength",
"defaultZoomLevel",
"immediateRender",
"maxZoomPixelRatio",
"navigatorPosition",
"pageGap",
"showHomeControl",
"trimAttributionCount",
"visibilityRatio"
]
},
"content": {
"type": "object",
"properties": {
"attribution": {
"type": "string",
"minLength": 1
},
"goHome": {
"type": "string",
"minLength": 1
},
"imageUnavailable": {
"type": "string",
"minLength": 1
},
"next": {
"type": "string",
"minLength": 1
},
"previous": {
"type": "string",
"minLength": 1
},
"rotateRight": {
"type": "string",
"minLength": 1
},
"zoomIn": {
"type": "string",
"minLength": 1
},
"zoomOut": {
"type": "string",
"minLength": 1
}
},
"required": [
"attribution",
"goHome",
"imageUnavailable",
"next",
"previous",
"rotateRight",
"zoomIn",
"zoomOut"
]
}
},
"required": [
"options",
"content"
]
},
"searchFooterPanel": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"elideDetailsTermsCount": {
"type": "number"
},
"elideResultsTermsCount": {
"type": "number"
},
"pageModeEnabled": {
"type": "boolean"
},
"positionMarkerEnabled": {
"type": "boolean"
}
},
"required": [
"elideDetailsTermsCount",
"elideResultsTermsCount",
"pageModeEnabled",
"positionMarkerEnabled"
]
},
"content": {
"type": "object",
"properties": {
"clearSearch": {
"type": "string",
"minLength": 1
},
"defaultLabel": {
"type": "string",
"minLength": 1
},
"displaying": {
"type": "string",
"minLength": 1
},
"enterKeyword": {
"type": "string",
"minLength": 1
},
"image": {
"type": "string",
"minLength": 1
},
"imageCaps": {
"type": "string",
"minLength": 1
},
"instanceFound": {
"type": "string",
"minLength": 1
},
"instancesFound": {
"type": "string",
"minLength": 1
},
"nextResult": {
"type": "string",
"minLength": 1
},
"page": {
"type": "string",
"minLength": 1
},
"pageCaps": {
"type": "string",
"minLength": 1
},
"previousResult": {
"type": "string",
"minLength": 1
},
"print": {
"type": "string",
"minLength": 1
},
"resultFoundFor": {
"type": "string",
"minLength": 1
},
"resultsFoundFor": {
"type": "string",
"minLength": 1
},
"searchWithin": {
"type": "string",
"minLength": 1
}
},
"required": [
"clearSearch",
"defaultLabel",
"displaying",
"enterKeyword",
"image",
"imageCaps",
"instanceFound",
"instancesFound",
"nextResult",
"page",
"pageCaps",
"previousResult",
"print",
"resultFoundFor",
"resultsFoundFor",
"searchWithin"
]
}
},
"required": [
"options",
"content"
]
},
"settingsDialogue": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"locale": {
"type": "string",
"minLength": 1
},
"navigatorEnabled": {
"type": "string",
"minLength": 1
},
"clickToZoomEnabled": {
"type": "string",
"minLength": 1
},
"pagingEnabled": {
"type": "string",
"minLength": 1
},
"preserveViewport": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string",
"minLength": 1
},
"website": {
"type": "string",
"minLength": 1
}
},
"required": [
"locale",
"navigatorEnabled",
"clickToZoomEnabled",
"pagingEnabled",
"preserveViewport",
"title",
"website"
]
}
},
"required": [
"content"
]
},
"shareDialogue": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"embedTemplate": {
"type": "string",
"minLength": 1
},
"instructionsEnabled": {
"type": "boolean"
},
"shareFrameEnabled": {
"type": "boolean"
}
},
"required": [
"embedTemplate",
"instructionsEnabled",
"shareFrameEnabled"
]
},
"content": {
"type": "object",
"properties": {
"customSize": {
"type": "string",
"minLength": 1
},
"embed": {
"type": "string",
"minLength": 1
},
"embedInstructions": {
"type": "string",
"minLength": 1
},
"height": {
"type": "string",
"minLength": 1
},
"iiif": {
"type": "string",
"minLength": 1
},
"share": {
"type": "string",
"minLength": 1
},
"shareInstructions": {
"type": "string",
"minLength": 1
},
"size": {
"type": "string",
"minLength": 1
},
"width": {
"type": "string",
"minLength": 1
}
},
"required": [
"customSize",
"embed",
"embedInstructions",
"height",
"iiif",
"share",
"shareInstructions",
"size",
"width"
]
}
},
"required": [
"options",
"content"
]
},
"clickThroughDialogue": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"viewTerms": {
"type": "string",
"minLength": 1
}
},
"required": [
"viewTerms"
]
}
},
"required": [
"content"
]
},
"loginDialogue": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"login": {
"type": "string",
"minLength": 1
},
"logout": {
"type": "string",
"minLength": 1
},
"cancel": {
"type": "string",
"minLength": 1
}
},
"required": [
"login",
"logout",
"cancel"
]
}
},
"required": [
"content"
]
},
"mobileFooterPanel": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"rotateRight": {
"type": "string",
"minLength": 1
},
"moreInfo": {
"type": "string",
"minLength": 1
},
"zoomIn": {
"type": "string",
"minLength": 1
},
"zoomOut": {
"type": "string",
"minLength": 1
}
},
"required": [
"rotateRight",
"moreInfo",
"zoomIn",
"zoomOut"
]
}
},
"required": [
"content"
]
},
"restrictedDialogue": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"cancel": {
"type": "string",
"minLength": 1
}
},
"required": [
"cancel"
]
}
},
"required": [
"content"
]
}
},
"required": [
"contentLeftPanel",
"dialogue",
"downloadDialogue",
"footerPanel",
"genericDialogue",
"headerPanel",
"helpDialogue",
"moreInfoRightPanel",
"multiSelectDialogue",
"pagingHeaderPanel",
"seadragonCenterPanel",
"searchFooterPanel",
"settingsDialogue",
"shareDialogue",
"clickThroughDialogue",
"loginDialogue",
"mobileFooterPanel",
"restrictedDialogue"
]
},
"localisation": {
"type": "object",
"properties": {
"label": {
"type": "string",
"minLength": 1
},
"locales": {
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"items": {
"required": [
"name",
"label"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"label": {
"type": "string",
"minLength": 1
}
}
}
}
},
"required": [
"label",
"locales"
]
},
"content": {
"type": "object",
"properties": {
"authCORSError": {
"type": "string",
"minLength": 1
},
"authorisationFailedMessage": {
"type": "string",
"minLength": 1
},
"canvasIndexOutOfRange": {
"type": "string",
"minLength": 1
},
"degradedResourceMessage": {
"type": "string",
"minLength": 1
},
"degradedResourceLogin": {
"type": "string",
"minLength": 1
},
"forbiddenResourceMessage": {
"type": "string",
"minLength": 1
},
"termsOfUse": {
"type": "string",
"minLength": 1
}
},
"required": [
"authCORSError",
"authorisationFailedMessage",
"canvasIndexOutOfRange",
"degradedResourceMessage",
"degradedResourceLogin",
"forbiddenResourceMessage",
"termsOfUse"
]
}
},
"required": [
"options",
"modules",
"localisation",
"content"
]
} | o16062 |
{
"additionalProperties": false,
"description": "Schema for a Mandrill recipient unsubscribed event",
"properties": {
"_id": {
"type": "string"
},
"msg": {
"additionalProperties": false,
"properties": {
"_id": {
"type": "string"
},
"_version": {
"type": "string"
},
"clicks": {
"items": {
"additionalProperties": true,
"properties": {
"ts": {
"_format": "date-time",
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"email": {
"type": "string"
},
"metadata": {
"additionalProperties": false,
"properties": {
"user_id": {
"type": "number"
}
},
"type": "object"
},
"opens": {
"items": {
"additionalProperties": true,
"properties": {
"ts": {
"_format": "date-time",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"sender": {
"type": "string"
},
"state": {
"type": "string"
},
"subaccount": {
"type": [
"string",
"null"
]
},
"subject": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"ts": {
"_format": "date-time",
"type": "string"
}
},
"type": "object"
},
"ts": {
"_format": "date-time",
"type": "string"
}
},
"self": {
"format": "jsonschema",
"name": "recipient_unsubscribed",
"vendor": "com.mandrill",
"version": "1-0-1"
},
"type": "object"
} | sp_136_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"type": {
"type": "string"
},
"message": {
"type": "string"
},
"validationErrors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"name": {
"type": "string"
},
"id": {
"oneOf": [
{
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
{
"type": "string"
}
]
},
"message": {
"type": "string"
}
}
}
}
}
} | o9963 |
{
"description": "An instance of <a href=\"#controller-options-zoom\">a controller zoom configuration.</a>",
"properties": {
"hardness": {
"description": "Hardness (instant contribution).",
"example": 5,
"title": "Hardness",
"type": "number"
},
"invert": {
"description": "Inversion of axis.",
"example": false,
"title": "Invert",
"type": "boolean"
},
"toPointer": {
"description": "Zoom action also rotate the camera to keep the same area under your pointer during the zoom",
"example": false,
"title": "toPointer",
"type": "boolean"
}
},
"required": [
"hardness",
"invert"
],
"title": "ControllerZoomConfig",
"type": "object"
} | o44250 |
{
"additionalProperties": {
"additionalProperties": {
"description": "predicate (subject object)",
"items": {
"description": "object (value array)",
"properties": {
"datatype": {
"format": "uri",
"type": "string"
},
"lang": {
"description": "See ftp://ftp.isi.edu/in-notes/bcp/bcp47.txt",
"type": "string"
},
"type": {
"enum": [
"uri",
"bnode",
"literal"
],
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"description": "subject (root object)",
"type": "object"
},
"description": "RDF JSON definition, see https://github.com/iand/rdf-json",
"type": "object",
"version": "0.3.0"
} | o39536 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"github_extracted_details": {
"type": "object",
"description": "Details of Github inspection",
"properties": {
"forks_count": {
"type": "integer"
},
"last_year_commits": {
"$ref": "#/definitions/github_last_year_commits_details"
},
"open_issues_count": {
"type": "integer"
},
"stargazers_count": {
"type": "integer"
},
"subscribers_count": {
"type": "integer"
},
"updated_issues": {
"$ref": "#/definitions/github_issues_details"
},
"updated_pull_requests": {
"$ref": "#/definitions/github_pull_requests_details"
}
},
"additionalProperties": false
},
"github_issue&prs_with_time_duration": {
"type": "object",
"description": "Details of Github issues + prs yearly or monthly or any given date-range",
"properties": {
"opened": {
"type": "integer"
},
"closed": {
"type": "integer"
}
},
"required": [
"opened",
"closed"
],
"additionalProperties": false
},
"github_issues_details": {
"type": "object",
"description": "Details of updated Github issues",
"properties": {
"year": {
"$ref": "#/definitions/github_issue&prs_with_time_duration"
},
"month": {
"$ref": "#/definitions/github_issue&prs_with_time_duration"
}
},
"additionalProperties": false
},
"github_last_year_commits_details": {
"type": "object",
"description": "Details of last year Github commits",
"properties": {
"sum": {
"type": "integer"
},
"weekly": {
"type": "array",
"items": {
"type": "integer"
}
}
},
"required": [
"sum",
"weekly"
],
"additionalProperties": false
},
"github_pull_requests_details": {
"type": "object",
"description": "Details of updated Github pull requests",
"properties": {
"year": {
"$ref": "#/definitions/github_issue&prs_with_time_duration"
},
"month": {
"$ref": "#/definitions/github_issue&prs_with_time_duration"
}
},
"additionalProperties": false
}
},
"type": "object",
"description": "Result of Github worker",
"properties": {
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the schema",
"pattern": "^[a-zA-Z0-9_]+$"
},
"version": {
"type": "string",
"description": "Version of the schema",
"pattern": "^[0-9]+-[0-9]+-[0-9]+$"
},
"url": {
"type": "string",
"description": "Full URL of the schema",
"format": "uri"
}
},
"required": [
"name",
"version"
],
"additionalProperties": false
},
"_release": {
"type": "string",
"description": "Unique release id in form of \"ecosystem:package:version\""
},
"status": {
"type": "string",
"enum": [
"success",
"error",
"unknown"
]
},
"details": {
"$ref": "#/definitions/github_extracted_details"
},
"summary": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"status",
"details",
"summary"
],
"additionalProperties": false,
"title": "github_details-v1-0-1"
} | o60977 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$",
"type": "string"
},
"analytics_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations."
},
"attachments_with_thumbnails": {
"description": "An ordered list of attachments",
"items": {
"description": "Generated HTML for each attachment including thumbnail and download link",
"type": "string"
},
"type": "array"
},
"body": {
"description": "The main content provided as HTML rendered from govspeak",
"type": "string"
},
"brexit_no_deal_notice": {
"description": "A list of URLs and titles for a brexit no deal notice.",
"items": {
"additionalProperties": false,
"properties": {
"href": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"href"
],
"type": "object"
},
"type": "array"
},
"change_history": {
"items": {
"additionalProperties": false,
"properties": {
"note": {
"description": "A summary of the change",
"type": "string"
},
"public_timestamp": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"public_timestamp",
"note"
],
"type": "object"
},
"type": "array"
},
"description": {
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"additionalProperties": false,
"properties": {
"attachments": {
"description": "An ordered list of asset links",
"items": {
"$ref": "#/definitions/publication_attachment_asset"
},
"type": "array"
},
"body": {
"$ref": "#/definitions/body"
},
"brexit_no_deal_notice": {
"$ref": "#/definitions/brexit_no_deal_notice"
},
"change_history": {
"$ref": "#/definitions/change_history"
},
"documents": {
"$ref": "#/definitions/attachments_with_thumbnails"
},
"emphasised_organisations": {
"$ref": "#/definitions/emphasised_organisations"
},
"featured_attachments": {
"description": "An ordered list of attachments to feature below the document",
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"first_public_at": {
"$ref": "#/definitions/first_public_at"
},
"government": {
"$ref": "#/definitions/government"
},
"national_applicability": {
"$ref": "#/definitions/national_applicability"
},
"political": {
"$ref": "#/definitions/political"
},
"tags": {
"$ref": "#/definitions/tags"
}
},
"required": [
"body",
"documents",
"political"
],
"type": "object"
},
"emphasised_organisations": {
"description": "The content ids of the organisations that should be displayed first in the list of organisations related to the item, these content ids must be present in the item organisation links hash.",
"items": {
"$ref": "#/definitions/guid"
},
"type": "array"
},
"first_public_at": {
"_format": "date-time",
"description": "DEPRECATED. The date the content was first published. Used in details. Deprecated in favour of top level `first_published_at`.",
"type": "string"
},
"first_published_at": {
"_format": "date-time",
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"frontend_links": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"frontend_links_with_base_path": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"government": {
"additionalProperties": false,
"description": "DEPRECATED: Content should be associated with a government through a link",
"properties": {
"current": {
"description": "Is the government that published this document still the current government.",
"type": "boolean"
},
"slug": {
"description": "Government slug, used for analytics, eg '1970-to-1974-conservative-government'.",
"type": "string"
},
"title": {
"description": "Name of the government that first published this document, eg '1970 to 1974 Conservative government'.",
"type": "string"
}
},
"required": [
"title",
"slug",
"current"
],
"type": "object"
},
"guid": {
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$",
"type": "string"
},
"locale": {
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
],
"type": "string"
},
"nation_applicability": {
"additionalProperties": false,
"description": "An object specifying the applicability of a particular nation.",
"properties": {
"alternative_url": {
"description": "An optional alternative URL to link to for more information on this content item pertaining to this nation.",
"type": "string"
},
"applicable": {
"description": "Whether the content applies to this nation or not.",
"type": "boolean"
},
"label": {
"description": "The pretty-printed, translated label for this nation.",
"type": "string"
}
},
"type": "object"
},
"national_applicability": {
"additionalProperties": false,
"description": "An object specifying the applicable nations for this content item. If it applies to all nations, it should be omitted.",
"properties": {
"england": {
"$ref": "#/definitions/nation_applicability"
},
"northern_ireland": {
"$ref": "#/definitions/nation_applicability"
},
"scotland": {
"$ref": "#/definitions/nation_applicability"
},
"wales": {
"$ref": "#/definitions/nation_applicability"
}
},
"type": "object"
},
"political": {
"description": "If the content is considered political in nature, reflecting views of the government it was published under.",
"type": "boolean"
},
"public_updated_at": {
"_format": "date-time",
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"publication_attachment_asset": {
"oneOf": [
{
"additionalProperties": false,
"properties": {
"accessible": {
"type": "boolean"
},
"alternative_format_contact_email": {
"type": "string"
},
"attachment_type": {
"enum": [
"file"
],
"type": "string"
},
"command_paper_number": {
"type": "string"
},
"content_type": {
"type": "string"
},
"file_size": {
"type": "integer"
},
"filename": {
"type": "string"
},
"hoc_paper_number": {
"type": "string"
},
"id": {
"type": "string"
},
"isbn": {
"type": "string"
},
"locale": {
"$ref": "#/definitions/locale"
},
"number_of_pages": {
"type": "integer"
},
"parliamentary_session": {
"type": "string"
},
"preview_url": {
"_format": "uri",
"type": "string"
},
"title": {
"type": "string"
},
"unique_reference": {
"type": "string"
},
"unnumbered_command_paper": {
"type": "boolean"
},
"unnumbered_hoc_paper": {
"type": "boolean"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"attachment_type",
"content_type",
"id",
"url"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"attachment_type": {
"enum": [
"html"
],
"type": "string"
},
"command_paper_number": {
"type": "string"
},
"hoc_paper_number": {
"type": "string"
},
"id": {
"type": "string"
},
"isbn": {
"type": "string"
},
"locale": {
"$ref": "#/definitions/locale"
},
"parliamentary_session": {
"type": "string"
},
"title": {
"type": "string"
},
"unique_reference": {
"type": "string"
},
"unnumbered_command_paper": {
"type": "boolean"
},
"unnumbered_hoc_paper": {
"type": "boolean"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"attachment_type",
"id",
"url"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"attachment_type": {
"enum": [
"external"
],
"type": "string"
},
"command_paper_number": {
"type": "string"
},
"hoc_paper_number": {
"type": "string"
},
"id": {
"type": "string"
},
"isbn": {
"type": "string"
},
"locale": {
"$ref": "#/definitions/locale"
},
"parliamentary_session": {
"type": "string"
},
"title": {
"type": "string"
},
"unique_reference": {
"type": "string"
},
"unnumbered_command_paper": {
"type": "boolean"
},
"unnumbered_hoc_paper": {
"type": "boolean"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"attachment_type",
"id",
"url"
],
"type": "object"
}
]
},
"publishing_app_name": {
"description": "The application that published this item.",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
],
"type": "string"
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"publishing_scheduled_at": {
"_format": "date-time",
"description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.",
"type": "string"
},
"rendering_app": {
"description": "The application that renders this item.",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
],
"type": "string"
},
"scheduled_publishing_delay_seconds": {
"description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.",
"type": "integer"
},
"tags": {
"additionalProperties": false,
"description": "Field used by email-alert-api to trigger email alerts for subscriptions to topics (gov.uk/topic) and policies (gov.uk/policies).",
"properties": {
"additional_topics": {
"items": {
"type": "string"
},
"type": "array"
},
"browse_pages": {
"items": {
"type": "string"
},
"type": "array"
},
"policies": {
"items": {
"type": "string"
},
"type": "array"
},
"primary_topic": {
"items": {
"type": "string"
},
"type": "array"
},
"topics": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"title": {
"type": "string"
},
"withdrawn_notice": {
"additionalProperties": false,
"properties": {
"explanation": {
"type": "string"
},
"withdrawn_at": {
"format": "date-time"
}
},
"type": "object"
}
},
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"enum": [
"guidance",
"form",
"foi_release",
"promotional",
"notice",
"correspondence",
"research",
"official_statistics",
"transparency",
"statutory_guidance",
"independent_report",
"national_statistics",
"corporate_report",
"policy_paper",
"decision",
"map",
"regulation",
"international_treaty",
"impact_assessment",
"imported"
],
"type": "string"
},
"first_published_at": {
"anyOf": [
{
"$ref": "#/definitions/first_published_at"
},
{
"type": "null"
}
]
},
"links": {
"additionalProperties": false,
"properties": {
"available_translations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"child_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"children": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"document_collections": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"facet_groups": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers links from content back to finders the content is surfaced on"
},
"government": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The government associated with this document",
"maxItems": 1
},
"lead_organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"level_one_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"mainstream_browse_pages": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The user needs this piece of content meets."
},
"ministers": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"part_of_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"people": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "People that are associated with this document, typically the person part of a role association"
},
"policies": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policy_areas": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"related_policies": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"related_statistical_data_sets": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"related_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"role_appointments": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"roles": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Government roles that are associated with this document, typically the role part of a role association"
},
"secondary_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Prototype-stage taxonomy label for this content item"
},
"topic_taxonomy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"topical_events": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"topics": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"world_locations": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"need_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"enum": [
"alpha",
"beta",
"live"
],
"type": "string"
},
"public_updated_at": {
"anyOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"publishing_request_id": {
"$ref": "#/definitions/publishing_request_id"
},
"publishing_scheduled_at": {
"anyOf": [
{
"$ref": "#/definitions/publishing_scheduled_at"
},
{
"type": "null"
}
]
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"scheduled_publishing_delay_seconds": {
"anyOf": [
{
"$ref": "#/definitions/scheduled_publishing_delay_seconds"
},
{
"type": "null"
}
]
},
"schema_name": {
"enum": [
"publication"
],
"type": "string"
},
"title": {
"$ref": "#/definitions/title"
},
"updated_at": {
"_format": "date-time",
"type": "string"
},
"withdrawn_notice": {
"$ref": "#/definitions/withdrawn_notice"
}
},
"required": [
"base_path",
"content_id",
"description",
"details",
"document_type",
"links",
"locale",
"public_updated_at",
"schema_name",
"title",
"updated_at"
],
"type": "object"
} | o21327 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": {
"description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
"properties": {
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
},
"partition": {
"_format": "int32",
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
"type": "integer"
},
"readOnly": {
"description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "boolean"
},
"volumeID": {
"description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": {
"description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
"properties": {
"cachingMode": {
"description": "Host Caching mode: None, Read Only, Read Write.",
"type": "string"
},
"diskName": {
"description": "The Name of the data disk in the blob storage",
"type": "string"
},
"diskURI": {
"description": "The URI the data disk in the blob storage",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"kind": {
"description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
}
},
"required": [
"diskName",
"diskURI"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFilePersistentVolumeSource": {
"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"
},
"secretNamespace": {
"description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod",
"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_CSIPersistentVolumeSource": {
"description": "Represents storage that is managed by an external CSI volume driver (Beta feature)",
"properties": {
"controllerExpandSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "ControllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This is an alpha field and requires enabling ExpandCSIVolumes feature gate. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed."
},
"controllerPublishSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed."
},
"driver": {
"description": "Driver is the name of the driver to use for this volume. Required.",
"type": "string"
},
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".",
"type": "string"
},
"nodePublishSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"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 secrets are passed."
},
"nodeStageSecretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed."
},
"readOnly": {
"description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).",
"type": "boolean"
},
"volumeAttributes": {
"additionalProperties": {
"type": "string"
},
"description": "Attributes of the volume to publish.",
"type": "object"
},
"volumeHandle": {
"description": "VolumeHandle is the unique volume name returned by the CSI volume plugin\u2019s CreateVolume to refer to the volume on all subsequent calls. Required.",
"type": "string"
}
},
"required": [
"driver",
"volumeHandle"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource": {
"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_SecretReference",
"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_CinderPersistentVolumeSource": {
"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_SecretReference",
"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_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_FlexPersistentVolumeSource": {
"description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.",
"properties": {
"driver": {
"description": "Driver is the name of the driver to use for this volume.",
"type": "string"
},
"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_SecretReference",
"description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts."
}
},
"required": [
"driver"
],
"type": "object"
},
"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_GlusterfsPersistentVolumeSource": {
"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"
},
"endpointsNamespace": {
"description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"path": {
"description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "string"
},
"readOnly": {
"description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
"type": "boolean"
}
},
"required": [
"endpoints",
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": {
"description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.",
"properties": {
"path": {
"description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
},
"type": {
"description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIPersistentVolumeSource": {
"description": "ISCSIPersistentVolumeSource 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_SecretReference",
"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_LocalVolumeSource": {
"description": "Local represents directly-attached storage with node affinity (Beta feature)",
"properties": {
"fsType": {
"description": "Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a fileystem if unspecified.",
"type": "string"
},
"path": {
"description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).",
"type": "string"
}
},
"required": [
"path"
],
"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_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_ObjectReference": {
"description": "ObjectReference contains enough information to let you inspect or modify the referred object.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"fieldPath": {
"description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.",
"type": "string"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"namespace": {
"description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
"type": "string"
},
"resourceVersion": {
"description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeSpec": {
"description": "PersistentVolumeSpec is the specification of a persistent volume.",
"properties": {
"accessModes": {
"description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes",
"items": {
"type": "string"
},
"type": "array"
},
"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_AzureFilePersistentVolumeSource",
"description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod."
},
"capacity": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity",
"type": "object"
},
"cephfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource",
"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_CinderPersistentVolumeSource",
"description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md"
},
"claimRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference",
"description": "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding"
},
"csi": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIPersistentVolumeSource",
"description": "CSI represents storage that is handled by an external CSI driver (Beta feature)."
},
"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_FlexPersistentVolumeSource",
"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 and exposed to the pod for its usage. 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. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk"
},
"glusterfs": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsPersistentVolumeSource",
"description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. 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 directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. 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_ISCSIPersistentVolumeSource",
"description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin."
},
"local": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource",
"description": "Local represents directly-attached storage with node affinity"
},
"mountOptions": {
"description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options",
"items": {
"type": "string"
},
"type": "array"
},
"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. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs"
},
"nodeAffinity": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeNodeAffinity",
"description": "NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume."
},
"persistentVolumeReclaimPolicy": {
"description": "What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming",
"type": "string"
},
"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"
},
"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_RBDPersistentVolumeSource",
"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_ScaleIOPersistentVolumeSource",
"description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
},
"storageClassName": {
"description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
"type": "string"
},
"storageos": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource",
"description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md"
},
"volumeMode": {
"description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.",
"type": "string"
},
"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"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": {
"description": "Represents a Photon Controller persistent disk resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"pdID": {
"description": "ID that identifies Photon Controller persistent disk",
"type": "string"
}
},
"required": [
"pdID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": {
"description": "PortworxVolumeSource represents a Portworx volume resource.",
"properties": {
"fsType": {
"description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": "boolean"
},
"volumeID": {
"description": "VolumeID uniquely identifies a Portworx volume",
"type": "string"
}
},
"required": [
"volumeID"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_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_RBDPersistentVolumeSource": {
"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_SecretReference",
"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_ScaleIOPersistentVolumeSource": {
"description": "ScaleIOPersistentVolumeSource 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_SecretReference",
"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_SecretReference": {
"description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace",
"properties": {
"name": {
"description": "Name is unique within a namespace to reference a secret resource.",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within which the secret name must be unique.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource": {
"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_ObjectReference",
"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_VolumeNodeAffinity": {
"description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.",
"properties": {
"required": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector",
"description": "Required specifies hard node constraints that must be met."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": {
"description": "Represents a vSphere volume resource.",
"properties": {
"fsType": {
"description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"storagePolicyID": {
"description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
"type": "string"
},
"storagePolicyName": {
"description": "Storage Policy Based Management (SPBM) profile name.",
"type": "string"
},
"volumePath": {
"description": "Path that identifies vSphere volume vmdk",
"type": "string"
}
},
"required": [
"volumePath"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.",
"properties": {
"inlineVolumeSpec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeSpec",
"description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature."
},
"persistentVolumeName": {
"description": "Name of the persistent volume to attach.",
"type": [
"string",
"null"
]
}
},
"type": "object"
} | kb_1114_Normalized |
{
"additionalProperties": true,
"description": "Schema for an Optimizely visitor_audience context",
"properties": {
"id": {
"type": [
"string",
"null"
]
},
"isMember": {
"type": [
"boolean",
"null"
]
}
},
"self": {
"format": "jsonschema",
"name": "visitor_audience",
"vendor": "com.optimizely",
"version": "1-0-0"
},
"type": "object"
} | sp_158_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "ALPS Document",
"description": "An ALPS document contains a machine-readable collection of identifying strings and their human-readable explanations.",
"type": "object",
"properties": {
"links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"rel": {
"type": "string",
"description": "A [RFC5988][] approved relation type."
},
"href": {
"type": "string",
"description": "The URL of the resource described by the associated `rel`."
}
},
"required": [
"rel",
"href"
],
"description": "Identifies a link between an ALPS element and some other (possibly external) resource.\n\n"
},
"description": "Links to other related resources."
},
"descriptors": {
"type": "array",
"items": {
"description": "Defines the semantics of specific data elements or state transitions that MAY exist in an associated representation.\n\n"
},
"description": "Data and transition definitions."
},
"doc": {
"type": "object",
"properties": {
"format": {
"enum": [
"text",
"html",
"asciidoc"
],
"description": "Indicates how the content should be parsed."
},
"href": {
"type": "string",
"description": "References a related document containing human readable text."
},
"content": {
"type": "string",
"description": "The text contents."
}
},
"description": "A description of the element."
},
"ext": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "A document-wide unique identifier for the extension element."
},
"href": {
"type": "string",
"description": "References the definition of the extension."
},
"value": {
"type": "string",
"description": "Specifies the value."
}
},
"required": [
"id"
],
"description": "Author-specific extension to an element."
},
"version": {
"type": "string",
"default": "1.0"
}
}
} | o58211 |
{
"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 (circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_bc3b4cc0 |
{
"description": "An assignment made by the Seller of a SVLAN ID to a UNI or ENNI endpoint.",
"properties": {
"objectType": {
"description": "The type of the object, svlanIdAssignment.",
"enum": [
"svlanIdAssignment"
],
"type": "string"
},
"sellerEnniId": {
"description": "The id assigned by the Seller for the ENNI for this SVLAN ID assignment.",
"maxLength": 45,
"type": "string"
},
"sellerUniId": {
"description": "The id assigned by the Seller for the UNI for this SVLAN ID assignment.",
"maxLength": 45,
"type": "string"
},
"svlanId": {
"description": "The SVLAN ID assigned to this UNI or ENNI",
"minimum": 0,
"type": "integer"
}
},
"required": [
"objectType",
"svlanId"
],
"title": "svlanIdAssignment",
"type": "object"
} | o28210 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference": {
"description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
"properties": {
"apiVersion": {
"description": "API version of the referent",
"type": "string"
},
"kind": {
"description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"",
"type": "string"
},
"name": {
"description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
}
},
"required": [
"kind",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ExternalMetricSource": {
"description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).",
"properties": {
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
},
"target": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget",
"description": "target specifies the target value for the given metric"
}
},
"required": [
"metric",
"target"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingPolicy": {
"description": "HPAScalingPolicy is a single policy which must hold true for a specified past interval.",
"properties": {
"periodSeconds": {
"_format": "int32",
"description": "PeriodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).",
"type": "integer"
},
"type": {
"description": "Type is used to specify the scaling policy.",
"type": "string"
},
"value": {
"_format": "int32",
"description": "Value contains the amount of change which is permitted by the policy. It must be greater than zero",
"type": "integer"
}
},
"required": [
"type",
"value",
"periodSeconds"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingRules": {
"description": "HPAScalingRules configures the scaling behavior for one direction. These Rules are applied after calculating DesiredReplicas from metrics for the HPA. They can limit the scaling velocity by specifying scaling policies. They can prevent flapping by specifying the stabilization window, so that the number of replicas is not set instantly, instead, the safest value from the stabilization window is chosen.",
"properties": {
"policies": {
"description": "policies is a list of potential scaling polices which can be used during scaling. At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingPolicy"
},
"type": "array"
},
"selectPolicy": {
"description": "selectPolicy is used to specify which policy should be used. If not set, the default value MaxPolicySelect is used.",
"type": "string"
},
"stabilizationWindowSeconds": {
"_format": "int32",
"description": "StabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour). If not set, use the default values: - For scale up: 0 (i.e. no stabilization is done). - For scale down: 300 (i.e. the stabilization window is 300 seconds long).",
"type": "integer"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior": {
"description": "HorizontalPodAutoscalerBehavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively).",
"properties": {
"scaleDown": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingRules",
"description": "scaleDown is scaling policy for scaling Down. If not set, the default value is to allow to scale down to minReplicas pods, with a 300 second stabilization window (i.e., the highest recommendation for the last 300sec is used)."
},
"scaleUp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingRules",
"description": "scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of:\n * increase no more than 4 pods per 60 seconds\n * double the number of pods per 60 seconds\nNo stabilization is used."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier": {
"description": "MetricIdentifier defines the name and optionally selector for a metric",
"properties": {
"name": {
"description": "name is the name of the given metric",
"type": "string"
},
"selector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics."
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricSpec": {
"description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).",
"properties": {
"external": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ExternalMetricSource",
"description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)."
},
"object": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ObjectMetricSource",
"description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
},
"pods": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_PodsMetricSource",
"description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value."
},
"resource": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ResourceMetricSource",
"description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
},
"type": {
"description": "type is the type of metric source. It should be one of \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object.",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget": {
"description": "MetricTarget defines the target value, average value, or average utilization of a specific metric",
"properties": {
"averageUtilization": {
"_format": "int32",
"description": "averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. Currently only valid for Resource metric source type",
"type": "integer"
},
"averageValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
},
"type": {
"description": "type represents whether the metric type is Utilization, Value, or AverageValue",
"type": "string"
},
"value": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "value is the target value of the metric (as a quantity)."
}
},
"required": [
"type"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ObjectMetricSource": {
"description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
"properties": {
"describedObject": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference"
},
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
},
"target": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget",
"description": "target specifies the target value for the given metric"
}
},
"required": [
"describedObject",
"target",
"metric"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_PodsMetricSource": {
"description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.",
"properties": {
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
},
"target": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget",
"description": "target specifies the target value for the given metric"
}
},
"required": [
"metric",
"target"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ResourceMetricSource": {
"description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.",
"properties": {
"name": {
"description": "name is the name of the resource in question.",
"type": "string"
},
"target": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget",
"description": "target specifies the target value for the given metric"
}
},
"required": [
"name",
"target"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
}
},
"description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.",
"properties": {
"behavior": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior",
"description": "behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively). If not set, the default HPAScalingRules for scale up and scale down are used."
},
"maxReplicas": {
"description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"metrics": {
"description": "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. If not set, the default metric will be set to 80% average CPU utilization.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricSpec"
},
"type": [
"array",
"null"
]
},
"minReplicas": {
"description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"scaleTargetRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference",
"description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count."
}
},
"required": [
"scaleTargetRef",
"maxReplicas"
],
"type": "object"
} | kb_405_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.EiffelArtifactCreatedEvent",
"extendsJavaClass": "com.ericsson.eiffel.semantics.events.Event",
"properties": {
"meta": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.EiffelArtifactCreatedEventMeta",
"javaInterfaces": [
"com.ericsson.eiffel.semantics.events.Meta"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
},
"type": {
"type": "string",
"enum": [
"EiffelArtifactCreatedEvent"
]
},
"version": {
"type": "string",
"enum": [
"1.1.0"
],
"default": "1.1.0"
},
"time": {
"type": "integer",
"format": "utc-millisec"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"source": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Source",
"properties": {
"domainId": {
"type": "string"
},
"host": {
"type": "string"
},
"name": {
"type": "string"
},
"serializer": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Serializer",
"properties": {
"groupId": {
"type": "string"
},
"artifactId": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"groupId",
"artifactId",
"version"
],
"additionalProperties": false
},
"uri": {
"type": "string"
}
},
"additionalProperties": false
},
"security": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Security",
"properties": {
"sdm": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Sdm",
"properties": {
"authorIdentity": {
"type": "string"
},
"encryptedDigest": {
"type": "string"
}
},
"required": [
"authorIdentity",
"encryptedDigest"
],
"additionalProperties": false
}
},
"additionalProperties": false
}
},
"required": [
"id",
"type",
"version",
"time"
],
"additionalProperties": false
},
"data": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.EiffelArtifactCreatedEventData",
"properties": {
"gav": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Gav",
"properties": {
"groupId": {
"type": "string"
},
"artifactId": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"groupId",
"artifactId",
"version"
],
"additionalProperties": false
},
"fileInformation": {
"type": "array",
"items": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.FileInformation",
"properties": {
"classifier": {
"type": "string"
},
"extension": {
"type": "string"
}
},
"required": [
"classifier",
"extension"
],
"additionalProperties": false
}
},
"buildCommand": {
"type": "string"
},
"requiresImplementation": {
"type": "string",
"enum": [
"NONE",
"ANY",
"EXACTLY_ONE",
"AT_LEAST_ONE"
]
},
"dependsOn": {
"type": "array",
"items": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.DependsOn",
"properties": {
"groupId": {
"type": "string"
},
"artifactId": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"groupId",
"artifactId",
"version"
],
"additionalProperties": false
}
},
"implements": {
"type": "array",
"items": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Implement",
"properties": {
"groupId": {
"type": "string"
},
"artifactId": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"groupId",
"artifactId",
"version"
],
"additionalProperties": false
}
},
"name": {
"type": "string"
},
"customData": {
"type": "array",
"items": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.CustomData",
"properties": {
"key": {
"type": "string"
},
"value": {
"anyOf": [
{
"type": "object"
},
{
"type": "string"
},
{
"type": "array"
},
{
"type": "number"
}
]
}
},
"required": [
"key",
"value"
],
"additionalProperties": false
}
}
},
"required": [
"gav"
],
"additionalProperties": false
},
"links": {
"type": "array",
"items": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Link",
"properties": {
"type": {
"type": "string"
},
"target": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
}
},
"required": [
"type",
"target"
],
"additionalProperties": false
}
}
},
"required": [
"meta",
"data",
"links"
],
"additionalProperties": false
} | o89725 |
{
"definitions": {
"sock": {
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"body": {
"description": "body describing of the sock",
"readOnly": true,
"type": [
"string"
]
},
"id": {
"description": "unique identifier of sock",
"format": "uuid",
"readOnly": true,
"type": [
"string"
]
},
"identity": {
"allOf": [
{
"$ref": "#/definitions/sock/definitions/id"
}
]
},
"latitude": {
"description": "latitude of sock coordinates",
"readOnly": true,
"type": [
"number"
]
},
"longitude": {
"description": "longitude of sock coordinates",
"readOnly": true,
"type": [
"number"
]
},
"title": {
"description": "title of the sock",
"readOnly": true,
"type": [
"string"
]
}
},
"description": "Where socks go",
"links": [
{
"description": "List existing socks.",
"href": "/api/socks",
"http_header": {
"Accept": "application/vnd.wheresocksgo+json; version=1"
},
"method": "GET",
"rel": "instances",
"title": "List"
}
],
"properties": {
"body": {
"$ref": "#/definitions/sock/definitions/body"
},
"id": {
"$ref": "#/definitions/sock/definitions/id"
},
"latitude": {
"$ref": "#/definitions/sock/definitions/latitude"
},
"longitude": {
"$ref": "#/definitions/sock/definitions/longitude"
},
"title": {
"$ref": "#/definitions/sock/definitions/title"
}
},
"stability": "prototype",
"strictProperties": true,
"title": "Socks",
"type": [
"object"
]
}
},
"description": "Wheresocksgo API",
"links": [
{
"href": "https://wheresocksgo.herokuapp.com",
"rel": "self"
}
],
"properties": {
"sock": {
"$ref": "#/definitions/sock"
}
},
"title": "Wheresocksgo",
"type": [
"object"
]
} | o70440 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Task Definition Response",
"description": "Definition of a task that can be scheduled\n",
"type": "object",
"properties": {
"provisionerId": {
"title": "Provisioner Id",
"description": "Unique identifier for a provisioner, that can supply specified\n`workerType`\n",
"type": "string",
"minLength": 1,
"maxLength": 22,
"pattern": "^([a-zA-Z0-9-_]*)$"
},
"workerType": {
"title": "Worker Type",
"description": "Unique identifier for a worker-type within a specific provisioner\n",
"type": "string",
"minLength": 1,
"maxLength": 22,
"pattern": "^([a-zA-Z0-9-_]*)$"
},
"schedulerId": {
"title": "Scheduler Identifier",
"description": "Identifier for the scheduler that _defined_ this task, this can be an\nidentifier for a user or a service like the `\"task-graph-scheduler\"`.\nAlong with the `taskGroupId` this is used to form the permission scope\n`queue:assume:scheduler-id:<schedulerId>/<taskGroupId>`,\nthis scope is necessary to _schedule_ a defined task, or _rerun_ a task.\n",
"type": "string",
"minLength": 1,
"maxLength": 22,
"pattern": "^([a-zA-Z0-9-_]*)$"
},
"taskGroupId": {
"title": "Task-Group Identifier",
"description": "Identifier for a group of tasks scheduled together with this task, by\nscheduler identified by `schedulerId`. For tasks scheduled by the\ntask-graph scheduler, this is the `taskGraphId`. Defaults to `taskId` if\nproperty isn't specified.\n",
"type": "string",
"pattern": "^[A-Za-z0-9_-]{8}[Q-T][A-Za-z0-9_-][CGKOSWaeimquy26-][A-Za-z0-9_-]{10}[AQgw]$"
},
"routes": {
"title": "Task Specific Routes",
"description": "List of task specific routes, AMQP messages will be CC'ed to these routes.\n",
"type": "array",
"items": {
"title": "Task Specific Route",
"description": "A task specific route, AMQP messages will be CC'ed with a routing key\nmatching `route.<task-specific route>`. It's possible to dot (`.`) in\nthe task specific route to make sub-keys, etc. See the RabbitMQ\n[tutorial](http://www.rabbitmq.com/tutorials/tutorial-five-python.html)\nfor examples on how to use routing-keys.\n",
"type": "string",
"maxLength": 249,
"minLength": 1
},
"maxItems": 10,
"_uniqueItems": true
},
"priority": {
"title": "Task Priority",
"description": "Priority of task, this defaults to `normal` and the scope\n`queue:task-priority:high` is required to define a task with `priority`\nset to `high`. Additional priority levels may be added later.\n",
"type": "string",
"enum": [
"high",
"normal"
]
},
"retries": {
"title": "Retries",
"description": "Number of times to retry the task in case of infrastructure issues.\nAn _infrastructure issue_ is a worker node that crashes or is shutdown,\nthese events are to be expected.\n",
"type": "integer",
"minimum": 0,
"maximum": 49
},
"created": {
"title": "Created",
"description": "Creation time of task",
"type": "string",
"_format": "date-time"
},
"deadline": {
"title": "Deadline",
"description": "Deadline of the task, `pending` and `running` runs are resolved as **failed** if not resolved by other means before the deadline. Note, deadline cannot be more than5 days into the future",
"type": "string",
"_format": "date-time"
},
"expires": {
"title": "Expiration",
"description": "Task expiration, time at which task definition and status is deleted.\nNotice that all artifacts for the must have an expiration that is no\nlater than this. If this property isn't it will be set to `deadline`\nplus one year (this default may subject to change).\n",
"type": "string",
"_format": "date-time"
},
"scopes": {
"title": "Scopes",
"description": "List of scopes (or scope-patterns) that the task is\nauthorized to use.\n",
"type": "array",
"items": {
"title": "Scope",
"description": "A scope (or scope-patterns) which the task is\nauthorized to use. This can be a string or a string\nending with `*` which will authorize all scopes for\nwhich the string is a prefix. Scopes must be composed of\nprintable ASCII characters and spaces.\n",
"type": "string",
"pattern": "^[\\x20-\\x7e]*$"
}
},
"payload": {
"title": "Task Payload",
"description": "Task-specific payload following worker-specific format. For example the\n`docker-worker` requires keys like: `image`, `commands` and\n`features`. Refer to the documentation of `docker-worker` for details.\n",
"type": "object"
},
"metadata": {
"title": "Meta-data",
"description": "Required task metadata\n",
"type": "object",
"properties": {
"name": {
"title": "Name",
"description": "Human readable name of task, used to very briefly given an idea about\nwhat the task does.\n",
"type": "string",
"maxLength": 255
},
"description": {
"title": "Description",
"description": "Human readable description of the task, please **explain** what the\ntask does. A few lines of documentation is not going to hurt you.\n",
"type": "string",
"maxLength": 32768
},
"owner": {
"title": "Owner",
"description": "E-mail of person who caused this task, e.g. the person who did\n`hg push`. The person we should contact to ask why this task is here.\n",
"type": "string",
"_format": "email",
"maxLength": 255
},
"source": {
"title": "Source",
"description": "Link to source of this task, should specify a file, revision and\nrepository. This should be place someone can go an do a git/hg blame\nto who came up with recipe for this task.\n",
"type": "string",
"_format": "uri",
"maxLength": 4096
}
},
"additionalProperties": false,
"required": [
"name",
"description",
"owner",
"source"
]
},
"tags": {
"title": "Tags",
"description": "Arbitrary key-value tags (only strings limited to 4k). These can be used\nto attach informal meta-data to a task. Use this for informal tags that\ntasks can be classified by. You can also think of strings here as\ncandidates for formal meta-data. Something like\n`purpose: 'build' || 'test'` is a good example.\n",
"type": "object",
"additionalProperties": {
"type": "string",
"maxLength": 4096
}
},
"extra": {
"title": "Extra Data",
"description": "Object with properties that can hold any kind of extra data that should be\nassociated with the task. This can be data for the task which doesn't\nfit into `payload`, or it can supplementary data for use in services\nlistening for events from this task. For example this could be details to\ndisplay on _treeherder_, or information for indexing the task. Please, try\nto put all related information under one property, so `extra` data keys\nfor treeherder reporting and task indexing don't conflict, hence, we have\nreusable services. **Warning**, do not stuff large data-sets in here,\ntask definitions should not take-up multiple MiBs.\n",
"type": "object",
"default": {}
}
},
"additionalProperties": false,
"required": [
"provisionerId",
"workerType",
"schedulerId",
"taskGroupId",
"routes",
"priority",
"retries",
"created",
"deadline",
"scopes",
"payload",
"metadata",
"tags",
"extra"
]
}
| o79656 |
{
"definitions": {},
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"$id": "http://www.pucomex.serpro.gov.br/lpco/detalhar_pedido.schema.json",
"properties": {
"numero": {
"type": "string"
},
"chaveAcesso": {
"type": "string"
},
"codigoModelo": {
"type": "string"
},
"dataInicioVigenciaModelo": {
"type": "string"
},
"orgao": {
"type": "string"
},
"situacao": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"descricao": {
"type": "string"
}
}
},
"dataSituacaoAtual": {
"type": "string"
},
"importadorExportador": {
"type": "string"
},
"declarante": {
"type": [
"string",
"null"
]
},
"prorrogacaoPendente": {
"type": "boolean"
},
"retificacaoPendente": {
"type": "boolean"
},
"unidadeMedidaEstatistica": {
"type": [
"string",
"null"
]
},
"unidadeMedidaComercializada": {
"type": [
"string",
"null"
]
},
"informacaoAdicional": {
"type": [
"string",
"null"
]
},
"listaNcm": {
"type": "array",
"items": {
"type": "object",
"properties": {
"ncm": {
"type": "string"
},
"numeroItem": {
"type": "integer"
},
"listaCamposNcm": {
"type": "array",
"items": {
"type": "object",
"properties": {
"codigo": {
"type": "string"
},
"listaValor": {
"type": "array",
"items": {
"type": "string"
}
},
"intervenientes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"nome": {
"type": "string"
},
"endereco": {
"type": "object",
"properties": {
"logradouro": {
"type": [
"string",
"null"
]
},
"bairro": {
"type": [
"string",
"null"
]
},
"municipio": {
"type": [
"string",
"null"
]
},
"cep": {
"type": [
"string",
"null"
]
},
"uf": {
"type": [
"string",
"null"
]
}
}
}
}
}
}
}
}
},
"listaAtributosNcm": {
"type": "array",
"items": {
"type": "object",
"properties": {
"codigo": {
"type": "string"
},
"listaValor": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"unidadeMedidaComercializada": {
"type": [
"string",
"null"
]
}
}
}
},
"listaCamposFormulario": {
"type": "array",
"items": {
"type": "object",
"properties": {
"codigo": {
"type": "string"
},
"listaValor": {
"type": "array",
"items": {
"type": "string"
}
},
"intervenientes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"nome": {
"type": "string"
},
"endereco": {
"type": "object",
"properties": {
"logradouro": {
"type": [
"string",
"null"
]
},
"bairro": {
"type": [
"string",
"null"
]
},
"municipio": {
"type": [
"string",
"null"
]
},
"cep": {
"type": [
"string",
"null"
]
},
"uf": {
"type": [
"string",
"null"
]
}
}
}
}
}
}
}
}
},
"listaVinculos": {
"type": "array",
"items": {
"type": "object",
"properties": {
"dataVinculo": {
"type": "string"
},
"numeroDocumento": {
"type": "string"
},
"numeroDocumentoItem": {
"type": "integer"
},
"dataACD": {
"type": [
"string",
"null"
]
},
"dataDesembaraco": {
"type": [
"string",
"null"
]
},
"dataCCE": {
"type": [
"string",
"null"
]
},
"dataAverbacao": {
"type": [
"string",
"null"
]
},
"dataDesvinculacao": {
"type": [
"string",
"null"
]
},
"quantidadeComercial": {
"type": [
"string",
"null"
]
},
"quantidadeUnidadeEstatistica": {
"type": [
"string",
"null"
]
},
"vmle": {
"type": [
"string",
"null"
]
}
}
}
},
"saldos": {
"type": "object",
"properties": {
"titulo": {
"type": "string"
},
"saldoQuantidadeComercial": {
"type": "number"
},
"saldoQuantidadeEstatistica": {
"type": "number"
},
"saldoVMLE": {
"type": "number"
},
"saldoPesoLiquido": {
"type": "number"
},
"saldoValorFinanciado": {
"type": "number"
},
"saldoValorCondicaoVenda": {
"type": "number"
}
}
}
}
} | o73037 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"speaker": {
"type": "object",
"properties": {
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"email": {
"type": "string"
},
"postedSlides": {
"type": "boolean"
},
"rating": {
"type": "number"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"additionalItems": false
}
},
"additionalProperties": false,
"required": [
"firstName",
"lastName",
"email",
"postedSlides",
"rating",
"tags"
]
}
},
"additionalProperties": false,
"required": [
"speaker"
]
} | o81576 |
{
"definitions": {
"dependency-map": {
"$ref": "#/definitions/string-map"
},
"email": {
"description": "email address",
"pattern": "@",
"type": "string"
},
"keyword": {
"pattern": "^[a-z0-9](?:[_\\.\\- ]?[a-z0-9]+)*$",
"type": "string"
},
"license-object": {
"additionalProperties": false,
"properties": {
"type": {
"pattern": "[a-zA-Z0-9 _\\-\\.]+",
"type": "string"
},
"url": {
"$ref": "#/definitions/uri-http"
}
},
"required": [
"type",
"url"
],
"type": "object"
},
"operating-system": {
"enum": [
"aix",
"darwin",
"freebsd",
"linux",
"macos",
"openbsd",
"sunos",
"win32",
"windows"
],
"type": "string"
},
"path": {
"minLength": 1,
"type": "string"
},
"path-map": {
"additionalProperties": false,
"patternProperties": {
".+": {
"$ref": "#/definitions/path"
}
},
"type": "object"
},
"person": {
"description": "author, contributor, or maintainer",
"oneOf": [
{
"$ref": "#/definitions/person-object"
}
]
},
"person-object": {
"properties": {
"email": {
"$ref": "#/definitions/email"
},
"name": {
"pattern": "[a-zA-Z ]",
"type": "string"
},
"url": {
"$ref": "#/definitions/uri-http"
}
},
"required": [
"name"
],
"type": "object"
},
"repo-object": {
"additionalProperties": false,
"properties": {
"type": {
"pattern": "[a-zA-Z]",
"type": "string"
},
"url": {
"oneOf": [
{
"$ref": "#/definitions/uri-http"
},
{
"$ref": "#/definitions/uri-git"
}
]
}
},
"required": [
"type",
"url"
],
"type": "object"
},
"semver": {
"description": "semantic version",
"pattern": "^\\d+\\.\\d+\\.\\d+",
"type": "string"
},
"string-map": {
"additionalProperties": false,
"patternProperties": {
".+": {
"type": "string"
}
},
"type": "object"
},
"uri-git": {
"pattern": "^git://",
"type": "string"
},
"uri-http": {
"pattern": "^https?://",
"type": "string"
}
},
"description": "Schema for package.json.",
"properties": {
"__stdlib__": {
"description": "project meta data",
"properties": {
"envs": {
"description": "supported environments",
"properties": {
"browser": {
"type": "boolean"
},
"node": {
"type": "boolean"
}
},
"type": "object"
},
"stability": {
"description": "package stability",
"type": "string"
}
},
"required": [],
"type": "object"
},
"author": {
"$ref": "#/definitions/person",
"description": "package author"
},
"bin": {
"$ref": "#/definitions/path-map",
"description": "package executables"
},
"browser": {
"description": "main package entry point for a browser environment",
"oneOf": [
{
"$ref": "#/definitions/path"
},
{
"$ref": "#/definitions/path-map"
}
]
},
"bugs": {
"additionalProperties": false,
"description": "bug reporting",
"properties": {
"url": {
"$ref": "#/definitions/uri-http"
}
},
"required": [
"url"
],
"type": "object"
},
"contributors": {
"description": "package contributors",
"items": {
"$ref": "#/definitions/person"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"dependencies": {
"$ref": "#/definitions/dependency-map",
"description": "package dependencies"
},
"description": {
"description": "package description",
"minLength": 1,
"type": "string"
},
"devDependencies": {
"$ref": "#/definitions/dependency-map",
"description": "package development dependencies"
},
"directories": {
"additionalProperties": false,
"description": "package directories",
"properties": {
"benchmark": {
"$ref": "#/definitions/path"
},
"bin": {
"$ref": "#/definitions/path"
},
"data": {
"$ref": "#/definitions/path"
},
"doc": {
"$ref": "#/definitions/path"
},
"example": {
"$ref": "#/definitions/path"
},
"include": {
"$ref": "#/definitions/path"
},
"lib": {
"$ref": "#/definitions/path"
},
"man": {
"$ref": "#/definitions/path"
},
"scripts": {
"$ref": "#/definitions/path"
},
"src": {
"$ref": "#/definitions/path"
},
"test": {
"$ref": "#/definitions/path"
}
},
"required": [],
"type": "object"
},
"engines": {
"$ref": "#/definitions/string-map",
"description": "supported engines"
},
"gypfile": {
"description": "boolean instructing npm that a package is a binary addon that needs compiling and that npm should invoke node-gyp",
"type": "boolean"
},
"homepage": {
"$ref": "#/definitions/uri-http",
"description": "package homepage"
},
"keywords": {
"description": "package keywords",
"items": {
"$ref": "#/definitions/keyword"
},
"type": "array",
"_uniqueItems": true
},
"license": {
"description": "package license",
"minLength": 1,
"type": "string"
},
"licenses": {
"description": "package licenses",
"items": {
"$ref": "#/definitions/license-object"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"main": {
"$ref": "#/definitions/path",
"description": "main package entry point"
},
"maintainers": {
"description": "package maintainers",
"items": {
"$ref": "#/definitions/person"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"name": {
"description": "package name",
"pattern": "^@?[a-z](?:[-\\/]?[_a-z0-9]+)*$",
"type": "string"
},
"os": {
"description": "supported operating systems",
"items": {
"$ref": "#/definitions/operating-system"
},
"type": "array",
"_uniqueItems": true
},
"repositories": {
"description": "package repositories",
"items": {
"$ref": "#/definitions/repo-object"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"repository": {
"$ref": "#/definitions/repo-object",
"description": "package repository"
},
"scripts": {
"$ref": "#/definitions/string-map",
"description": "package scripts"
},
"types": {
"$ref": "#/definitions/path",
"description": "package TypeScript definitions"
},
"unpkg": {
"$ref": "#/definitions/path",
"description": "main package entry point for the unpkg CDN"
},
"version": {
"$ref": "#/definitions/semver",
"description": "package version"
}
},
"required": [
"name",
"version",
"description",
"author",
"contributors",
"main",
"scripts",
"homepage",
"repository",
"bugs",
"dependencies",
"devDependencies",
"engines",
"license",
"keywords"
],
"type": "object"
} | o78043 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"items": {
"properties": {
"name": {
"description": "The name of the item",
"type": "string"
},
"price": {
"description": "The price of the item",
"type": "number"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
}
},
"required": [
"name",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
},
"total_amount": {
"description": "The total amount of the invoice",
"type": "number"
}
},
"required": [
"customer_name",
"total_amount",
"items"
],
"type": "object"
} | generate_invoice_db530b0d |
{
"_comment": "This Spec is for Phase 1!! Most updated version is at https://github.com/reTHINK-project/specs/tree/master/schemas",
"properties": {
"context": {
"type": "string"
},
"dataSchemes": {
"items": {
"enum": [
"comm",
"connection",
"context",
"identity"
]
},
"type": "array"
},
"guid": {
"type": "string"
},
"resources": {
"items": {
"enum": [
"chat",
"audio",
"video",
"av",
"screen",
"file",
"midi",
"activity_context",
"availability_context",
"location_context",
"heart_rate_contexst",
"user_steps_context",
"battery_context",
"sleep_context",
"light_context",
"humidity_context",
"power",
"user_activity_context",
"user_communication_context"
]
},
"type": "array"
},
"runtime": {
"type": "string"
},
"url": {
"type": "string"
},
"user": {
"type": "string"
}
},
"required": [
"url",
"user",
"guid",
"dataSchemes",
"resources",
"runtime",
"context"
],
"type": "object"
} | o69745 |
{
"$schema": "http://json-schema.org/draft-07/schema",
"title": "JupyterLab Plugin Settings/Preferences Schema",
"description": "JupyterLab plugin settings/preferences schema",
"version": "1.0.0",
"type": "object",
"additionalProperties": true,
"properties": {
"jupyter.lab.setting-deprecated": {
"type": "boolean",
"default": false
},
"jupyter.lab.setting-icon": {
"type": "string",
"default": ""
},
"jupyter.lab.setting-icon-class": {
"type": "string",
"default": ""
},
"jupyter.lab.setting-icon-label": {
"type": "string",
"default": "Plugin"
},
"jupyter.lab.shortcuts": {
"items": {
"$ref": "#/definitions/shortcut"
},
"type": "array",
"default": []
},
"jupyter.lab.transform": {
"type": "boolean",
"default": false
}
},
"definitions": {
"shortcut": {
"properties": {
"args": {
"type": "object"
},
"command": {
"type": "string"
},
"disabled": {
"type": "boolean",
"default": false
},
"keys": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
},
"selector": {
"type": "string"
}
},
"required": [
"command",
"keys",
"selector"
],
"type": "object"
}
}
} | o53515 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.