json_schema
stringlengths 43
1.28M
| unique_id
stringlengths 2
41
|
---|---|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Schema for Artillery test scripts",
"type": "object",
"properties": {
"config": {
"type": "object",
"properties": {
"environments": {
"type": "object"
},
"target": {
"type": "string"
},
"phases": {
"type": "array"
},
"payload": {
"anyOf": [
{
"type": "object"
},
{
"type": "array"
}
]
},
"defaults": {
"type": "object"
},
"ensure": {
"type": "object"
},
"mode": {
"type": "string",
"enum": [
"poisson",
"uniform"
]
},
"tls": {
"type": "object"
}
}
},
"before": {
"type": "object",
"properties": {
"flow": {
"type": "array",
"items": {
"type": "object"
}
}
},
"required": [
"flow"
]
},
"scenarios": {
"type": "array"
}
},
"required": [
"scenarios"
]
} | o75613 |
{
"properties": {
"dimensions": {
"properties": {
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width",
"radius"
],
"type": "object"
},
"shape": {
"description": "The shape for which the area needs to be calculated",
"enum": [
"square",
"rectangle",
"circle"
],
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_197ac5fd |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"location": {
"type": "object",
"properties": {
"alias": {
"type": "string"
},
"address": {
"type": "string"
},
"coordinates": {
"type": "object",
"properties": {
"lat": {
"type": "number"
},
"lng": {
"type": "number"
}
},
"required": [
"lat",
"lng"
]
}
},
"required": [
"alias",
"address",
"coordinates"
]
},
"contact": {
"type": "object",
"properties": {
"phone": {
"type": "string"
}
},
"required": [
"phone"
]
},
"priceRange": {
"type": "object",
"properties": {
"from": {
"type": "number"
},
"to": {
"type": "number"
}
},
"required": [
"from",
"to"
]
},
"menu": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"price": {
"type": "number"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"name",
"price",
"tags"
]
}
}
},
"required": [
"name",
"location",
"contact",
"priceRange",
"menu"
]
}
} | o19360 |
{
"properties": {
"address1": {
"type": "string"
},
"city": {
"type": "string"
},
"contact_name": {
"type": "string"
},
"email": {
"type": "string"
},
"id": {
"type": "integer"
},
"personal_data_removed": {
"type": "boolean"
},
"phone_number": {
"type": "string"
},
"postcode": {
"type": "string"
},
"supplier_id": {
"type": "integer"
}
},
"required": [
"id",
"contact_name",
"email"
],
"title": "ContactInformation",
"type": "object"
} | o21087 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"order_items": {
"description": "The items included in the order",
"items": {
"properties": {
"item_name": {
"description": "The name of the item",
"type": "string"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
},
"unit_price": {
"description": "The unit price of the item",
"type": "number"
}
},
"required": [
"item_name",
"quantity",
"unit_price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"order_items"
],
"type": "object"
} | generate_invoice_d5c4ba56 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "yotta-shrinkwrap.json schema",
"properties": {
"modules": {
"$ref": "#/definitions/modulesArray"
},
"targets": {
"$ref": "#/definitions/targetsArray"
},
"additionalProperties": false
},
"definitions": {
"module": {
"type": "object",
"properties": {
"name": {
"$ref": "#/definitions/name"
},
"version": {
"$ref": "#/definitions/semverSpecification"
}
},
"required": [
"name",
"version"
]
},
"target": {
"comment": "targets are specified in the same way as modules (name and version spec)",
"$ref": "#/definitions/module"
},
"name": {
"type": "string",
"pattern": "^[a-z]+[a-z0-9-]*$",
"minLength": 2,
"maxLength": 64,
"not": {
"enum": [
"test",
"source",
"yotta_modules",
"yotta_targets",
"include"
]
}
},
"path": {
"type": "string",
"minLength": 1,
"maxLength": 4000,
"pattern": "^[a-zA-Z0-9 ()._/-]*$"
},
"semver": {
"type": "string",
"pattern": "^(0|[1-9][0-9]*)[.](0|[1-9][0-9]*)[.](0|[1-9][0-9]*)(-[a-zA-Z0-9]+[a-zA-Z0-9-]*([.][a-zA-Z0-9]+[a-zA-Z0-9-]*)*)?([+][a-zA-Z0-9]+[a-zA-Z0-9-]*([.][a-zA-Z0-9]+[a-zA-Z0-9-]*)*)?$"
},
"semverSpecification": {
"comment": "!!! TODO: pattern",
"type": "string",
"pattern": ".*"
},
"modulesArray": {
"type": "array",
"items": {
"$ref": "#/definitions/module"
}
},
"targetsArray": {
"type": "array",
"items": {
"$ref": "#/definitions/target"
}
}
}
}
| o24621 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Appnexus Adapter Params",
"description": "A schema which validates params accepted by the AppNexus adapter",
"type": "object",
"properties": {
"placement_id": {
"type": "integer",
"description": "An ID which identifies this placement of the impression"
},
"placementId": {
"type": "integer",
"description": "Deprecated, use placement_id instead."
},
"inv_code": {
"type": "string",
"description": "A code identifying the inventory of this placement."
},
"invCode": {
"type": "string",
"description": "Deprecated, use inv_code instead."
},
"member": {
"type": "string",
"description": "An ID which identifies the member selling the impression."
},
"keywords": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"description": "A key with one or more values associated with it. These are used in buy-side segment targeting.",
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "array",
"minItems": 1,
"items": {
"type": "string"
}
}
},
"required": [
"key"
]
}
},
"traffic_source_code": {
"type": "string",
"description": "Specifies the third-party source of this impression."
},
"trafficSourceCode": {
"type": "string",
"description": "Deprecated, use traffic_source_code instead."
},
"reserve": {
"type": "number",
"description": "The minimium acceptable bid, in CPM, using US Dollars"
},
"position": {
"type": "string",
"enum": [
"above",
"below"
],
"description": "Specifies the ad unit as above or below the fold"
},
"use_pmt_rule": {
"type": "boolean",
"description": "Boolean to signal AppNexus to apply the relevant payment rule"
},
"private_sizes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"w": {
"type": "integer"
},
"h": {
"type": "integer"
}
},
"required": [
"w",
"h"
]
},
"description": "Private sizes (ex: [{\"w\": 300, \"h\": 250},{...}]), experimental, may not be supported."
}
},
"oneOf": [
{
"oneOf": [
{
"required": [
"placementId"
]
},
{
"required": [
"placement_id"
]
}
]
},
{
"oneOf": [
{
"required": [
"invCode",
"member"
]
},
{
"required": [
"inv_code",
"member"
]
}
]
}
],
"not": {
"required": [
"placementId",
"invCode",
"member"
]
}
} | o68294 |
{
"$id": "https://github.com/devpaul/webserv/tree/master/webserv.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "webserv configuration",
"description": "webserv configuration schema",
"type": "object",
"properties": {
"externals": {
"type": "object",
"description": "external modules added to the loader factory",
"patternProperties": {
"^S_": {
"$ref": "#/definitions/external"
}
}
},
"logLevel": {
"type": "string",
"description": "Changes webserv's log level",
"enum": [
"debug",
"info",
"warn",
"error"
]
},
"servers": {
"type": "array",
"description": "a list of servers started by this configuration",
"items": {
"$ref": "#/definitions/server"
},
"additionalItems": false
}
},
"required": [
"servers"
],
"definitions": {
"external": {
"type": "object",
"description": "configuration information for the external loader",
"properties": {
"path": {
"type": "string",
"description": "path to the external module loader, relative to this configuration file"
}
},
"required": [
"path"
],
"additionalProperties": false
},
"httpsOptions": {
"type": "object",
"properties": {
"httpsConfig": {
"type": "object",
"description": "configuration for https",
"properties": {
"pfx": {
"description": "PFX or PKCS12 encoded private key and certificate chain. pfx is an alternative to providing key and cert individually. PFX is usually encrypted, if it is, passphrase will be used to decrypt it.",
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": [
"string",
"object"
]
}
}
]
},
"key": {
"description": "Private keys in PEM format. PEM allows the option of private keys being encrypted. Encrypted keys will be decrypted with options.passphrase.",
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "object"
}
}
]
},
"passphrase": {
"type": "string",
"description": "Shared passphrase used for a single private key and/or a PFX"
},
"cert": {
"description": "Cert chains in PEM format. One cert chain should be provided per private key.",
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"ca": {
"description": "Optionally override the trusted CA certificates. Default is to trust the well-known CAs curated by Mozilla.",
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"ciphers": {
"type": "string",
"description": "Cipher suite specification, replacing the default."
},
"honorCipherOrder": {
"type": "boolean",
"description": "Attempt to use the server's cipher suite preferences instead of the client's"
},
"ecdhCurve": {
"type": "string",
"description": "A string describing a named curve or a colon separated list of curve NIDs or names, for example P-521:P-384:P-256, to use for ECDH key agreement. Set to auto to select the curve automatically."
},
"clientCertEngine": {
"type": "string",
"description": "Name of an OpenSSL engine which can provide the client certificate."
},
"crl": {
"description": "PEM formatted CRLs (Certificate Revocation Lists).",
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"dhparam": {
"description": "Diffie Hellman parameters",
"type": "string"
},
"maxVersion": {
"description": "Optionally set the maximum TLS version to allow.",
"type": "string",
"enum": [
"TLSv1.3",
"TLSv1.2",
"TLSv1.1",
"TLSv1"
]
},
"minVersion": {
"description": "Optionally set the minimum TLS version to allow.",
"type": "string",
"enum": [
"TLSv1.3",
"TLSv1.2",
"TLSv1.1",
"TLSv1"
]
}
}
}
}
},
"server": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "used to uniquely identify the server"
},
"port": {
"type": "number",
"description": "numeric port to start the server"
},
"services": {
"type": "array",
"description": "a list of services configured and added to the application server",
"items": {
"$ref": "#/definitions/service"
},
"additionalItems": false
},
"type": {
"type": "string",
"enum": [
"http",
"https"
],
"description": "The type of server to start; defaults to http"
}
},
"allOf": [
{
"if": {
"properties": {
"type": {
"const": "https"
}
}
},
"then": {
"$ref": "#/definitions/httpsOptions"
}
}
]
},
"service": {
"type": "object",
"description": "a service to be added to the application",
"allOf": [
{
"if": {
"properties": {
"name": {
"const": "chat"
}
}
},
"then": {
"description": "A very basic chat service using websockets"
}
},
{
"if": {
"properties": {
"name": {
"const": "crud"
}
}
},
"then": {
"description": "The crud service provides in-memory create, read, update, delete (and list) operations",
"properties": {
"route": {
"type": "string",
"description": "the base route for this service"
},
"loadData": {
"type": "object",
"description": "load CRUD data from disk",
"properties": {
"path": {
"type": "string",
"description": "loads all json files in this path into the data store"
}
},
"required": [
"path"
]
},
"data": {
"type": "array",
"items": {
"type": "object",
"description": "a list of records applied to different crud pools",
"properties": {
"id": {
"type": "string",
"description": "identifier for this store used as part of the crud path"
}
}
}
},
"operations": {
"type": "array",
"description": "when present defines the list of allowable operations",
"items": {
"type": "string",
"enum": [
"list",
"create",
"read",
"update",
"delete"
]
}
}
},
"required": [
"route"
]
}
},
{
"if": {
"properties": {
"name": {
"const": "file"
}
}
},
"then": {
"description": "a simple file service",
"properties": {
"basePath": {
"type": "string",
"description": "the top-level url for this route"
},
"routes": {
"type": "object",
"description": "a map of routes to file paths to serve file and directories"
},
"searchDefaults": {
"type": "array",
"description": "a list of filenames to search for when a url points to a directory. Defaults to index.html.",
"items": {
"type": "string"
}
},
"showDirectoryContents": {
"type": "boolean",
"description": "if the files in a directory should be listed. Defaults to true."
},
"trailingSlash": {
"type": "boolean",
"description": "if a url that points to a directory should always end in a slash. Defaults to false."
},
"extensions": {
"type": "array",
"description": "A list of file extensions to append to file names without an extension. Used to make TypeScript transpiled extension-less imports work without an additional parsing step.",
"items": {
"type": "string"
}
}
}
}
},
{
"if": {
"properties": {
"name": {
"const": "log"
}
}
},
"then": {
"description": "adds console logging and (optionally) a log server",
"properties": {
"respondOK": {
"type": "boolean",
"description": "if the server should return 200 after every request. Useful for quickly logging something to console for visibility."
}
}
}
},
{
"if": {
"properties": {
"name": {
"const": "proxy"
}
}
},
"then": {
"description": "proxies requests to another server",
"properties": {
"route": {
"type": "string",
"description": "the top-level route for this proxy"
},
"target": {
"type": "string",
"description": "the target url of the request"
},
"forward": {
"type": "string",
"description": "URL string to be parsed with the url module."
},
"ws": {
"type": "boolean",
"description": "if you want to proxy websockets"
},
"xfwd": {
"type": "boolean",
"description": "Adds x- forward headers"
},
"secure": {
"type": "boolean",
"description": "verify SSL certificate"
},
"toProxy": {
"type": "boolean",
"description": "Explicitly specify if we are proxying to another proxy"
},
"prependPath": {
"type": "boolean",
"description": "Specify whether you want to prepend the target's path to the proxy path"
},
"ignorePath": {
"type": "boolean",
"description": "Specify whether you want to ignore the proxy path of the incoming request"
},
"localAddress": {
"type": "boolean",
"description": "Local interface string to bind for outgoing connections"
},
"changeOrigin": {
"type": "boolean",
"description": "Changes the origin of the host header to the target URL"
},
"preserveHeaderKeyCase": {
"type": "boolean",
"description": "specify whether you want to keep letter case of response header key"
},
"auth": {
"type": "string",
"description": "Basic authentication i.e. 'user:password' to compute an Authorization header."
},
"hostRewrite": {
"type": "string",
"description": "Rewrites the location hostname on (301 / 302 / 307 / 308) redirects, Default: null."
},
"autoRewrite": {
"type": "boolean",
"description": "Rewrites the location host/ port on (301 / 302 / 307 / 308) redirects based on requested host/ port.Default: false."
},
"protocolRewrite": {
"type": "string",
"description": "Rewrites the location protocol on (301 / 302 / 307 / 308) redirects to 'http' or 'https'.Default: null."
},
"cookieDomainRewrite": {
"type": "string",
"description": "rewrites domain of set-cookie headers."
},
"cookiePathRewrite": {
"type": "string",
"description": "rewrites path of set-cookie headers. Default: false"
},
"headers": {
"type": "object",
"description": "object with extra headers to be added to target requests."
},
"proxyTimeout": {
"type": "number",
"description": "Timeout (in milliseconds) when proxy receives no response from target. Default: 120000 (2 minutes)"
},
"timeout": {
"type": "number",
"description": "Timeout (in milliseconds) for incoming requests"
},
"followRedirects": {
"type": "boolean",
"description": "Specify whether you want to follow redirects. Default: false"
}
}
}
},
{
"if": {
"properties": {
"name": {
"const": "upload"
}
}
},
"then": {
"description": "A basic upload service",
"properties": {
"route": {
"type": "string",
"description": "the base route for the upload service"
},
"allowOverwrite": {
"type": "boolean",
"description": "if files should be overwritten on disk"
},
"createUploadDirectory": {
"type": "boolean",
"description": "automatically create the upload directory if it does not exist"
},
"directory": {
"type": "string",
"description": "a relative path to the upload directory"
}
}
}
},
{
"else": {
"properties": {
"name": {
"type": "string",
"description": "the name of the service registered with the loader"
}
},
"required": [
"name"
]
}
}
]
}
}
} | o36012 |
{
"title": "Range",
"$schema": "http://json-schema.org/draft-04/schema",
"description": "Range object.",
"properties": {
"interactionMode": {
"type": "string",
"description": "Indicates the mode in which the active range should be presented to the user.",
"enum": [
"picker",
"slider"
]
},
"numberOfStops": {
"type": "number",
"description": "This is used to generate the activeRangeValues if activeRangeValues are not specified."
},
"stopInterval": {
"type": "number",
"description": "Interval in which stops should be generated."
}
},
"oneOf": [
{
"required": [
"interactionMode",
"numberOfStops"
]
},
{
"required": [
"interactionMode",
"stopInterval"
]
}
],
"additionalProperties": false,
"esriDocumentation": {
"examples": [
{
"title": "range",
"code": {
"range": {
"interactionMode": "slider",
"stopInterval": 1
}
}
}
]
}
} | o90287 |
{
"additionalProperties": true,
"properties": {
"body": {
"additionalProperties": true,
"properties": {
"foreground": {
"type": "boolean"
},
"latitude": {
"type": "string"
},
"longitude": {
"type": "string"
},
"session_id": {
"_format": "uuid",
"type": "string"
}
},
"type": "object"
},
"device": {
"additionalProperties": true,
"properties": {
"amazon_channel": {
"_format": "uuid",
"type": "string"
},
"android_channel": {
"_format": "uuid",
"type": "string"
},
"ios_channel": {
"_format": "uuid",
"type": "string"
},
"named_user_id": {
"_format": "uuid",
"type": "string"
}
},
"type": "object"
},
"id": {
"_format": "uuid",
"type": "string"
},
"occurred": {
"_format": "date-time",
"type": "string"
},
"offset": {
"type": "string"
},
"processed": {
"_format": "date-time",
"type": "string"
},
"type": {
"pattern": "^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)$",
"type": "string"
}
},
"self": {
"format": "jsonschema",
"name": "LOCATION",
"vendor": "com.urbanairship.connect",
"version": "1-0-0"
},
"type": "object"
} | sp_390_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_ServiceReference": {
"description": "ServiceReference holds a reference to Service.legacy.k8s.io",
"properties": {
"name": {
"description": "name is the name of the service. Required",
"type": "string"
},
"namespace": {
"description": "namespace is the namespace of the service. Required",
"type": "string"
},
"path": {
"description": "path is an optional URL path at which the webhook will be contacted.",
"type": "string"
},
"port": {
"_format": "int32",
"description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.",
"type": "integer"
}
},
"required": [
"namespace",
"name"
],
"type": "object"
}
},
"description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.",
"properties": {
"caBundle": {
"description": "caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.",
"format": "byte",
"type": [
"string",
"null"
]
},
"service": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_ServiceReference",
"description": "service is a reference to the service for this webhook. Either service or url must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`."
},
"url": {
"description": "url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.",
"type": [
"string",
"null"
]
}
},
"type": "object"
} | kb_1149_Normalized |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$comment": "v0.1.0",
"title": "Pipeline Schema",
"description": "A dvc.yaml pipeline definition",
"type": "object",
"definitions": {
"OutputFlags": {
"type": "object",
"description": "Output file with more flags",
"properties": {
"cache": {
"description": "Cache outputs by dvc",
"type": "boolean",
"default": true
},
"persist": {
"description": "Persist outputs among runs",
"type": "boolean",
"default": false
}
}
},
"PlotFlags": {
"description": "Plots file with more flags",
"allOf": [
{
"$ref": "#/definitions/OutputFlags"
}
],
"$comment": "Unfortunately, 'additionalProperties' only works props in immediate schema.",
"properties": {
"cache": {},
"persist": {},
"x": {
"description": "Default field name to use as x-axis data",
"type": [
"string",
"integer"
]
},
"y": {
"description": "Default field name to use as y-axis data",
"type": [
"string",
"integer"
]
},
"x_label": {
"description": "Default label for the x-axis",
"type": "string"
},
"y_label": {
"description": "Default label for the y-axis",
"type": "string"
},
"template": {
"description": "Default plot template",
"type": "string"
},
"title": {
"description": "Default plot title",
"type": "string"
},
"header": {
"description": "The target CSV or TSV has a header",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
},
"Output": {
"description": "An output of the stage",
"anyOf": [
{
"type": "string",
"description": "Output will be cached by dvc"
},
{
"type": "object",
"description": "Output file",
"patternProperties": {
"^.*$": {
"$ref": "#/definitions/OutputFlags",
"additionalProperties": false
}
},
"additionalProperties": false,
"maxProperties": 1
}
]
}
},
"properties": {
"stages": {
"description": "List of stages.",
"type": "object",
"patternProperties": {
"^[A-Za-z0-9_-]+$": {
"description": "The stage",
"type": "object",
"properties": {
"cmd": {
"type": "string",
"description": "Command to run"
},
"wdir": {
"type": "string",
"description": "Working directory"
},
"deps": {
"type": "array",
"description": "Dependencies for the stage",
"items": {
"type": "string",
"description": "A dependency for the stage"
},
"minItems": 1,
"_uniqueItems": true
},
"params": {
"type": "array",
"description": "Params for the stage",
"items": {
"anyOf": [
{
"type": "string",
"description": "Params from default params file"
},
{
"type": "object",
"description": "Params from custom params file",
"patternProperties": {
"^.*$": {
"type": "array",
"description": "Custom params file",
"items": {
"type": "string",
"description": "Params from custom file"
},
"minItems": 1,
"_uniqueItems": true
}
},
"additionalProperties": false,
"maxProperties": 1
}
]
},
"minItems": 1,
"_uniqueItems": true
},
"outs": {
"type": "array",
"description": "Outputs of the stage",
"items": {
"$ref": "#/definitions/Output"
},
"minItems": 1,
"_uniqueItems": true
},
"metrics": {
"type": "array",
"description": "Metrics outputs of the stage",
"items": {
"$ref": "#/definitions/Output"
},
"minItems": 1,
"_uniqueItems": true
},
"plots": {
"type": "array",
"description": "Plots outputs of the stage",
"items": {
"anyOf": [
{
"type": "string",
"description": "Plots will be cached by dvc"
},
{
"type": "object",
"description": "Output file",
"patternProperties": {
"^.*$": {
"$ref": "#/definitions/PlotFlags"
}
},
"maxProperties": 1
}
]
},
"minItems": 1,
"_uniqueItems": true
},
"frozen": {
"type": "boolean",
"description": "Assume stage as unchanged",
"default": false
},
"locked": {
"type": "boolean",
"description": "Assume stage as unchanged (deprecated)",
"default": false
},
"always_changed": {
"type": "boolean",
"description": "Assume stage as always changed.",
"default": false
},
"meta": {
"description": "Additional information/metadata"
}
},
"additionalProperties": false,
"required": [
"cmd"
]
}
},
"additionalProperties": false
}
},
"required": [
"stages"
]
} | o38538 |
{
"$id": "https://json.schemastore.org/codecov",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"default": {
"$comment": "See https://docs.codecov.com/docs/commit-status#basic-configuration",
"properties": {
"target": {
"type": ["string", "number"],
"pattern": "^(([0-9]+\\.?[0-9]*|\\.[0-9]+)%?|auto)$",
"default": "auto"
},
"threshold": {
"type": "string",
"default": "0%",
"pattern": "^([0-9]+\\.?[0-9]*|\\.[0-9]+)%?$"
},
"base": {
"type": "string",
"default": "auto",
"deprecated": true
},
"flags": {
"type": "array",
"default": []
},
"paths": {
"type": ["array", "string"],
"default": []
},
"branches": {
"type": "array",
"default": []
},
"if_not_found": {
"type": "string",
"enum": ["failure", "success"],
"default": "success"
},
"informational": {
"type": "boolean",
"default": false
},
"only_pulls": {
"type": "boolean",
"default": false
},
"if_ci_failed": {
"type": "string",
"enum": ["error", "success"]
},
"flag_coverage_not_uploaded_behavior": {
"type": "string",
"enum": ["include", "exclude", "pass"]
}
}
},
"flag": {
"type": "object",
"properties": {
"joined": {
"type": "boolean"
},
"required": {
"type": "boolean"
},
"ignore": {
"type": "array",
"items": {
"type": "string"
}
},
"paths": {
"type": "array",
"items": {
"type": "string"
}
},
"assume": {
"type": ["boolean", "array"],
"items": {
"type": "string"
}
}
}
},
"layout": {
"anyOf": [
{},
{
"enum": [
"header",
"footer",
"diff",
"file",
"files",
"flag",
"flags",
"reach",
"sunburst",
"uncovered"
]
}
]
},
"notification": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"branches": {
"type": "string"
},
"threshold": {
"type": "string"
},
"message": {
"type": "string"
},
"flags": {
"type": "string"
},
"base": {
"enum": ["parent", "pr", "auto"]
},
"only_pulls": {
"type": "boolean"
},
"paths": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"description": "Schema for codecov.yml files.",
"properties": {
"codecov": {
"description": "See https://docs.codecov.io/docs/codecov-yaml for details",
"type": "object",
"properties": {
"url": {
"type": "string"
},
"slug": {
"type": "string"
},
"bot": {
"description": "Team bot. See https://docs.codecov.io/docs/team-bot for details",
"type": "string"
},
"branch": {
"type": "string"
},
"ci": {
"description": "Detecting CI services. See https://docs.codecov.io/docs/detecting-ci-services for details.",
"type": "array",
"items": {
"type": "string"
}
},
"assume_all_flags": {
"type": "boolean"
},
"strict_yaml_branch": {
"type": "string"
},
"max_report_age": {
"type": ["string", "integer", "boolean"]
},
"disable_default_path_fixes": {
"type": "boolean"
},
"require_ci_to_pass": {
"type": "boolean"
},
"allow_pseudo_compare": {
"type": "boolean"
},
"archive": {
"type": "object",
"properties": {
"uploads": {
"type": "boolean"
}
}
},
"notify": {
"type": "object",
"properties": {
"after_n_builds": {
"type": "integer"
},
"countdown": {
"type": "integer"
},
"delay": {
"type": "integer"
},
"wait_for_ci": {
"type": "boolean"
}
}
},
"ui": {
"type": "object",
"properties": {
"hide_density": {
"type": ["boolean", "array"],
"items": {
"type": "string"
}
},
"hide_complexity": {
"type": ["boolean", "array"],
"items": {
"type": "string"
}
},
"hide_contextual": {
"type": "boolean"
},
"hide_sunburst": {
"type": "boolean"
},
"hide_search": {
"type": "boolean"
}
}
}
}
},
"coverage": {
"description": "Coverage configuration. See https://docs.codecov.io/docs/coverage-configuration for details.",
"type": "object",
"properties": {
"precision": {
"type": "integer",
"minimum": 0,
"maximum": 5
},
"round": {
"enum": ["down", "up", "nearest"]
},
"range": {
"type": "string"
},
"notify": {
"description": "Notifications. See https://docs.codecov.io/docs/notifications for details.",
"type": "object",
"properties": {
"irc": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"branches": {
"type": "string"
},
"threshold": {
"type": "string"
},
"message": {
"type": "string"
},
"flags": {
"type": "string"
},
"base": {
"enum": ["parent", "pr", "auto"]
},
"only_pulls": {
"type": "boolean"
},
"paths": {
"type": "array",
"items": {
"type": "string"
}
},
"channel": {
"type": "string"
},
"password": {
"type": "string"
},
"nickserv_password": {
"type": "string"
},
"notice": {
"type": "boolean"
}
}
},
"slack": {
"description": "Slack. See https://docs.codecov.io/docs/notifications#section-slack for details.",
"type": "object",
"properties": {
"url": {
"type": "string"
},
"branches": {
"type": "string"
},
"threshold": {
"type": "string"
},
"message": {
"type": "string"
},
"flags": {
"type": "string"
},
"base": {
"enum": ["parent", "pr", "auto"]
},
"only_pulls": {
"type": "boolean"
},
"paths": {
"type": "array",
"items": {
"type": "string"
}
},
"attachments": {
"$ref": "#/definitions/layout"
}
}
},
"gitter": {
"description": "Gitter. See https://docs.codecov.io/docs/notifications#section-gitter for details.",
"type": "object",
"properties": {
"url": {
"type": "string"
},
"branches": {
"type": "string"
},
"threshold": {
"type": "string"
},
"message": {
"type": "string"
},
"flags": {
"type": "string"
},
"base": {
"enum": ["parent", "pr", "auto"]
},
"only_pulls": {
"type": "boolean"
},
"paths": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"hipchat": {
"description": "Hipchat. See https://docs.codecov.io/docs/notifications#section-hipchat for details.",
"type": "object",
"properties": {
"url": {
"type": "string"
},
"branches": {
"type": "string"
},
"threshold": {
"type": "string"
},
"message": {
"type": "string"
},
"flags": {
"type": "string"
},
"base": {
"enum": ["parent", "pr", "auto"]
},
"only_pulls": {
"type": "boolean"
},
"paths": {
"type": "array",
"items": {
"type": "string"
}
},
"card": {
"type": "boolean"
},
"notify": {
"type": "boolean"
}
}
},
"webhook": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"branches": {
"type": "string"
},
"threshold": {
"type": "string"
},
"message": {
"type": "string"
},
"flags": {
"type": "string"
},
"base": {
"enum": ["parent", "pr", "auto"]
},
"only_pulls": {
"type": "boolean"
},
"paths": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"email": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"branches": {
"type": "string"
},
"threshold": {
"type": "string"
},
"message": {
"type": "string"
},
"flags": {
"type": "string"
},
"base": {
"enum": ["parent", "pr", "auto"]
},
"only_pulls": {
"type": "boolean"
},
"paths": {
"type": "array",
"items": {
"type": "string"
}
},
"layout": {
"$ref": "#/definitions/layout"
},
"+to": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
"status": {
"description": "Commit status. See https://docs.codecov.io/docs/commit-status for details.",
"type": ["boolean", "object"],
"additionalProperties": false,
"properties": {
"default_rules": {
"type": "object"
},
"project": {
"properties": {
"default": {
"type": ["object", "boolean"],
"$ref": "#/definitions/default"
}
},
"additionalProperties": {
"type": ["object", "boolean"],
"$ref": "#/definitions/default"
}
},
"patch": {
"anyOf": [
{
"type": "object",
"$ref": "#/definitions/default"
},
{
"type": "string",
"enum": ["off"]
},
{
"type": "boolean"
}
]
},
"changes": {
"type": ["object", "boolean"],
"$ref": "#/definitions/default"
}
}
}
}
},
"ignore": {
"description": "Ignoring paths. see https://docs.codecov.io/docs/ignoring-paths for details.",
"type": "array",
"items": {
"type": "string"
}
},
"fixes": {
"description": "Fixing paths. See https://docs.codecov.io/docs/fixing-paths for details.",
"type": "array",
"items": {
"type": "string"
}
},
"flags": {
"description": "Flags. See https://docs.codecov.io/docs/flags for details.",
"oneOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/flag"
}
},
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/flag"
}
}
]
},
"comment": {
"description": "Pull request comments. See https://docs.codecov.io/docs/pull-request-comments for details.",
"oneOf": [
{
"type": "object",
"properties": {
"layout": {
"$ref": "#/definitions/layout"
},
"require_changes": {
"type": "boolean"
},
"require_base": {
"type": "boolean"
},
"require_head": {
"type": "boolean"
},
"branches": {
"type": "array",
"items": {
"type": "string"
}
},
"behavior": {
"enum": ["default", "once", "new", "spammy"]
},
"flags": {
"type": "array",
"items": {
"$ref": "#/definitions/flag"
}
},
"paths": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
{
"const": false
}
]
},
"github_checks": {
"description": "GitHub Checks. See https://docs.codecov.com/docs/github-checks for details.",
"anyOf": [
{
"type": "object",
"properties": {
"annotations": {
"type": "boolean"
}
}
},
{ "type": "boolean" },
{ "type": "string", "enum": ["off"] }
]
}
},
"title": "JSON schema for Codecov configuration files",
"type": "object"
}
| codecov |
{
"additionalProperties": false,
"properties": {
"brand": {
"type": "string"
},
"category": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"price": {
"type": "string"
},
"schema": {
"format": "url",
"type": "string"
}
},
"required": [
"schema",
"id",
"brand",
"name",
"description",
"category"
],
"self": {
"format": "jsonschema",
"name": "product/create",
"vendor": "com.nordstrom",
"version": "1-0-0"
},
"type": "object"
} | o54575 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"address": {
"type": "object",
"properties": {
"street_address": {
"type": "string"
},
"city": {
"type": "string"
},
"state": {
"type": "string"
}
},
"required": [
"street_address",
"city",
"state"
]
}
},
"type": "object",
"properties": {
"billing_address": {
"$ref": "#/definitions/address"
},
"shipping_address": {
"$ref": "#/definitions/address"
}
}
} | o90886 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Badge List",
"description": "A list of available Open Badges",
"type": "object",
"required": [
"badgelist"
],
"additionalProperties": false,
"properties": {
"badgelist": {
"description": "Container for a set of badge elements.",
"type": "array",
"items": {
"title": "Badge",
"description": "Container for the data needed to describe a badge assertion to extract.",
"type": "object",
"required": [
"loc"
],
"additionalProperties": false,
"properties": {
"loc": {
"description": "The location URI of a badge assertion.",
"type": "string",
"format": "uri"
},
"priority": {
"description": "The priority of a particular badge relative to other badges on the same site.",
"type": "number",
"minimum": 0.0,
"maximum": 1.0
}
}
}
}
}
} | o21869 |
{
"properties": {
"meeting_details": {
"properties": {
"datetime": {
"description": "The date and time of the meeting",
"format": "date-time",
"type": "string"
},
"participants": {
"description": "The email addresses of the meeting participants",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "The title of the meeting",
"type": "string"
}
},
"required": [
"title",
"datetime",
"participants"
],
"type": "object"
}
},
"required": [
"meeting_details"
],
"type": "object"
} | schedule_meeting_2fc6b10a |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Action target templates",
"description": "The collection of action target templates",
"type": "array",
"items": {
"description": "Action target templates.",
"type": "object",
"properties": {
"id": {
"description": "Unique identifier given by the server",
"type": "integer"
},
"key": {
"description": "Unique key generated by the server to be used in events.",
"type": "string"
},
"name": {
"description": "A name to identify the action target template",
"type": "string"
},
"public": {
"description": "Make the action target template available to everybody.",
"type": "boolean"
},
"organizationId": {
"description": "The organization that offer the action target template.",
"type": "integer"
},
"configuration": {
"description": "Providing a schema aims to help the WUI for configuration.",
"type": "object",
"properties": {
"schema": {
"description": "A valid JSON Schema.",
"type": "object"
},
"url": {
"description": "The configuration URL.",
"type": "string"
},
"token": {
"description": "JSON Web Token to be authenticated when contacting the configuration URL.",
"type": "string"
}
},
"required": [
"schema",
"url"
]
},
"configurationUi": {
"description": "Provide the configuration for the dynamic UI.",
"type": "object",
"properties": {
"schemaForm": {
"description": "Valid form schema accordingly to: http://schemaform.io",
"type": "array"
}
}
},
"target": {
"description": "The target configuration.",
"type": "object",
"properties": {
"url": {
"description": "The action target URL.",
"type": "string"
},
"token": {
"description": "JSON Web Token to be authenticated when contacting the action target URL.",
"type": "string"
}
},
"required": [
"url"
]
}
},
"required": [
"id",
"key",
"name",
"public",
"organizationId",
"target"
]
}
}
| o14458 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"key": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"value": {}
},
"additionalProperties": false,
"required": [
"key"
]
} | o9909 |
{
"properties": {
"animations": {
"default": true,
"description": "Whether Angular browser animations should be set up or not.",
"type": "boolean",
"x-prompt": "Set up browser animations for Nebular?"
},
"customization": {
"default": true,
"description": "Use prebuilt css styles or import customizable scss.",
"type": "boolean",
"x-prompt": "Use customizable scss themes?"
},
"layout": {
"default": true,
"description": "Whether root component has to be wrapped in nb-layout or not.",
"type": "boolean"
},
"project": {
"$default": {
"$source": "projectName"
},
"description": "The name of the project.",
"type": "string"
},
"theme": {
"default": "default",
"description": "Visual theme to installed.",
"enum": [
"default",
"dark",
"cosmic",
"corporate"
],
"x-prompt": "Which Nebular theme do you want to use:"
}
},
"title": "Nebular Theme ng-add schematics",
"type": "object"
} | o19980 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Yeahmobi Adapter Params",
"description": "A schema which validates params accepted by the Yeahmobi adapter",
"type": "object",
"properties": {
"pubId": {
"type": "string",
"description": "Publisher ID",
"minLength": 1
},
"zoneId": {
"type": "string",
"description": "Zone Id",
"minLength": 1
}
},
"required": [
"pubId",
"zoneId"
]
} | o68349 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "datasourcesCreate",
"required": [
"config"
],
"properties": {
"config": {
"type": "object",
"required": [
"target"
],
"properties": {
"target": {
"type": "string"
}
},
"additionalProperties": true
},
"schoolId": {
"type": "string",
"pattern": "[a-f0-9]{24}"
},
"name": {
"type": "string"
},
"protected": {
"type": "array",
"items": {
"type": "string",
"description": "fields in the config that should recieve special protection. A field named password will always be protected"
}
}
},
"additionalProperties": false
} | o74019 |
{
"description": "ExternalDocumentation allows referencing an external resource for extended documentation.",
"properties": {
"description": {
"type": [
"string",
"null"
]
},
"url": {
"type": [
"string",
"null"
]
}
},
"type": "object"
} | kb_339_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"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",
"null"
]
},
"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",
"null"
]
}
},
"required": [
"resource"
],
"type": "object"
} | kb_827_Normalized |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Sample base schema",
"properties": {
"alias": {
"description": "An unique identifier in a submission.",
"minLength": 1,
"type": "string"
},
"attributes": {
"description": "Attributes for describing a sample.",
"patternProperties": {
"^.*$": {
"items": {
"properties": {
"terms": {
"items": {
"properties": {
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": "array"
},
"units": {
"minLength": 1,
"type": "string"
},
"value": {
"minLength": 1,
"type": "string"
}
},
"required": [
"value"
]
},
"minItems": 1,
"type": "array"
}
},
"properties": {},
"type": "object"
},
"description": {
"description": "More extensive free-form description.",
"minLength": 1,
"type": "string"
},
"releaseDate": {
"_format": "date",
"type": "string"
},
"sampleRelationships": {
"items": {
"oneOf": [
{
"required": [
"alias",
"team",
"nature"
]
},
{
"required": [
"accession",
"nature"
]
}
],
"properties": {
"accession": {
"minLength": 1,
"type": "string"
},
"alias": {
"minLength": 1,
"type": "string"
},
"nature": {
"enum": [
"derived from",
"child of",
"same as",
"recurated from"
],
"type": "string"
},
"team": {
"minLength": 1,
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"taxonomy": {
"properties": {
"taxonId": {
"type": "integer"
},
"taxonName": {
"minLength": 1,
"type": "string"
}
},
"required": [
"taxonId"
],
"type": "object"
},
"title": {
"description": "Title of the sample.",
"minLength": 1,
"type": "string"
}
},
"required": [
"alias",
"taxonomy",
"releaseDate"
],
"title": "A Sample Schema",
"type": "object"
} | o4841 |
{
"$defs": {
"ActionGroup": {
"items": {
"oneOf": [
{
"type": "string"
},
{
"$ref": "#/$defs/Metadata"
}
]
},
"type": "array"
},
"Metadata": {
"properties": {
"metadata": {
"properties": {
"extend_group": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}
},
"type": "object"
},
"Redirect": {
"properties": {
"redirect": {
"type": "string"
}
},
"type": "object"
}
},
"$id": "https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/meta-runtime.json",
"$schema": "http://json-schema.org/draft-07/schema",
"additionalProperties": false,
"description": "See https://docs.ansible.com/ansible/devel/dev_guide/developing_collections_structure.html#meta-directory",
"examples": ["**/meta/runtime.yml"],
"properties": {
"action_groups": {
"additionalProperties": {
"$ref": "#/$defs/ActionGroup"
},
"description": "A mapping of groups and the list of action plugin and module names they contain. They may also have a special ‘metadata’ dictionary in the list, which can be used to include actions from other groups.",
"title": "Action Groups",
"type": "object"
},
"import_redirection": {
"additionalProperties": {
"$ref": "#/$defs/Redirect"
},
"description": "A mapping of names for Python import statements and their redirected locations.",
"title": "Import Redirection",
"type": "object"
},
"plugin_routing": {
"markdownDescription": "Content in a collection that Ansible needs to load from another location or that has been deprecated/removed. The top level keys of plugin_routing are types of plugins, with individual plugin names as subkeys. To define a new location for a plugin, set the redirect field to another name. To deprecate a plugin, use the deprecation field to provide a custom warning message and the removal version or date. If the plugin has been renamed or moved to a new location, the redirect field should also be provided. If a plugin is being removed entirely, tombstone can be used for the fatal error message and removal version or date.",
"properties": {
"inventory": {},
"module_utils": {},
"modules": {}
},
"title": "Plugin Routing",
"type": "object"
},
"requires_ansible": {
"examples": [">=2.10,<2.11"],
"pattern": "^[^\\s]*$",
"title": "The version of Ansible Core (ansible-core) required to use the collection. Multiple versions can be separated with a comma.",
"type": "string"
}
},
"title": "Ansible Meta Runtime Schema",
"type": "object"
}
| meta-runtime |
{
"properties": {
"dimensions": {
"properties": {
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius",
"length",
"width"
],
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. circle, rectangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_75a4a605 |
{
"properties": {
"grades": {
"description": "The list of courses with grades and credit hours",
"items": {
"properties": {
"course": {
"description": "The name of the course",
"type": "string"
},
"credit_hours": {
"description": "The credit hours of the course",
"type": "number"
},
"grade": {
"description": "The grade received in the course",
"type": "string"
}
},
"required": [
"course",
"credit_hours",
"grade"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"grades"
],
"type": "object"
} | calculate_gpa_9e9527b1 |
{
"properties": {
"dimensions": {
"properties": {
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width",
"radius"
],
"type": "object"
},
"shape": {
"description": "The type of geometric shape (e.g. triangle, rectangle, circle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_c1b25394 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Sharethrough Adapter Params",
"description": "A schema which validates params accepted by the Sharethrough adapter",
"type": "object",
"properties": {
"pkey": {
"type": "string",
"description": "placement key to use."
},
"iframe": {
"type": "boolean",
"description": "whether or not to stay in iframe",
"default": false
},
"iframeSize": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "integer"
},
"description": "iframe dimensions",
"default": [
0,
0
]
},
"bidfloor": {
"type": "number",
"description": "The floor price, or minimum amount, a publisher will accept for an impression, given in CPM in USD"
}
},
"required": [
"pkey"
]
} | o68332 |
{
"additionalProperties": false,
"properties": {
"analyticsAvailable": {
"type": "boolean"
},
"apiAccess": {
"type": "boolean"
},
"apiType": {
"type": "string"
},
"auditInformationProvided": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"enum": [
"None",
"Data made available",
"Data made available by negotiation"
]
}
},
"type": "object"
},
"changeImpactAssessment": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"cloudDeploymentModel": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"enum": [
"Public cloud",
"Community cloud",
"Private cloud",
"Hybrid cloud"
]
}
},
"type": "object"
},
"configurationTracking": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"createdAt": {
"_format": "date-time",
"type": "string"
},
"dataAtRestProtections": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"items": {
"enum": [
"CPA Foundation-grade assured components",
"FIPS-assured encryption",
"Other encryption",
"Secure containers, racks or cages",
"Physical access control",
"No protection"
]
},
"maxItems": 6,
"type": "array",
"_uniqueItems": true
}
},
"type": "object"
},
"dataBackupRecovery": {
"type": "boolean"
},
"dataExtractionRemoval": {
"type": "boolean"
},
"dataManagementLocations": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"UK",
"EU",
"USA - Safe Harbor",
"Other countries with data protection treaties",
"Rest of world"
]
},
"maxItems": 5,
"type": "array",
"_uniqueItems": true
}
},
"type": "object"
},
"dataProtectionBetweenServices": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"items": {
"enum": [
"Encrypted PSN service",
"PSN service",
"CPA Foundation VPN Gateway",
"VPN using TLS, version 1.2 or later",
"VPN using legacy SSL or TLS",
"No encryption"
]
},
"maxItems": 6,
"type": "array",
"_uniqueItems": true
}
},
"type": "object"
},
"dataProtectionBetweenUserAndService": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"items": {
"enum": [
"Encrypted PSN service",
"PSN service",
"CPA Foundation VPN Gateway",
"VPN using TLS, version 1.2 or later",
"VPN using legacy SSL or TLS",
"No encryption"
]
},
"maxItems": 6,
"type": "array",
"_uniqueItems": true
}
},
"type": "object"
},
"dataProtectionWithinService": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"items": {
"enum": [
"VPN using TLS, version 1.2 or later",
"VPN using legacy SSL or TLS",
"VLAN",
"Bonded fibre optic connections",
"Other network protection",
"No encryption"
]
},
"maxItems": 6,
"type": "array",
"_uniqueItems": true
}
},
"type": "object"
},
"dataRedundantEquipmentAccountsRevoked": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"dataSecureDeletion": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"enum": [
"CPA Foundation-grade erasure product",
"CESG or CPNI-approved erasure process",
"Other secure erasure process",
"Other erasure process"
]
}
},
"type": "object"
},
"dataSecureEquipmentDisposal": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion",
"CESG-assured components"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"dataStorageMediaDisposal": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"enum": [
"CESG-assured destruction service (CAS(T))",
"CPA Foundation-assured product",
"CPNI-approved destruction service",
"BS EN 151713:2009-compliant destruction",
"CESG or CPNI-approved erasure process",
"Other secure erasure process",
"Other destruction/erasure process"
]
}
},
"type": "object"
},
"datacentreLocations": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"UK",
"EU",
"USA - Safe Harbor",
"Other countries with data protection treaties",
"Rest of world"
]
},
"maxItems": 5,
"type": "array",
"_uniqueItems": true
}
},
"type": "object"
},
"datacentreProtectionDisclosure": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"datacentreTier": {
"type": "string"
},
"datacentresEUCode": {
"type": "boolean"
},
"datacentresSpecifyLocation": {
"type": "boolean"
},
"deprovisioningTime": {
"type": "string"
},
"deviceAccessMethod": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"Corporate/enterprise devices",
"Partner devices",
"Unknown devices"
]
},
"maxItems": 3,
"type": "array",
"_uniqueItems": true
}
},
"type": "object"
},
"educationPricing": {
"type": "boolean"
},
"elasticCloud": {
"type": "boolean"
},
"eventMonitoring": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"freeOption": {
"type": "boolean"
},
"governanceFramework": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"guaranteedResources": {
"type": "boolean"
},
"hardwareSoftwareVerification": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"id": {
"pattern": "^([0-9]{16})$",
"type": "string"
},
"identityAuthenticationControls": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent testing of implementation",
"CESG-assured components"
]
},
"value": {
"items": {
"enum": [
"Username and two-factor authentication",
"Username and TLS client certificate",
"Authentication federation",
"Limited access over dedicated link, enterprise or community network",
"Username and password",
"Username and strong password/passphrase enforcement",
"Other mechanism"
]
},
"maxItems": 7,
"type": "array",
"_uniqueItems": true
}
},
"type": "object"
},
"incidentDefinitionPublished": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"incidentEscalation": {
"type": "boolean"
},
"incidentManagementProcess": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"incidentManagementReporting": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"interconnectionMethods": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"Encrypted PSN service",
"PSN service",
"Private WAN",
"Internet"
]
},
"maxItems": 4,
"type": "array",
"_uniqueItems": true
}
},
"type": "object"
},
"legalJurisdiction": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"enum": [
"UK",
"EU",
"USA - Safe Harbor",
"Other countries with data protection treaties",
"Rest of world"
]
}
},
"type": "object"
},
"lot": {
"enum": [
"PaaS"
]
},
"managementInterfaceProtection": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"minimumContractPeriod": {
"enum": [
"Hour",
"Day",
"Month",
"Year",
"Other"
]
},
"networksConnected": {
"items": {
"enum": [
"Internet",
"Public Services Network (PSN)",
"Government Secure intranet (GSi)",
"Police National Network (PNN)",
"New NHS Network (N3)",
"Joint Academic Network (JANET)",
"Other"
]
},
"maxItems": 7,
"type": "array",
"_uniqueItems": true
},
"offlineWorking": {
"type": "boolean"
},
"onboardingGuidance": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"openSource": {
"type": "boolean"
},
"openStandardsSupported": {
"type": "boolean"
},
"otherConsumers": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"enum": [
"No other consumer",
"Only government consumers",
"A specific consumer group, eg Police, Defence or Health",
"Anyone - public"
]
}
},
"type": "object"
},
"persistentStorage": {
"type": "boolean"
},
"personnelSecurityChecks": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"Security clearance national vetting (SC)",
"Baseline personnel security standard (BPSS)",
"Background checks in accordance with BS7858:2012",
"Employment checks"
]
},
"maxItems": 4,
"type": "array",
"_uniqueItems": true
}
},
"type": "object"
},
"priceInterval": {
"enum": [
"",
"Second",
"Minute",
"Hour",
"Day",
"Week",
"Month",
"Quarter",
"6 months",
"Year"
]
},
"priceMax": {
"type": [
"number",
"null"
]
},
"priceMin": {
"type": "number"
},
"priceString": {
"type": "string"
},
"priceUnit": {
"enum": [
"Unit",
"Person",
"Licence",
"User",
"Device",
"Instance",
"Server",
"Virtual machine",
"Transaction",
"Megabyte",
"Gigabyte",
"Terabyte"
]
},
"pricingDocument": {
"type": "string"
},
"pricingDocumentURL": {
"_format": "uri",
"type": "string"
},
"provisioningTime": {
"type": "string"
},
"restrictAdministratorPermissions": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"secureConfigurationManagement": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"secureDesign": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"secureDevelopment": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"selfServiceProvisioning": {
"type": "boolean"
},
"serviceAvailabilityPercentage": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Contractual commitment",
"Independent validation of assertion"
]
},
"value": {
"type": "number"
}
},
"type": "object"
},
"serviceBenefits": {
"items": {
"maxLength": 120,
"pattern": "^(?:\\S+\\s+){0,9}\\S+$",
"type": "string"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"serviceConfigurationGuidance": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"serviceDefinitionDocument": {
"type": "string"
},
"serviceDefinitionDocumentURL": {
"_format": "uri",
"type": "string"
},
"serviceFeatures": {
"items": {
"maxLength": 120,
"pattern": "^(?:\\S+\\s+){0,9}\\S+$",
"type": "string"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"serviceManagementModel": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"items": {
"enum": [
"Dedicated devices on a segregated network",
"Dedicated devices for community service management",
"Dedicated devices for multiple community service management",
"Service management via bastion hosts",
"Direct service management"
]
},
"maxItems": 5,
"type": "array",
"_uniqueItems": true
}
},
"type": "object"
},
"serviceName": {
"maxLength": 100,
"minLength": 1,
"type": "string"
},
"serviceOffboarding": {
"type": "boolean"
},
"serviceOnboarding": {
"type": "boolean"
},
"serviceSummary": {
"maxLength": 500,
"pattern": "^(?:\\S+\\s+){0,49}\\S+$",
"type": "string"
},
"servicesManagementSeparation": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent testing of implementation",
"Assurance of service design",
"CESG-assured components"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"servicesSeparation": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent testing of implementation",
"Assurance of service design",
"CESG-assured components"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"sfiaRateDocument": {
"type": "string"
},
"sfiaRateDocumentURL": {
"_format": "uri",
"type": "string"
},
"status": {
"enum": [
"disabled",
"enabled",
"published"
]
},
"supplierId": {
"type": "integer"
},
"supportAvailability": {
"type": "string"
},
"supportForThirdParties": {
"type": "boolean"
},
"supportResponseTime": {
"type": "string"
},
"supportTypes": {
"items": {
"enum": [
"Service desk",
"Email",
"Phone",
"Live chat",
"Onsite"
]
},
"maxItems": 5,
"type": "array",
"_uniqueItems": true
},
"supportedBrowsers": {
"items": {
"enum": [
"Internet Explorer 6",
"Internet Explorer 7",
"Internet Explorer 8",
"Internet Explorer 9",
"Internet Explorer 10+",
"Firefox",
"Chrome",
"Safari",
"Opera"
]
},
"maxItems": 9,
"type": "array",
"_uniqueItems": true
},
"supportedDevices": {
"items": {
"enum": [
"PC",
"Mac",
"Smartphone",
"Tablet"
]
},
"maxItems": 4,
"type": "array",
"_uniqueItems": true
},
"terminationCost": {
"type": "boolean"
},
"termsAndConditionsDocument": {
"type": "string"
},
"termsAndConditionsDocumentURL": {
"_format": "uri",
"type": "string"
},
"thirdPartyComplianceMonitoring": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"thirdPartyDataSharingInformation": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"thirdPartyRiskAssessment": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"thirdPartySecurityRequirements": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"title": {
"type": "string"
},
"trainingProvided": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"trialOption": {
"type": "boolean"
},
"userAccessControlManagement": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"userAuthenticateManagement": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"userAuthenticateSupport": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion",
"Independent testing of implementation"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"vatIncluded": {
"type": "boolean"
},
"vendorCertifications": {
"items": {
"type": "string"
},
"maxItems": 10,
"type": "array"
},
"vulnerabilityAssessment": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"vulnerabilityMitigationPrioritisation": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"vulnerabilityMonitoring": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"vulnerabilityTimescales": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
},
"vulnerabilityTracking": {
"properties": {
"assurance": {
"enum": [
"Service provider assertion",
"Independent validation of assertion"
]
},
"value": {
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"id",
"supplierId",
"lot",
"title",
"serviceName",
"serviceSummary",
"serviceBenefits",
"serviceFeatures",
"serviceDefinitionDocument",
"serviceDefinitionDocumentURL",
"termsAndConditionsDocument",
"termsAndConditionsDocumentURL",
"minimumContractPeriod",
"terminationCost",
"priceMin",
"priceUnit",
"priceString",
"vatIncluded",
"educationPricing",
"trialOption",
"freeOption",
"pricingDocument",
"pricingDocumentURL",
"openStandardsSupported",
"supportForThirdParties",
"supportAvailability",
"supportResponseTime",
"incidentEscalation",
"supportTypes",
"serviceOnboarding",
"serviceOffboarding",
"analyticsAvailable",
"elasticCloud",
"guaranteedResources",
"persistentStorage",
"selfServiceProvisioning",
"provisioningTime",
"deprovisioningTime",
"openSource",
"apiAccess",
"networksConnected",
"supportedBrowsers",
"offlineWorking",
"supportedDevices",
"datacentresEUCode",
"datacentresSpecifyLocation",
"datacentreTier",
"dataBackupRecovery",
"dataExtractionRemoval",
"dataProtectionBetweenUserAndService",
"dataProtectionWithinService",
"dataProtectionBetweenServices",
"datacentreLocations",
"dataManagementLocations",
"legalJurisdiction",
"datacentreProtectionDisclosure",
"dataAtRestProtections",
"dataSecureDeletion",
"dataStorageMediaDisposal",
"dataSecureEquipmentDisposal",
"dataRedundantEquipmentAccountsRevoked",
"serviceAvailabilityPercentage",
"cloudDeploymentModel",
"otherConsumers",
"servicesSeparation",
"servicesManagementSeparation",
"governanceFramework",
"configurationTracking",
"changeImpactAssessment",
"vulnerabilityAssessment",
"vulnerabilityMonitoring",
"vulnerabilityMitigationPrioritisation",
"vulnerabilityTracking",
"vulnerabilityTimescales",
"eventMonitoring",
"incidentManagementProcess",
"incidentManagementReporting",
"incidentDefinitionPublished",
"personnelSecurityChecks",
"secureDevelopment",
"secureDesign",
"secureConfigurationManagement",
"thirdPartyDataSharingInformation",
"thirdPartySecurityRequirements",
"thirdPartyRiskAssessment",
"thirdPartyComplianceMonitoring",
"userAuthenticateManagement",
"userAuthenticateSupport",
"userAccessControlManagement",
"restrictAdministratorPermissions",
"managementInterfaceProtection",
"identityAuthenticationControls",
"onboardingGuidance",
"interconnectionMethods",
"serviceManagementModel",
"auditInformationProvided",
"deviceAccessMethod",
"serviceConfigurationGuidance",
"trainingProvided"
],
"title": "G6 Submissions PaaS Schema",
"type": "object"
} | o62059 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"title": "Git LFS HTTPS Batch API v1 Request",
"type": "object",
"properties": {
"operation": {
"type": "string"
},
"objects": {
"type": "array",
"items": {
"type": "object",
"properties": {
"oid": {
"type": "string"
},
"size": {
"type": "number"
}
},
"required": [
"oid",
"size"
],
"additionalProperties": false
}
}
},
"required": [
"objects",
"operation"
],
"additionalProperties": false
} | o83141 |
{
"properties": {
"name": {
"type": "string"
},
"payload": {
"type": [
"null",
"string",
"number",
"object",
"array"
]
},
"schema": {
"enum": [
"http://comrade.forma-pro.com/schemas/message/part/SubJob.json"
],
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
} | o67195 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath": {
"description": "Maps a string key to a path within a volume.",
"properties": {
"key": {
"description": "The key to project.",
"type": "string"
},
"mode": {
"_format": "int32",
"description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
"type": "integer"
},
"path": {
"description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.",
"type": "string"
}
},
"required": [
"key",
"path"
],
"type": "object"
}
},
"description": "Adapts a Secret into a 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": {
"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.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"items": {
"description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath"
},
"type": [
"array",
"null"
]
},
"optional": {
"description": "Specify whether the Secret or its keys must be defined",
"type": [
"boolean",
"null"
]
},
"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",
"null"
]
}
},
"type": "object"
} | kb_945_Normalized |
{
"properties": {
"height": {
"description": "The height of the package in centimeters",
"type": "number"
},
"length": {
"description": "The length of the package in centimeters",
"type": "number"
},
"weight": {
"description": "The weight of the package in kilograms",
"type": "number"
},
"width": {
"description": "The width of the package in centimeters",
"type": "number"
}
},
"required": [
"weight",
"length",
"width",
"height"
],
"type": "object"
} | calculate_shipping_cost_b91abc2d |
{
"properties": {
"end": {
"properties": {
"latitude": {
"description": "The latitude of the ending point",
"type": "number"
},
"longitude": {
"description": "The longitude of the ending point",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
},
"start": {
"properties": {
"latitude": {
"description": "The latitude of the starting point",
"type": "number"
},
"longitude": {
"description": "The longitude of the starting point",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
}
},
"required": [
"start",
"end"
],
"type": "object"
} | calculate_distance_1d43e56b |
{
"additionalProperties": false,
"description": "Schema for an Olark transcript event",
"properties": {
"groups": {
"items": {
"additionalProperties": false,
"properties": {
"id": {
"maxLength": 128,
"type": "string"
},
"kind": {
"maxLength": 128,
"type": "string"
},
"name": {
"maxLength": 128,
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"id": {
"maxLength": 128,
"type": "string"
},
"items": {
"items": {
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"kind": {
"maxLength": 64,
"type": "string"
},
"nickname": {
"maxLength": 64,
"type": "string"
},
"operatorId": {
"maxLength": 64,
"type": "string"
},
"timestamp": {
"_format": "date-time",
"type": "string"
},
"visitorNickname": {
"maxLength": 64,
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"kind": {
"maxLength": 64,
"type": "string"
},
"manuallySubmitted": {
"type": "boolean"
},
"operators": {
"additionalProperties": false,
"patternProperties": {
".*": {
"additionalProperties": false,
"properties": {
"emailAddress": {
"_format": "email",
"maxLength": 256,
"type": "string"
},
"id": {
"maxLength": 128,
"type": "string"
},
"kind": {
"maxLength": 64,
"type": "string"
},
"nickname": {
"maxLength": 64,
"type": "string"
},
"username": {
"maxLength": 128,
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"tags": {
"items": {
"maxLength": 128,
"type": "string"
},
"type": "array"
},
"visitor": {
"additionalProperties": true,
"properties": {
"browser": {
"maxLength": 128,
"type": "string"
},
"chatFeedback": {
"additionalProperties": false,
"properties": {
"comments": {
"type": "string"
},
"friendliness": {
"maximum": 32767,
"minimum": 0,
"type": "integer"
},
"knowledge": {
"maximum": 32767,
"minimum": 0,
"type": "integer"
},
"overallChat": {
"maximum": 32767,
"minimum": 0,
"type": "integer"
},
"responsiveness": {
"maximum": 32767,
"minimum": 0,
"type": "integer"
}
},
"type": "object"
},
"city": {
"maxLength": 128,
"type": "string"
},
"conversationBeginPage": {
"_format": "uri",
"maxLength": 8192,
"type": "string"
},
"country": {
"maxLength": 128,
"type": "string"
},
"countryCode": {
"maxLength": 8,
"type": "string"
},
"emailAddress": {
"_format": "email",
"maxLength": 256,
"type": "string"
},
"fullName": {
"maxLength": 256,
"type": "string"
},
"id": {
"maxLength": 64,
"type": "string"
},
"ip": {
"_format": "ipv4",
"type": "string"
},
"kind": {
"maxLength": 64,
"type": "string"
},
"operatingSystem": {
"maxLength": 128,
"type": "string"
},
"organization": {
"maxLength": 128,
"type": "string"
},
"phoneNumber": {
"maxLength": 64,
"type": "string"
},
"region": {
"maxLength": 8,
"type": "string"
}
},
"type": "object"
}
},
"self": {
"format": "jsonschema",
"name": "transcript",
"vendor": "com.olark",
"version": "1-0-0"
},
"type": "object"
} | sp_153_Normalized |
{
"$id": "https://example.com/person.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Person",
"type": "object",
"required": [
"minzoom",
"maxzoom",
"tiles"
],
"definitions": {
"zoomlevel": {
"type": "integer",
"minimum": 0,
"maximum": 24
},
"epsg": {
"type": "string",
"pattern": "^(epsg|EPSG):\\d{4,5}$"
},
"vectorLayer": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string"
},
"minzoon": {
"$ref": "#/definitions/zoomlevel"
},
"maxzoon": {
"$ref": "#/definitions/zoomlevel"
}
}
}
},
"properties": {
"bounds": {
"description": "Bounds MUST define an area covered by all zoom levels. The bounds are represented in WGS:84 latitude and longitude values, in the order left, bottom, right, top. Values may be integers or floating point numbers.",
"type": "array",
"minLength": 4,
"maxLength": 4,
"minimum": -180,
"maximum": 180,
"items": {
"type": "number"
}
},
"center": {
"description": "The first value is the longitude, the second is latitude (both in WGS:84 values), the third value is the zoom level as an integer. Longitude and latitude MUST be within the specified bounds. The zoom level MUST be between minzoom and maxzoom.",
"type": "array",
"minimum": -180,
"maximum": 180,
"minLength": 3,
"maxLength": 3,
"items": {
"type": "number"
}
},
"tiles": {
"type": "array",
"items": {
"type": "string"
}
},
"json": {
"type": "string",
"description": "A JSON string defining a single object containing the 'vector_layers' property as an array of vector layers"
},
"vector_layers": {
"type": "array",
"items": {
"$ref": "#/definitions/vectorLayer"
}
},
"crs": {
"$ref": "#/definitions/epsg"
},
"srs": {
"$ref": "#/definitions/epsg"
},
"minzoom": {
"$ref": "#/definitions/zoomlevel"
},
"maxzoom": {
"$ref": "#/definitions/zoomlevel"
},
"scheme": {
"type": "string",
"enum": [
"tms",
"xyz"
]
}
},
"allOf": [
{
"anyOf": [
{
"description": "Either 'crs' or 'srs' are allowed but not both. Both can be omitted.",
"not": {
"required": [
"crs",
"srs"
]
}
}
]
},
{
"description": "Either 'json' or 'vector_layers' is required.",
"anyOf": [
{
"required": [
"json"
]
},
{
"required": [
"vector_layers"
]
}
]
}
]
} | o42994 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": true,
"definitions": {
"behavior": {
"type": "string",
"enum": ["block", "allow", "noAuth"]
},
"rule": {
"type": "object",
"properties": {
"path": {
"description": "Relative path to resource.",
"type": "string"
},
"regex": {
"description": "A regular expression for identifying paths to resources.",
"type": "string"
},
"types": {
"type": "array",
"items": {
"type": "string",
"enum": [
"navigation",
"image",
"stylesheet",
"script",
"xhr",
"other"
]
}
},
"allowData": {
"description": "Determines if data is allowed at this path.",
"type": "boolean"
}
}
}
},
"id": "https://json.schemastore.org/epr-manifest.json",
"properties": {
"site": {
"description": "A fully qualified URL of your website.",
"type": "string",
"format": "uri"
},
"maxAge": {
"description": "Set the max age HTTP cache expiration.",
"type": "integer"
},
"reportUrl": {
"type": "string",
"format": "uri"
},
"defaultNavBehavior": {
"$ref": "#/definitions/behavior"
},
"defaultResBehavior": {
"$ref": "#/definitions/behavior"
},
"rules": {
"type": "array",
"items": {
"$ref": "#/definitions/rule"
}
}
},
"required": ["rules"],
"title": "JSON schema for Entry Point Regulation manifest files",
"type": "object"
}
| epr-manifest |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"base_path",
"details",
"document_type",
"publishing_app",
"rendering_app",
"routes",
"schema_name",
"title"
],
"additionalProperties": false,
"properties": {
"access_limited": {
"$ref": "#/definitions/access_limited"
},
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"auth_bypass_ids": {
"description": "A list of ids that will allow access to this item for non-authenticated users",
"$ref": "#/definitions/guid_list"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"bulk_publishing": {
"type": "boolean"
},
"change_note": {
"type": [
"null",
"string"
]
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"type": "string",
"enum": [
"help_page"
]
},
"first_published_at": {
"$ref": "#/definitions/first_published_at"
},
"last_edited_at": {
"description": "Last time when the content received a major or minor update.",
"type": "string",
"format": "date-time"
},
"links": {
"type": "object",
"additionalProperties": false,
"properties": {
"policy_areas": {
"description": "A largely deprecated tag currently only used to power email alerts.",
"$ref": "#/definitions/guid_list"
}
}
},
"locale": {
"$ref": "#/definitions/locale"
},
"need_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"type": "string",
"enum": [
"alpha",
"beta",
"live"
]
},
"previous_version": {
"type": "string"
},
"public_updated_at": {
"$ref": "#/definitions/public_updated_at"
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"redirects": {
"type": "array",
"additionalItems": false,
"items": {}
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"routes": {
"$ref": "#/definitions/routes"
},
"schema_name": {
"type": "string",
"enum": [
"help_page"
]
},
"title": {
"$ref": "#/definitions/title"
},
"update_type": {
"$ref": "#/definitions/update_type"
}
},
"definitions": {
"description": {
"type": "string"
},
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"type": "string",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$"
},
"access_limited": {
"type": "object",
"additionalProperties": false,
"properties": {
"auth_bypass_ids": {
"description": "Deprecated: auth_bypass_ids should be sent as a separate field",
"$ref": "#/definitions/guid_list"
},
"organisations": {
"description": "A list of organisation content ids permitted access to this item",
"$ref": "#/definitions/guid_list"
},
"users": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"analytics_identifier": {
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations.",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"body_html_and_govspeak": {
"description": "The main content provided as HTML with the govspeak markdown it's rendered from",
"anyOf": [
{
"$ref": "#/definitions/multiple_content_types"
}
]
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"type": "object",
"additionalProperties": false,
"properties": {
"body": {
"$ref": "#/definitions/body_html_and_govspeak"
},
"external_related_links": {
"$ref": "#/definitions/external_related_links"
}
}
},
"external_link": {
"type": "object",
"required": [
"title",
"url"
],
"additionalProperties": false,
"properties": {
"title": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
}
}
},
"external_related_links": {
"type": "array",
"items": {
"$ref": "#/definitions/external_link"
}
},
"first_published_at": {
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string",
"format": "date-time"
},
"guid": {
"type": "string",
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$"
},
"guid_list": {
"type": "array",
"items": {
"$ref": "#/definitions/guid"
},
"_uniqueItems": true
},
"locale": {
"type": "string",
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
]
},
"multiple_content_types": {
"type": "array",
"items": {
"type": "object",
"required": [
"content_type",
"content"
],
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"content_type": {
"type": "string"
}
}
}
},
"public_updated_at": {
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string",
"format": "date-time"
},
"publishing_app_name": {
"description": "The application that published this item.",
"type": "string",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
]
},
"rendering_app": {
"description": "The application that renders this item.",
"type": "string",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
]
},
"route": {
"type": "object",
"required": [
"path",
"type"
],
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"type": {
"enum": [
"prefix",
"exact"
]
}
}
},
"routes": {
"type": "array",
"items": {
"$ref": "#/definitions/route"
},
"minItems": 1
},
"title": {
"type": "string"
},
"update_type": {
"enum": [
"major",
"minor",
"republish"
]
}
}
} | o21250 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"marathonJson": {
"type": "object",
"additionalProperties": true
}
},
"required": [
"marathonJson"
],
"additionalProperties": false
} | o79450 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the rectangle or triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius",
"width",
"height",
"base"
],
"type": "object"
},
"shape": {
"description": "The shape to calculate the area for (e.g. circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_dab4d0a9 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"dateUTCISO": {
"pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$",
"type": "string"
},
"sha1": {
"pattern": "^[0-9a-f]{40}$",
"type": "string"
},
"string": {
"type": "string"
},
"uri": {
"pattern": "^https?://",
"type": "string"
}
},
"description": "Track caching info for a single (hashed) request",
"properties": {
"cacheCreated": {
"$ref": "#/definitions/dateUTCISO"
},
"cacheUpdated": {
"$ref": "#/definitions/dateUTCISO"
},
"contentChecksum": {
"$ref": "#/definitions/sha1"
},
"contentType": {
"$ref": "#/definitions/string"
},
"httpETag": {
"$ref": "#/definitions/string"
},
"httpModified": {
"$ref": "#/definitions/dateUTCISO"
},
"key": {
"$ref": "#/definitions/sha1"
},
"url": {
"$ref": "#/definitions/uri"
}
},
"required": [
"url",
"key",
"contentType",
"httpETag",
"httpModified",
"cacheCreated",
"cacheUpdated",
"contentChecksum"
],
"type": "object"
} | o20375 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "integer",
"minimum": 1
},
"parentId": {
"oneOf": [
{
"type": "null"
},
{
"type": "integer",
"minimum": 1
}
]
},
"name": {
"type": "string",
"faker": {
"fake": "{{company.bsBuzz}} {{company.bsAdjective}} {{company.bsNoun}}"
}
},
"createdAt": {
"type": "string",
"faker": "date.past"
},
"updatedAt": {
"type": "string",
"faker": "date.past"
}
},
"required": [
"id",
"parentId",
"name",
"createdAt",
"updatedAt"
]
}
} | o88583 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"description": "The items included in the invoice",
"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": [
"customer_name",
"items"
],
"type": "object"
} | generate_invoice_ec3a8e8b |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"rank": {
"type": "string"
},
"joined": {
"type": "string"
}
}
},
"properties": {},
"additionalProperties": false
} | o45175 |
{
"anyOf": [
{
"$ref": "#/definitions/SkaffoldConfig"
}
],
"definitions": {
"Activation": {
"additionalProperties": false,
"description": "criteria by which a profile is auto-activated.",
"preferredOrder": [
"env",
"kubeContext",
"command"
],
"properties": {
"command": {
"description": "a Skaffold command for which the profile is auto-activated.",
"examples": [
"dev"
],
"type": "string",
"x-intellij-html-description": "a Skaffold command for which the profile is auto-activated."
},
"env": {
"description": "a `key=pattern` pair. The profile is auto-activated if an Environment Variable `key` matches the pattern. If the pattern starts with `!`, activation happens if the remaining pattern is _not_ matched. The pattern matches if the Environment Variable value is exactly `pattern`, or the regex `pattern` is found in it. An empty `pattern` (e.g. `env: \"key=\"`) always only matches if the Environment Variable is undefined or empty.",
"examples": [
"ENV=production"
],
"type": "string",
"x-intellij-html-description": "a <code>key=pattern</code> pair. The profile is auto-activated if an Environment Variable <code>key</code> matches the pattern. If the pattern starts with <code>!</code>, activation happens if the remaining pattern is <em>not</em> matched. The pattern matches if the Environment Variable value is exactly <code>pattern</code>, or the regex <code>pattern</code> is found in it. An empty <code>pattern</code> (e.g. <code>env: "key="</code>) always only matches if the Environment Variable is undefined or empty."
},
"kubeContext": {
"description": "a Kubernetes context for which the profile is auto-activated.",
"examples": [
"minikube"
],
"type": "string",
"x-intellij-html-description": "a Kubernetes context for which the profile is auto-activated."
}
},
"x-intellij-html-description": "criteria by which a profile is auto-activated."
},
"Artifact": {
"anyOf": [
{
"additionalProperties": false,
"preferredOrder": [
"image",
"context",
"sync"
],
"properties": {
"context": {
"default": ".",
"description": "directory containing the artifact's sources.",
"type": "string",
"x-intellij-html-description": "directory containing the artifact's sources."
},
"image": {
"description": "name of the image to be built.",
"examples": [
"gcr.io/k8s-skaffold/example"
],
"type": "string",
"x-intellij-html-description": "name of the image to be built."
},
"sync": {
"$ref": "#/definitions/Sync",
"description": "*alpha* local files synced to pods instead of triggering an image build when modified.",
"x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"image",
"context",
"sync",
"docker"
],
"properties": {
"context": {
"default": ".",
"description": "directory containing the artifact's sources.",
"type": "string",
"x-intellij-html-description": "directory containing the artifact's sources."
},
"docker": {
"$ref": "#/definitions/DockerArtifact",
"description": "*beta* describes an artifact built from a Dockerfile.",
"x-intellij-html-description": "<em>beta</em> describes an artifact built from a Dockerfile."
},
"image": {
"description": "name of the image to be built.",
"examples": [
"gcr.io/k8s-skaffold/example"
],
"type": "string",
"x-intellij-html-description": "name of the image to be built."
},
"sync": {
"$ref": "#/definitions/Sync",
"description": "*alpha* local files synced to pods instead of triggering an image build when modified.",
"x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"image",
"context",
"sync",
"bazel"
],
"properties": {
"bazel": {
"$ref": "#/definitions/BazelArtifact",
"description": "*beta* requires bazel CLI to be installed and the sources to contain [Bazel](https://bazel.build/) configuration files.",
"x-intellij-html-description": "<em>beta</em> requires bazel CLI to be installed and the sources to contain <a href=\"https://bazel.build/\">Bazel</a> configuration files."
},
"context": {
"default": ".",
"description": "directory containing the artifact's sources.",
"type": "string",
"x-intellij-html-description": "directory containing the artifact's sources."
},
"image": {
"description": "name of the image to be built.",
"examples": [
"gcr.io/k8s-skaffold/example"
],
"type": "string",
"x-intellij-html-description": "name of the image to be built."
},
"sync": {
"$ref": "#/definitions/Sync",
"description": "*alpha* local files synced to pods instead of triggering an image build when modified.",
"x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"image",
"context",
"sync",
"jib"
],
"properties": {
"context": {
"default": ".",
"description": "directory containing the artifact's sources.",
"type": "string",
"x-intellij-html-description": "directory containing the artifact's sources."
},
"image": {
"description": "name of the image to be built.",
"examples": [
"gcr.io/k8s-skaffold/example"
],
"type": "string",
"x-intellij-html-description": "name of the image to be built."
},
"jib": {
"$ref": "#/definitions/JibArtifact",
"description": "*alpha* builds images using the [Jib plugins for Maven or Gradle](https://github.com/GoogleContainerTools/jib/).",
"x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/\">Jib plugins for Maven or Gradle</a>."
},
"sync": {
"$ref": "#/definitions/Sync",
"description": "*alpha* local files synced to pods instead of triggering an image build when modified.",
"x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"image",
"context",
"sync",
"kaniko"
],
"properties": {
"context": {
"default": ".",
"description": "directory containing the artifact's sources.",
"type": "string",
"x-intellij-html-description": "directory containing the artifact's sources."
},
"image": {
"description": "name of the image to be built.",
"examples": [
"gcr.io/k8s-skaffold/example"
],
"type": "string",
"x-intellij-html-description": "name of the image to be built."
},
"kaniko": {
"$ref": "#/definitions/KanikoArtifact",
"description": "*alpha* builds images using [kaniko](https://github.com/GoogleContainerTools/kaniko).",
"x-intellij-html-description": "<em>alpha</em> builds images using <a href=\"https://github.com/GoogleContainerTools/kaniko\">kaniko</a>."
},
"sync": {
"$ref": "#/definitions/Sync",
"description": "*alpha* local files synced to pods instead of triggering an image build when modified.",
"x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"image",
"context",
"sync",
"custom"
],
"properties": {
"context": {
"default": ".",
"description": "directory containing the artifact's sources.",
"type": "string",
"x-intellij-html-description": "directory containing the artifact's sources."
},
"custom": {
"$ref": "#/definitions/CustomArtifact",
"description": "*alpha* builds images using a custom build script written by the user.",
"x-intellij-html-description": "<em>alpha</em> builds images using a custom build script written by the user."
},
"image": {
"description": "name of the image to be built.",
"examples": [
"gcr.io/k8s-skaffold/example"
],
"type": "string",
"x-intellij-html-description": "name of the image to be built."
},
"sync": {
"$ref": "#/definitions/Sync",
"description": "*alpha* local files synced to pods instead of triggering an image build when modified.",
"x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified."
}
}
}
],
"description": "items that need to be built, along with the context in which they should be built.",
"required": [
"image"
],
"x-intellij-html-description": "items that need to be built, along with the context in which they should be built."
},
"BazelArtifact": {
"additionalProperties": false,
"description": "*beta* describes an artifact built with [Bazel](https://bazel.build/).",
"preferredOrder": [
"target",
"args"
],
"properties": {
"args": {
"default": "[]",
"description": "additional args to pass to `bazel build`.",
"examples": [
"[\"-flag\", \"--otherflag\"]"
],
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional args to pass to <code>bazel build</code>."
},
"target": {
"description": "`bazel build` target to run.",
"examples": [
"//:skaffold_example.tar"
],
"type": "string",
"x-intellij-html-description": "<code>bazel build</code> target to run."
}
},
"required": [
"target"
],
"x-intellij-html-description": "<em>beta</em> describes an artifact built with <a href=\"https://bazel.build/\">Bazel</a>."
},
"BuildConfig": {
"anyOf": [
{
"additionalProperties": false,
"preferredOrder": [
"artifacts",
"insecureRegistries",
"tagPolicy"
],
"properties": {
"artifacts": {
"description": "the images you're going to be building.",
"items": {
"$ref": "#/definitions/Artifact"
},
"type": "array",
"x-intellij-html-description": "the images you're going to be building."
},
"insecureRegistries": {
"default": "[]",
"description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS."
},
"tagPolicy": {
"$ref": "#/definitions/TagPolicy",
"description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.",
"x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"artifacts",
"insecureRegistries",
"tagPolicy",
"local"
],
"properties": {
"artifacts": {
"description": "the images you're going to be building.",
"items": {
"$ref": "#/definitions/Artifact"
},
"type": "array",
"x-intellij-html-description": "the images you're going to be building."
},
"insecureRegistries": {
"default": "[]",
"description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS."
},
"local": {
"$ref": "#/definitions/LocalBuild",
"description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.",
"x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository."
},
"tagPolicy": {
"$ref": "#/definitions/TagPolicy",
"description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.",
"x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"artifacts",
"insecureRegistries",
"tagPolicy",
"googleCloudBuild"
],
"properties": {
"artifacts": {
"description": "the images you're going to be building.",
"items": {
"$ref": "#/definitions/Artifact"
},
"type": "array",
"x-intellij-html-description": "the images you're going to be building."
},
"googleCloudBuild": {
"$ref": "#/definitions/GoogleCloudBuild",
"description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/).",
"x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/\">Google Cloud Build</a>."
},
"insecureRegistries": {
"default": "[]",
"description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS."
},
"tagPolicy": {
"$ref": "#/definitions/TagPolicy",
"description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.",
"x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"artifacts",
"insecureRegistries",
"tagPolicy",
"cluster"
],
"properties": {
"artifacts": {
"description": "the images you're going to be building.",
"items": {
"$ref": "#/definitions/Artifact"
},
"type": "array",
"x-intellij-html-description": "the images you're going to be building."
},
"cluster": {
"$ref": "#/definitions/ClusterDetails",
"description": "*beta* describes how to do an on-cluster build.",
"x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build."
},
"insecureRegistries": {
"default": "[]",
"description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS."
},
"tagPolicy": {
"$ref": "#/definitions/TagPolicy",
"description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.",
"x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>."
}
}
}
],
"description": "contains all the configuration for the build steps.",
"x-intellij-html-description": "contains all the configuration for the build steps."
},
"ClusterDetails": {
"additionalProperties": false,
"description": "*beta* describes how to do an on-cluster build.",
"preferredOrder": [
"HTTP_PROXY",
"HTTPS_PROXY",
"pullSecret",
"pullSecretName",
"namespace",
"timeout",
"dockerConfig",
"resources",
"concurrency"
],
"properties": {
"HTTPS_PROXY": {
"description": "for kaniko pod.",
"type": "string",
"x-intellij-html-description": "for kaniko pod."
},
"HTTP_PROXY": {
"description": "for kaniko pod.",
"type": "string",
"x-intellij-html-description": "for kaniko pod."
},
"concurrency": {
"description": "how many artifacts can be built concurrently. 0 means \"no-limit\" Defaults to 0.",
"type": "integer",
"x-intellij-html-description": "how many artifacts can be built concurrently. 0 means "no-limit" Defaults to 0."
},
"dockerConfig": {
"$ref": "#/definitions/DockerConfig",
"description": "describes how to mount the local Docker configuration into a pod.",
"x-intellij-html-description": "describes how to mount the local Docker configuration into a pod."
},
"namespace": {
"description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration.",
"type": "string",
"x-intellij-html-description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration."
},
"pullSecret": {
"description": "path to the Google Cloud service account secret key file.",
"type": "string",
"x-intellij-html-description": "path to the Google Cloud service account secret key file."
},
"pullSecretName": {
"default": "kaniko-secret",
"description": "name of the Kubernetes secret for pulling the files from the build context and pushing the final image. If given, the secret needs to contain the Google Cloud service account secret key under the key `kaniko-secret`.",
"type": "string",
"x-intellij-html-description": "name of the Kubernetes secret for pulling the files from the build context and pushing the final image. If given, the secret needs to contain the Google Cloud service account secret key under the key <code>kaniko-secret</code>."
},
"resources": {
"$ref": "#/definitions/ResourceRequirements",
"description": "define the resource requirements for the kaniko pod.",
"x-intellij-html-description": "define the resource requirements for the kaniko pod."
},
"timeout": {
"description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (`20m`).",
"type": "string",
"x-intellij-html-description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (<code>20m</code>)."
}
},
"x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build."
},
"CustomArtifact": {
"additionalProperties": false,
"description": "*alpha* describes an artifact built from a custom build script written by the user. It can be used to build images with builders that aren't directly integrated with skaffold.",
"preferredOrder": [
"buildCommand",
"dependencies"
],
"properties": {
"buildCommand": {
"description": "command executed to build the image.",
"type": "string",
"x-intellij-html-description": "command executed to build the image."
},
"dependencies": {
"$ref": "#/definitions/CustomDependencies",
"description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact.",
"x-intellij-html-description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact."
}
},
"x-intellij-html-description": "<em>alpha</em> describes an artifact built from a custom build script written by the user. It can be used to build images with builders that aren't directly integrated with skaffold."
},
"CustomDependencies": {
"additionalProperties": false,
"description": "*alpha* used to specify dependencies for an artifact built by a custom build script. Either `dockerfile` or `paths` should be specified for file watching to work as expected.",
"preferredOrder": [
"dockerfile",
"command",
"paths",
"ignore"
],
"properties": {
"command": {
"description": "represents a custom command that skaffold executes to obtain dependencies. The output of this command *must* be a valid JSON array.",
"type": "string",
"x-intellij-html-description": "represents a custom command that skaffold executes to obtain dependencies. The output of this command <em>must</em> be a valid JSON array."
},
"dockerfile": {
"$ref": "#/definitions/DockerfileDependency",
"description": "should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies.",
"x-intellij-html-description": "should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies."
},
"ignore": {
"default": "[]",
"description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both `paths` and in `ignore`, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with `paths`.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both <code>paths</code> and in <code>ignore</code>, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with <code>paths</code>."
},
"paths": {
"default": "[]",
"description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization."
}
},
"x-intellij-html-description": "<em>alpha</em> used to specify dependencies for an artifact built by a custom build script. Either <code>dockerfile</code> or <code>paths</code> should be specified for file watching to work as expected."
},
"DateTimeTagger": {
"additionalProperties": false,
"description": "*beta* tags images with the build timestamp.",
"preferredOrder": [
"format",
"timezone"
],
"properties": {
"format": {
"default": "2006-01-02_15-04-05.999_MST",
"description": "formats the date and time. See [#Time.Format](https://golang.org/pkg/time/#Time.Format).",
"type": "string",
"x-intellij-html-description": "formats the date and time. See <a href=\"https://golang.org/pkg/time/#Time.Format\">#Time.Format</a>."
},
"timezone": {
"description": "sets the timezone for the date and time. See [Time.LoadLocation](https://golang.org/pkg/time/#Time.LoadLocation). Defaults to the local timezone.",
"type": "string",
"x-intellij-html-description": "sets the timezone for the date and time. See <a href=\"https://golang.org/pkg/time/#Time.LoadLocation\">Time.LoadLocation</a>. Defaults to the local timezone."
}
},
"x-intellij-html-description": "<em>beta</em> tags images with the build timestamp."
},
"DeployConfig": {
"anyOf": [
{
"additionalProperties": false,
"preferredOrder": [
"statusCheckDeadlineSeconds"
],
"properties": {
"statusCheckDeadlineSeconds": {
"description": "*beta* deadline for deployments to stabilize in seconds.",
"type": "integer",
"x-intellij-html-description": "<em>beta</em> deadline for deployments to stabilize in seconds."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"statusCheckDeadlineSeconds",
"helm"
],
"properties": {
"helm": {
"$ref": "#/definitions/HelmDeploy",
"description": "*beta* uses the `helm` CLI to apply the charts to the cluster.",
"x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster."
},
"statusCheckDeadlineSeconds": {
"description": "*beta* deadline for deployments to stabilize in seconds.",
"type": "integer",
"x-intellij-html-description": "<em>beta</em> deadline for deployments to stabilize in seconds."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"statusCheckDeadlineSeconds",
"kubectl"
],
"properties": {
"kubectl": {
"$ref": "#/definitions/KubectlDeploy",
"description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.",
"x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster."
},
"statusCheckDeadlineSeconds": {
"description": "*beta* deadline for deployments to stabilize in seconds.",
"type": "integer",
"x-intellij-html-description": "<em>beta</em> deadline for deployments to stabilize in seconds."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"statusCheckDeadlineSeconds",
"kustomize"
],
"properties": {
"kustomize": {
"$ref": "#/definitions/KustomizeDeploy",
"description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.",
"x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to "patch" a deployment for a target environment."
},
"statusCheckDeadlineSeconds": {
"description": "*beta* deadline for deployments to stabilize in seconds.",
"type": "integer",
"x-intellij-html-description": "<em>beta</em> deadline for deployments to stabilize in seconds."
}
}
}
],
"description": "contains all the configuration needed by the deploy steps.",
"x-intellij-html-description": "contains all the configuration needed by the deploy steps."
},
"DockerArtifact": {
"additionalProperties": false,
"description": "*beta* describes an artifact built from a Dockerfile, usually using `docker build`.",
"preferredOrder": [
"dockerfile",
"target",
"buildArgs",
"network",
"cacheFrom",
"noCache"
],
"properties": {
"buildArgs": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "arguments passed to the docker build.",
"examples": [
"{\"key1\": \"value1\", \"key2\": \"value2\"}"
],
"type": "object",
"x-intellij-html-description": "arguments passed to the docker build."
},
"cacheFrom": {
"default": "[]",
"description": "the Docker images used as cache sources.",
"examples": [
"[\"golang:1.10.1-alpine3.7\", \"alpine:3.7\"]"
],
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "the Docker images used as cache sources."
},
"dockerfile": {
"default": "Dockerfile",
"description": "locates the Dockerfile relative to workspace.",
"type": "string",
"x-intellij-html-description": "locates the Dockerfile relative to workspace."
},
"network": {
"description": "passed through to docker and overrides the network configuration of docker builder. If unset, use whatever is configured in the underlying docker daemon. Valid modes are `host`: use the host's networking stack. `bridge`: use the bridged network configuration. `none`: no networking in the container.",
"enum": [
"host",
"bridge",
"none"
],
"type": "string",
"x-intellij-html-description": "passed through to docker and overrides the network configuration of docker builder. If unset, use whatever is configured in the underlying docker daemon. Valid modes are <code>host</code>: use the host's networking stack. <code>bridge</code>: use the bridged network configuration. <code>none</code>: no networking in the container."
},
"noCache": {
"default": "false",
"description": "used to pass in --no-cache to docker build to prevent caching.",
"type": "boolean",
"x-intellij-html-description": "used to pass in --no-cache to docker build to prevent caching."
},
"target": {
"description": "Dockerfile target name to build.",
"type": "string",
"x-intellij-html-description": "Dockerfile target name to build."
}
},
"x-intellij-html-description": "<em>beta</em> describes an artifact built from a Dockerfile, usually using <code>docker build</code>."
},
"DockerConfig": {
"additionalProperties": false,
"description": "contains information about the docker `config.json` to mount.",
"preferredOrder": [
"path",
"secretName"
],
"properties": {
"path": {
"description": "path to the docker `config.json`.",
"type": "string",
"x-intellij-html-description": "path to the docker <code>config.json</code>."
},
"secretName": {
"description": "Kubernetes secret that contains the `config.json` Docker configuration. Note that the expected secret type is not 'kubernetes.io/dockerconfigjson' but 'Opaque'.",
"type": "string",
"x-intellij-html-description": "Kubernetes secret that contains the <code>config.json</code> Docker configuration. Note that the expected secret type is not 'kubernetes.io/dockerconfigjson' but 'Opaque'."
}
},
"x-intellij-html-description": "contains information about the docker <code>config.json</code> to mount."
},
"DockerfileDependency": {
"additionalProperties": false,
"description": "*alpha* used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile.",
"preferredOrder": [
"path",
"buildArgs"
],
"properties": {
"buildArgs": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.",
"examples": [
"{\"key1\": \"value1\", \"key2\": \"value2\", \"key3\": \"{{.ENV_VARIABLE}}\"}"
],
"type": "object",
"x-intellij-html-description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax."
},
"path": {
"description": "locates the Dockerfile relative to workspace.",
"type": "string",
"x-intellij-html-description": "locates the Dockerfile relative to workspace."
}
},
"x-intellij-html-description": "<em>alpha</em> used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile."
},
"EnvTemplateTagger": {
"additionalProperties": false,
"description": "*beta* tags images with a configurable template string.",
"preferredOrder": [
"template"
],
"properties": {
"template": {
"description": "used to produce the image name and tag. See golang [text/template](https://golang.org/pkg/text/template/). The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section.",
"examples": [
"{{.RELEASE}}-{{.IMAGE_NAME}}"
],
"type": "string",
"x-intellij-html-description": "used to produce the image name and tag. See golang <a href=\"https://golang.org/pkg/text/template/\">text/template</a>. The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section."
}
},
"required": [
"template"
],
"x-intellij-html-description": "<em>beta</em> tags images with a configurable template string."
},
"GitTagger": {
"additionalProperties": false,
"description": "*beta* tags images with the git tag or commit of the artifact's workspace.",
"preferredOrder": [
"variant"
],
"properties": {
"variant": {
"description": "determines the behavior of the git tagger. Valid variants are `Tags` (default): use git tags or fall back to abbreviated commit hash. `CommitSha`: use the full git commit sha. `AbbrevCommitSha`: use the abbreviated git commit sha. `TreeSha`: use the full tree hash of the artifact workingdir. `AbbrevTreeSha`: use the abbreviated tree hash of the artifact workingdir.",
"enum": [
"Tags",
"CommitSha",
"AbbrevCommitSha",
"TreeSha",
"AbbrevTreeSha"
],
"type": "string",
"x-intellij-html-description": "determines the behavior of the git tagger. Valid variants are <code>Tags</code> (default): use git tags or fall back to abbreviated commit hash. <code>CommitSha</code>: use the full git commit sha. <code>AbbrevCommitSha</code>: use the abbreviated git commit sha. <code>TreeSha</code>: use the full tree hash of the artifact workingdir. <code>AbbrevTreeSha</code>: use the abbreviated tree hash of the artifact workingdir."
}
},
"x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace."
},
"GoogleCloudBuild": {
"additionalProperties": false,
"description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/docs/). Docker and Jib artifacts can be built on Cloud Build. The `projectId` needs to be provided and the currently logged in user should be given permissions to trigger new builds.",
"preferredOrder": [
"projectId",
"diskSizeGb",
"machineType",
"timeout",
"dockerImage",
"kanikoImage",
"mavenImage",
"gradleImage",
"concurrency"
],
"properties": {
"concurrency": {
"description": "how many artifacts can be built concurrently. 0 means \"no-limit\" Defaults to 0.",
"type": "integer",
"x-intellij-html-description": "how many artifacts can be built concurrently. 0 means "no-limit" Defaults to 0."
},
"diskSizeGb": {
"description": "disk size of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).",
"type": "integer",
"x-intellij-html-description": "disk size of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>."
},
"dockerImage": {
"default": "gcr.io/cloud-builders/docker",
"description": "image that runs a Docker build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).",
"type": "string",
"x-intellij-html-description": "image that runs a Docker build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>."
},
"gradleImage": {
"default": "gcr.io/cloud-builders/gradle",
"description": "image that runs a Gradle build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).",
"type": "string",
"x-intellij-html-description": "image that runs a Gradle build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>."
},
"kanikoImage": {
"default": "gcr.io/kaniko-project/executor",
"description": "image that runs a Kaniko build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).",
"type": "string",
"x-intellij-html-description": "image that runs a Kaniko build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>."
},
"machineType": {
"description": "type of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).",
"type": "string",
"x-intellij-html-description": "type of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>."
},
"mavenImage": {
"default": "gcr.io/cloud-builders/mvn",
"description": "image that runs a Maven build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).",
"type": "string",
"x-intellij-html-description": "image that runs a Maven build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>."
},
"projectId": {
"description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name `gcr.io/myproject/image`, Skaffold will use the `myproject` GCP project.",
"type": "string",
"x-intellij-html-description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name <code>gcr.io/myproject/image</code>, Skaffold will use the <code>myproject</code> GCP project."
},
"timeout": {
"description": "amount of time (in seconds) that this build should be allowed to run. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build).",
"type": "string",
"x-intellij-html-description": "amount of time (in seconds) that this build should be allowed to run. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build\">Cloud Build Reference</a>."
}
},
"x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/docs/\">Google Cloud Build</a>. Docker and Jib artifacts can be built on Cloud Build. The <code>projectId</code> needs to be provided and the currently logged in user should be given permissions to trigger new builds."
},
"HelmConventionConfig": {
"additionalProperties": false,
"description": "image config in the syntax of image.repository and image.tag.",
"preferredOrder": [
"explicitRegistry"
],
"properties": {
"explicitRegistry": {
"default": "false",
"description": "separates `image.registry` to the image config syntax. Useful for some charts e.g. `postgresql`.",
"type": "boolean",
"x-intellij-html-description": "separates <code>image.registry</code> to the image config syntax. Useful for some charts e.g. <code>postgresql</code>."
}
},
"x-intellij-html-description": "image config in the syntax of image.repository and image.tag."
},
"HelmDeploy": {
"additionalProperties": false,
"description": "*beta* uses the `helm` CLI to apply the charts to the cluster.",
"preferredOrder": [
"releases",
"flags"
],
"properties": {
"flags": {
"$ref": "#/definitions/HelmDeployFlags",
"description": "additional option flags that are passed on the command line to `helm`.",
"x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>."
},
"releases": {
"description": "a list of Helm releases.",
"items": {
"$ref": "#/definitions/HelmRelease"
},
"type": "array",
"x-intellij-html-description": "a list of Helm releases."
}
},
"required": [
"releases"
],
"x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster."
},
"HelmDeployFlags": {
"additionalProperties": false,
"description": "additional option flags that are passed on the command line to `helm`.",
"preferredOrder": [
"global",
"install",
"upgrade"
],
"properties": {
"global": {
"default": "[]",
"description": "additional flags passed on every command.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional flags passed on every command."
},
"install": {
"default": "[]",
"description": "additional flags passed to (`helm install`).",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional flags passed to (<code>helm install</code>)."
},
"upgrade": {
"default": "[]",
"description": "additional flags passed to (`helm upgrade`).",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional flags passed to (<code>helm upgrade</code>)."
}
},
"x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>."
},
"HelmFQNConfig": {
"additionalProperties": false,
"description": "image config to use the FullyQualifiedImageName as param to set.",
"preferredOrder": [
"property"
],
"properties": {
"property": {
"description": "defines the image config.",
"type": "string",
"x-intellij-html-description": "defines the image config."
}
},
"x-intellij-html-description": "image config to use the FullyQualifiedImageName as param to set."
},
"HelmImageStrategy": {
"anyOf": [
{
"additionalProperties": false
},
{
"additionalProperties": false,
"preferredOrder": [
"fqn"
],
"properties": {
"fqn": {
"$ref": "#/definitions/HelmFQNConfig",
"description": "image configuration uses the syntax `IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG`.",
"x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG</code>."
}
}
},
{
"additionalProperties": false,
"preferredOrder": [
"helm"
],
"properties": {
"helm": {
"$ref": "#/definitions/HelmConventionConfig",
"description": "image configuration uses the syntax `IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG`.",
"x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG</code>."
}
}
}
],
"description": "adds image configurations to the Helm `values` file.",
"x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file."
},
"HelmPackaged": {
"additionalProperties": false,
"description": "parameters for packaging helm chart (`helm package`).",
"preferredOrder": [
"version",
"appVersion"
],
"properties": {
"appVersion": {
"description": "sets the `appVersion` on the chart to this version.",
"type": "string",
"x-intellij-html-description": "sets the <code>appVersion</code> on the chart to this version."
},
"version": {
"description": "sets the `version` on the chart to this semver version.",
"type": "string",
"x-intellij-html-description": "sets the <code>version</code> on the chart to this semver version."
}
},
"x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)."
},
"HelmRelease": {
"additionalProperties": false,
"description": "describes a helm release to be deployed.",
"preferredOrder": [
"name",
"chartPath",
"valuesFiles",
"values",
"namespace",
"version",
"setValues",
"setValueTemplates",
"setFiles",
"wait",
"recreatePods",
"skipBuildDependencies",
"useHelmSecrets",
"remote",
"overrides",
"packaged",
"imageStrategy"
],
"properties": {
"chartPath": {
"description": "path to the Helm chart.",
"type": "string",
"x-intellij-html-description": "path to the Helm chart."
},
"imageStrategy": {
"$ref": "#/definitions/HelmImageStrategy",
"description": "adds image configurations to the Helm `values` file.",
"x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file."
},
"name": {
"description": "name of the Helm release.",
"type": "string",
"x-intellij-html-description": "name of the Helm release."
},
"namespace": {
"description": "Kubernetes namespace.",
"type": "string",
"x-intellij-html-description": "Kubernetes namespace."
},
"overrides": {
"description": "key-value pairs. If present, Skaffold will build a Helm `values` file that overrides the original and use it to call Helm CLI (`--f` flag).",
"x-intellij-html-description": "key-value pairs. If present, Skaffold will build a Helm <code>values</code> file that overrides the original and use it to call Helm CLI (<code>--f</code> flag)."
},
"packaged": {
"$ref": "#/definitions/HelmPackaged",
"description": "parameters for packaging helm chart (`helm package`).",
"x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)."
},
"recreatePods": {
"default": "false",
"description": "if `true`, Skaffold will send `--recreate-pods` flag to Helm CLI when upgrading a new version of a chart in subsequent dev loop deploy.",
"type": "boolean",
"x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--recreate-pods</code> flag to Helm CLI when upgrading a new version of a chart in subsequent dev loop deploy."
},
"remote": {
"default": "false",
"description": "specifies whether the chart path is remote, or exists on the host filesystem. `remote: true` implies `skipBuildDependencies: true`.",
"type": "boolean",
"x-intellij-html-description": "specifies whether the chart path is remote, or exists on the host filesystem. <code>remote: true</code> implies <code>skipBuildDependencies: true</code>."
},
"setFiles": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "key-value pairs. If present, Skaffold will send `--set-file` flag to Helm CLI and append all pairs after the flag.",
"type": "object",
"x-intellij-html-description": "key-value pairs. If present, Skaffold will send <code>--set-file</code> flag to Helm CLI and append all pairs after the flag."
},
"setValueTemplates": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send `--set` flag to Helm CLI and append all parsed pairs after the flag.",
"type": "object",
"x-intellij-html-description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send <code>--set</code> flag to Helm CLI and append all parsed pairs after the flag."
},
"setValues": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "key-value pairs. If present, Skaffold will send `--set` flag to Helm CLI and append all pairs after the flag.",
"type": "object",
"x-intellij-html-description": "key-value pairs. If present, Skaffold will send <code>--set</code> flag to Helm CLI and append all pairs after the flag."
},
"skipBuildDependencies": {
"default": "false",
"description": "should build dependencies be skipped.",
"type": "boolean",
"x-intellij-html-description": "should build dependencies be skipped."
},
"useHelmSecrets": {
"default": "false",
"description": "instructs skaffold to use secrets plugin on deployment.",
"type": "boolean",
"x-intellij-html-description": "instructs skaffold to use secrets plugin on deployment."
},
"values": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "key-value pairs supplementing the Helm `values` file.",
"type": "object",
"x-intellij-html-description": "key-value pairs supplementing the Helm <code>values</code> file."
},
"valuesFiles": {
"default": "[]",
"description": "paths to the Helm `values` files.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "paths to the Helm <code>values</code> files."
},
"version": {
"description": "version of the chart.",
"type": "string",
"x-intellij-html-description": "version of the chart."
},
"wait": {
"default": "false",
"description": "if `true`, Skaffold will send `--wait` flag to Helm CLI.",
"type": "boolean",
"x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--wait</code> flag to Helm CLI."
}
},
"required": [
"name",
"chartPath"
],
"x-intellij-html-description": "describes a helm release to be deployed."
},
"JSONPatch": {
"additionalProperties": false,
"description": "patch to be applied by a profile.",
"preferredOrder": [
"op",
"path",
"from",
"value"
],
"properties": {
"from": {
"description": "source position in the yaml, used for `copy` or `move` operations.",
"type": "string",
"x-intellij-html-description": "source position in the yaml, used for <code>copy</code> or <code>move</code> operations."
},
"op": {
"default": "replace",
"description": "operation carried by the patch: `add`, `remove`, `replace`, `move`, `copy` or `test`.",
"type": "string",
"x-intellij-html-description": "operation carried by the patch: <code>add</code>, <code>remove</code>, <code>replace</code>, <code>move</code>, <code>copy</code> or <code>test</code>."
},
"path": {
"description": "position in the yaml where the operation takes place. For example, this targets the `dockerfile` of the first artifact built.",
"examples": [
"/build/artifacts/0/docker/dockerfile"
],
"type": "string",
"x-intellij-html-description": "position in the yaml where the operation takes place. For example, this targets the <code>dockerfile</code> of the first artifact built."
},
"value": {
"description": "value to apply. Can be any portion of yaml.",
"x-intellij-html-description": "value to apply. Can be any portion of yaml."
}
},
"required": [
"path"
],
"x-intellij-html-description": "patch to be applied by a profile."
},
"JibArtifact": {
"additionalProperties": false,
"description": "*alpha* builds images using the [Jib plugins for Maven and Gradle](https://github.com/GoogleContainerTools/jib/).",
"preferredOrder": [
"project",
"args",
"type"
],
"properties": {
"args": {
"default": "[]",
"description": "additional build flags passed to the builder.",
"examples": [
"[\"--no-build-cache\"]"
],
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional build flags passed to the builder."
},
"project": {
"description": "selects which sub-project to build for multi-module builds.",
"type": "string",
"x-intellij-html-description": "selects which sub-project to build for multi-module builds."
},
"type": {
"description": "the Jib builder type; normally determined automatically. Valid types are `maven`: for Maven. `gradle`: for Gradle.",
"enum": [
"maven",
"gradle"
],
"type": "string",
"x-intellij-html-description": "the Jib builder type; normally determined automatically. Valid types are <code>maven</code>: for Maven. <code>gradle</code>: for Gradle."
}
},
"x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/\">Jib plugins for Maven and Gradle</a>."
},
"KanikoArtifact": {
"additionalProperties": false,
"description": "*alpha* describes an artifact built from a Dockerfile, with kaniko.",
"preferredOrder": [
"flags",
"dockerfile",
"target",
"buildArgs",
"buildContext",
"image",
"cache",
"reproducible"
],
"properties": {
"buildArgs": {
"additionalProperties": {
"type": "string"
},
"default": "{}",
"description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.",
"examples": [
"{\"key1\": \"value1\", \"key2\": \"value2\", \"key3\": \"{{.ENV_VARIABLE}}\"}"
],
"type": "object",
"x-intellij-html-description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax."
},
"buildContext": {
"$ref": "#/definitions/KanikoBuildContext",
"description": "where the build context for this artifact resides.",
"x-intellij-html-description": "where the build context for this artifact resides."
},
"cache": {
"$ref": "#/definitions/KanikoCache",
"description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.",
"x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds."
},
"dockerfile": {
"default": "Dockerfile",
"description": "locates the Dockerfile relative to workspace.",
"type": "string",
"x-intellij-html-description": "locates the Dockerfile relative to workspace."
},
"flags": {
"default": "[]",
"description": "additional flags to be passed to Kaniko command line. See [Kaniko Additional Flags](https://github.com/GoogleContainerTools/kaniko#additional-flags). Deprecated - instead the named, unique fields should be used, e.g. `buildArgs`, `cache`, `target`.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional flags to be passed to Kaniko command line. See <a href=\"https://github.com/GoogleContainerTools/kaniko#additional-flags\">Kaniko Additional Flags</a>. Deprecated - instead the named, unique fields should be used, e.g. <code>buildArgs</code>, <code>cache</code>, <code>target</code>."
},
"image": {
"description": "Docker image used by the Kaniko pod. Defaults to the latest released version of `gcr.io/kaniko-project/executor`.",
"type": "string",
"x-intellij-html-description": "Docker image used by the Kaniko pod. Defaults to the latest released version of <code>gcr.io/kaniko-project/executor</code>."
},
"reproducible": {
"default": "false",
"description": "used to strip timestamps out of the built image.",
"type": "boolean",
"x-intellij-html-description": "used to strip timestamps out of the built image."
},
"target": {
"description": "Dockerfile target name to build.",
"type": "string",
"x-intellij-html-description": "Dockerfile target name to build."
}
},
"x-intellij-html-description": "<em>alpha</em> describes an artifact built from a Dockerfile, with kaniko."
},
"KanikoBuildContext": {
"additionalProperties": false,
"description": "contains the different fields available to specify a Kaniko build context.",
"preferredOrder": [
"gcsBucket",
"localDir"
],
"properties": {
"gcsBucket": {
"description": "GCS bucket to which sources are uploaded. Kaniko will need access to that bucket to download the sources.",
"type": "string",
"x-intellij-html-description": "GCS bucket to which sources are uploaded. Kaniko will need access to that bucket to download the sources."
},
"localDir": {
"$ref": "#/definitions/LocalDir",
"description": "configures how Kaniko mounts sources directly via an `emptyDir` volume.",
"x-intellij-html-description": "configures how Kaniko mounts sources directly via an <code>emptyDir</code> volume."
}
},
"x-intellij-html-description": "contains the different fields available to specify a Kaniko build context."
},
"KanikoCache": {
"additionalProperties": false,
"description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.",
"preferredOrder": [
"repo",
"hostPath"
],
"properties": {
"hostPath": {
"description": "specifies a path on the host that is mounted to each pod as read only cache volume containing base images. If set, must exist on each node and prepopulated with kaniko-warmer.",
"type": "string",
"x-intellij-html-description": "specifies a path on the host that is mounted to each pod as read only cache volume containing base images. If set, must exist on each node and prepopulated with kaniko-warmer."
},
"repo": {
"description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See [Kaniko Caching](https://github.com/GoogleContainerTools/kaniko#caching).",
"type": "string",
"x-intellij-html-description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See <a href=\"https://github.com/GoogleContainerTools/kaniko#caching\">Kaniko Caching</a>."
}
},
"x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds."
},
"KubectlDeploy": {
"additionalProperties": false,
"description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.",
"preferredOrder": [
"manifests",
"remoteManifests",
"flags"
],
"properties": {
"flags": {
"$ref": "#/definitions/KubectlFlags",
"description": "additional flags passed to `kubectl`.",
"x-intellij-html-description": "additional flags passed to <code>kubectl</code>."
},
"manifests": {
"default": "[\"k8s/*.yaml\"]",
"description": "the Kubernetes yaml or json manifests.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "the Kubernetes yaml or json manifests."
},
"remoteManifests": {
"default": "[]",
"description": "Kubernetes manifests in remote clusters.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "Kubernetes manifests in remote clusters."
}
},
"x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster."
},
"KubectlFlags": {
"additionalProperties": false,
"description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete).",
"preferredOrder": [
"global",
"apply",
"delete"
],
"properties": {
"apply": {
"default": "[]",
"description": "additional flags passed on creations (`kubectl apply`).",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional flags passed on creations (<code>kubectl apply</code>)."
},
"delete": {
"default": "[]",
"description": "additional flags passed on deletions (`kubectl delete`).",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional flags passed on deletions (<code>kubectl delete</code>)."
},
"global": {
"default": "[]",
"description": "additional flags passed on every command.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional flags passed on every command."
}
},
"x-intellij-html-description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete)."
},
"KustomizeDeploy": {
"additionalProperties": false,
"description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.",
"preferredOrder": [
"path",
"flags",
"buildArgs"
],
"properties": {
"buildArgs": {
"default": "[]",
"description": "additional args passed to `kustomize build`.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "additional args passed to <code>kustomize build</code>."
},
"flags": {
"$ref": "#/definitions/KubectlFlags",
"description": "additional flags passed to `kubectl`.",
"x-intellij-html-description": "additional flags passed to <code>kubectl</code>."
},
"path": {
"default": ".",
"description": "path to Kustomization files.",
"type": "string",
"x-intellij-html-description": "path to Kustomization files."
}
},
"x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to "patch" a deployment for a target environment."
},
"LocalBuild": {
"additionalProperties": false,
"description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.",
"preferredOrder": [
"push",
"useDockerCLI",
"useBuildkit"
],
"properties": {
"push": {
"description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster.",
"type": "boolean",
"x-intellij-html-description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster."
},
"useBuildkit": {
"default": "false",
"description": "use BuildKit to build Docker images.",
"type": "boolean",
"x-intellij-html-description": "use BuildKit to build Docker images."
},
"useDockerCLI": {
"default": "false",
"description": "use `docker` command-line interface instead of Docker Engine APIs.",
"type": "boolean",
"x-intellij-html-description": "use <code>docker</code> command-line interface instead of Docker Engine APIs."
}
},
"x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository."
},
"LocalDir": {
"additionalProperties": false,
"description": "configures how Kaniko mounts sources directly via an `emptyDir` volume.",
"preferredOrder": [
"initImage"
],
"properties": {
"initImage": {
"description": "image used to run init container which mounts kaniko context.",
"type": "string",
"x-intellij-html-description": "image used to run init container which mounts kaniko context."
}
},
"x-intellij-html-description": "configures how Kaniko mounts sources directly via an <code>emptyDir</code> volume."
},
"Metadata": {
"additionalProperties": false,
"description": "holds an optional name of the project.",
"preferredOrder": [
"name"
],
"properties": {
"name": {
"description": "an identifier for the project.",
"type": "string",
"x-intellij-html-description": "an identifier for the project."
}
},
"x-intellij-html-description": "holds an optional name of the project."
},
"PortForwardResource": {
"additionalProperties": false,
"description": "describes a resource to port forward.",
"preferredOrder": [
"resourceType",
"resourceName",
"namespace",
"port",
"localPort"
],
"properties": {
"localPort": {
"description": "local port to forward to. If the port is unavailable, Skaffold will choose a random open port to forward to. *Optional*.",
"type": "integer",
"x-intellij-html-description": "local port to forward to. If the port is unavailable, Skaffold will choose a random open port to forward to. <em>Optional</em>."
},
"namespace": {
"description": "namespace of the resource to port forward.",
"type": "string",
"x-intellij-html-description": "namespace of the resource to port forward."
},
"port": {
"description": "resource port that will be forwarded.",
"type": "integer",
"x-intellij-html-description": "resource port that will be forwarded."
},
"resourceName": {
"description": "name of the Kubernetes resource to port forward.",
"type": "string",
"x-intellij-html-description": "name of the Kubernetes resource to port forward."
},
"resourceType": {
"description": "Kubernetes type that should be port forwarded. Acceptable resource types include: `Service`, `Pod` and Controller resource type that has a pod spec: `ReplicaSet`, `ReplicationController`, `Deployment`, `StatefulSet`, `DaemonSet`, `Job`, `CronJob`.",
"type": "string",
"x-intellij-html-description": "Kubernetes type that should be port forwarded. Acceptable resource types include: <code>Service</code>, <code>Pod</code> and Controller resource type that has a pod spec: <code>ReplicaSet</code>, <code>ReplicationController</code>, <code>Deployment</code>, <code>StatefulSet</code>, <code>DaemonSet</code>, <code>Job</code>, <code>CronJob</code>."
}
},
"x-intellij-html-description": "describes a resource to port forward."
},
"Profile": {
"additionalProperties": false,
"description": "*beta* profiles are used to override any `build`, `test` or `deploy` configuration.",
"preferredOrder": [
"name",
"build",
"test",
"deploy",
"portForward",
"patches",
"activation"
],
"properties": {
"activation": {
"description": "criteria by which a profile can be auto-activated. The profile is auto-activated if any one of the activations are triggered. An activation is triggered if all of the criteria (env, kubeContext, command) are triggered.",
"items": {
"$ref": "#/definitions/Activation"
},
"type": "array",
"x-intellij-html-description": "criteria by which a profile can be auto-activated. The profile is auto-activated if any one of the activations are triggered. An activation is triggered if all of the criteria (env, kubeContext, command) are triggered."
},
"build": {
"$ref": "#/definitions/BuildConfig",
"description": "describes how images are built.",
"x-intellij-html-description": "describes how images are built."
},
"deploy": {
"$ref": "#/definitions/DeployConfig",
"description": "describes how images are deployed.",
"x-intellij-html-description": "describes how images are deployed."
},
"name": {
"description": "a unique profile name.",
"examples": [
"profile-prod"
],
"type": "string",
"x-intellij-html-description": "a unique profile name."
},
"patches": {
"description": "patches applied to the configuration. Patches use the JSON patch notation.",
"items": {
"$ref": "#/definitions/JSONPatch"
},
"type": "array",
"x-intellij-html-description": "patches applied to the configuration. Patches use the JSON patch notation."
},
"portForward": {
"description": "describes user defined resources to port-forward.",
"items": {
"$ref": "#/definitions/PortForwardResource"
},
"type": "array",
"x-intellij-html-description": "describes user defined resources to port-forward."
},
"test": {
"description": "describes how images are tested.",
"items": {
"$ref": "#/definitions/TestCase"
},
"type": "array",
"x-intellij-html-description": "describes how images are tested."
}
},
"required": [
"name"
],
"x-intellij-html-description": "<em>beta</em> profiles are used to override any <code>build</code>, <code>test</code> or <code>deploy</code> configuration."
},
"ResourceRequirement": {
"additionalProperties": false,
"description": "stores the CPU/Memory requirements for the pod.",
"preferredOrder": [
"cpu",
"memory"
],
"properties": {
"cpu": {
"description": "the number cores to be used.",
"examples": [
"2`, `2.0` or `200m"
],
"type": "string",
"x-intellij-html-description": "the number cores to be used."
},
"memory": {
"description": "the amount of memory to allocate to the pod.",
"examples": [
"1Gi` or `1000Mi"
],
"type": "string",
"x-intellij-html-description": "the amount of memory to allocate to the pod."
}
},
"x-intellij-html-description": "stores the CPU/Memory requirements for the pod."
},
"ResourceRequirements": {
"additionalProperties": false,
"description": "describes the resource requirements for the kaniko pod.",
"preferredOrder": [
"requests",
"limits"
],
"properties": {
"limits": {
"$ref": "#/definitions/ResourceRequirement",
"description": "[resource limits](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.",
"x-intellij-html-description": "<a href=\"https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container\">resource limits</a> for the Kaniko pod."
},
"requests": {
"$ref": "#/definitions/ResourceRequirement",
"description": "[resource requests](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.",
"x-intellij-html-description": "<a href=\"https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container\">resource requests</a> for the Kaniko pod."
}
},
"x-intellij-html-description": "describes the resource requirements for the kaniko pod."
},
"ResourceType": {
"description": "describes the Kubernetes resource types used for port forwarding.",
"type": "string",
"x-intellij-html-description": "describes the Kubernetes resource types used for port forwarding."
},
"ShaTagger": {
"description": "*beta* tags images with their sha256 digest.",
"x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest."
},
"SkaffoldConfig": {
"additionalProperties": false,
"description": "holds the fields parsed from the Skaffold configuration file (skaffold.yaml).",
"preferredOrder": [
"apiVersion",
"kind",
"metadata",
"build",
"test",
"deploy",
"portForward",
"profiles"
],
"properties": {
"apiVersion": {
"description": "version of the configuration.",
"type": "string",
"x-intellij-html-description": "version of the configuration."
},
"build": {
"$ref": "#/definitions/BuildConfig",
"description": "describes how images are built.",
"x-intellij-html-description": "describes how images are built."
},
"deploy": {
"$ref": "#/definitions/DeployConfig",
"description": "describes how images are deployed.",
"x-intellij-html-description": "describes how images are deployed."
},
"kind": {
"default": "Config",
"description": "always `Config`.",
"type": "string",
"x-intellij-html-description": "always <code>Config</code>."
},
"metadata": {
"$ref": "#/definitions/Metadata",
"description": "holds additional information about the config.",
"x-intellij-html-description": "holds additional information about the config."
},
"portForward": {
"description": "describes user defined resources to port-forward.",
"items": {
"$ref": "#/definitions/PortForwardResource"
},
"type": "array",
"x-intellij-html-description": "describes user defined resources to port-forward."
},
"profiles": {
"description": "*beta* can override be used to `build`, `test` or `deploy` configuration.",
"items": {
"$ref": "#/definitions/Profile"
},
"type": "array",
"x-intellij-html-description": "<em>beta</em> can override be used to <code>build</code>, <code>test</code> or <code>deploy</code> configuration."
},
"test": {
"description": "describes how images are tested.",
"items": {
"$ref": "#/definitions/TestCase"
},
"type": "array",
"x-intellij-html-description": "describes how images are tested."
}
},
"required": [
"apiVersion",
"kind"
],
"x-intellij-html-description": "holds the fields parsed from the Skaffold configuration file (skaffold.yaml)."
},
"Sync": {
"additionalProperties": false,
"description": "*alpha* specifies what files to sync into the container. This is a list of sync rules indicating the intent to sync for source files.",
"preferredOrder": [
"manual",
"infer"
],
"properties": {
"infer": {
"default": "[]",
"description": "file patterns which may be synced into the container. The container destination is inferred by the builder. Currently only available for docker artifacts.",
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "file patterns which may be synced into the container. The container destination is inferred by the builder. Currently only available for docker artifacts."
},
"manual": {
"description": "manual sync rules indicating the source and destination.",
"items": {
"$ref": "#/definitions/SyncRule"
},
"type": "array",
"x-intellij-html-description": "manual sync rules indicating the source and destination."
}
},
"x-intellij-html-description": "<em>alpha</em> specifies what files to sync into the container. This is a list of sync rules indicating the intent to sync for source files."
},
"SyncRule": {
"additionalProperties": false,
"description": "specifies which local files to sync to remote folders.",
"preferredOrder": [
"src",
"dest",
"strip"
],
"properties": {
"dest": {
"description": "destination path in the container where the files should be synced to.",
"examples": [
"\"app/\""
],
"type": "string",
"x-intellij-html-description": "destination path in the container where the files should be synced to."
},
"src": {
"description": "a glob pattern to match local paths against. Directories should be delimited by `/` on all platforms.",
"examples": [
"\"css/**/*.css\""
],
"type": "string",
"x-intellij-html-description": "a glob pattern to match local paths against. Directories should be delimited by <code>/</code> on all platforms."
},
"strip": {
"description": "specifies the path prefix to remove from the source path when transplanting the files into the destination folder.",
"examples": [
"\"css/\""
],
"type": "string",
"x-intellij-html-description": "specifies the path prefix to remove from the source path when transplanting the files into the destination folder."
}
},
"required": [
"src",
"dest"
],
"x-intellij-html-description": "specifies which local files to sync to remote folders."
},
"TagPolicy": {
"additionalProperties": false,
"description": "contains all the configuration for the tagging step.",
"preferredOrder": [
"gitCommit",
"sha256",
"envTemplate",
"dateTime"
],
"properties": {
"dateTime": {
"$ref": "#/definitions/DateTimeTagger",
"description": "*beta* tags images with the build timestamp.",
"x-intellij-html-description": "<em>beta</em> tags images with the build timestamp."
},
"envTemplate": {
"$ref": "#/definitions/EnvTemplateTagger",
"description": "*beta* tags images with a configurable template string.",
"x-intellij-html-description": "<em>beta</em> tags images with a configurable template string."
},
"gitCommit": {
"$ref": "#/definitions/GitTagger",
"description": "*beta* tags images with the git tag or commit of the artifact's workspace.",
"x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace."
},
"sha256": {
"$ref": "#/definitions/ShaTagger",
"description": "*beta* tags images with their sha256 digest.",
"x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest."
}
},
"x-intellij-html-description": "contains all the configuration for the tagging step."
},
"TestCase": {
"additionalProperties": false,
"description": "a list of structure tests to run on images that Skaffold builds.",
"preferredOrder": [
"image",
"structureTests"
],
"properties": {
"image": {
"description": "artifact on which to run those tests.",
"examples": [
"gcr.io/k8s-skaffold/example"
],
"type": "string",
"x-intellij-html-description": "artifact on which to run those tests."
},
"structureTests": {
"default": "[]",
"description": "the [Container Structure Tests](https://github.com/GoogleContainerTools/container-structure-test) to run on that artifact.",
"examples": [
"[\"./test/*\"]"
],
"items": {
"type": "string"
},
"type": "array",
"x-intellij-html-description": "the <a href=\"https://github.com/GoogleContainerTools/container-structure-test\">Container Structure Tests</a> to run on that artifact."
}
},
"required": [
"image"
],
"x-intellij-html-description": "a list of structure tests to run on images that Skaffold builds."
}
},
"type": "object"
} | o6355 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"properties": {
"agency": {
"type": "string"
},
"conformsTo": {
"_format": "uri",
"type": "string"
},
"date_effective": {
"_format": "date-time",
"type": "string"
},
"date_expires": {
"_format": "date-time",
"type": "string"
},
"documentation": {
"_format": "uri",
"type": "string"
},
"schema_version": {
"type": "string"
},
"seasons": {
"properties": {
"season": {
"properties": {
"comment": {
"type": "string"
},
"method": {
"type": [
"string",
"array"
]
},
"method_rules": {
"items": {
"type": "string"
},
"required": [
"items"
],
"type": [
"string",
"array"
]
},
"name": {
"type": "string"
},
"range": {
"properties": {
"1": {
"properties": {
"places": {
"type": "object"
},
"season": {
"properties": {
"date": {
"properties": {
"ends": {
"type": "string"
},
"starts": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "array"
}
},
"required": [
"method"
],
"type": "object"
}
},
"required": [
"season"
],
"type": "object"
},
"species": {
"properties": {
"aliases": {
"type": "array"
},
"bova_id": {
"type": "string"
},
"members": {
"properties": {
"aliases": {
"type": "array"
},
"bova_id": {
"type": "string"
},
"name": {
"type": "string"
},
"taxonomy": {
"type": "string"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"name"
],
"type": "array"
},
"name": {
"type": "string"
},
"taxonomy": {
"type": "string"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"state": {
"maxLength": 2,
"minLength": 2,
"pattern": "([A-Z]{2})",
"type": "string"
}
},
"required": [
"agency",
"date_effective",
"date_expires",
"documentation",
"schema_version",
"conformsTo",
"state",
"seasons"
],
"title": "hunting",
"type": "object"
} | o65504 |
{
"additionalProperties": false,
"definitions": {
"cliInfo": {
"required": [
"url",
"kind",
"contentHash"
],
"properties": {
"url": {
"type": "string"
},
"contentHash": {
"items": {
"$ref": "#/definitions/hash"
},
"minItems": 1,
"type": "array"
},
"kind": {
"enum": [
"executable",
"zip"
],
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"hash": {
"required": [
"algo",
"value"
],
"properties": {
"algo": {
"enum": [
"sha256"
],
"type": "string"
},
"value": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
}
},
"properties": {
"assets": {
"properties": {
"uris": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"container": {
"properties": {
"docker": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
},
"additionalProperties": false,
"type": "object"
}
},
"additionalProperties": false,
"type": "object"
},
"images": {
"properties": {
"icon-small": {
"description": "PNG icon URL, preferably 48 by 48 pixels.",
"type": "string"
},
"icon-large": {
"description": "PNG icon URL, preferably 256 by 256 pixels.",
"type": "string"
},
"screenshots": {
"items": {
"description": "PNG screen URL, preferably 1024 by 1024 pixels.",
"type": "string"
},
"type": "array"
},
"icon-medium": {
"description": "PNG icon URL, preferably 128 by 128 pixels.",
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"cli": {
"required": [
"binaries"
],
"properties": {
"binaries": {
"minProperties": 1,
"properties": {
"linux": {
"required": [
"x86-64"
],
"properties": {
"x86-64": {
"$ref": "#/definitions/cliInfo"
}
},
"additionalProperties": false,
"type": "object"
},
"windows": {
"required": [
"x86-64"
],
"properties": {
"x86-64": {
"$ref": "#/definitions/cliInfo"
}
},
"additionalProperties": false,
"type": "object"
},
"darwin": {
"required": [
"x86-64"
],
"properties": {
"x86-64": {
"$ref": "#/definitions/cliInfo"
}
},
"additionalProperties": false,
"type": "object"
}
},
"additionalProperties": false,
"type": "object"
}
},
"additionalProperties": false,
"type": "object"
}
},
"$schema": "http://json-schema.org/draft-04/schema#"
} | o81167 |
{
"title": "JSON schema for NLU (npm-link-up) library.",
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"oneOf": [
{ "required": ["list"] },
{ "required": ["packages"] },
{ "required": ["deps"] }
],
"definitions": {
"PackagesMap": {
"additionalProperties": {
},
"type": "object"
}
},
"properties": {
"$schema": {
"type": "string"
},
"alwaysReinstall": {
"type": "boolean"
},
"comments": {
"items": {
"type": "string"
},
"type": "array"
},
"deps": {
"items": {
"type": "string"
},
"type": "array"
},
"ignore": {
"items": {
"type": "string"
},
"type": "array"
},
"linkToItself": {
"type": "boolean"
},
"linkable": {
"enum": [
true
],
"type": "boolean"
},
"list": {
"items": {
"type": "string"
},
"type": "array"
},
"localSettings": {
"additionalProperties": {
},
"type": "object"
},
"npm-link-up": {
"type": "boolean"
},
"packages": {
"$ref": "#/definitions/PackagesMap"
},
"searchRoots": {
"items": {
"type": "string"
},
"type": "array"
}
}
}
| nlu |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"deviceName": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"description": {
"type": "string",
"maxLength": 32767
},
"deviceDescription": {
"type": "string",
"maxLength": 32767
},
"tags": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"value": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"required": [
"key",
"value"
],
"additionalProperties": false
},
"maxItems": 100
},
"attributes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"dataType": {
"type": "string",
"enum": [
"string",
"number",
"gps",
"boolean",
"blob"
]
},
"contentType": {
"type": "string",
"maxLength": 64
},
"description": {
"type": "string",
"maxLength": 32767
},
"attributeTags": {
"type": "object",
"patternProperties": {
"^[0-9a-zA-Z_-]{1,255}$": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"additionalProperties": false
},
"system": {
"type": "object",
"properties": {
"aggregation": {
"type": "string",
"enum": [
"FIRST",
"LAST",
"COUNT",
"MAX",
"MIN",
"MEDIAN",
"MEAN",
"SUM",
"STD_DEV"
]
},
"aggregationOptions": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false
},
"additionalProperties": false,
"maxItems": 0
},
"childAttributes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"mode": {
"type": "string",
"enum": [
"all",
"whitelist",
"blacklist"
]
},
"deviceIds": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"maxItems": 1000
},
"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
}
},
"required": [
"name",
"mode"
],
"additionalProperties": false
},
"maxItems": 256
}
},
"additionalProperties": false
}
},
"required": [
"name",
"dataType"
],
"additionalProperties": false
},
"maxItems": 256
},
"deviceClass": {
"type": "string",
"enum": [
"standalone",
"gateway",
"peripheral",
"floating",
"edgeCompute",
"system"
]
},
"gatewayId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"parentId": {
"oneOf": [
{
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
{
"type": "null"
}
]
},
"systemInterval": {
"type": "integer",
"minimum": 5,
"maximum": 3600
},
"keepDuplicates": {
"type": "boolean"
}
},
"additionalProperties": false,
"required": [
"name"
]
} | o9837 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{
"anyOf": [
{
"$ref": "#/definitions/specifiedProvider"
},
{
"$ref": "#/definitions/defaultProvider"
}
]
},
{
"anyOf": [
{
"$ref": "#/definitions/specifiedDestination"
},
{
"$ref": "#/definitions/defaultDestination"
}
]
}
],
"definitions": {
"libraryEntry": {
"required": ["library"],
"properties": {
"files": {
"description": "The file names of the individual files to copy to the project.",
"type": "array",
"default": null,
"items": {
"type": "string",
"minLength": 1
}
},
"library": {
"description": "The unique identifier of the library.",
"type": "string",
"minLength": 1
},
"destination": {
"description": "The relative folder path from this config file to the location where the files should be copied to.",
"type": "string",
"pattern": "^[^\\\\]+$"
},
"provider": {
"description": "The unique identifier of the provider",
"type": "string",
"minLength": 1
}
}
},
"specifiedProvider": {
"properties": {
"libraries": {
"items": {
"required": ["provider"]
}
}
},
"not": {
"required": ["defaultProvider"]
}
},
"defaultProvider": {
"properties": {
"defaultProvider": {
"description": "The unique identifier of the provider to use as default.",
"type": "string",
"minLength": 1
}
}
},
"specifiedDestination": {
"properties": {
"libraries": {
"items": {
"required": ["destination"]
}
}
},
"not": {
"required": ["defaultDestination"]
}
},
"defaultDestination": {
"properties": {
"defaultDestination": {
"description": "The default destination to place library files.",
"type": "string",
"minLength": 1
}
}
}
},
"id": "https://json.schemastore.org/libman.json",
"properties": {
"libraries": {
"description": "A list of library references.",
"type": "array",
"items": {
"$ref": "#/definitions/libraryEntry"
}
},
"version": {
"description": "The syntax version of this config file. Can only be 1.0",
"enum": ["1.0"],
"default": "1.0"
}
},
"required": ["libraries"],
"title": "JSON schema for client-side library config files",
"type": "object"
}
| libman |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "JSONAPI rc3",
"description": "A JSONAPI document",
"type": "object",
"properties": {
"data": {
"anyOf": [
{
"$ref": "#/definitions/resource"
},
{
"description": "The top-level resource or array of resources",
"type": "array",
"items": {
"$ref": "#/definitions/resource"
}
}
]
}
},
"required": [
"data"
],
"definitions": {
"resource": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type"
]
}
}
} | o43079 |
{
"properties": {
"agreed_variations": {
"type": "object"
},
"application_company_details_confirmed": {
"type": "boolean"
},
"current_framework_agreement": {
"description": "a non-primary mapper representing the current FrameworkAgreement of each SupplierFramework",
"type": "object"
},
"declaration": {
"type": "object"
},
"framework": {
"description": "Relationship link to a Framework instance",
"type": "object"
},
"framework_id": {
"type": "integer"
},
"on_framework": {
"type": "boolean"
},
"prefill_declaration_from_framework": {
"description": "Relationship link to a Framework instance",
"type": "object"
},
"prefill_declaration_from_framework_id": {
"type": "integer"
},
"prefill_declaration_from_supplier_framework": {
"description": "Relationship link to a another instance of SupplierFramework.",
"type": "object"
},
"supplier": {
"description": "Relationship link to a Supplier instance",
"type": "object"
},
"supplier_id": {
"type": "integer"
}
},
"required": [
"supplier_id",
"framework_id"
],
"title": "SupplierFramework",
"type": "object"
} | o21099 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"force": {
"type": "boolean"
}
},
"required": [
"id",
"force"
],
"additionalItems": false
} | o83139 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "ProgrammerCV Resume Schema",
"type": "object",
"properties": {
"meta": {
"type": "object",
"description": "Contains metadata information for the resume",
"properties": {
"format": {
"type": "string",
"description": "The canonical resume format and version. E.g. '[email protected]'."
},
"version": {
"type": "string",
"description": "The semantic version number for this resume. E.g. 1.0.0"
}
}
},
"basics": {
"type": "object",
"description": "Your basic information like the name, a label, an image, summary, contact information, location information and social media profiles.",
"properties": {
"name": {
"type": "string",
"description": "Your name as it should appear on the resume."
},
"label": {
"type": "string",
"description": "Your label, e.g. 'Full-Stack Developer', 'Web Developer', 'iOS Developer'."
},
"image": {
"type": "string",
"description": "URL or path to your picture in JPEG, PNG, GIF, or BMP format."
},
"summary": {
"type": "string",
"description": "A short description or summary of yourself."
},
"disposition": {
"type": "string",
"description": "Your overall attitude towards new employment opportunities including: travel, relocation, schedule, desired type of work, work authorization (e.g. Visas)"
},
"contact": {
"type": "object",
"description": "Contact information, including phone numbers, emails, websites, IMs, and custom contact types.",
"properties": {
"email": {
"type": "string",
"description": "Primary contact email."
},
"phone": {
"type": "string",
"description": "Primary phone number."
},
"website": {
"type": "string",
"description": "Website, blog, or home page."
},
"location": {
"type": "string",
"description": "Location information, like address, country, region, city etc."
},
"social": {
"type": "array",
"description": "Social networking services and communities including GitHub, FaceBook, and the like.",
"items": {
"type": "object",
"properties": {
"network": {
"type": "string",
"description": "The name of the social network."
},
"user": {
"type": "string",
"description": "Your user name, number or identifier on this network."
},
"url": {
"type": "string",
"description": "URL of your profile page on this network."
}
}
}
}
}
}
}
},
"employment": {
"type": "array",
"description": "Your employment summary and list of employment history.",
"items": {
"type": "object",
"properties": {
"employer": {
"type": "string",
"description": "Employer name."
},
"position": {
"type": "string",
"description": "Your position or formal job title."
},
"url": {
"type": "string",
"description": "Employer website."
},
"startDate": {
"type": "string",
"description": "Date you began work"
},
"endDate": {
"type": "string",
"description": "Date you finished work"
},
"summary": {
"type": "string",
"description": "A summary of your achievements and responsibilities under this employer."
},
"location": {
"type": "string",
"description": "Freeform location of the job or position, e.g., 'San Francisco, CA' or 'Tokyo'."
},
"keywords": {
"type": "array",
"description": "Keywords associated with this employment.",
"items": {
"type": "string",
"description": "For example, C++, HTML, HIPAA, etc."
}
}
}
}
},
"education": {
"type": "array",
"description": "Your education summary and history, e.g. college and university",
"items": {
"type": "object",
"properties": {
"institution": {
"type": "string",
"description": "College or school name."
},
"fieldOfStudy": {
"type": "string",
"description": "e.g. Computer Science"
},
"degree": {
"type": "string",
"description": "e.g. Bachelor"
},
"startDate": {
"type": "string",
"description": "Date this schooling began"
},
"endDate": {
"type": "string",
"description": "Date this schooling ended"
},
"grade": {
"type": "string",
"description": "Grade or GPA."
},
"url": {
"type": "string",
"description": "Website or URL of the institution or school."
},
"summary": {
"type": "string",
"description": "A short summary of this education experience."
},
"location": {
"type": "string",
"description": "Freeform location of the education, e.g., 'San Francisco, CA' or 'Tokyo'."
},
"keywords": {
"type": "array",
"description": "Keywords associated with this education.",
"items": {
"type": "string",
"description": "For example, C++, HTML, HIPAA, etc."
}
}
}
}
},
"projects": {
"type": "array",
"description": "The personal projects you worked on.",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Project name or code-name."
},
"summary": {
"type": "string",
"description": "Project description and summary of your achievements and responsibilities on the project."
},
"url": {
"type": "string",
"description": "Project URL."
},
"repo": {
"type": "string",
"description": "Repo URL."
},
"startDate": {
"type": "string",
"description": "Date your work on the project began"
},
"endDate": {
"type": "string",
"description": "Date your work on the project ended"
},
"category": {
"type": "string",
"description": "The type of the project. E.g. 'Software', 'iOs App', 'Mobile App', 'Desktop Software', 'API'"
},
"images": {
"type": "array",
"description": "Images and screenshots of the project",
"items": {
"type": "object",
"properties": {
"thumbnail": {
"type": "string",
"description": "Thumbnail of the image with 300px width and 300px height"
},
"big": {
"type": "string",
"description": "The image in its original size"
}
}
}
},
"keywords": {
"type": "array",
"description": "Keywords associated with this project.",
"items": {
"type": "string",
"description": "For example, C++, HTML, HIPAA, etc."
}
}
}
}
},
"openSource": {
"type": "array",
"description": "The open-source projects you worked on or contributed to.",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Project name or code-name."
},
"summary": {
"type": "string",
"description": "Project description and summary of your achievements and responsibilities on the project."
},
"url": {
"type": "string",
"description": "Project URL."
},
"repo": {
"type": "string",
"description": "Repo URL."
},
"startDate": {
"type": "string",
"description": "Date your involvement with project began"
},
"endDate": {
"type": "string",
"description": "Date your involvement with project ended"
},
"category": {
"type": "string",
"description": "The type of the project. E.g. 'Software', 'iOs App', 'Mobile App', 'Desktop Software', 'API'"
},
"keywords": {
"type": "array",
"description": "Keywords associated with this project.",
"items": {
"type": "string",
"description": "For example, C++, HTML, HIPAA, etc."
}
}
}
}
},
"skills": {
"type": "array",
"description": "Your formal skills and capabilities.",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the skill: 'Programming', 'Frameworks', 'Programming Languages', 'Project Management' etc."
},
"summary": {
"type": "string",
"description": "Description of the skill."
},
"keywords": {
"type": "array",
"description": "Keywords associated with this skill.",
"items": {
"type": "string",
"description": "A keyword relating to this skill."
}
}
}
}
},
"qualifications": {
"type": "array",
"description": "Your qualifications for the job: e.g. certificates, test scores, continuing education, standalone programs and courses.",
"items": {
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "Type of qualification: test score, course, certificate, program etc."
},
"title": {
"type": "string",
"description": "Title of the qualification."
},
"startDate": {
"type": "string",
"description": "Start date of the qualification"
},
"endDate": {
"type": "string",
"description": "End dateof the qualification"
},
"from": {
"type": "string",
"description": "Name of the company, insitution, individual or issuer of the qualification."
},
"summary": {
"type": "string",
"description": "A brief description of the qualification and why you received it."
},
"url": {
"type": "string",
"description": "A webpage or other associated URL."
},
"keywords": {
"type": "array",
"description": "Keywords associated with this qualification.",
"items": {
"type": "string",
"description": "For example, C++, HTML, HIPAA, etc."
}
}
}
}
},
"recognition": {
"type": "array",
"description": "Your public or professional plaudits, kudos, awards, and other forms of positive external reinforcement.",
"items": {
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "Type of recognition: award, honor, prize, etc."
},
"title": {
"type": "string",
"description": "Title of the award or recognition."
},
"startDate": {
"type": "string",
"description": "Start date of the recognition"
},
"endDate": {
"type": "string",
"description": "End date of the recognition"
},
"from": {
"type": "string",
"description": "Name of the awarding company, insitution, or individual."
},
"summary": {
"type": "string",
"description": "A brief description of the recognition and why you received it."
},
"url": {
"type": "string",
"description": "A webpage or other associated URL."
},
"keywords": {
"type": "array",
"description": "Keywords associated with this recognition.",
"items": {
"type": "string",
"description": "For example, C++, HTML, HIPAA, etc."
}
}
}
}
},
"writing": {
"type": "array",
"description": "Your writing and publication history, from blogs and essays to novels and dissertations.",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Title of the article, essay, or book."
},
"category": {
"type": "string",
"description": "E.g. 'book', 'article', 'essay', 'blog post', 'dissertation' or 'series'."
},
"date": {
"type": "string",
"description": "Publication date."
},
"url": {
"type": "string",
"description": "Website or URL of this writing or publication."
},
"publisher": {
"type": "string",
"description": "Name of the publisher"
},
"summary": {
"type": "string",
"description": "A brief summary of the publication."
},
"keywords": {
"type": "array",
"description": "Keywords associated with this writing.",
"items": {
"type": "string",
"description": "For example, C++, HTML, HIPAA, etc."
}
}
}
}
},
"reading": {
"type": "array",
"description": "Your reading habits. It is intended to demonstrate familiarity with industry-relevant publications, blogs, books, or other media that a competent industry candidate should be expected to know.",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Title of the book, blog, or article."
},
"category": {
"type": "string",
"description": "The type of reading: book, article, blog, magazine, series, etc."
},
"url": {
"type": "string",
"description": "URL of the book, blog, or article."
},
"author": {
"type": "string",
"description": "Author of the book, blog, or article."
},
"date": {
"type": "string",
"description": "Publication date"
},
"summary": {
"type": "string",
"description": "A brief description of the book, magazine, etc."
},
"keywords": {
"type": "array",
"description": "Keywords associated with this reading.",
"items": {
"type": "string",
"description": "For example, C++, HTML, HIPAA, etc."
}
}
}
}
},
"speaking": {
"type": "array",
"section": "Your speaking engagements and presentations.",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Speaking engagement title."
},
"event": {
"type": "string",
"description": "Event at which you presented."
},
"location": {
"type": "string",
"description": "Freeform location of the event, e.g., 'San Francisco, CA' or 'Tokyo'."
},
"url": {
"type": "string",
"description": "URL of the event website, or to a video of the presentation."
},
"date": {
"type": "string",
"description": "Presentation date."
},
"summary": {
"type": "string",
"description": "A description of this speaking engagement."
},
"keywords": {
"type": "array",
"description": "Keywords associated with this speaking.",
"items": {
"type": "string",
"description": "For example, C++, HTML, HIPAA, etc."
}
}
}
}
},
"patents": {
"type": "array",
"description": "The patents you are holding",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Title of the patent"
},
"url": {
"type": "string",
"description": "A public URL to the patent details."
},
"number": {
"type": "string",
"description": "Number of the patent or patent application"
},
"status": {
"type": "string",
"description": "Patent status, e.g. pending or granted"
},
"summary": {
"type": "string",
"description": "Description of the patent"
},
"date": {
"type": "string",
"description": "Date of the patent granted, or application filed"
},
"keywords": {
"type": "array",
"description": "Keywords associated with this patent.",
"items": {
"type": "string",
"description": "For example, C++, HTML, HIPAA, etc."
}
}
}
}
},
"languages": {
"type": "array",
"description": "Your knowledge of world languages such as English, Spanish, or Chinese.",
"items": {
"type": "object",
"properties": {
"language": {
"type": "string",
"description": "The name of the language: English, Spanish, etc."
},
"level": {
"type": "string",
"description": "Level of fluency with the language, e.g. 'elementary', 'limited-working', 'professional-working', 'full-professional', 'native-or-bilingual'"
},
"years": {
"type": "string",
"description": "Amount of time language spoken?"
}
}
}
},
"interests": {
"type": "array",
"description": "Your interests and enthusiasms outside of work.",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name or title of the interest or hobby."
},
"summary": {
"type": "string",
"description": "The description of the interest or hobby."
}
}
}
},
"extracurricular": {
"type": "array",
"description": "Your involvement with industry-related events and enterprises outside of work. For example: attending conferences, workshops, hackathon or meetups.",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Title of the extracurricular activity."
},
"summary": {
"type": "string",
"description": "Summary of the extracurricular activity."
},
"category": {
"type": "string",
"description": "The category of the extracurricular experience. E.g conference, workshop, meetup, hackathon etc."
},
"location": {
"type": "string",
"description": "City, state, or other freeform location."
},
"url": {
"type": "string",
"description": "A public URL to the extracurricular details."
},
"startDate": {
"type": "string",
"description": "Start date."
},
"endDate": {
"type": "string",
"description": "End date."
},
"keywords": {
"type": "array",
"description": "Keywords associated with this extracurricular.",
"items": {
"type": "string",
"description": "For example, C++, HTML, HIPAA, etc."
}
}
}
}
},
"affiliation": {
"type": "array",
"description": "Your membership in groups, clubs, organizations, and professional associations whether at the collegiate, corporate, or personal level.",
"items": {
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "The type of affiliation: club, group, organization, non-profit etc."
},
"organization": {
"type": "string",
"description": "The name of the organization or group."
},
"url": {
"type": "string",
"description": "Organization website."
},
"startDate": {
"type": "string",
"description": "Date your affiliation with the organization began"
},
"endDate": {
"type": "string",
"description": "Date your affiliation with the organization ended"
},
"summary": {
"type": "string",
"description": "A summary of your achievements and responsibilities during this affiliation."
},
"keywords": {
"type": "array",
"description": "Keywords associated with this affiliation.",
"items": {
"type": "string",
"description": "For example, C++, CRM, HIPAA."
}
},
"location": {
"type": "string",
"description": "Freeform location of the position, e.g., 'San Francisco, CA' or 'Tokyo'."
}
}
}
},
"governance": {
"type": "array",
"description": "Your leadership, standards, board, and committee roles.",
"items": {
"type": "object",
"properties": {
"summary": {
"type": "string",
"description": "Summary of your governance at this organization."
},
"category": {
"type": "string",
"description": "Type of governance: committee, board, standards group, etc."
},
"organization": {
"type": "string",
"description": "The name of the organization or group"
},
"url": {
"type": "string",
"description": "Organization website."
},
"startDate": {
"type": "string",
"description": "Start date of your involvement"
},
"endDate": {
"type": "string",
"description": "End date of your involvement"
},
"keywords": {
"type": "array",
"description": "Keywords associated with this governance stint.",
"items": {
"type": "string",
"description": "For example, C++, CRM, HIPAA."
}
}
}
}
},
"service": {
"type": "array",
"description": "Your overall service history in the true sense of the word 'service': volunteer work, military participation, civilian core, rescue and emergency services, and the like.",
"items": {
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "The type of service work, such as volunteer or military."
},
"organization": {
"type": "string",
"description": "The service organization, such as Red Cross or National Guard."
},
"url": {
"type": "string",
"description": "Organization website."
},
"startDate": {
"type": "string",
"description": "Date you joined the organization"
},
"endDate": {
"type": "string",
"description": "Date you left the organization"
},
"summary": {
"type": "string",
"description": "A summary of your achievements and responsibilities at this organization."
},
"location": {
"type": "string",
"description": "Freeform location of the position, e.g., 'San Francisco, CA' or 'Tokyo'."
},
"keywords": {
"type": "array",
"description": "Keywords associated with this service.",
"items": {
"type": "string",
"description": "For example, C++, HTML, HIPAA, etc."
}
}
}
}
},
"references": {
"type": "array",
"description": "Your personal, professional, and/or technical references.",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The full name of the person giving the reference."
},
"role": {
"type": "string",
"description": "The occupation of this reference, or his or her relationship to the candidate."
},
"company": {
"type": "string",
"description": "The company of this reference"
},
"summary": {
"type": "string",
"description": "Summary information for this reference."
}
}
}
}
}
} | o68588 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "LoopAnimation",
"description": "The \"loop\" property of the element specifies the Loop Animation associated with the element. Unlike Transition Animation, it repeats the same animation multiple times specified by the repeat property (the default is 1).",
"type": "object",
"properties": {
"style": {
"description": "The Loop Animation must have a \"style\" property ",
"enum": [
"vibrate",
"blink",
"wiggle",
"path",
"sprite"
]
},
"repeat": {
"description": "it repeats the same animation multiple times specified by the repeat property (the default is `1`). ",
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"style",
"repeat"
]
} | o46559 |
{
"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_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_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"
}
},
"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": {
"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.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"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",
"null"
]
},
"runAsGroup": {
"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.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"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",
"null"
]
},
"runAsUser": {
"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.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"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",
"null"
]
},
"type": [
"array",
"null"
]
},
"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",
"null"
]
},
"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"
} | kb_717_Normalized |
{
"properties": {
"dimensions": {
"properties": {
"length": {
"description": "The length of the shape (if applicable)",
"type": "number"
},
"radius": {
"description": "The radius of the circle (if applicable)",
"type": "number"
},
"width": {
"description": "The width of the shape (if applicable)",
"type": "number"
}
},
"required": [
"radius",
"length",
"width"
],
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. circle, square, rectangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_8f5e3e5c |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.10.5/traits/trait_date.json",
"title": "Dated trait",
"description": "Trait that applies common publishing-related dates to a schema.",
"type": "object",
"properties": {
"created_date": {
"description": "When the content was originally created (RFC3339-formatted).",
"type": "string",
"format": "date-time"
},
"last_updated_date": {
"description": "When the content was last updated (RFC3339-formatted).",
"type": "string",
"format": "date-time"
}
}
} | o85918 |
{
"definitions": {
"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"
}
},
"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",
"null"
]
},
"chapAuthSession": {
"description": "whether support iSCSI Session CHAP authentication",
"type": [
"boolean",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
},
"iqn": {
"description": "Target iSCSI Qualified Name.",
"type": [
"string",
"null"
]
},
"iscsiInterface": {
"description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
"type": [
"string",
"null"
]
},
"lun": {
"description": "iSCSI Target Lun number.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"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",
"null"
]
},
"type": [
"array",
"null"
]
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
"type": [
"boolean",
"null"
]
},
"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",
"null"
]
}
},
"required": [
"targetPortal",
"iqn",
"lun"
],
"type": "object"
} | kb_476_Normalized |
{
"properties": {
"marathon-lb": {
"properties": {
"auto-assign-service-ports": {
"default": false,
"description": "Auto assign service ports for tasks which use IP-per-task. See https://github.com/mesosphere/marathon-lb#mesos-with-ip-per-task-support for details.",
"type": "boolean"
},
"bind-http-https": {
"default": true,
"description": "Reserve ports 80 and 443 for the LB. Use this if you intend to use virtual hosts.",
"type": "boolean"
},
"cpus": {
"default": 2,
"description": "CPU shares to allocate to each marathon-lb instance.",
"minimum": 1,
"type": "number"
},
"haproxy-group": {
"default": "external",
"description": "HAProxy group parameter. Matches with HAPROXY_GROUP in the app labels.",
"type": "string"
},
"haproxy-map": {
"default": true,
"description": "Enable HAProxy VHost maps for fast VHost routing.",
"type": "boolean"
},
"instances": {
"default": 1,
"description": "Number of instances to run.",
"minimum": 1,
"type": "integer"
},
"marathon-uri": {
"default": "http://marathon.mesos:8080",
"description": "URI of Marathon instance",
"type": "string"
},
"maximumOverCapacity": {
"default": 0.2,
"description": "Maximum over capacity.",
"minimum": 0,
"type": "number"
},
"mem": {
"default": 1024.0,
"description": "Memory (MB) to allocate to each marathon-lb task.",
"minimum": 256.0,
"type": "number"
},
"minimumHealthCapacity": {
"default": 0.5,
"description": "Minimum health capacity.",
"minimum": 0,
"type": "number"
},
"name": {
"default": "marathon-lb",
"description": "Name for this LB instance",
"type": "string"
},
"role": {
"default": "slave_public",
"description": "Deploy marathon-lb only on nodes with this role.",
"type": "string"
},
"secret_name": {
"default": "",
"description": "Name of the Secret Store credentials to use for DC/OS service authentication. This should be left empty unless service authentication is needed.",
"type": "string"
},
"ssl-cert": {
"description": "TLS Cert and private key for HTTPS.",
"type": "string"
},
"sysctl-params": {
"default": "net.ipv4.tcp_tw_reuse=1 net.ipv4.tcp_fin_timeout=30 net.ipv4.tcp_max_syn_backlog=10240 net.ipv4.tcp_max_tw_buckets=400000 net.ipv4.tcp_max_orphans=60000 net.core.somaxconn=10000",
"description": "sysctl params to set at startup for HAProxy.",
"type": "string"
},
"template-url": {
"default": "",
"description": "URL to tarball containing a directory templates/ to customize haproxy config.",
"type": "string"
}
},
"required": [
"cpus",
"mem",
"haproxy-group",
"instances",
"name"
],
"type": "object"
}
},
"type": "object"
} | o90739 |
{
"description": "Creates a new generic library project in the current workspace.",
"long-description": "./library-long.md",
"properties": {
"entryFile": {
"default": "public-api",
"description": "The path at which to create the library's public API file, relative to the workspace root.",
"format": "path",
"type": "string"
},
"lintFix": {
"default": false,
"description": "When true, applies lint fixes after generating the library.",
"type": "boolean",
"x-user-analytics": 15
},
"name": {
"$default": {
"$source": "argv",
"index": 0
},
"description": "The name of the library.",
"type": "string",
"x-prompt": "What name would you like to use for the library?"
},
"prefix": {
"alias": "p",
"default": "lib",
"description": "A prefix to apply to generated selectors.",
"format": "html-selector",
"type": "string"
},
"skipInstall": {
"default": false,
"description": "When true, does not install dependency packages.",
"type": "boolean"
},
"skipPackageJson": {
"default": false,
"description": "When true, does not add dependencies to the \"package.json\" file. ",
"type": "boolean"
},
"skipTsConfig": {
"default": false,
"description": "When true, does not update \"tsconfig.base.json\" to add a path mapping for the new library. The path mapping is needed to use the library in an app, but can be disabled here to simplify development.",
"type": "boolean"
}
},
"required": [],
"title": "Library Options Schema",
"type": "object"
} | o40753 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v1_JobCondition": {
"description": "JobCondition describes current state of a job.",
"properties": {
"lastProbeTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Last time the condition was checked."
},
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Last time the condition transit from one status to another."
},
"message": {
"description": "Human readable message indicating details about last transition.",
"type": "string"
},
"reason": {
"description": "(brief) reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "Status of the condition, one of True, False, Unknown.",
"type": "string"
},
"type": {
"description": "Type of job condition, Complete or Failed.",
"type": "string"
}
},
"required": [
"type",
"status"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "JobStatus represents the current state of a Job.",
"properties": {
"active": {
"description": "The number of actively running pods.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"completionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC."
},
"conditions": {
"description": "The latest available observations of an object's current state. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v1_JobCondition"
},
"type": [
"array",
"null"
],
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge"
},
"failed": {
"description": "The number of pods which reached phase Failed.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"startTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC."
},
"succeeded": {
"description": "The number of pods which reached phase Succeeded.",
"format": "int32",
"type": [
"integer",
"null"
]
}
},
"type": "object"
} | kb_487_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"DomainName"
],
"properties": {
"DomainName": {
"type": "string"
},
"SubjectAlternativeNames": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"_uniqueItems": true
},
"IdempotencyToken": {
"type": "string"
},
"DomainValidationOptions": {
"type": "array",
"items": {
"type": "object"
},
"minItems": 1,
"_uniqueItems": true
}
}
} | o25107 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"missing-classes": {
"type": "object",
"properties": {
"behavior": {
"type": "string",
"enum": [
"ignore",
"error",
"report"
],
"default": "report"
},
"ignoreMissingAnnotations": {
"type": "boolean",
"default": "false"
}
}
},
"reportUsesFor": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true,
"default": [
"java.missing.newClass",
"java.missing.oldClass",
"java.missing.oldSuperType",
"java.missing.newSuperType",
"java.class.nonPublicPartOfAPI",
"java.class.externalClassNoLongerExposedInAPI",
"java.class.externalClassExposedInAPI"
]
},
{
"type": "string",
"enum": [
"all-differences"
]
}
]
},
"filter": {
"type": "object",
"properties": {
"classes": {
"type": "object",
"properties": {
"regex": {
"description": "Whether to understand the class names as regular expressions.",
"type": "boolean",
"default": "false"
},
"include": {
"type": "array",
"items": {
"type": "string"
}
},
"exclude": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"packages": {
"type": "object",
"properties": {
"regex": {
"description": "Whether to understand the package names as regular expressions.",
"type": "boolean",
"default": "false"
},
"include": {
"type": "array",
"items": {
"type": "string"
}
},
"exclude": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
},
"additionalProperties": true
} | o70016 |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"base": {
"description": "The base of a triangle",
"type": "number"
},
"height": {
"description": "The height of a triangle",
"type": "number"
},
"length": {
"description": "The length of a rectangle",
"type": "number"
},
"radius": {
"description": "The radius of a circle",
"type": "number"
},
"width": {
"description": "The width of a rectangle",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_15794693 |
{
"additionalProperties": false,
"description": "Schema for Igluctl's configuration",
"properties": {
"actions": {
"description": "Configuration for s3cp and push commands",
"items": {
"anyOf": [
{
"description": "Configuration for static push command",
"properties": {
"action": {
"enum": [
"push"
],
"type": "string"
},
"apikey": {
"oneOf": [
{
"format": "uuid"
},
{
"pattern": "^\\$[A-Z0-9-_]+"
}
]
},
"isPublic": {
"default": false,
"type": "boolean"
},
"registry": {
"_format": "uri",
"type": "string"
}
},
"required": [
"action",
"registry",
"isPublic",
"apikey"
],
"type": "object"
},
{
"description": "Configuration for static s3cp command",
"properties": {
"action": {
"enum": [
"s3cp"
],
"type": "string"
},
"bucketPath": {
"pattern": "^s3://",
"type": "string"
},
"profile": {
"description": "AWS profile",
"type": [
"string",
"null"
]
},
"region": {
"default": "us-west-2",
"description": "AWS region",
"type": [
"string",
"null"
]
},
"uploadFormat": {
"enum": [
"jsonpath",
"jsonschema"
],
"type": "string"
}
},
"required": [
"action",
"uploadFormat",
"bucketPath",
"profile",
"region"
],
"type": "object"
}
],
"type": "object"
},
"type": [
"array",
"null"
]
},
"description": {
"description": "Human-readable & short description the configuration",
"type": "string"
},
"generate": {
"description": "Configuration for static generate command",
"properties": {
"dbschema": {
"default": "atomic",
"description": "Redshift database schema (e.g. 'atomic')",
"maxLength": 128,
"minLength": 1,
"type": [
"string",
"null"
]
},
"force": {
"default": false,
"description": "Force overwrite existing manually-edited files",
"type": [
"boolean",
"null"
]
},
"noHeader": {
"default": false,
"description": "Place header comments into output DDL or not",
"type": "boolean"
},
"output": {
"default": ".",
"description": "Directory to put generated data",
"type": [
"string",
"null"
]
},
"owner": {
"description": "Redshift table owner",
"maxLength": 128,
"type": [
"string",
"null"
]
},
"varcharSize": {
"default": 4096,
"description": "Redshift varchar size",
"maximum": 65535,
"minimum": 1,
"type": [
"integer",
"null"
]
},
"withJsonPaths": {
"default": true,
"description": "Produce JSON Paths files with DDL or not",
"type": [
"boolean",
"null"
]
}
},
"required": [
"output",
"dbschema",
"owner",
"varcharSize",
"withJsonPaths",
"noHeader",
"force"
],
"type": "object"
},
"input": {
"_format": "uri",
"description": "Path to input schemas",
"type": "string"
},
"lint": {
"description": "Configuration for lint command",
"properties": {
"includedChecks": {
"description": "Lint using provided linters",
"items": {
"enum": [
"rootObject",
"unknownFormats",
"numericMinMax",
"stringLength",
"optionalNull",
"description",
"stringMaxLengthRange"
],
"type": "string"
},
"type": [
"array",
"null"
]
},
"skipWarnings": {
"default": false,
"description": "Don't output messages with log level less than ERROR",
"type": [
"boolean",
"null"
]
}
},
"required": [
"skipWarnings",
"includedChecks"
],
"type": "object"
}
},
"required": [
"input",
"lint",
"generate",
"actions"
],
"self": {
"format": "jsonschema",
"name": "igluctl_config",
"vendor": "com.snowplowanalytics.iglu",
"version": "1-0-0"
},
"type": "object"
} | sp_209_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://www.qiskit.org/schemas/backendstatus_schema.json",
"description": "OpenQuantum backend status schema",
"version": "1.0.0",
"type": "object",
"required": [
"backend_name",
"backend_version",
"operational",
"pending_jobs",
"status_msg"
],
"properties": {
"backend_name": {
"type": "string",
"description": "Backend name"
},
"backend_version": {
"description": "Backend version in the form X.X.X",
"pattern": "[0-9]+.[0-9]+.[0-9]+$",
"type": "string"
},
"operational": {
"type": "boolean",
"description": "Backend operational and accepting jobs (true/false)"
},
"pending_jobs": {
"type": "integer",
"minimum": 0,
"description": "Number of pending jobs on the backend"
},
"status_msg": {
"type": "string",
"description": "Status message"
}
}
} | o13111 |
{
"additionalProperties": false,
"description": "Schema for heartbeat event",
"properties": {
"interval": {
"type": "number"
}
},
"self": {
"format": "jsonschema",
"name": "app_heartbeat",
"vendor": "com.snowplowanalytics.monitoring.kinesis",
"version": "1-0-0"
},
"type": "object"
} | sp_237_Normalized |
{
"description": "TokenReviewSpec is a description of the token authentication request.",
"properties": {
"audiences": {
"description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"token": {
"description": "Token is the opaque bearer token.",
"type": [
"string",
"null"
]
}
},
"type": "object"
} | kb_1075_Normalized |
{
"description": "A GeoJSON object MAY have a member named 'bbox' to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2 * n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries. The values of a 'bbox' array are[west, south, east, north].",
"example": "../examples/boundingBox.json",
"items": {
"type": "number"
},
"minItems": 4,
"translation": {
"FGDC CSDGM": [
"[idinfo > spdom > bounding > westbc], [idinfo > spdom > bounding > eastbc], [idinfo > spdom > bounding > northbc], [idinfo > spdom > bounding > southbc]"
],
"ISO 19115-2": [
"EX_Extent > geographicElement > EX_GeographicBoundingBox, EX_GeographicBoundingBox > westBoundLongitude > Decimal {west}, EX_GeographicBoundingBox > eastBoundLongitude > Decimal {east}, EX_GeographicBoundingBox > southBoundLatitude > Decimal {south}, EX_GeographicBoundingBox > northBoundLatitude > Decimal {north}"
]
},
"type": "array"
} | o19003 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LimitRange": {
"description": "LimitRange sets resource usage limits for each kind of resource in a Namespace.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": "string"
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"LimitRange"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LimitRangeSpec",
"description": "Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "",
"kind": "LimitRange",
"version": "v1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LimitRangeItem": {
"description": "LimitRangeItem defines a min/max usage limit for any resource that matches on kind.",
"properties": {
"default": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Default resource requirement limit value by resource name if resource limit is omitted.",
"type": "object"
},
"defaultRequest": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.",
"type": "object"
},
"max": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Max usage constraints on this kind by resource name.",
"type": "object"
},
"maxLimitRequestRatio": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.",
"type": "object"
},
"min": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Min usage constraints on this kind by resource name.",
"type": "object"
},
"type": {
"description": "Type of resource that this limit applies to.",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LimitRangeSpec": {
"description": "LimitRangeSpec defines a min/max usage limit for resources that match on kind.",
"properties": {
"limits": {
"description": "Limits is the list of LimitRangeItem objects that are enforced.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LimitRangeItem"
},
"type": "array"
}
},
"required": [
"limits"
],
"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_ListMeta": {
"description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
"properties": {
"continue": {
"description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
"type": "string"
},
"remainingItemCount": {
"_format": "int64",
"description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
"type": "integer"
},
"resourceVersion": {
"description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "LimitRangeList is a list of LimitRange items.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"enum": [
"v1"
],
"type": [
"string",
"null"
]
},
"items": {
"description": "Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LimitRange"
},
"type": [
"array",
"null"
]
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"LimitRangeList"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta",
"description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "",
"kind": "LimitRangeList",
"version": "v1"
}
]
} | kb_529_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema",
"additionalProperties": false,
"definitions": {
"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"
}
},
"description": "Trait that applies revision information to a document. In the Arc ecosystem, many of these fields are populated in stories by the Story API.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/trait_additional_properties_json"
},
"branch": {
"description": "The name of the branch this revision was created on.",
"type": "string"
},
"editions": {
"description": "A list of identifiers of editions that point to this revision.",
"items": {
"type": "string"
},
"type": "array"
},
"parent_id": {
"description": "The unique id of the revision that this revisions was branched from, or preceded it on the current branch.",
"type": "string"
},
"published": {
"description": "Whether or not this revision's parent story is published, in any form or place",
"type": "boolean"
},
"revision_id": {
"description": "The unique id of this revision.",
"type": "string"
},
"user_id": {
"description": "The unique user id of the person who created this revision.",
"type": "string"
}
},
"title": "Revision",
"type": "object"
} | wp_85_Normalized |
{
"$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": [
"EiffelFlowContextDefinedEvent"
]
},
"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": {
"product": {
"type": "string"
},
"project": {
"type": "string"
},
"program": {
"type": "string"
},
"track": {
"type": "string"
},
"version": {
"type": "string"
},
"customData": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"value": {}
},
"required": [
"key",
"value"
],
"additionalProperties": false
}
}
},
"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
} | o5374 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"description": "A planet.",
"properties": {
"climate": {
"description": "The climate of this planet. Comma-seperated if diverse.",
"type": "string"
},
"created": {
"_format": "date-time",
"description": "The ISO 8601 date format of the time that this resource was created.",
"type": "string"
},
"diameter": {
"description": "The diameter of this planet in kilometers.",
"type": "string"
},
"edited": {
"_format": "date-time",
"description": "the ISO 8601 date format of the time that this resource was edited.",
"type": "string"
},
"films": {
"description": "An array of Film URL Resources that this planet has appeared in.",
"type": "array"
},
"gravity": {
"description": "A number denoting the gravity of this planet. Where 1 is normal.",
"type": "string"
},
"name": {
"description": "The name of this planet.",
"type": "string"
},
"orbital_period": {
"description": "The number of standard days it takes for this planet to complete a single orbit of its local star.",
"type": "string"
},
"population": {
"description": "The average populationof sentient beings inhabiting this planet.",
"type": "string"
},
"residents": {
"description": "An array of People URL Resources that live on this planet.",
"type": "array"
},
"rotation_period": {
"description": "The number of standard hours it takes for this planet to complete a single rotation on its axis.",
"type": "string"
},
"surface_water": {
"description": "The percentage of the planet surface that is naturally occuring water or bodies of water.",
"type": "string"
},
"terrain": {
"description": "the terrain of this planet. Comma-seperated if diverse.",
"type": "string"
},
"url": {
"_format": "uri",
"description": "The hypermedia URL of this resource.",
"type": "string"
}
},
"required": [
"name",
"rotation_period",
"orbital_period",
"diameter",
"climate",
"gravity",
"terrain",
"surface_water",
"population",
"residents",
"films",
"created",
"edited",
"url"
],
"title": "Planet",
"type": "object"
} | o67022 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"course": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"number": {
"type": "string"
},
"title": {
"type": "string"
},
"department_id": {
"type": "integer"
}
}
},
"quarter": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"year": {
"type": "integer"
},
"name": {
"type": "string"
},
"current": {
"type": "boolean"
}
}
},
"professor": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"first_name": {
"type": "string"
},
"last_name": {
"type": "string"
}
}
},
"user_posted": {
"type": "boolean"
}
}
} | o13672 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"level": {
"type": "string",
"enum": [
"info",
"warning",
"error",
"critical"
]
},
"state": {
"type": "string",
"enum": [
"new",
"acknowledged",
"resolved"
]
},
"subject": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"message": {
"type": "string"
}
},
"required": [
"level",
"state",
"subject"
],
"additionalProperties": false
} | o6210 |
{
"properties": {
"AutoLaunchedApplicationDictionary-managed": {
"description": "Automatically launch these applications at login",
"items": {
"description": "Automatically Launched Login Item",
"properties": {
"AuthenticateAsLoginUserShortName": {
"description": "Authenticate to the URL with the current users short name. Required if URL is specified, but not for Path",
"type": "boolean"
},
"Hide": {
"default": false,
"description": "Hide application at launch",
"type": "boolean"
},
"MCX-NetworkHomeDirectoryItem": {
"description": "Mount network home",
"type": "boolean"
},
"Path": {
"description": "Path to the application bundle to launch",
"type": "string"
},
"URL": {
"description": "URL to mount in the form scheme://mount.point/Share",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"DisableLoginItemsSuppression": {
"description": "Disable shift to suppress login items",
"type": "boolean"
},
"PayloadDescription": {
"default": "Login Items",
"description": "Description of the payload",
"type": "string"
},
"PayloadDisplayName": {
"default": "Login Items",
"description": "Name of the payload",
"type": "string"
},
"PayloadIdentifier": {
"default": "com.apple.loginitems.managed",
"description": "A unique identifier for the payload, dot-delimited. Usually root PayloadIdentifier+subidentifier",
"type": "string"
},
"PayloadOrganization": {
"description": "This value describes the issuing organization of the profile, as displayed to the user",
"type": "string"
},
"PayloadType": {
"default": "com.apple.loginitems.managed",
"description": "The type of the payload, a reverse dns string",
"type": "string"
},
"PayloadUUID": {
"default": "",
"description": "Unique identifier for the payload (format 01234567-89AB-CDEF-0123-456789ABCDEF)",
"pattern": "^[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}$",
"type": "string"
},
"PayloadVersion": {
"default": 1,
"description": "The version of the whole configuration profile.",
"type": "number"
}
},
"title": "com.apple.loginitems.managed",
"type": "object"
} | o61616 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"code_metrics_result": {
"type": "object",
"description": "Details computed by CodeMetrics worker",
"properties": {
"languages": {
"type": "array",
"items": {
"$ref": "#/definitions/languages"
}
}
},
"required": [
"languages"
],
"additionalProperties": false
},
"code_metrics_summary": {
"type": "object",
"description": "Summary computed by CodeMetrics worker",
"properties": {
"blank_lines": {
"type": "number"
},
"code_lines": {
"type": "number"
},
"comment_lines": {
"type": "number"
},
"total_files": {
"type": "number"
},
"total_lines": {
"type": "number"
}
},
"required": [
"blank_lines",
"code_lines",
"comment_lines",
"total_files",
"total_lines"
],
"additionalProperties": false
},
"languages": {
"type": "object",
"description": "Generic language specific statistics",
"properties": {
"blank_lines": {
"type": "number"
},
"code_lines": {
"type": "number"
},
"comment_lines": {
"type": "number"
},
"files_count": {
"type": "number"
},
"language": {
"type": "string"
},
"metrics": {
"type": "object",
"additionalProperties": true
}
},
"required": [
"blank_lines",
"code_lines",
"comment_lines",
"files_count",
"language"
],
"additionalProperties": false
}
},
"type": "object",
"description": "Result of CodeMetrics worker",
"properties": {
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the schema",
"pattern": "^[a-zA-Z0-9_]+$"
},
"version": {
"type": "string",
"description": "Version of the schema",
"pattern": "^[0-9]+-[0-9]+-[0-9]+$"
},
"url": {
"type": "string",
"description": "Full URL of the schema",
"format": "uri"
}
},
"required": [
"name",
"version"
],
"additionalProperties": false
},
"_release": {
"type": "string",
"description": "Unique release id in form of \"ecosystem:package:version\""
},
"status": {
"type": "string",
"enum": [
"success",
"error"
]
},
"details": {
"$ref": "#/definitions/code_metrics_result"
},
"summary": {
"$ref": "#/definitions/code_metrics_summary"
}
},
"required": [
"status",
"details",
"summary"
],
"additionalProperties": false,
"title": "crypto_algorithms_result-v1-0-0"
} | o42029 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "project description file",
"name": "Module",
"properties": {
"require": {
"type": "object",
"description": "This is a hash of module name (keys) and version constraints (values) that are required to run this module.",
"additionalProperties": {
"type": "string"
}
},
"path": {
"type": "object",
"description": "path config",
"properties": {
"modules": {
"type": "string",
"description": "modules path"
},
"applications": {
"type": "string",
"description": "applications path"
}
}
}
},
"required": [
"require",
"path"
],
"type": "object"
} | o64700 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Shader Build-Chain Definition Schema",
"type": "object",
"required": [
"FXCPath",
"OutputDirectory",
"ShadersToCompile"
],
"properties": {
"FXCPath": {
"description": "The path to fxc.exe",
"type": "string"
},
"AdditionalIncludeDirectories": {
"description": "Additional directories for the shader to use as search directories when resolving #includes",
"type": "array",
"items": {
"type": "string"
}
},
"ShadersToCompile": {
"description": "The shaders to compile",
"type": "array",
"items": {
"$ref": "#/definitions/Shader"
}
}
},
"definitions": {
"Shader": {
"description": "A shader to compile",
"type": "object",
"required": [
"InputFilePath",
"EntryPointName",
"ShaderType"
],
"properties": {
"InputFilePath": {
"description": "The file to compile",
"type": "string"
},
"OutputFilePath": {
"description": "The path to save the output file to. This is underneath OutputDirectory",
"type": "string"
},
"EntryPointName": {
"description": "The name of the entry point function in the shader",
"type": "string"
},
"ShaderType": {
"description": "The type of shader",
"enum": [
"vertex",
"pixel",
"geometry",
"hull",
"domain",
"compute"
]
},
"ShaderModel": {
"description": "The shader model to compile against",
"enum": [
"2.0",
"3.0",
"4.0",
"4.1",
"5.0"
]
},
"AdditionalIncludes": {
"description": "Any additional files to be included before the content of the input file",
"type": "array",
"items": {
"type": "string"
}
},
"Pre-ProcessorDefines": {
"description": "Any #defines to be used for the input file",
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
} | o13404 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.5.3/traits/trait_planning.json",
"title": "Scheduling information",
"description": "Trait that applies planning information to a document or resource.",
"type": "object",
"properties": {
"planning": {
"description": "Planning information.",
"type": "object",
"properties": {
"scheduling": {
"description": "Scheduling information.",
"type": "object",
"properties": {
"planned_publish_date": {
"type": "string",
"format": "date-time",
"description": "When the content is planned to be published."
},
"scheduled_publish_date": {
"type": "string",
"format": "date-time",
"description": "When the content was first published."
},
"will_have_gallery": {
"description": "Will this content have galleries?",
"type": "boolean"
},
"will_have_graphic": {
"description": "Will this content have graphics?",
"type": "boolean"
},
"will_have_image": {
"description": "Will this content have images?",
"type": "boolean"
},
"will_have_video": {
"description": "Will this content have videos?",
"type": "boolean"
}
}
},
"story_length": {
"description": "Story length information.",
"type": "object",
"properties": {
"word_count_planned": {
"description": "The anticipated number of words in the story.",
"type": "integer"
},
"word_count_actual": {
"description": "Current number of words.",
"type": "integer"
},
"inch_count_planned": {
"description": "The anticipated length of the story in inches.",
"type": "integer"
},
"inch_count_actual": {
"description": "The current length of the story in inches.",
"type": "integer"
}
}
}
}
}
}
} | o86222 |
{
"$id": "http://www.xsd2jsonschema.org",
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"properties": {
"Age": {
"type": "number"
}
},
"required": [
"Age"
],
"anyOf": [
{
"oneOf": [
{
"properties": {
"FirstName": {
"type": "string"
}
},
"required": [
"FirstName"
]
},
{
"properties": {
"LastName": {
"type": "string"
}
},
"required": [
"LastName"
]
}
]
},
{
"not": {
"properties": {
"FirstName": {
"type": "string"
},
"LastName": {
"type": "string"
}
},
"required": [
"FirstName",
"LastName"
]
}
}
]
} | o21864 |
{
"additionalProperties": false,
"description": "Schema for a Mandrill message delayed event",
"properties": {
"_id": {
"type": "string"
},
"diag": {
"type": "string"
},
"msg": {
"additionalProperties": false,
"properties": {
"_id": {
"type": "string"
},
"_version": {
"type": "string"
},
"clicks": {
"type": "array"
},
"email": {
"type": "string"
},
"metadata": {
"additionalProperties": true,
"properties": {
"user_id": {
"type": "number"
}
},
"type": "object"
},
"opens": {
"type": "array"
},
"resends": {
"type": "array"
},
"sender": {
"type": "string"
},
"smtp_events": {
"items": {
"additionalProperties": true,
"properties": {
"destination_ip": {
"type": "string"
},
"diag": {
"type": "string"
},
"size": {
"type": "number"
},
"source_ip": {
"type": "string"
},
"ts": {
"_format": "date-time",
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"state": {
"type": "string"
},
"subaccount": {
"type": [
"string",
"null"
]
},
"subject": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"template": {
"type": [
"string",
"null"
]
},
"ts": {
"_format": "date-time",
"type": "string"
}
},
"type": "object"
},
"ts": {
"_format": "date-time",
"type": "string"
}
},
"self": {
"format": "jsonschema",
"name": "message_delayed",
"vendor": "com.mandrill",
"version": "1-0-1"
},
"type": "object"
} | sp_126_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": {
"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": {
"body": {
"$ref": "#/definitions/body"
},
"brexit_no_deal_notice": {
"$ref": "#/definitions/brexit_no_deal_notice"
},
"change_history": {
"$ref": "#/definitions/change_history"
},
"collection_groups": {
"description": "The ordered list of collection groups",
"items": {
"additionalProperties": false,
"description": "Collection group",
"properties": {
"body": {
"$ref": "#/definitions/body"
},
"documents": {
"description": "An ordered list of documents in this collection group",
"items": {
"$ref": "#/definitions/guid"
},
"type": "array"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"documents"
],
"type": "object"
},
"type": "array"
},
"emphasised_organisations": {
"$ref": "#/definitions/emphasised_organisations"
},
"first_public_at": {
"$ref": "#/definitions/first_public_at"
},
"government": {
"$ref": "#/definitions/government"
},
"political": {
"$ref": "#/definitions/political"
},
"tags": {
"$ref": "#/definitions/tags"
}
},
"required": [
"collection_groups",
"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"
},
"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"
},
"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"
},
"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"
},
"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"
},
"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": [
"document_collection"
],
"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"
},
"documents": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"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"
},
"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_guides": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"related_mainstream_content": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"related_policies": {
"$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"
},
"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"
}
},
"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": {
"documents": {
"$ref": "#/definitions/guid_list"
},
"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"
},
"government": {
"$ref": "#/definitions/guid_list",
"description": "The government associated with this document",
"maxItems": 1
},
"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"
},
"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"
},
"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
},
"related_guides": {
"$ref": "#/definitions/guid_list"
},
"related_mainstream_content": {
"$ref": "#/definitions/guid_list"
},
"related_policies": {
"$ref": "#/definitions/guid_list"
},
"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"
},
"topical_events": {
"$ref": "#/definitions/guid_list"
},
"topics": {
"$ref": "#/definitions/guid_list"
}
},
"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": [
"document_collection"
],
"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"
} | o21193 |
{
"properties": {
"base": {
"description": "The base of the triangle (required for triangle)",
"type": "number"
},
"height": {
"description": "The height of the triangle (required for triangle)",
"type": "number"
},
"length": {
"description": "The length of the rectangle (required for rectangle)",
"type": "number"
},
"radius": {
"description": "The radius of the circle (required for circle)",
"type": "number"
},
"shape": {
"description": "The shape to calculate the area of (circle, rectangle, triangle)",
"type": "string"
},
"width": {
"description": "The width of the rectangle (required for rectangle)",
"type": "number"
}
},
"required": [
"shape"
],
"type": "object"
} | calculate_area_2a4ca543 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Allowances",
"type": "object",
"properties": {
"annualInvestmentAllowance": {
"title": "Annual investment allowance",
"description": "Can be claimed on equipment bought (except cars) up to maximum annual amount",
"type": "number",
"multipleOf": 0.01,
"minimum": 0
},
"businessPremisesRenovationAllowance": {
"title": "Business premises renovation allowance",
"description": "(Assisted Areas only)",
"type": "number",
"multipleOf": 0.01,
"minimum": 0
},
"costOfReplacingDomesticItems": {
"title": "Cost of Replacing Domestic Items",
"description": "Cost of Replacing Domestic Items - formerly Wear and Tear allowance",
"type": "number",
"multipleOf": 0.01,
"minimum": 0
},
"zeroEmissionsGoodsVehicleAllowance": {
"title": "Zero Emissions Goods Vehicle Allowance",
"description": "Zero Emissions Goods Vehicle Allowance",
"type": "number",
"multipleOf": 0.01,
"minimum": 0
},
"otherCapitalAllowance": {
"title": "Other Capital allowance",
"description": "All other capital allowances",
"type": "number",
"multipleOf": 0.01,
"minimum": 0
}
},
"additionalProperties": false
} | o17482 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.5.5/traits/trait_owner.json",
"title": "Owner information ",
"description": "Trait that applies a owner information to a document or resource.",
"type": "object",
"properties": {
"owner": {
"description": "Information about the owner of this content.",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for this owner.",
"type": "string"
}
}
}
}
} | o86359 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1alpha1_PolicyRule": {
"description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.",
"properties": {
"apiGroups": {
"description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.",
"items": {
"type": "string"
},
"type": "array"
},
"nonResourceURLs": {
"description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.",
"items": {
"type": "string"
},
"type": "array"
},
"resourceNames": {
"description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.",
"items": {
"type": "string"
},
"type": "array"
},
"resources": {
"description": "Resources is a list of resources this rule applies to. ResourceAll represents all resources.",
"items": {
"type": "string"
},
"type": "array"
},
"verbs": {
"description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"verbs"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1alpha1_Role": {
"description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.20.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": "string"
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"Role"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata."
},
"rules": {
"description": "Rules holds all the PolicyRules for this Role",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1alpha1_PolicyRule"
},
"type": "array"
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "rbac.authorization.k8s.io",
"kind": "Role",
"version": "v1alpha1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": {
"description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
"properties": {
"continue": {
"description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
"type": "string"
},
"remainingItemCount": {
"_format": "int64",
"description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
"type": "integer"
},
"resourceVersion": {
"description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "RoleList is a collection of Roles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.20.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"enum": [
"rbac.authorization.k8s.io/v1alpha1"
],
"type": [
"string",
"null"
]
},
"items": {
"description": "Items is a list of Roles",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1alpha1_Role"
},
"type": [
"array",
"null"
]
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"RoleList"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta",
"description": "Standard object's metadata."
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "rbac.authorization.k8s.io",
"kind": "RoleList",
"version": "v1alpha1"
}
]
} | kb_863_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"users",
"releases",
"companies",
"repos",
"project_types"
],
"properties": {
"users": {
"type": "array",
"items": {
"type": "object",
"properties": {
"launchpad_id": {
"type": "string",
"pattern": "^[a-z\\d\\.-]+$"
},
"github_id": {
"type": "string"
},
"gerrit_id": {
"type": "string"
},
"ldap_id": {
"type": "string"
},
"user_name": {
"type": "string"
},
"emails": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z\\d_\\.-]+@([a-z\\d\\.-]+\\.)+[a-z]+$"
},
"minItems": 1
},
"companies": {
"type": "array",
"items": {
"type": "object",
"properties": {
"company_name": {
"type": "string"
},
"end_date": {
"$ref": "#/definitions/date_format"
}
},
"required": [
"company_name",
"end_date"
],
"additionalProperties": false
},
"minItems": 1
}
},
"required": [
"user_name",
"emails"
],
"additionalProperties": false
}
},
"releases": {
"type": "array",
"items": {
"type": "object",
"properties": {
"release_name": {
"type": "string"
},
"end_date": {
"$ref": "#/definitions/date_format"
}
},
"required": [
"release_name",
"end_date"
],
"additionalProperties": false
}
},
"repos": {
"type": "array",
"items": {
"type": "object",
"properties": {
"uri": {
"type": "string"
},
"organization": {
"type": "string"
},
"module": {
"type": "string"
},
"releases": {
"type": "array",
"items": {
"type": "object",
"properties": {
"branch": {
"type": "string"
},
"tag_from": {
"type": "string"
},
"tag_to": {
"type": "string"
},
"release_name": {
"type": "string"
}
},
"required": [
"tag_from",
"tag_to",
"release_name"
]
}
},
"aliases": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"uri",
"module",
"organization"
],
"additionalProperties": false
}
},
"companies": {
"type": "array",
"items": {
"type": "object",
"properties": {
"company_name": {
"type": "string"
},
"domains": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z\\d\\.-]*$"
}
},
"aliases": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"company_name",
"domains"
],
"additionalProperties": false
}
},
"project_sources": {
"type": "array",
"items": {
"type": "object",
"properties": {
"organization": {
"type": "string"
},
"uri": {
"type": "string"
},
"git_base_uri": {
"type": "string"
},
"ssh_key_filename": {
"type": "string"
},
"ssh_username": {
"type": "string"
},
"exclude": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"organization"
],
"additionalProperties": false
}
},
"module_groups": {
"type": "array",
"items": {
"type": "object",
"properties": {
"module_group_name": {
"type": "string",
"pattern": "^[\\w-]+$"
},
"modules": {
"type": [
"array"
],
"items": {
"type": "string"
}
}
},
"required": [
"module_group_name",
"modules"
],
"additionalProperties": false
}
},
"mail_lists": {
"type": "array",
"items": {
"type": "string"
}
},
"member_lists": {
"type": "array",
"items": {
"type": "string"
}
},
"project_types": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[\\w-]+$"
},
"child": {
"type": "boolean"
},
"title": {
"type": "string"
},
"modules": {
"type": [
"array"
],
"items": {
"type": "string",
"pattern": "^[\\w-]+$"
}
}
},
"required": [
"id",
"title",
"modules"
],
"additionalProperties": false
}
}
},
"definitions": {
"date_format": {
"type": [
"string",
"null"
],
"pattern": "^20\\d{2}-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-[0-3]\\d$"
}
}
} | o63519 |
{
"properties": {
"cookieipport": {
"readonly": true,
"type": "string"
},
"curstate": {
"enum": [
"UP",
"DOWN",
"UNKNOWN",
"BUSY",
"OUT OF SERVICE",
"GOING OUT OF SERVICE",
"DOWN WHEN GOING OUT OF SERVICE",
"NS_EMPTY_STR",
"Unknown",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"dynamicweight": {
"readonly": true,
"type": "integer"
},
"ipv46": {
"readonly": true,
"type": "string"
},
"name": {
"type": "string"
},
"port": {
"readonly": true,
"type": "integer"
},
"preferredlocation": {
"readonly": true,
"type": "string"
},
"servicegroupname": {
"type": "string"
},
"servicename": {
"type": "string"
},
"servicetype": {
"enum": [
"HTTP",
"FTP",
"TCP",
"UDP",
"SSL",
"SSL_BRIDGE",
"SSL_TCP",
"DTLS",
"NNTP",
"DNS",
"DHCPRA",
"ANY",
"SIP_UDP",
"SIP_TCP",
"SIP_SSL",
"DNS_TCP",
"RTSP",
"PUSH",
"SSL_PUSH",
"RADIUS",
"RDP",
"MYSQL",
"MSSQL",
"DIAMETER",
"SSL_DIAMETER",
"TFTP",
"ORACLE",
"SMPP",
"SYSLOGTCP",
"SYSLOGUDP",
"FIX",
"SSL_FIX",
"PROXY",
"USER_TCP",
"USER_SSL_TCP",
"QUIC",
"IPFIX",
"LOGSTREAM"
],
"readonly": true,
"type": "string"
},
"vserverid": {
"readonly": true,
"type": "string"
},
"vsvrbindsvcip": {
"readonly": true,
"type": "string"
},
"vsvrbindsvcport": {
"readonly": true,
"type": "integer"
},
"weight": {
"type": "integer"
}
},
"title": "lbvserver_service_binding",
"type": "object"
} | o30568 |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The shape (e.g., circle, rectangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_0544ef30 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{
"$ref": "#/definitions/job"
}
],
"definitions": {
"possiblySecretString": {
"anyOf": [
{
"type": "string",
"description": "This value will be used directly (regular string)"
},
{
"type": "number",
"description": "This value will be treated as a string even though it is a number"
},
{
"title": "secret string",
"type": "object",
"additionalProperties": false,
"properties": {
"secure": {
"type": "string",
"description": "This should have been encrypted by the same user account to which the project belongs"
}
}
}
]
},
"commitFilter": {
"title": "commit filter",
"type": "object",
"additionalProperties": false,
"properties": {
"message": {
"type": "string",
"format": "regex",
"description": "Regex for matching commit message"
},
"author": {
"description": "Commit author's username, name, email or regexp matching one of these.",
"anyOf": [
{
"type": "string",
"format": "regex"
},
{
"type": "string"
}
]
},
"files": {
"type": "array",
"description": "Only specific files (glob patterns)",
"items": {
"type": "string"
}
}
}
},
"command": {
"title": "command",
"oneOf": [
{
"type": "string",
"description": "Run a batch command"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"ps": {
"type": "string",
"description": "Run a PowerShell command"
}
}
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"pwsh": {
"type": "string",
"description": "Run a PowerShell Core command"
}
}
},
{
"type": "object",
"description": "Run a batch command",
"additionalProperties": false,
"properties": {
"cmd": {
"type": "string"
}
}
},
{
"type": "object",
"description": "Run a Bash command",
"additionalProperties": false,
"properties": {
"sh": {
"type": "string"
}
}
}
]
},
"envVarHash": {
"title": "environment variable hash",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/possiblySecretString"
}
},
"platform": {
"enum": ["x86", "x64", "ARM", "ARM64", "Win32", "Any CPU"]
},
"configuration": {
"type": "string"
},
"imageName": {
"enum": [
"macOS",
"macOS-Mojave",
"macos-bigsur",
"macos-monterey",
"Previous macOS",
"Previous macOS-Mojave",
"Ubuntu",
"Ubuntu1604",
"Ubuntu1804",
"Ubuntu2004",
"Previous Ubuntu",
"Previous Ubuntu1604",
"Previous Ubuntu1804",
"Previous Ubuntu2004",
"Visual Studio 2013",
"Visual Studio 2015",
"Visual Studio 2017",
"Visual Studio 2019",
"Visual Studio 2022",
"Visual Studio 2017 Preview",
"Visual Studio 2019 Preview",
"Previous Visual Studio 2013",
"Previous Visual Studio 2015",
"Previous Visual Studio 2017",
"Previous Visual Studio 2019",
"Previous Visual Studio 2022",
"zhaw18",
"WMF 5"
]
},
"image": {
"description": "Build worker image (VM template) -DEV_VERSION",
"oneOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/imageName"
}
},
{
"$ref": "#/definitions/imageName"
}
]
},
"jobScalars": {
"title": "job scalars",
"type": "object",
"properties": {
"image": {
"$ref": "#/definitions/image"
},
"platform": {
"description": "Build platform, i.e. x86, x64, Any CPU. This setting is optional",
"oneOf": [
{
"$ref": "#/definitions/platform"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/platform"
}
}
]
},
"configuration": {
"description": "Build Configuration, i.e. Debug, Release, etc.",
"oneOf": [
{
"$ref": "#/definitions/configuration"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/configuration"
}
}
]
}
},
"allOf": [
{
"not": {
"required": ["skip_tags"]
}
},
{
"not": {
"required": ["skip_commits"]
}
},
{
"not": {
"required": ["skip_branch_with_pr"]
}
},
{
"not": {
"required": ["skip_non_tags"]
}
}
]
},
"job": {
"title": "job",
"type": "object",
"properties": {
"version": {
"description": "Version format",
"type": "string"
},
"branches": {
"title": "branch options",
"type": "object",
"description": "Branches to build",
"additionalProperties": false,
"properties": {
"only": {
"description": "Whitelist",
"type": "array",
"items": {
"type": "string"
}
},
"except": {
"type": "array",
"description": "Blacklist",
"items": {
"type": "string"
}
}
}
},
"skip_tags": {
"type": "boolean",
"description": "Do not build on tags (GitHub and BitBucket)"
},
"skip_non_tags": {
"type": "boolean",
"description": "Start builds on tags only (GitHub and BitBucket)"
},
"skip_commits": {
"description": "Skipping commits with particular message or from specific user",
"$ref": "#/definitions/commitFilter"
},
"only_commits": {
"description": "Including commits with particular message or from specific user",
"$ref": "#/definitions/commitFilter"
},
"skip_branch_with_pr": {
"type": "boolean",
"description": "Do not build feature branch with open Pull Requests"
},
"max_jobs": {
"description": "Maximum number of concurrent jobs for the project",
"type": "integer"
},
"notifications": {
"type": "array",
"items": {
"title": "notification",
"type": "object"
}
},
"image": {
"$ref": "#/definitions/image"
},
"init": {
"description": "Scripts that are called at very beginning, before repo cloning",
"type": "array",
"items": {
"$ref": "#/definitions/command"
}
},
"clone_folder": {
"type": "string",
"description": "Clone directory"
},
"shallow_clone": {
"type": "boolean",
"description": "Fetch repository as zip archive",
"default": false
},
"clone_depth": {
"description": "Set git clone depth",
"type": "integer"
},
"hosts": {
"title": "host options",
"type": "object",
"description": "Setting up etc\\hosts file",
"additionalProperties": {
"type": "string",
"anyOf": [
{
"format": "ipv4"
},
{
"format": "ipv6"
}
]
}
},
"environment": {
"description": "Environment variables",
"anyOf": [
{
"title": "environment options",
"type": "object",
"properties": {
"global": {
"description": "variables defined here are no different than those defined at top level of 'environment' node",
"$ref": "#/definitions/envVarHash"
},
"matrix": {
"type": "array",
"description": "an array of environment variables, each member of which is one dimension in the build matrix calculation",
"items": {
"$ref": "#/definitions/envVarHash"
}
}
}
},
{
"$ref": "#/definitions/envVarHash"
}
]
},
"matrix": {
"title": "matrix options",
"type": "object",
"additionalProperties": false,
"properties": {
"fast_finish": {
"type": "boolean",
"description": "Set this flag to immediately finish build once one of the jobs fails"
},
"allow_failures": {
"type": "array",
"description": "This is how to allow failing jobs in the matrix",
"items": {
"$ref": "#/definitions/jobScalars"
}
},
"exclude": {
"type": "array",
"description": "Exclude configuration from the matrix. Works similarly to 'allow_failures' but build not even being started for excluded combination.",
"items": {
"$ref": "#/definitions/job"
}
}
}
},
"cache": {
"type": "array",
"description": "Build cache to preserve files/folders between builds",
"items": {
"type": "string"
}
},
"services": {
"type": "array",
"description": "Enable service required for build/tests",
"items": {
"enum": [
"docker",
"iis",
"mongodb",
"msmq",
"mssql",
"mssql2008r2sp2",
"mssql2008r2sp2rs",
"mssql2012sp1",
"mssql2012sp1rs",
"mssql2014",
"mssql2014rs",
"mssql2016",
"mssql2017",
"mysql",
"postgresql",
"postgresql93",
"postgresql94",
"postgresql95",
"postgresql96",
"postgresql10",
"postgresql11",
"postgresql12",
"postgresql13"
]
}
},
"install": {
"description": "Scripts that run after cloning repository",
"type": "array",
"items": {
"$ref": "#/definitions/command"
}
},
"assembly_info": {
"title": "assembly options",
"type": "object",
"description": "Enable patching of AssemblyInfo.* files",
"additionalProperties": false,
"properties": {
"patch": {
"type": "boolean"
},
"file": {
"type": "string"
},
"assembly_version": {
"type": "string"
},
"assembly_file_version": {
"type": "string"
},
"assembly_informational_version": {
"type": "string"
}
}
},
"nuget": {
"title": "NuGet options",
"type": "object",
"description": "Automatically register private account and/or project AppVeyor NuGet feeds",
"properties": {
"account_feed": {
"type": "boolean"
},
"project_feed": {
"type": "boolean"
},
"disable_publish_on_pr": {
"type": "boolean",
"description": "Disable publishing of .nupkg artifacts to account/project feeds for pull request builds"
}
}
},
"platform": {
"description": "Build platform, i.e. x86, x64, Any CPU. This setting is optional",
"oneOf": [
{
"$ref": "#/definitions/platform"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/platform"
}
}
]
},
"configuration": {
"description": "Build Configuration, i.e. Debug, Release, etc.",
"oneOf": [
{
"$ref": "#/definitions/configuration"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/configuration"
}
}
]
},
"build": {
"oneOf": [
{
"type": "boolean",
"enum": [false]
},
{
"title": "build options",
"type": "object",
"additionalProperties": false,
"properties": {
"parallel": {
"type": "boolean",
"description": "Enable MSBuild parallel builds"
},
"project": {
"type": "string",
"description": "Path to Visual Studio solution or project"
},
"publish_wap": {
"type": "boolean",
"description": "Package Web Application Projects (WAP) for Web Deploy"
},
"publish_wap_xcopy": {
"type": "boolean",
"description": "Package Web Application Projects (WAP) for XCopy deployment"
},
"publish_wap_beanstalk": {
"type": "boolean",
"description": "Package Web Applications for AWS Elastic Beanstalk deployment"
},
"publish_wap_octopus": {
"type": "boolean",
"description": "Package Web Applications for Octopus deployment"
},
"publish_azure_webjob": {
"type": "boolean",
"description": "Package Azure WebJobs for Zip Push deployment"
},
"publish_azure": {
"type": "boolean",
"description": "Package Azure Cloud Service projects and push to artifacts"
},
"publish_aspnet_core": {
"type": "boolean",
"description": "Package ASP.NET Core projects"
},
"publish_core_console": {
"type": "boolean",
"description": "Package .NET Core console projects"
},
"publish_nuget": {
"type": "boolean",
"description": "Package projects with .nuspec files and push to artifacts"
},
"publish_nuget_symbols": {
"type": "boolean",
"description": "Generate and publish NuGet symbol packages"
},
"include_nuget_references": {
"type": "boolean",
"description": "Add -IncludeReferencedProjects option while packaging NuGet artifacts"
},
"verbosity": {
"enum": ["quiet", "minimal", "normal", "detailed"],
"description": "MSBuild verbosity level"
}
}
}
]
},
"before_build": {
"description": "Scripts to run before build",
"type": "array",
"items": {
"$ref": "#/definitions/command"
}
},
"before_package": {
"description": "Scripts to run *after* solution is built and *before* automatic packaging occurs (web apps, NuGet packages, Azure Cloud Services)",
"type": "array",
"items": {
"$ref": "#/definitions/command"
}
},
"after_build": {
"description": "Scripts to run after build",
"type": "array",
"items": {
"$ref": "#/definitions/command"
}
},
"build_script": {
"description": "To run your custom scripts instead of automatic MSBuild",
"type": "array",
"items": {
"$ref": "#/definitions/command"
}
},
"before_test": {
"description": "Scripts to run before tests",
"type": "array",
"items": {
"$ref": "#/definitions/command"
}
},
"test": {
"oneOf": [
{
"type": "boolean",
"enum": [false],
"description": "To disable automatic tests"
},
{
"title": "test options",
"description": "To run tests again only selected assemblies and/or categories",
"type": "object",
"additionalProperties": false,
"properties": {
"assemblies": {
"title": "assembly options",
"type": "object",
"additionalProperties": false,
"properties": {
"only": {
"type": "array",
"items": {
"type": "string"
}
},
"except": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"categories": {
"oneOf": [
{
"title": "category options",
"type": "object",
"additionalProperties": false,
"properties": {
"only": {
"type": "array",
"items": {
"type": "string"
}
},
"except": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
{
"description": "To run tests from different categories as separate jobs in parallel",
"type": "array",
"items": {
"oneOf": [
{
"type": "string",
"description": "A category common for all jobs"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
]
}
}
}
]
},
"test_script": {
"description": "To run your custom scripts instead of automatic tests",
"type": "array",
"items": {
"$ref": "#/definitions/command"
}
},
"after_test": {
"type": "array",
"description": "Scripts to run after tests",
"items": {
"$ref": "#/definitions/command"
}
},
"artifacts": {
"type": "array",
"items": {
"title": "artifact options",
"type": "object",
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": ["path"]
}
},
"before_deploy": {
"type": "array",
"description": "Scripts to run before deployment",
"items": {
"$ref": "#/definitions/command"
}
},
"deploy": {
"oneOf": [
{
"enum": ["off"]
},
{
"type": "array",
"items": {
"title": "deployment options",
"type": "object"
}
}
]
},
"deploy_script": {
"description": "To run your custom scripts instead of provider deployments",
"type": "array",
"items": {
"$ref": "#/definitions/command"
}
},
"after_deploy": {
"type": "array",
"description": "Scripts to run after deployment",
"items": {
"$ref": "#/definitions/command"
}
},
"on_success": {
"type": "array",
"description": "On successful build",
"items": {
"$ref": "#/definitions/command"
}
},
"on_failure": {
"type": "array",
"description": "On build failure",
"items": {
"$ref": "#/definitions/command"
}
},
"on_finish": {
"type": "array",
"description": "After build failure or success",
"items": {
"$ref": "#/definitions/command"
}
}
}
}
},
"id": "https://json.schemastore.org/appveyor.json",
"title": "JSON schema for AppVeyor CI configuration files"
}
| appveyor |
{
"title": "JSON schema for pinpoint plugin type-provider.yml files",
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://pinpoint.navercorp.com/type-provider.schema",
"definitions": {
"serviceType": {
"type": "object",
"additionalProperties": false,
"properties": {
"code": {
"type": "integer",
"minimum": 1000,
"maximum": 9999
},
"name": {
"type": "string",
"minLength": 1
},
"desc": {
"type": "string",
"minLength": 1
},
"property": {
"type": "object",
"minProperties": 1,
"additionalProperties": false,
"properties": {
"terminal": {
"type": "boolean"
},
"queue": {
"type": "boolean"
},
"recordStatistics": {
"type": "boolean"
},
"includeDestinationId": {
"type": "boolean"
},
"alias": {
"type": "boolean"
}
}
},
"matcher": {
"minProperties": 1,
"additionalProperties": false,
"oneOf": [
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"args",
"none"
]
}
},
"required": [
"type"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "exact"
},
"code": {
"type": "integer"
}
},
"required": [
"type",
"code"
]
}
]
}
},
"required": [
"code",
"name"
]
},
"annotationKey": {
"type": "object",
"additionalProperties": false,
"properties": {
"code": {
"type": "integer"
},
"name": {
"name": "string",
"minLength": 1
},
"property": {
"type": "object",
"minProperties": 1,
"additionalProperties": false,
"properties": {
"viewInRecordSet": {
"type": "boolean"
}
}
}
},
"required": [
"code",
"name"
]
},
"serviceTypes": {
"type": "array",
"items": {
"$ref": "#/definitions/serviceType"
}
},
"annotationKeys": {
"type": "array",
"items": {
"$ref": "#/definitions/annotationKey"
}
}
},
"type": "object",
"minProperties": 1,
"additionalProperties": false,
"anyOf": [
{
"required": [
"serviceTypes"
]
},
{
"required": [
"annotationKeys"
]
}
],
"properties": {
"serviceTypes": {
"$ref": "#/definitions/serviceTypes"
},
"annotationKeys": {
"$ref": "#/definitions/annotationKeys"
}
}
} | o78964 |
{
"minimum": 0,
"type": "integer"
} | o27841 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_coordination_v1_Lease": {
"description": "Lease defines a lease concept.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": "string"
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"Lease"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_coordination_v1_LeaseSpec",
"description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "coordination.k8s.io",
"kind": "Lease",
"version": "v1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_coordination_v1_LeaseSpec": {
"description": "LeaseSpec is a specification of a Lease.",
"properties": {
"acquireTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime",
"description": "acquireTime is a time when the current lease was acquired."
},
"holderIdentity": {
"description": "holderIdentity contains the identity of the holder of a current lease.",
"type": "string"
},
"leaseDurationSeconds": {
"_format": "int32",
"description": "leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed RenewTime.",
"type": "integer"
},
"leaseTransitions": {
"_format": "int32",
"description": "leaseTransitions is the number of transitions of a lease between holders.",
"type": "integer"
},
"renewTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime",
"description": "renewTime is a time when the current holder of a lease has last updated the lease."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": {
"description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
"properties": {
"continue": {
"description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
"type": "string"
},
"remainingItemCount": {
"_format": "int64",
"description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
"type": "integer"
},
"resourceVersion": {
"description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime": {
"_format": "date-time",
"description": "MicroTime is version of Time with microsecond level precision.",
"type": "string"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "LeaseList is a list of Lease objects.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"enum": [
"coordination.k8s.io/v1"
],
"type": [
"string",
"null"
]
},
"items": {
"description": "Items is a list of schema objects.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_coordination_v1_Lease"
},
"type": [
"array",
"null"
]
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"LeaseList"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta",
"description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "coordination.k8s.io",
"kind": "LeaseList",
"version": "v1"
}
]
} | kb_515_Normalized |
{
"title": "thumbnail",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"description": "Object contains a thumbnail image.",
"properties": {
"url": {
"type": "string",
"description": "The URI pointing to the thumbnail image. Typically a base64-encoded data URI."
}
},
"required": [
"url"
],
"additionalProperties": false,
"esriDocumentation": {
"examples": [
{
"title": "url",
"code": {
"thumbnail": {
"url": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAA9AHADASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD3q6IiRnkIWNRuZicAD1rzfXfijZ6dOyWthLdxqceYZBGCPUDB/XFeZaN4615ol0q91O4uLGd8MJjvfkYA3n5sZxxn+Zql4gPDVx4nOKjlGFJW7nzNbENVFGJ6/D8TtJv9OkbTkmF+OFt50xj/AGiQSCPxz9Oteb634w8QxXQnj1W4R1bIUEbP++ehH1FcfpNybO/jmAZlXIYL6Ec/41e12VXGVIIbkEd646+NxFWorysvLQznOftF2O3tfHet61oskc7xwFCEaaAFHk9c88dumK5N/EWsaVqQuLPUblX7hnLq31U5Bqz4b0zVIdNuZ30+8Fq4DrL5Tbe+Tn8RWXLp1/ql4YtPsrm5cHkRRlsfXHSs3UxEq15N36Ci5+2dzp9c1jUdVtIbi8uX3vGG2odqrkZwAP8A9dQ+F/EmvWdncRw37m1Q7UWVRJtPsT0GMcdOaNV0vUtO023ivrG4hdIlU5QkcD16VBZRNbaOiyxtHI5Z2V1weTx+mKwdavTbk21Jsw9pUppt3u2XrXx54h+3GCSdZ1POfKQFR+XStFPiLeRzCKdYAf7zx4B/I1zekQqRdXJAyT5an9T/ADFRy6WLkGeYHYD8o9feuiGZ1YO0ndI6YZhKDs9kejR+NoGUefZyKe+xgw/XFW7XxJpt4ceaYH9Jht/Xp+teOtfTWEwQ/vIBxtPYexrZyHiWRCCrAMPoa9mjio1ldHt0Ksa6vE9PSW3vGdYJoplXG4I4P8qimjTYcBSOvrmvLn3LIGSRo9pyCnB/Ouo0/wAUQwxJBPBMsagDfv3n6ngfWnKd2dcYpIoeEPhZr2qsJ76wktLYghftB8ts+pX7wH4V3o+CizxRC81yU4++EhBJHoGJ/XH4V64Jg4/cqZPfov5/4ZqUZxzjPtSjgqNkmrnnfVqdkmtjgdD+GXhvRk/c2slxN3luX3k+xAwuPwrbg8PafbzLJBZ2kTrwrJCqkfQgV0RAPUCo3jB6cV2QtBWiivZIzjbADANQNEd+K02jPtUYTBya052HIissWOWrK1jRLHVEC6jbxT+hdfmHsGHIFbTsM9Ce2ccVTu4EuV2zLlQeVyf1HT+dc1WUWvfNVTUtGtDg9R8EaPPHJBorPalDksjeYhPcEE5z+PpXF6rZmykkt7lfLeL5dn+e1exy2kMMscyg7slQC3AznoOgryDxXP8A8TS98pAQJGUNuJzg4z3z+dfO5lSppRnBWbZ4+cYalTUZwVm2cLrbREMMEemRTdBumdGt5DkIMp7DuKi1mcsSroAT3BpmgRu0szRsFIUDJGev/wCqng7qSLy68ZxSNluODx6VGw9Kk8kZBYlmHTJpGyDjqK9ex9CfWqlWBKfdzTqiaTIWPyzkch84AHvQm9VO4Nx1+XA/CtI1uVWaMZU7u6JGIAyTgVXZ2ZhswOeAe/B49qZPdfKyxgu+MbVHftk9Kmhic7SsecHJyevHb8+9E6zbSgKNPuRkynd+7Ht83X9KiuYtyATOyqx+6px+Zq4XU7VYlMg4yD27egPtVMCaSJWdPJmDkEZ3gqCR146jB9s9KTqTsX7KKK9zJHDZylmY28aktwSQPp1qqZJA6jYBHt+Y56H6f5/Tm20IBmKAAyn5jnrxioJo5DGrHgjGT1+tYOTZVzI128XS9DuJLmTe4VkTgZZj0GP88CvCdWvrhQ21IwPQg/416J8TtXtoZ7a18wu8IYuiclc4xn8Pxry3UdTtJsqsmGPZlIrxcXN1K3LbRHzOZVHWxHLa6j/TOfv7r7QcMm1gexzW14ZiX+z5pMYZnwT7AD/E1ztxgzNtIIJ7V28dvHaxpEi4ixgZPQ//AF678FTvK/Y9HLqfvcy6EDn0GaS3h+0TpE0qRBzje5wF+pqWRGBxjJrb0bw7PM6XF6pgt1O7YyktJjnAHbpXfex6x9CSXDmHd93sGIx3xTYpGaNQgZmzjO7offOcfgDUskSK7KB8pXOBxjOf8KmtoFjRVBJ+tZtNS0EiSKMKu1wuWOc+vc/j1pQ8n24INwhVDngYYkjHPqMH86kDKWKbcY7imOx2tz0bb+ma12RRDI5SVscgnoT3x/8AWqJ2BPzE/wC6OtQ3UjC7SJeCV8zd14z0xTQ5Yu565C1m33EyOZpdpH7qEcktnJ/pj8fyrF1zVriz0KeYKrsigK5/vZAB/M5rVkjSW8bzF3bFyMnI/LpnnrXivjnx5qczXthBHbw2yyFMlS7kK3ck46j0rnxFblho7N3scmMrqlTavZu9vUxdWTcXZyWZiSSeSTXD6qgWbir7eI7l1KXEccmONy/KTWdqEvnbXxjPOK8ijTlB+8fN4elOm/eLugaelwRcTElEfaFA74zk/nXUXHzREdW4/nWT4eXytPiwc+axc+3OP6V0Om2H9o3qWnmmLeMB8Zx+Fe/hoqMF5n1GFgoU1bqZ0iOY9isRJ2PXNd/4ahvtP0WNtX8xS5Z8SybmjUAYznpwM4HStXRPDFjY2gdS8t0V4mlwSp9h0/r71aa0iURs4Mrg8NIdxyCcH8P6CtZW2Z0H/9k="
}
}
}
]
}
} | o90127 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "AuthorizeRequest",
"type": "object",
"properties": {
"idTag": {
"type": "string",
"maxLength": 20
}
},
"additionalProperties": false,
"required": [
"idTag"
]
} | o43970 |
{
"properties": {
"gslbthreshold": {
"readonly": true,
"type": "integer"
},
"ipaddress": {
"readonly": true,
"type": "string"
},
"name": {
"type": "string"
},
"port": {
"readonly": true,
"type": "integer"
},
"servicegroupname": {
"type": "string"
},
"servicetype": {
"enum": [
"HTTP",
"FTP",
"TCP",
"UDP",
"SSL",
"SSL_BRIDGE",
"SSL_TCP",
"NNTP",
"ANY",
"SIP_UDP",
"SIP_TCP",
"SIP_SSL",
"RADIUS",
"RDP",
"RTSP",
"MYSQL",
"MSSQL",
"ORACLE"
],
"readonly": true,
"type": "string"
},
"svreffgslbstate": {
"enum": [
"UP",
"DOWN",
"UNKNOWN",
"BUSY",
"OUT OF SERVICE",
"GOING OUT OF SERVICE",
"DOWN WHEN GOING OUT OF SERVICE",
"NS_EMPTY_STR",
"Unknown",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"weight": {
"readonly": true,
"type": "integer"
}
},
"title": "gslbdomain_gslbservicegroupmember_binding",
"type": "object"
} | o30466 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.