json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "properties": { "dimensions": { "description": "The dimensions required to calculate the area", "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", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_97a6e4b3
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "author": { "type": "object", "properties": { "name": { "type": "string" }, "email": { "type": "string" } }, "required": [ "name", "email" ] }, "lastChangedBy": { "type": "object", "properties": { "name": { "type": "string" }, "email": { "type": "string" } }, "required": [ "name", "email" ] }, "lastChanged": { "type": "string" }, "title": { "type": "string" }, "text": { "type": "string" }, "files": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "name": { "type": "string" }, "url": { "type": "string" } }, "required": [ "type", "name", "url" ] } } }, "required": [ "id", "author", "lastChangedBy", "lastChanged", "title", "text", "files" ] } }
o54615
{ "properties": { "activepolicy": { "readonly": true, "type": "integer" }, "boundto": { "type": "string" }, "name": { "type": "string" }, "priority": { "readonly": true, "type": "integer" } }, "title": "authenticationnegotiatepolicy_authenticationvserver_binding", "type": "object" }
o31545
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape (for triangles)", "type": "number" }, "height": { "description": "The height of the shape (for triangles)", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape (for circles)", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. square, circle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_70c7ceb0
{ "description": "Represents a vSphere volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": [ "string", "null" ] }, "storagePolicyID": { "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": [ "string", "null" ] }, "storagePolicyName": { "description": "Storage Policy Based Management (SPBM) profile name.", "type": [ "string", "null" ] }, "volumePath": { "description": "Path that identifies vSphere volume vmdk", "type": [ "string", "null" ] } }, "required": [ "volumePath" ], "type": "object" }
kb_1140_Normalized
{ "properties": { "Applications": { "description": "Optional. The list of applications", "items": { "description": "A firewall application item", "properties": { "Allowed": { "description": "Specifies whether or not incoming connections are allowed", "type": "boolean" }, "BundleID": { "description": "Identifies the application", "type": "string" } }, "type": "object" }, "type": "array" }, "BlockAllIncoming": { "description": "Optional. Corresponds to the \"Block all incoming connections\" option.", "type": "boolean" }, "EnableFirewall": { "description": "Required. Whether the firewall should be enabled or not.", "type": "boolean" }, "EnableStealthMode": { "description": "Optional. Corresponds to \"Enable stealth mode.\"", "type": "boolean" }, "PayloadDescription": { "default": "Firewall Payload", "description": "Description of the payload", "type": "string" }, "PayloadDisplayName": { "default": "Firewall Payload", "description": "Name of the payload", "type": "string" }, "PayloadIdentifier": { "default": "com.apple.security.firewall", "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.security.firewall", "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.security.firewall", "type": "object" }
o61626
{ "properties": { "discounts": { "description": "The discounts to be applied", "items": { "properties": { "discount_code": { "description": "The discount code", "type": "string" }, "discount_percentage": { "description": "The percentage of discount", "type": "number" } }, "required": [ "discount_percentage", "discount_code" ], "type": "object" }, "type": "array" }, "original_price": { "description": "The original price of the product", "type": "number" } }, "required": [ "original_price", "discounts" ], "type": "object" }
calculate_discounted_price_22361dfa
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "radius", "base", "height" ], "type": "object" }, "shape": { "description": "The shape to calculate the area for", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_b34e2184
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://localhost:3000/schemas/get-devices-response.json#", "title": "Devices", "type": "object", "additionalProperties": false, "properties": {} }
o20469
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "CreateCalculation", "type": "object", "properties": { "etaSeconds": { "title": "ETA Seconds", "description": "The estimated amount of time it will take to compute the tax calculation", "type": "number", "minimum": 0 } }, "required": [ "etaSeconds" ], "additionalProperties": false }
o46395
{ "$schema": "http://json-schema.org/draft-04/schema#", "properties": { "description": { "description": "A short description of the population", "type": "string" }, "id": { "description": "Integer data. Ex: 2673", "type": "integer" }, "level": { "description": "Whether the item is a single individual, or a population", "enum": [ "individual", "population" ], "type": "string" }, "name": { "description": "A name for the item, useful to identify it later", "type": "string" }, "owner": { "description": "A single related resource. Can be either a URI or set of nested resource data.", "type": "string" }, "resource_uri": { "description": "Unicode string data. Ex: \"Hello World\"", "type": "string" }, "size": { "description": "If the item is a population, the number of individuals or biomass", "type": "number" }, "taxa": { "description": "The identifier (or URI) of the taxa object to which the item belongs.", "type": "string" }, "traits": { "description": "A list of traits values indentifiers (or URIs) that were measured on this item.", "items": { "type": "string" }, "type": "array" }, "units": { "description": "Units in which the population size is measured", "type": "string" } }, "required": [ "level", "taxa", "name", "owner" ], "title": "Schema for item objects", "type": "object" }
o58602
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier": { "description": "MetricIdentifier defines the name and optionally selector for a metric", "properties": { "name": { "description": "name is the name of the given metric", "type": "string" }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics." } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus": { "description": "MetricValueStatus holds the current value for a metric", "properties": { "averageUtilization": { "_format": "int32", "description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.", "type": "integer" }, "averageValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)" }, "value": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "value is the current value of the metric (as a quantity)." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" } }, "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).", "properties": { "current": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus", "description": "current contains the current value for the given metric" }, "metric": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier", "description": "metric identifies the target metric by name and selector" } }, "required": [ "metric", "current" ], "type": "object" }
kb_732_Normalized
{ "title": "ABI", "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/Event" }, { "$ref": "#/definitions/ConstructorFunction" }, { "$ref": "#/definitions/FallbackFunction" }, { "$ref": "#/definitions/NormalFunction" } ] }, "definitions": { "Name": { "type": "string", "pattern": "^$|^[a-zA-Z_\\$][a-zA-Z_\\$0-9]*$" }, "Type": { "type": "string", "oneOf": [ { "pattern": "^u?int(8|16|24|32|40|48|56|64|72|80|88|96|104|112|120|128|136|144|152|160|168|176|184|192|200|208|216|224|232|240|248|256)?(\\[[0-9]*\\])?$" }, { "pattern": "^address(\\[[0-9]*\\])?$" }, { "pattern": "^bool(\\[[0-9]*\\])?$" }, { "pattern": "^u?fixed(0x8|8x0|0x16|8x8|16x0|0x24|8x16|16x8|24x0|0x32|8x24|16x16|24x8|32x0|0x40|8x32|16x24|24x16|32x8|40x0|0x48|8x40|16x32|24x24|32x16|40x8|48x0|0x56|8x48|16x40|24x32|32x24|40x16|48x8|56x0|0x64|8x56|16x48|24x40|32x32|40x24|48x16|56x8|64x0|0x72|8x64|16x56|24x48|32x40|40x32|48x24|56x16|64x8|72x0|0x80|8x72|16x64|24x56|32x48|40x40|48x32|56x24|64x16|72x8|80x0|0x88|8x80|16x72|24x64|32x56|40x48|48x40|56x32|64x24|72x16|80x8|88x0|0x96|8x88|16x80|24x72|32x64|40x56|48x48|56x40|64x32|72x24|80x16|88x8|96x0|0x104|8x96|16x88|24x80|32x72|40x64|48x56|56x48|64x40|72x32|80x24|88x16|96x8|104x0|0x112|8x104|16x96|24x88|32x80|40x72|48x64|56x56|64x48|72x40|80x32|88x24|96x16|104x8|112x0|0x120|8x112|16x104|24x96|32x88|40x80|48x72|56x64|64x56|72x48|80x40|88x32|96x24|104x16|112x8|120x0|0x128|8x120|16x112|24x104|32x96|40x88|48x80|56x72|64x64|72x56|80x48|88x40|96x32|104x24|112x16|120x8|128x0|0x136|8x128|16x120|24x112|32x104|40x96|48x88|56x80|64x72|72x64|80x56|88x48|96x40|104x32|112x24|120x16|128x8|136x0|0x144|8x136|16x128|24x120|32x112|40x104|48x96|56x88|64x80|72x72|80x64|88x56|96x48|104x40|112x32|120x24|128x16|136x8|144x0|0x152|8x144|16x136|24x128|32x120|40x112|48x104|56x96|64x88|72x80|80x72|88x64|96x56|104x48|112x40|120x32|128x24|136x16|144x8|152x0|0x160|8x152|16x144|24x136|32x128|40x120|48x112|56x104|64x96|72x88|80x80|88x72|96x64|104x56|112x48|120x40|128x32|136x24|144x16|152x8|160x0|0x168|8x160|16x152|24x144|32x136|40x128|48x120|56x112|64x104|72x96|80x88|88x80|96x72|104x64|112x56|120x48|128x40|136x32|144x24|152x16|160x8|168x0|0x176|8x168|16x160|24x152|32x144|40x136|48x128|56x120|64x112|72x104|80x96|88x88|96x80|104x72|112x64|120x56|128x48|136x40|144x32|152x24|160x16|168x8|176x0|0x184|8x176|16x168|24x160|32x152|40x144|48x136|56x128|64x120|72x112|80x104|88x96|96x88|104x80|112x72|120x64|128x56|136x48|144x40|152x32|160x24|168x16|176x8|184x0|0x192|8x184|16x176|24x168|32x160|40x152|48x144|56x136|64x128|72x120|80x112|88x104|96x96|104x88|112x80|120x72|128x64|136x56|144x48|152x40|160x32|168x24|176x16|184x8|192x0|0x200|8x192|16x184|24x176|32x168|40x160|48x152|56x144|64x136|72x128|80x120|88x112|96x104|104x96|112x88|120x80|128x72|136x64|144x56|152x48|160x40|168x32|176x24|184x16|192x8|200x0|0x208|8x200|16x192|24x184|32x176|40x168|48x160|56x152|64x144|72x136|80x128|88x120|96x112|104x104|112x96|120x88|128x80|136x72|144x64|152x56|160x48|168x40|176x32|184x24|192x16|200x8|208x0|0x216|8x208|16x200|24x192|32x184|40x176|48x168|56x160|64x152|72x144|80x136|88x128|96x120|104x112|112x104|120x96|128x88|136x80|144x72|152x64|160x56|168x48|176x40|184x32|192x24|200x16|208x8|216x0|0x224|8x216|16x208|24x200|32x192|40x184|48x176|56x168|64x160|72x152|80x144|88x136|96x128|104x120|112x112|120x104|128x96|136x88|144x80|152x72|160x64|168x56|176x48|184x40|192x32|200x24|208x16|216x8|224x0|0x232|8x224|16x216|24x208|32x200|40x192|48x184|56x176|64x168|72x160|80x152|88x144|96x136|104x128|112x120|120x112|128x104|136x96|144x88|152x80|160x72|168x64|176x56|184x48|192x40|200x32|208x24|216x16|224x8|232x0|0x240|8x232|16x224|24x216|32x208|40x200|48x192|56x184|64x176|72x168|80x160|88x152|96x144|104x136|112x128|120x120|128x112|136x104|144x96|152x88|160x80|168x72|176x64|184x56|192x48|200x40|208x32|216x24|224x16|232x8|240x0|0x248|8x240|16x232|24x224|32x216|40x208|48x200|56x192|64x184|72x176|80x168|88x160|96x152|104x144|112x136|120x128|128x120|136x112|144x104|152x96|160x88|168x80|176x72|184x64|192x56|200x48|208x40|216x32|224x24|232x16|240x8|248x0|0x256|8x248|16x240|24x232|32x224|40x216|48x208|56x200|64x192|72x184|80x176|88x168|96x160|104x152|112x144|120x136|128x128|136x120|144x112|152x104|160x96|168x88|176x80|184x72|192x64|200x56|208x48|216x40|224x32|232x24|240x16|248x8|256x0)?(\\[[0-9]*\\])?$" }, { "pattern": "^bytes(0|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|20|21|22|23|24|25|26|27|28|29|30|31|32)(\\[[0-9]*\\])?" }, { "pattern": "^bytes$" }, { "pattern": "^function(\\[[0-9]*\\])?$" }, { "pattern": "^string$" } ] }, "StateMutability": { "type": "string", "enum": [ "pure", "view", "nonpayable", "payable" ] }, "NormalFunction": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "function" ], "default": "function" }, "name": { "$ref": "#/definitions/Name" }, "inputs": { "type": "array", "items": { "$ref": "#/definitions/Parameter" } }, "outputs": { "type": "array", "items": { "$ref": "#/definitions/Parameter" }, "default": [] }, "stateMutability": { "$ref": "#/definitions/StateMutability" }, "constant": { "type": "boolean" }, "payable": { "type": "boolean", "default": false } }, "required": [ "name", "inputs", "constant" ], "additionalProperties": false }, "ConstructorFunction": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "constructor" ] }, "inputs": { "type": "array", "items": { "$ref": "#/definitions/Parameter" } }, "payable": { "type": "boolean", "default": false } }, "required": [ "type", "inputs" ], "additionalProperties": false }, "FallbackFunction": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "fallback" ] }, "constant": { "type": "boolean" }, "payable": { "type": "boolean", "default": false } }, "required": [ "type" ], "additionalProperties": false }, "Event": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "event" ] }, "name": { "$ref": "#/definitions/Name" }, "inputs": { "type": "array", "items": { "$ref": "#/definitions/EventParameter" } }, "anonymous": { "type": "boolean" } }, "required": [ "type", "name", "inputs", "anonymous" ], "additionalProperties": false }, "Parameter": { "type": "object", "properties": { "name": { "$ref": "#/definitions/Name" }, "type": { "$ref": "#/definitions/Type" } }, "required": [ "name", "type" ] }, "EventParameter": { "type": "object", "properties": { "name": { "$ref": "#/definitions/Name" }, "type": { "$ref": "#/definitions/Type" }, "indexed": { "type": "boolean" } }, "required": [ "name", "type", "indexed" ] } } }
o46658
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "speaker": { "type": "object", "properties": { "firstName": { "type": "string" }, "lastName": { "type": "string" }, "email": { "type": "string" }, "postedSlides": { "type": "boolean" }, "rating": { "type": "number" }, "tags": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "firstName", "lastName", "email", "postedSlides", "rating", "tags" ] } }, "additionalProperties": false, "required": [ "speaker" ] }
o81595
{ "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle or triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "shape": { "description": "The shape to calculate the area for", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_2b2a62da
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationCertificateAuthorityId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "status": { "type": "string", "enum": [ "active", "inactive" ] }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "caBundle": { "type": "string", "maxLength": 32767, "minLength": 50 }, "caInfo": { "type": "array", "items": { "type": "object", "properties": { "serialNumber": { "type": "string", "minLength": 1, "maxLength": 1024 }, "fingerprint": { "type": "string", "minLength": 1, "maxLength": 1024 }, "commonName": { "type": "string", "maxLength": 1024 }, "issuerName": { "type": "string", "maxLength": 1024 }, "notValidBefore": { "type": "string", "format": "date-time" }, "notValidAfter": { "type": "string", "format": "date-time" } } } } } }
o9771
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "title": { "type": "string", "maxLength": 30 }, "choices": { "type": "array", "items": { "type": "string", "maxLength": 30 }, "minItems": 1, "_uniqueItems": true } }, "required": [ "title", "choices" ], "additionalProperties": false }
o40222
{ "additionalItems": true, "items": { "_id": "0", "additionalProperties": true, "properties": { "Callsign": { "_id": "Callsign", "minLength": 1, "type": "string" }, "IATA": { "_id": "IATA", "minLength": 1, "type": "string" }, "ICAO": { "_id": "ICAO", "minLength": 1, "type": "string" }, "OperatingBases": { "_id": "OperatingBases", "additionalItems": true, "items": { "_id": "1", "additionalProperties": true, "properties": { "link": { "_id": "link", "minLength": 1, "type": "string" }, "name": { "_id": "name", "minLength": 1, "type": "string" } }, "required": [ "name", "link" ], "type": "object" }, "type": "array", "_uniqueItems": false }, "hubs": { "_id": "hubs", "additionalItems": true, "items": { "_id": "0", "additionalProperties": true, "properties": { "link": { "_id": "link", "minLength": 1, "type": "string" }, "name": { "_id": "name", "minLength": 1, "type": "string" } }, "required": [ "name", "link" ], "type": "object" }, "minItems": 1, "type": "array", "_uniqueItems": false }, "logoLink": { "_id": "logoLink", "minLength": 1, "type": "string" }, "name": { "_id": "name", "minLength": 1, "type": "string" }, "website": { "_id": "website", "minLength": 1, "type": "string" } }, "required": [ "name", "logoLink", "IATA", "ICAO", "Callsign", "website" ], "type": "object" }, "minItems": 1, "required": [ "0" ], "type": "array", "_uniqueItems": false }
o33729
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "icon", "description": "An icon atom", "type": "object", "properties": { "icon": { "description": "The short name of the icon", "enum": [ "check", "arrow", "nitro" ] } }, "required": [ "icon" ] }
o62772
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/getMoneyEx.result.scheme.json", "title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b getMoneyEx", "description": "\u0421\u0445\u0435\u043c\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b getMoneyEx", "type": "object", "properties": { "money_ex": { "description": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "object", "properties": { "currcode": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 currcode", "type": "string" }, "tag": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 tag", "type": "string" }, "firmid": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 firmid", "type": "string" }, "client_code": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 client_code", "type": "string" }, "openbal": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 openbal", "type": "string" }, "openlimit": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 openlimit", "type": "string" }, "currentbal": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 currentbal", "type": "string" }, "currentlimit": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 currentlimit", "type": "string" }, "locked": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 locked", "type": "string" }, "locked_value_coef": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 locked_value_coef", "type": "string" }, "locked_margin_value": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 locked_margin_value", "type": "string" }, "leverage": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 leverage", "type": "string" }, "limit_kind": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 limit_kind", "type": "number" }, "wa_position_price": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 wa_position_price", "type": "string" }, "orders_collateral": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 orders_collateral", "type": "string" }, "positions_collateral": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 positions_collateral", "type": "string" } }, "required": [ "currcode", "tag", "firmid", "client_code", "limit_kind" ] } }, "additionalProperties": false }
o5235
{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "ChildFoo": { "type": "object" }, "Foo": { "properties": { "childFoos": { "allOf": [ { "$ref": "#/definitions/Foo" }, { "$ref": "#/definitions/ChildFoo" } ] } }, "required": [ "childFoos" ], "type": "object" } }, "properties": { "Foo": { "$ref": "#/definitions/Foo" } }, "required": [ "Foo" ] }
o17683
{ "properties": { "attachments": { "description": "The file paths of the attachments", "items": { "type": "string" }, "type": "array" }, "body": { "description": "The body of the email", "type": "string" }, "recipients": { "description": "The email addresses of the recipients", "items": { "type": "string" }, "type": "array" }, "subject": { "description": "The subject of the email", "type": "string" } }, "required": [ "recipients", "subject", "body" ], "type": "object" }
send_email_f5af728d
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "", "type": "object", "properties": { "nat": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "season" ], "properties": { "season": { "type": "string", "minLength": 1 }, "data": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "week", "data" ], "properties": { "week": { "type": "number" }, "data": { "type": "number" } } } } } } }, "hhs1": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "season" ], "properties": { "season": { "type": "string", "minLength": 1 }, "data": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "week", "data" ], "properties": { "week": { "type": "number" }, "data": { "type": "number" } } } } } } }, "hhs2": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "season" ], "properties": { "season": { "type": "string", "minLength": 1 }, "data": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "week", "data" ], "properties": { "week": { "type": "number" }, "data": { "type": "number" } } } } } } }, "hhs3": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "season" ], "properties": { "season": { "type": "string", "minLength": 1 }, "data": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "week", "data" ], "properties": { "week": { "type": "number" }, "data": { "type": "number" } } } } } } }, "hhs4": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "season" ], "properties": { "season": { "type": "string", "minLength": 1 }, "data": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "week", "data" ], "properties": { "week": { "type": "number" }, "data": { "type": "number" } } } } } } }, "hhs5": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "season" ], "properties": { "season": { "type": "string", "minLength": 1 }, "data": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "week", "data" ], "properties": { "week": { "type": "number" }, "data": { "type": "number" } } } } } } }, "hhs6": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "season" ], "properties": { "season": { "type": "string", "minLength": 1 }, "data": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "week", "data" ], "properties": { "week": { "type": "number" }, "data": { "type": "number" } } } } } } }, "hhs7": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "season" ], "properties": { "season": { "type": "string", "minLength": 1 }, "data": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "week", "data" ], "properties": { "week": { "type": "number" }, "data": { "type": "number" } } } } } } }, "hhs8": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "season" ], "properties": { "season": { "type": "string", "minLength": 1 }, "data": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "week", "data" ], "properties": { "week": { "type": "number" }, "data": { "type": "number" } } } } } } }, "hhs9": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "season" ], "properties": { "season": { "type": "string", "minLength": 1 }, "data": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "week", "data" ], "properties": { "week": { "type": "number" }, "data": { "type": "number" } } } } } } }, "hhs10": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "season" ], "properties": { "season": { "type": "string", "minLength": 1 }, "data": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "week", "data" ], "properties": { "week": { "type": "number" }, "data": { "type": "number" } } } } } } } }, "required": [ "nat", "hhs1", "hhs2", "hhs3", "hhs4", "hhs5", "hhs6", "hhs7", "hhs8", "hhs9", "hhs10" ] }
o69886
{ "description": "testing the sending of params", "endpoint": "/params", "methods": [ "get", "post", "put", "delete" ], "params": { "email": "[email protected]", "username": "mugo" }, "properties": { "email": { "_format": "email", "type": "string" }, "username": { "type": "string" } }, "required": [ "username", "email" ], "type": "object" }
o6306
{ "id": "http://schemas.triniti.io/json-schema/triniti/curator/mixin/link-teaser/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "_id": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single", "overridable": true } }, "status": { "type": "string", "default": "draft", "enum": [ "unknown", "published", "scheduled", "pending", "draft", "expired", "archived", "deleted" ], "pbj": { "type": "string-enum", "rule": "single" } }, "etag": { "type": "string", "pattern": "^[\\w\\.:-]+$", "pbj": { "type": "string", "rule": "single" } }, "created_at": { "type": "string", "pattern": "^[1-9]{1}[0-9]{12,15}$", "pbj": { "type": "microtime", "rule": "single" } }, "creator_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A fully qualified reference to what created this node. This is intentionally a message-ref and not a user id because it is often a program that creates nodes, not a user.", "pbj": { "type": "message-ref", "rule": "single" } }, "updated_at": { "type": "string", "pattern": "^[1-9]{1}[0-9]{12,15}$", "pbj": { "type": "microtime", "rule": "single", "useTypeDefault": false } }, "updater_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A fully qualified reference to what updated this node. This is intentionally a message-ref and not a user id because it is often a program that updates nodes, not a user. E.g. \"acme:iam:node:app:cli-scheduler\" or \"acme:iam:node:user:60c71df0-fda8-11e5-bfb9-30342d363854\"", "pbj": { "type": "message-ref", "rule": "single" } }, "last_event_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A reference to the last event that changed the state of this node. E.g. \"acme:blog:event:article-published:60c71df0-fda8-11e5-bfb9-30342d363854\"", "pbj": { "type": "message-ref", "rule": "single" } }, "title": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "order_date": { "type": "string", "format": "date-time", "description": "Determines the sequence that this teaser node will be rendered in lists, search results, etc. It DOES NOT control visibility or publishing. A date was used over an integer (e.g. seq_no) for blog-like, reverse chronological, clarity in sorting.", "pbj": { "type": "date-time", "rule": "single" } }, "slotting": { "type": "object", "patternProperties": { "^[a-zA-Z_]{1}[\\w\\.:-]+$": { "type": "integer", "default": 0, "minimum": 0, "maximum": 255 } }, "additionalProperties": false, "description": "A map of integers, e.g. {home: 1, sports: 5, tv: 9}, that determine where teasers will render in lists that use slotting. We call it slotting vs sticky or pinning as that is generally just one at a time.", "pbj": { "type": "tiny-int", "rule": "map" } }, "image_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "description": "A reference to the image asset to use for widgets, sharing, seo.", "pbj": { "type": "identifier", "rule": "single" } }, "description": { "type": "string", "minLength": 0, "maxLength": 5000, "description": "A description of the teaser (usually a few sentences). It should typically not have HTML as it is used in metadata, feeds, SERP and social.", "pbj": { "type": "text", "rule": "single" } }, "caption": { "type": "string", "minLength": 0, "maxLength": 255, "description": "Text to be used to caption the teaser.", "pbj": { "type": "string", "rule": "single" } }, "cta_text": { "type": "string", "minLength": 0, "maxLength": 255, "description": "Text to be used for the call to action.", "pbj": { "type": "string", "rule": "single" } }, "credit": { "type": "string", "minLength": 0, "maxLength": 255, "description": "Text to be used to credit the teaser source.", "pbj": { "type": "string", "rule": "single" } }, "credit_url": { "type": "string", "pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$", "description": "URL to be used to link to the teaser source.", "pbj": { "type": "text", "rule": "single", "format": "url" } }, "gallery_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single" } }, "timeline_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single" } }, "link_url": { "type": "string", "pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$", "pbj": { "type": "text", "rule": "single", "format": "url" } }, "partner_url": { "type": "string", "pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$", "pbj": { "type": "text", "rule": "single", "format": "url" } }, "partner_text": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } } }, "required": [ "_id", "link_url" ], "additionalProperties": true }
o82764
{ "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 ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": [ "array", "null" ] }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": [ "string", "null" ] }, "optional": { "description": "Specify whether the ConfigMap or its keys must be defined", "type": [ "boolean", "null" ] } }, "type": "object" }
kb_116_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "title": "Data Table Row Insert Update", "description": "Schema for inserting or updating a data table row", "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": [ "string", "number", "boolean", "null" ] } }, "additionalProperties": false } }
o9815
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "", "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkThumbHeight": { "type": "number" }, "bookmarkThumbWidth": { "type": "number" }, "dropEnabled": { "type": "boolean" }, "footerPanelEnabled": { "type": "boolean" }, "headerPanelEnabled": { "type": "boolean" }, "limitLocales": { "type": "boolean" }, "openTemplate": { "type": "string", "minLength": 1 }, "pessimisticAccessControl": { "type": "boolean" }, "rightPanelEnabled": { "type": "boolean" }, "theme": { "type": "string", "minLength": 1 } }, "required": [ "bookmarkThumbHeight", "bookmarkThumbWidth", "dropEnabled", "footerPanelEnabled", "headerPanelEnabled", "limitLocales", "openTemplate", "pessimisticAccessControl", "rightPanelEnabled", "theme" ] }, "modules": { "type": "object", "properties": { "shareDialogue": { "type": "object", "properties": { "options": { "type": "object", "properties": { "embedTemplate": { "type": "string", "minLength": 1 } }, "required": [ "embedTemplate" ] }, "content": { "type": "object", "properties": { "customSize": { "type": "string", "minLength": 1 }, "embed": { "type": "string", "minLength": 1 }, "embedInstructions": { "type": "string", "minLength": 1 }, "height": { "type": "string", "minLength": 1 }, "iiif": { "type": "string", "minLength": 1 }, "share": { "type": "string", "minLength": 1 }, "shareInstructions": { "type": "string", "minLength": 1 }, "size": { "type": "string", "minLength": 1 }, "width": { "type": "string", "minLength": 1 } }, "required": [ "customSize", "embed", "embedInstructions", "height", "iiif", "share", "shareInstructions", "size", "width" ] } }, "required": [ "options", "content" ] }, "footerPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkEnabled": { "type": "boolean" }, "embedEnabled": { "type": "boolean" }, "feedbackEnabled": { "type": "boolean" }, "minimiseButtons": { "type": "boolean" }, "openEnabled": { "type": "boolean" }, "shareEnabled": { "type": "boolean" } }, "required": [ "bookmarkEnabled", "embedEnabled", "feedbackEnabled", "minimiseButtons", "openEnabled", "shareEnabled" ] }, "content": { "type": "object", "properties": { "bookmark": { "type": "string", "minLength": 1 }, "download": { "type": "string", "minLength": 1 }, "embed": { "type": "string", "minLength": 1 }, "exitFullScreen": { "type": "string", "minLength": 1 }, "fullScreen": { "type": "string", "minLength": 1 }, "open": { "type": "string", "minLength": 1 } }, "required": [ "bookmark", "download", "embed", "exitFullScreen", "fullScreen", "open" ] } }, "required": [ "options", "content" ] }, "genericDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "ok": { "type": "string", "minLength": 1 } }, "required": [ "ok" ] } }, "required": [ "content" ] }, "headerPanel": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 }, "help": { "type": "string", "minLength": 1 } }, "required": [ "close", "help" ] } }, "required": [ "content" ] }, "helpDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "text": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "text", "title" ] } }, "required": [ "content" ] }, "moreInfoRightPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "canvasDisplayOrder": { "type": "string" }, "canvasExclude": { "type": "string" }, "copyToClipboardEnabled": { "type": "boolean" }, "manifestDisplayOrder": { "type": "string" }, "manifestExclude": { "type": "string" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" }, "rtlLanguageCodes": { "type": "string", "minLength": 1 }, "showAllLanguages": { "type": "boolean" }, "textLimit": { "type": "number" }, "textLimitType": { "type": "string", "minLength": 1 } }, "required": [ "canvasDisplayOrder", "canvasExclude", "copyToClipboardEnabled", "manifestDisplayOrder", "manifestExclude", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "rtlLanguageCodes", "showAllLanguages", "textLimit", "textLimitType" ] }, "content": { "type": "object", "properties": { "attribution": { "type": "string", "minLength": 1 }, "collapse": { "type": "string", "minLength": 1 }, "collapseFull": { "type": "string", "minLength": 1 }, "description": { "type": "string", "minLength": 1 }, "expand": { "type": "string", "minLength": 1 }, "expandFull": { "type": "string", "minLength": 1 }, "holdingText": { "type": "string", "minLength": 1 }, "less": { "type": "string", "minLength": 1 }, "license": { "type": "string", "minLength": 1 }, "logo": { "type": "string", "minLength": 1 }, "more": { "type": "string", "minLength": 1 }, "noData": { "type": "string", "minLength": 1 }, "page": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "manifestHeader": { "type": "string", "minLength": 1 }, "canvasHeader": { "type": "string", "minLength": 1 }, "copyToClipboard": { "type": "string", "minLength": 1 }, "copiedToClipboard": { "type": "string", "minLength": 1 } }, "required": [ "attribution", "collapse", "collapseFull", "description", "expand", "expandFull", "holdingText", "less", "license", "logo", "more", "noData", "page", "title", "manifestHeader", "canvasHeader", "copyToClipboard", "copiedToClipboard" ] } }, "required": [ "options", "content" ] }, "pdfCenterPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "titleEnabled": { "type": "boolean" }, "usePdfJs": { "type": "boolean" } }, "required": [ "titleEnabled", "usePdfJs" ] }, "content": { "type": "object", "properties": {}, "required": [] } }, "required": [ "options", "content" ] }, "resourcesLeftPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "elideCount": { "type": "number" }, "galleryThumbHeight": { "type": "number" }, "galleryThumbWidth": { "type": "number" }, "oneColThumbHeight": { "type": "number" }, "oneColThumbWidth": { "type": "number" }, "pageModeEnabled": { "type": "boolean" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" }, "thumbsEnabled": { "type": "boolean" }, "thumbsExtraHeight": { "type": "number" }, "thumbsImageFadeInDuration": { "type": "number" }, "thumbsLoadRange": { "type": "number" }, "treeEnabled": { "type": "boolean" }, "twoColThumbHeight": { "type": "number" }, "twoColThumbWidth": { "type": "number" } }, "required": [ "elideCount", "galleryThumbHeight", "galleryThumbWidth", "oneColThumbHeight", "oneColThumbWidth", "pageModeEnabled", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "thumbsEnabled", "thumbsExtraHeight", "thumbsImageFadeInDuration", "thumbsLoadRange", "treeEnabled", "twoColThumbHeight", "twoColThumbWidth" ] } }, "required": [ "options" ] }, "dialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 } }, "required": [ "close" ] } }, "required": [ "content" ] }, "downloadDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "download": { "type": "string", "minLength": 1 }, "entireFileAsOriginal": { "type": "string", "minLength": 1 }, "noneAvailable": { "type": "string", "minLength": 1 }, "preview": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "download", "entireFileAsOriginal", "noneAvailable", "preview", "title" ] } }, "required": [ "content" ] }, "loginDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "login": { "type": "string", "minLength": 1 }, "cancel": { "type": "string", "minLength": 1 } }, "required": [ "login", "cancel" ] } }, "required": [ "content" ] }, "settingsDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "locale": { "type": "string", "minLength": 1 }, "pagingEnabled": { "type": "string", "minLength": 1 }, "preserveViewport": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "website": { "type": "string", "minLength": 1 } }, "required": [ "locale", "pagingEnabled", "preserveViewport", "title", "website" ] } }, "required": [ "content" ] }, "contentLeftPanel": { "type": "object", "properties": {}, "required": [] } }, "required": [ "shareDialogue", "footerPanel", "genericDialogue", "headerPanel", "helpDialogue", "moreInfoRightPanel", "pdfCenterPanel", "resourcesLeftPanel", "dialogue", "downloadDialogue", "loginDialogue", "settingsDialogue", "contentLeftPanel" ] }, "localisation": { "type": "object", "properties": { "label": { "type": "string", "minLength": 1 }, "locales": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "name", "label" ], "properties": { "name": { "type": "string", "minLength": 1 }, "label": { "type": "string", "minLength": 1 } } } } }, "required": [ "label", "locales" ] }, "content": { "type": "object", "properties": { "authCORSError": { "type": "string", "minLength": 1 }, "authorisationFailedMessage": { "type": "string", "minLength": 1 }, "degradedResourceMessage": { "type": "string", "minLength": 1 }, "degradedResourceLogin": { "type": "string", "minLength": 1 }, "forbiddenResourceMessage": { "type": "string", "minLength": 1 } }, "required": [ "authCORSError", "authorisationFailedMessage", "degradedResourceMessage", "degradedResourceLogin", "forbiddenResourceMessage" ] } }, "required": [ "options", "modules", "localisation", "content" ] }
o16060
{ "definitions": {}, "properties": { "authors": { "items": { "type": "string" }, "minItems": 1, "type": "array" }, "classifiers": { "items": { "type": "string" }, "minItems": 1, "type": "array" }, "description": { "type": "string" }, "homepage": { "type": "string" }, "pages": { "items": { "type": "string" }, "minItems": 1, "type": "array" }, "reference_urls": { "items": { "type": "string" }, "minItems": 1, "type": "array" }, "title": { "type": "string" }, "version": { "type": "string" } }, "required": [ "authors", "description", "pages", "title", "version" ], "type": "object" }
o91038
{ "$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": [ "EiffelIssueDefinedEvent" ] }, "version": { "type": "string", "enum": [ "2.0.0" ], "default": "2.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": { "sdm": { "type": "object", "properties": { "authorIdentity": { "type": "string" }, "encryptedDigest": { "type": "string" } }, "required": [ "authorIdentity", "encryptedDigest" ], "additionalProperties": false } }, "additionalProperties": false } }, "required": [ "id", "type", "version", "time" ], "additionalProperties": false }, "data": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "BUG", "IMPROVEMENT", "FEATURE", "WORK_ITEM", "REQUIREMENT", "OTHER" ] }, "tracker": { "type": "string" }, "id": { "type": "string" }, "uri": { "type": "string" }, "title": { "type": "string" }, "customData": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": {} }, "required": [ "key", "value" ], "additionalProperties": false } } }, "required": [ "type", "tracker", "id", "uri" ], "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 } } } }
o5376
{ "additionalProperties": false, "description": "Schema for a context generated by the YAUAA enrichment after parsing the user agent", "properties": { "agentBuild": { "maxLength": 100, "type": "string" }, "agentClass": { "description": "See https://yauaa.basjes.nl/README-Output.html", "enum": [ "Browser", "Browser Webview", "Mobile App", "Robot", "Robot Mobile", "Cloud Application", "Email Client", "Voice", "Special", "Testclient", "Hacker", "Unknown", "Desktop App", "eReader" ] }, "agentInformationEmail": { "_format": "email", "type": "string" }, "agentInformationUrl": { "type": "string" }, "agentLanguage": { "maxLength": 50, "type": "string" }, "agentLanguageCode": { "maxLength": 20, "type": "string" }, "agentName": { "description": "Example: Chrome.", "maxLength": 100, "type": "string" }, "agentNameVersion": { "maxLength": 200, "type": "string" }, "agentNameVersionMajor": { "maxLength": 120, "type": "string" }, "agentSecurity": { "enum": [ "Weak security", "Strong security", "Unknown", "Hacker", "No security" ], "type": "string" }, "agentUuid": { "type": "string" }, "agentVersion": { "maxLength": 100, "type": "string" }, "agentVersionMajor": { "maxLength": 20, "type": "string" }, "anonymized": { "type": "string" }, "carrier": { "type": "string" }, "deviceBrand": { "description": "Example: Google", "maxLength": 50, "type": "string" }, "deviceClass": { "description": "See https://yauaa.basjes.nl/README-Output.html", "enum": [ "Desktop", "Anonymized", "Unknown", "UNKNOWN", "Mobile", "Tablet", "Phone", "Watch", "Virtual Reality", "eReader", "Set-top box", "TV", "Game Console", "Handheld Game Console", "Voice", "Robot", "Robot Mobile", "Spy", "Hacker", "Augmented Reality", "Robot Imitator" ] }, "deviceCpu": { "maxLength": 50, "type": "string" }, "deviceCpuBits": { "maxLength": 20, "type": "string" }, "deviceFirmwareVersion": { "maxLength": 100, "type": "string" }, "deviceName": { "description": "Example: Google Nexus 6", "maxLength": 100, "type": "string" }, "deviceVersion": { "maxLength": 100, "type": "string" }, "facebookCarrier": { "type": "string" }, "facebookDeviceClass": { "maxLength": 1024, "type": "string" }, "facebookDeviceName": { "maxLength": 1024, "type": "string" }, "facebookDeviceVersion": { "type": "string" }, "facebookFBOP": { "type": "string" }, "facebookFBSS": { "type": "string" }, "facebookOperatingSystemName": { "type": "string" }, "facebookOperatingSystemVersion": { "type": "string" }, "gSAInstallationID": { "type": "string" }, "hackerAttackVector": { "type": "string" }, "hackerToolkit": { "type": "string" }, "iECompatibilityNameVersion": { "maxLength": 50, "type": "string" }, "iECompatibilityNameVersionMajor": { "maxLength": 70, "type": "string" }, "iECompatibilityVersion": { "maxLength": 100, "type": "string" }, "iECompatibilityVersionMajor": { "maxLength": 50, "type": "string" }, "koboAffiliate": { "type": "string" }, "koboPlatformId": { "type": "string" }, "layoutEngineBuild": { "maxLength": 100, "type": "string" }, "layoutEngineClass": { "description": "See https://yauaa.basjes.nl/README-Output.html", "enum": [ "Browser", "Mobile App", "Hacker", "Robot", "Unknown", "Special", "Cloud", "eReader" ] }, "layoutEngineName": { "maxLength": 100, "type": "string" }, "layoutEngineNameVersion": { "maxLength": 150, "type": "string" }, "layoutEngineNameVersionMajor": { "maxLength": 120, "type": "string" }, "layoutEngineVersion": { "maxLength": 50, "type": "string" }, "layoutEngineVersionMajor": { "maxLength": 20, "type": "string" }, "networkType": { "type": "string" }, "operatingSystemClass": { "description": "See https://yauaa.basjes.nl/README-Output.html", "enum": [ "Desktop", "Mobile", "Cloud", "Embedded", "Game Console", "Hacker", "Anonymized", "Unknown" ] }, "operatingSystemName": { "description": "Examples: Linux, Android.", "maxLength": 100, "type": "string" }, "operatingSystemNameVersion": { "maxLength": 150, "type": "string" }, "operatingSystemNameVersionMajor": { "type": "string" }, "operatingSystemVersion": { "maxLength": 50, "type": "string" }, "operatingSystemVersionBuild": { "maxLength": 100, "type": "string" }, "operatingSystemVersionMajor": { "type": "string" }, "webviewAppName": { "type": "string" }, "webviewAppNameVersionMajor": { "maxLength": 50, "type": "string" }, "webviewAppVersion": { "type": "string" }, "webviewAppVersionMajor": { "maxLength": 50, "type": "string" } }, "required": [ "deviceClass" ], "self": { "format": "jsonschema", "name": "yauaa_context", "vendor": "nl.basjes", "version": "1-0-2" }, "type": "object" }
sp_410_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "foo": { "type": "object", "properties": { "bar": { "type": "string", "default": "bar" }, "baz": { "type": "string" } }, "required": [ "bar", "baz" ] } } }
o63949
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "title": "Wangscape tiles schema", "description": "Lists the contents and location of every tile output by a Wangscape project.", "items": { "type": "object", "title": "Tile schema", "description": "Specifies the contents and location of a tile output by Wangscape.", "properties": { "corners": { "title": "Tile corners schema", "description": "Specifies the IDs of the terrain types at the corners of the tile.", "type": "array", "items": { "title": "Terrain ID schema", "description": "Specifies a terrain type.", "type": "string", "pattern": "^[0-9a-zA-Z_-]+$" } }, "filename": { "title": "Tile filename schema", "description": "Specifies the filename of the tileset containing the tile.", "type": "string" }, "x": { "title": "Tile x offset schema", "description": "Specifies the horizontal offset, in pixels, of the tile within the tileset.", "type": "integer", "minimum": 0 }, "y": { "title": "Tile y offset schema", "description": "Specifies the vertical offset, in pixels, of the tile within the tileset", "type": "integer", "minimum": 0 } }, "required": [ "corners", "filename", "x", "y" ] } }
o74563
{ "definitions": { "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" } }, "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", "null" ] }, "leaseDurationSeconds": { "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.", "format": "int32", "type": [ "integer", "null" ] }, "leaseTransitions": { "description": "leaseTransitions is the number of transitions of a lease between holders.", "format": "int32", "type": [ "integer", "null" ] }, "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" }
kb_520_Normalized
{ "description": "ContainerPort represents a network port in a single container.", "properties": { "containerPort": { "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", "format": "int32", "type": [ "integer", "null" ] }, "hostIP": { "description": "What host IP to bind the external port to.", "type": [ "string", "null" ] }, "hostPort": { "description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.", "format": "int32", "type": [ "integer", "null" ] }, "name": { "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", "type": [ "string", "null" ] }, "protocol": { "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".", "type": [ "string", "null" ] } }, "required": [ "containerPort" ], "type": "object" }
kb_123_Normalized
{ "properties": { "enum_homeNum": { "enum": [ 1, 2, 3 ], "type": "integer" }, "enum_parks": { "enum": [ "park_a", "park_b" ], "type": "string" }, "name": { "type": "string" } }, "required": [ "enum_homeNum", "enum_parks", "name" ], "type": "object" }
o8432
{ "properties": { "category": { "description": "The category of the product", "type": "string" }, "price_range": { "properties": { "max": { "description": "The maximum price of the product", "type": "number" }, "min": { "description": "The minimum price of the product", "type": "number" } }, "required": [ "min", "max" ], "type": "object" }, "query": { "description": "The search query", "type": "string" } }, "required": [ "query", "category", "price_range" ], "type": "object" }
search_product_5a37129e
{ "$schema": "http://json-schema.org/draft-06/schema#", "properties": { "bar": { "type": "string", "format": "date-time" } } }
o25159
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "number" }, "whitelisted": { "type": "boolean" }, "buys": { "type": "object", "properties": { "quantity": { "type": "number" }, "unit_price": { "type": "number" } } }, "sells": { "type": "object", "properties": { "quantity": { "type": "number" }, "unit_price": { "type": "number" } } } }, "required": [ "id", "whitelisted", "buys", "sells" ] }, "properties": {}, "additionalProperties": false }
o45160
{ "$id": "https://github.com/elastic/elasticsearch/tree/master/rest-api-spec", "$ref": "#/definitions/Api", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "Api": { "additionalProperties": false, "description": "An object with a single property name of the API and value of the API components", "maxProperties": 1, "minProperties": 1, "patternProperties": { "^[a-z]+?(_[a-z]+)*(\\.[a-z]+?(_[a-z]+)*)?$": { "$ref": "#/definitions/Components" } }, "propertyNames": { "pattern": "^[a-z]+?(_[a-z]+)*(\\.[a-z]+?(_[a-z]+)*)?$" }, "title": "API name", "type": "object" }, "Body": { "additionalProperties": false, "description": "The request body for the API. Does not detail the structure, only whether the API accepts a body and its format", "properties": { "description": { "type": "string" }, "required": { "type": "boolean" }, "serialize": { "enum": [ "bulk" ], "type": "string" } }, "required": [ "description" ], "title": "API request Body", "type": "object" }, "Components": { "additionalProperties": false, "description": "The components that make up the API", "else": { "properties": { "documentation": { "$ref": "#/definitions/Documentation", "properties": { "url": { "type": [ "string", "null" ] } } } } }, "if": { "properties": { "stability": { "const": "stable" } } }, "properties": { "body": { "$ref": "#/definitions/Body" }, "deprecated": { "$ref": "#/definitions/Deprecated" }, "documentation": { "$ref": "#/definitions/Documentation" }, "params": { "$ref": "#/definitions/Params" }, "stability": { "enum": [ "stable", "beta", "experimental", "private" ], "type": "string" }, "url": { "$ref": "#/definitions/Url" } }, "required": [ "documentation", "stability", "url" ], "then": { "properties": { "documentation": { "$ref": "#/definitions/Documentation", "properties": { "url": { "type": [ "string" ] } } } } }, "title": "API components", "type": "object" }, "Deprecated": { "additionalProperties": false, "description": "Indicates if part of the API is deprecated, in what version and why", "properties": { "description": { "title": "A description for the deprecation, which may include alternatives to use", "type": "string" }, "version": { "pattern": "^\\d+\\.\\d+\\.\\d+$", "title": "The version from which deprecation applies", "type": "string" } }, "required": [ "description", "version" ], "title": "Deprecation", "type": "object" }, "Documentation": { "additionalProperties": false, "description": "API documentation including a link to the public reference and a short description", "properties": { "description": { "type": "string" }, "url": { "_format": "uri" } }, "required": [ "url", "description" ], "title": "Documentation", "type": "object" }, "ParamPart": { "additionalProperties": false, "allOf": [ { "if": { "properties": { "type": { "const": "enum" } } }, "then": { "required": [ "options" ] } } ], "description": "The properties of an API parameter or part", "properties": { "default": { "title": "Default value", "type": [ "string", "number", "boolean" ] }, "deprecated": { "oneOf": [ { "$ref": "#/definitions/Deprecated" }, { "type": "boolean" } ] }, "description": { "title": "A description for the parameter", "type": "string" }, "options": { "items": { "pattern": "^[a-zA-Z_]+$", "type": "string" }, "title": "Valid options when type is an enum", "type": "array" }, "required": { "title": "Whether the parameter is required", "type": "boolean" }, "type": { "pattern": "^list|date|time|string|enum|int|double|long|boolean|number$", "title": "The type of the parameter.", "type": "string" } }, "required": [ "description", "type" ], "title": "API parameter or part", "type": "object" }, "Params": { "additionalProperties": true, "description": "A collection of the query string parameters for the API", "patternProperties": { "^_?[a-z]+?(_[a-z]+)*$": { "$ref": "#/definitions/ParamPart" } }, "propertyNames": { "pattern": "^_?[a-z]+?(_[a-z]+)*$" }, "title": "API query string parameters", "type": "object" }, "Parts": { "additionalProperties": true, "description": "Variable parts that make up an API url path", "patternProperties": { "^_?[a-z]+?(_[a-z]+)*$": { "$ref": "#/definitions/ParamPart" } }, "propertyNames": { "pattern": "^_?[a-z]+?(_[a-z]+)*$" }, "title": "API url parts", "type": "object" }, "Path": { "additionalProperties": false, "description": "A path variant for the API including the HTTP methods it supports and parts", "properties": { "deprecated": { "$ref": "#/definitions/Deprecated" }, "methods": { "items": { "enum": [ "DELETE", "GET", "HEAD", "POST", "PUT" ], "minLength": 1, "type": "string" }, "type": "array" }, "parts": { "$ref": "#/definitions/Parts" }, "path": { "pattern": "^\\/([a-z0-9\\/_{}])*$", "type": "string" } }, "required": [ "methods", "path" ], "title": "API path", "type": "object" }, "Url": { "additionalProperties": false, "description": "An array of the URL path variants for the API", "properties": { "paths": { "items": { "$ref": "#/definitions/Path" }, "minLength": 1, "type": "array" } }, "required": [ "paths" ], "title": "API urls", "type": "object" } } }
o83677
{ "description": "Schema for IOx application descriptor - version 1.0", "additionalProperties": false, "definitions": { "descriptorschema_1_0.AppInfo": { "additionalProperties": false, "required": [ "name", "version" ], "type": "object", "properties": { "author-name": { "type": "string" }, "version": { "type": "string" }, "author-link": { "type": "string" }, "name": { "type": "string" }, "description": { "type": "string" } } } }, "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "manifest-version", "info", "app" ], "type": "object", "properties": { "info": { "$ref": "#/definitions/descriptorschema_1_0.AppInfo" }, "app": { "oneOf": [ { "required": [ "apptype" ], "type": "object", "properties": { "apptype": { "enum": [ "vm" ], "type": "string" } } } ] }, "manifest-version": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } } }
o3454
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": { "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over a set of resources, in this case pods." }, "namespaces": { "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"", "items": { "type": "string" }, "type": "array" }, "topologyKey": { "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.", "type": "string" } }, "required": [ "topologyKey" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": { "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", "properties": { "podAffinityTerm": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm", "description": "Required. A pod affinity term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "podAffinityTerm" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" } }, "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": [ "array", "null" ] }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": [ "array", "null" ] } }, "type": "object" }
kb_689_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "UpdateCharitableGivings", "definitions": { "amount": { "type": "number", "multipleOf": 0.01, "minimum": 0, "maximum": 99999999999.99, "example": "10000.89", "description": "Defines an amount value (to 2 decimal places), between 0 and 99999999999.99" }, "charityNames": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 75, "pattern": "^[A-Za-z0-9 &'\\(\\)\\*,\\-\\./@\u00a3]{1,75}$" } } }, "properties": { "giftAidPayments": { "type": "object", "description": "Gift Aid Payments.", "properties": { "specifiedYear": { "title": "Total Gift Aid Payments.", "description": "The total amount of Gift Aid payments made within the specified tax year. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "$ref": "#/definitions/amount" }, "oneOffSpecifiedYear": { "title": "Total One Off Gift Aid Payments.", "description": "The amount of one-off Gift Aid payments made within the specified tax year that has been included in giftAidPayments.specifiedYear. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "$ref": "#/definitions/amount" }, "specifiedYearTreatedAsPreviousYear": { "title": "Total Gift Aid payments made in the current tax year but treated as if they were mae in the previous tax year.", "description": "The amount of Gift Aid payments made within the specified tax year that should be treated as if they were made in the previous tax year. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "$ref": "#/definitions/amount" }, "followingYearTreatedAsSpecifiedYear": { "title": "Total Gift Aid payments made in the next tax year but treated as if they were made in the current tax year.", "description": "The amount of Gift Aid payments made in the following tax year that should be treated as if they were made in the specified tax year. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "$ref": "#/definitions/amount" }, "nonUKCharities": { "title": "Value of Gift Aid payments to non-UK charities.", "description": "The total amount of Gift Aid payments made within the specified tax year to a charity outside the UK that has been included in giftAidPayments.specifiedYear. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "$ref": "#/definitions/amount" }, "nonUKCharityNames": { "title": "Non-UK Charity Names.", "description": "Names of all non-UK charities that received gift aid payments where the amounts have been included in giftAidPayments.nonUkCharities. If giftAidPayments.nonUkCharities is greater than zero then this field is required. Each name should be between 1 and 75 characters in length. Allowed characters, including spaces are: mixed case alphanumeric characters and the characters: &'()*,-./@\u00a3", "$ref": "#/definitions/charityNames" } } }, "gifts": { "type": "object", "description": "Gifts", "properties": { "sharesOrSecurities": { "title": "Value of qualifying shares or securities gifted to charity.", "description": "The net benefit of shares and securities minus any amounts of benefits received from the charity. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "$ref": "#/definitions/amount" }, "landAndBuildings": { "title": "Value of qualifying land and buildings gifted to charity.", "description": "The net benefit of land and buildings minus any amounts or benefits received from the charity. This should include any costs of the gift or sale such as legal or valuer's fees. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "$ref": "#/definitions/amount" }, "investmentsNonUKCharities": { "title": "Value of qualifying investments gifted to non-UK charities.", "description": "The net amount of gifts of shares or securities or land and buildings that was made to a charity outside the UK that has been included in gifts.sharesOrSecurities and gifts.landAndBuildings. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "$ref": "#/definitions/amount" }, "investmentsNonUKCharityNames": { "title": "Non-UK Investment Charity Names.", "description": "Names of all non-UK charities that received investments where the amounts are included in gifts.investmentsNonUKCharities. If gifts.investmentsNonUKCharities is greater than zero, then this field is required. Each name should be between 1 and 75 characters in length. Allowed characters, including spaces are: mixed case alphanumeric characters and the characters: &'()*,-./@\u00a3", "$ref": "#/definitions/charityNames" } } } }, "additionalProperties": false }
o46359
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapNodeConfigSource": { "description": "ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.", "properties": { "kubeletConfigKey": { "description": "KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.", "type": "string" }, "name": { "description": "Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.", "type": "string" }, "namespace": { "description": "Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.", "type": "string" }, "resourceVersion": { "description": "ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.", "type": "string" }, "uid": { "description": "UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.", "type": "string" } }, "required": [ "namespace", "name", "kubeletConfigKey" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeConfigSource": { "description": "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.", "properties": { "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapNodeConfigSource", "description": "ConfigMap is a reference to a Node's ConfigMap" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Taint": { "description": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.", "properties": { "effect": { "description": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.", "type": "string" }, "key": { "description": "Required. The taint key to be applied to a node.", "type": "string" }, "timeAdded": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints." }, "value": { "description": "The taint value corresponding to the taint key.", "type": "string" } }, "required": [ "key", "effect" ], "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": "NodeSpec describes the attributes that a node is created with.", "properties": { "configSource": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeConfigSource", "description": "If specified, the source to get node configuration from The DynamicKubeletConfig feature gate must be enabled for the Kubelet to use this field" }, "externalID": { "description": "Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966", "type": [ "string", "null" ] }, "podCIDR": { "description": "PodCIDR represents the pod IP range assigned to the node.", "type": [ "string", "null" ] }, "podCIDRs": { "description": "podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for each of IPv4 and IPv6.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ], "x-kubernetes-patch-strategy": "merge" }, "providerID": { "description": "ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>", "type": [ "string", "null" ] }, "taints": { "description": "If specified, the node's taints.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Taint" }, "type": [ "array", "null" ] }, "unschedulable": { "description": "Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration", "type": [ "boolean", "null" ] } }, "type": "object" }
kb_629_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": [ "EiffelConfidenceLevelModifiedEvent" ] }, "version": { "type": "string", "enum": [ "2.0.0" ], "default": "2.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": { "sdm": { "type": "object", "properties": { "authorIdentity": { "type": "string" }, "encryptedDigest": { "type": "string" } }, "required": [ "authorIdentity", "encryptedDigest" ], "additionalProperties": false } }, "additionalProperties": false } }, "required": [ "id", "type", "version", "time" ], "additionalProperties": false }, "data": { "type": "object", "properties": { "name": { "type": "string" }, "value": { "type": "string", "enum": [ "SUCCESS", "FAILURE", "INCONCLUSIVE" ] }, "issuer": { "type": "object", "properties": { "name": { "type": "string" }, "email": { "type": "string" }, "id": { "type": "string" }, "group": { "type": "string" } }, "additionalProperties": false }, "customData": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": {} }, "required": [ "key", "value" ], "additionalProperties": false } } }, "required": [ "name", "value" ], "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 }
o5365
{"title":"Motif Config","markdownDescription":"This is your project's main configuration file. It is a JSON file, and includes information such as `head` data and template mappings. It can be accessed via the project settings (<kbd>Ctrl+,</kbd> (PC) / <kbd>Cmd+,</kbd> (Mac)) → _General_ → _Open motif.json_. Alternatively, you can find it at the top level of your project source tree.","properties":{"title":{"type":"string","markdownDescription":"If set, this title will be used for your pages whenever your pages don't specify a `title` entry in the [metadata](https://motif.land/docs/basics/metadata)."},"titleTemplate":{"type":"string","markdownDescription":"A title template for your pages. The `%s` part will be replaced with your page's title."},"baseCanonicalUrl":{"type":"string","markdownDescription":"The base of a canonical URL link tag."},"gaMeasurementId":{"type":"string","pattern":"^(G|UA|YT|MO)-[a-zA-Z0-9-]+$","markdownDescription":"Google Analytics tracking IDs, as explained in the [Google Analytics](https://motif.land/docs/guides/google-analytics) guide, to set up analytics tracking for your public pages."},"gaTrackingId":{"$ref":"#/properties/gaMeasurementId"},"templates":{"type":"object","markdownDescription":"This is a mapping between your pages, and the templates that should be used. It is automatically generated if you set a template via the page's document bar, but you can also edit it manually, for instance to set up automatic mapping rules that we describe below.\nThe template value (e.g. `home` or `blog-index`) must correspond to the name of the file in the `templates` folder.\nMappings are determined using a [glob syntax](https://en.wikipedia.org/wiki/Glob_(programming)), where:\n- `*` means all files in a given folder. E.g. `blog/*` means any files in the `blog` folder (but not in any of its subfolders)\n- `**/*` means all files in a given folder and subfolders of any depth. E.g. `blog/**/*` includes all files in the `blog` folder and its subfolders.\n**Note**: The most specific rule takes precendence.","additionalProperties":{"type":"string"}},"head":{"type":"array","markdownDescription":"This is a list of tags to inject in the `<head>` section of all your pages. This is where you load fonts, set Open Graph metadata, or load a custom stylesheet. Any HTML tags can be used.","items":{"type":"string"}},"sitemap":{"type":"object","properties":{"excludePaths":{"type":"array","markdownDescription":"If you wish to exclude the paths of some public pages from the sitemap, you can do so by adding a `sitemap.excludePaths` entry and specify a list of paths, either explicitly, or using the glob pattern mentioned above.","items":{"type":"string"}}}}}}
motif
{ "description": "UserSubject holds detailed information for user-kind subject.", "properties": { "name": { "description": "`name` is the username that matches, or \"*\" to match all usernames. Required.", "type": [ "string", "null" ] } }, "required": [ "name" ], "type": "object" }
kb_1092_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "dependencies": { "favoriteTopic": [ "tags" ] }, "properties": { "email": { "pattern": "^[\\w|-|.]+@[\\w]+\\.[A-Za-z]{2,4}$", "type": "string" }, "favoriteTopic": { "type": "string" }, "firstName": { "type": "string" }, "lastName": { "type": "string" }, "tags": { "items": { "type": "string" }, "type": "array" } }, "required": [ "email", "firstName", "lastName" ], "type": "object" }
o81526
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "http://schemas.digitallinguistics.io/MultiLangString-5.0.0.json", "title": "Multi-Language Text / String", "description": "A piece of text in multiple languages. This is typically used for analyses, database properties, and information in metalanguages rather than transcriptions or translations of data (for those, see the [Transcription](https://spec.digitallinguistics.github.io/schemas/Transcription.html) and [Translation](https://spec.digitallinguistics.github.io/schemas/Translation.html) schemas). For example, the part of speech for a lexeme might be given as both English *noun* and Spanish *nombre*. Each key must be a valid IETF language tag for a language (see the [IETF](https://www.w3.org/International/articles/language-tags/) reference page), and the value for that key must be the string of text in that language. **Note:** MultiLangStrings do not have a `type` property.\n\nIf the text is in only one language and that language is English, it may be represented as a simple string instead of an object. Thus instead of `gloss: { en: \"M.SG\" }` you can simply write `gloss: \"M.SG\"`.", "oneOf": [ { "type": "object", "additionalProperties": false, "patternProperties": { "^(((en-GB-oed|i-ami|i-bnn|i-default|i-enochian|i-hak|i-klingon|i-lux|i-mingo|i-navajo|i-pwn|i-tao|i-tay|i-tsu|sgn-BE-FR|sgn-BE-NL|sgn-CH-DE)|(art-lojban|cel-gaulish|no-bok|no-nyn|zh-guoyu|zh-hakka|zh-min|zh-min-nan|zh-xiang))|((([A-Za-z]{2,3}(-([A-Za-z]{3}(-[A-Za-z]{3}){0,2}))?)|[A-Za-z]{4}|[A-Za-z]{5,8})(-([A-Za-z]{4}))?(-([A-Za-z]{2}|[0-9]{3}))?(-([A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(-([0-9A-WY-Za-wy-z](-[A-Za-z0-9]{2,8})+))*(-(x(-[A-Za-z0-9]{1,8})+))?)|(x(-[A-Za-z0-9]{1,8})+))$": { "title": "Text", "type": "string", "description": "The string of text in the specified language" } } }, { "type": "string" } ], "examples": [ "man", { "en": "man", "fr": "homme" } ] }
o36264
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Specref", "description": "A list of spec references.", "patternProperties": { "^[a-zA-Z0-9\\-_+\\.]+$": { "oneOf": [ { "$ref": "#/definitions/alias" }, { "$ref": "#/definitions/legacyRef" }, { "$ref": "#/definitions/ref" } ] } }, "additionalProperties": false, "definitions": { "nonEmptyString": { "definition": "A non-empty string.", "type": "string", "minLength": 1 }, "url": { "definition": "An URL string.", "type": "string", "format": "uri" }, "urlList": { "definition": "An array of unique URLs.", "type": "array", "items": { "$ref": "#/definitions/url" }, "minItems": 1, "_uniqueItems": true }, "id": { "definition": "A reference ID (corresponds to RFCs or W3C shortnames).", "type": "string", "pattern": "^[a-zA-Z0-9\\-_+\\.]+$" }, "idList": { "definition": "An array of unique reference IDs.", "type": "array", "items": { "$ref": "#/definitions/id" }, "minItems": 1, "_uniqueItems": true }, "authors": { "description": "Authors of the specification", "type": "array", "items": { "$ref": "#/definitions/nonEmptyString" }, "minItems": 1 }, "version": { "type": "object", "properties": { "authors": { "$ref": "#/definitions/authors" }, "etAl": { "description": "Indicates extra, unlisted spec authors", "type": "boolean" }, "href": { "description": "URL of the spec", "$ref": "#/definitions/url" }, "title": { "description": "Title of the spec", "$ref": "#/definitions/nonEmptyString" }, "deliveredBy": { "description": "An array of URLs pointing to the home page of the Working Groups working on the spec.", "$ref": "#/definitions/urlList" }, "rawDate": { "description": "A prefered, machine readable format (YYYY-MM-DD) to specify the date. Note month and day are optional.", "type": "string", "pattern": "^\\d{4}(?:-[01]\\d)?(?:-[0-3]\\d)?$" }, "status": { "description": "What state the spec is in. Is it a in progress, completed, etc.", "$ref": "#/definitions/nonEmptyString" }, "publisher": { "description": "Name of the publisher, if any.", "$ref": "#/definitions/nonEmptyString" }, "isRetired": { "description": "The spec has been retired.", "type": "boolean" }, "hasErrata": { "description": "", "$ref": "#/definitions/url" }, "isSuperseded": { "description": "", "type": "boolean" }, "source": { "description": "", "$ref": "#/definitions/nonEmptyString" }, "versionOf": { "description": "", "$ref": "#/definitions/id" }, "aliases": { "description": "", "$ref": "#/definitions/idList" } }, "required": [ "href" ], "additionalProperties": false }, "legacyRef": { "description": "Legacy, unstructured data. Please don't do this. Please help get it fixed: https://github.com/tobie/specref/issues/147", "type": "string" }, "alias": { "type": "object", "properties": { "aliasOf": { "description": "ID of the aliased reference. Note aliasing can be recursive.", "$ref": "#/definitions/id" } }, "required": [ "aliasOf" ], "additionalProperties": false }, "ref": { "type": "object", "properties": { "authors": { "description": "Authors of the specification", "type": "array", "items": { "$ref": "#/definitions/nonEmptyString" }, "minItems": 1 }, "etAl": { "description": "Indicates extra, unlisted spec authors", "type": "boolean" }, "href": { "description": "URL of the spec", "$ref": "#/definitions/url" }, "title": { "description": "Title of the spec", "$ref": "#/definitions/nonEmptyString" }, "date": { "description": "Date of publication in humand readable form, favor rawDate instead.", "$ref": "#/definitions/nonEmptyString" }, "deliveredBy": { "description": "An array of URLs pointing to the home page of the Working Groups working on the spec.", "$ref": "#/definitions/urlList" }, "rawDate": { "description": "A prefered, machine readable format (YYYY-MM-DD) to specify the date. Note month and day are optional.", "type": "string", "pattern": "^\\d{4}(?:-[01]\\d)?(?:-[0-3]\\d)?$" }, "status": { "description": "What state a spec is in. Is it a work in progress, completed, etc.", "$ref": "#/definitions/nonEmptyString" }, "publisher": { "description": "Name of the publisher if any.", "$ref": "#/definitions/nonEmptyString" }, "isRetired": { "description": "", "type": "boolean" }, "hasErrata": { "description": "", "$ref": "#/definitions/url" }, "isSuperseded": { "description": "", "type": "boolean" }, "source": { "description": "", "$ref": "#/definitions/nonEmptyString" }, "updates": { "description": "", "$ref": "#/definitions/idList" }, "obsoletes": { "description": "", "$ref": "#/definitions/idList" }, "updatedBy": { "description": "", "$ref": "#/definitions/idList" }, "obsoletedBy": { "description": "Array of identifiers of specs which have replaced this one", "$ref": "#/definitions/idList" }, "rfcNumber": { "description": "Number of IETF RFC", "type": "string", "pattern": "^RFC\\d{4}$" }, "isoNumber": { "description": "Number of ISO standard", "type": "string", "pattern": "^ISO(\\/IEC)?(\\/((TS)|(DIS)|(FDIS)))? \\d{3,}(\\-\\d+)?(\\:\\d{4})?$" }, "ogcNumber": { "description": "Number of OGC standard", "type": "string", "pattern": "^OGC \\d{2}\\-\\d+(r\\d+)?$" }, "seeAlso": { "description": "", "$ref": "#/definitions/idList" }, "versionOf": { "description": "", "$ref": "#/definitions/id" }, "versions": { "description": "An object listing specific versions of that spec.", "type": "object", "patternProperties": { "^[a-zA-Z0-9\\-_+\\.]+$": { "oneOf": [ { "$ref": "#/definitions/version" }, { "$ref": "#/definitions/alias" } ] } }, "additionalProperties": false }, "aliases": { "description": "This is for in internal use only and shouldn't be manually set.", "$ref": "#/definitions/idList" }, "edDraft": { "description": "URL of the editor's draft", "$ref": "#/definitions/url" }, "isbn": { "description": "International Standard Book Number", "type": "string", "pattern": "^[0-9\\-]+X?$" }, "pages": { "description": "Page number(s) where the reference is inside the titled document", "type": "string", "pattern": "^[0-9\\-,]+$" }, "repository": { "description": "URL of the repository", "$ref": "#/definitions/url" } }, "required": [ "title" ], "additionalProperties": false } } }
o81650
{ "properties": { "dimensions": { "description": "The dimensions required for calculating the area", "properties": { "length": { "description": "The length of a rectangle", "type": "number" }, "radius": { "description": "The radius of a circle", "type": "number" }, "side": { "description": "The side length of a square", "type": "number" }, "width": { "description": "The width of a rectangle", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape for which to calculate the area", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_078dd92f
{ "description": "Details of a message for an Order.", "properties": { "code": { "description": "The code associated with this Message.", "maxLength": 12, "type": "string" }, "correctionRequired": { "description": "Indicates whether the Buyer must submit an updated Order to resolve the error/jeopardy condition.", "type": "boolean" }, "field": { "description": "The field / attribute on the Order associated with the Message.", "maxLength": 100, "type": "string" }, "messageInformation": { "description": "A description of the error condition or information to be conveyed to the Buyer.", "maxLength": 150, "type": "string" }, "objectType": { "description": "The type of the object, orderMessage.", "enum": [ "orderError" ], "type": "string" }, "orderItemReference": { "description": "A reference to the item on the Order to which this notification applies.", "maxLength": 4, "type": "string" }, "severity": { "description": "The severity of the Message.", "enum": [ "ERROR", "INFORMATION" ], "type": "string" } }, "required": [ "messageInformation", "severity", "correctionRequired" ], "title": "orderMessage", "type": "object" }
o28201
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://sonata-nfv.eu", "type": "object", "properties": { "descriptor_version": { "id": "http://sonata-nfv.eu/descriptor_version", "type": "string" }, "$schema": { "id": "http://sonata-nfv.eu/$schema", "type": "string" }, "group": { "id": "http://sonata-nfv.eu/group", "type": "string" }, "name": { "id": "http://sonata-nfv.eu/name", "type": "string" }, "version": { "id": "http://sonata-nfv.eu/version", "type": "string" }, "package_maintainer": { "id": "http://sonata-nfv.eu/package_maintainer", "type": "string" }, "package_description": { "id": "http://sonata-nfv.eu/package_description", "type": "string" }, "package_md5": { "id": "http://sonata-nfv.eu/package_md5", "type": "string" }, "ackage_signature": { "id": "http://sonata-nfv.eu/ackage_signature", "type": "string" }, "entry_service_template": { "id": "http://sonata-nfv.eu/entry_service_template", "type": "string" }, "sealed": { "id": "http://sonata-nfv.eu/sealed", "type": "boolean" }, "package_content": { "id": "http://sonata-nfv.eu/package_content", "type": "array", "items": { "id": "http://sonata-nfv.eu/package_content/0", "type": "object", "properties": { "name": { "id": "http://sonata-nfv.eu/package_content/0/name", "type": "string" }, "content-type": { "id": "http://sonata-nfv.eu/package_content/0/content-type", "type": "string" }, "md5": { "id": "http://sonata-nfv.eu/package_content/0/md5", "type": "string" } } }, "required": [ "name", "content-type" ] }, "artifact_dependencies": { "id": "http://sonata-nfv.eu/artifact_dependencies", "type": "array", "items": { "id": "http://sonata-nfv.eu/artifact_dependencies/0", "type": "object", "properties": { "name": { "id": "http://sonata-nfv.eu/artifact_dependencies/0/name", "type": "string" }, "url": { "id": "http://sonata-nfv.eu/artifact_dependencies/0/url", "type": "string" }, "md5": { "id": "http://sonata-nfv.eu/artifact_dependencies/0/md5", "type": "string" }, "credentials": { "id": "http://sonata-nfv.eu/artifact_dependencies/0/credentials", "type": "object", "properties": { "username": { "id": "http://sonata-nfv.eu/artifact_dependencies/0/credentials/username", "type": "string" }, "password": { "id": "http://sonata-nfv.eu/artifact_dependencies/0/credentials/password", "type": "string" } } } } } } }, "required": [ "descriptor_version", "group", "name", "version" ] }
o77307
{ "properties": { "connect": { "properties": { "cpus": { "default": 2, "description": "CPU shares to allocate to each connect worker instance.", "minimum": 1, "type": "number" }, "heap": { "default": 768, "description": "JVM heap allocation (in MB) for connect worker task; should be ~256MB less than total memory for the instance.", "minimum": 256, "type": "number" }, "instances": { "default": 1, "description": "Number of instances to run.", "minimum": 1, "type": "integer" }, "kafka-service": { "default": "confluent-kafka", "description": "Target Apache Kafka by Confluent service to which these tasks will connect. ", "type": "string" }, "mem": { "default": 1024, "description": "Memory (MB) to allocate to each connect worker instance.", "minimum": 512, "type": "number" }, "name": { "default": "connect", "description": "Service name for the connect worker application(s)", "type": "string" }, "role": { "default": "*", "description": "Deploy connect worker only on nodes with this role.", "type": "string" }, "schema-registry-service": { "default": "schema-registry", "description": "Schema Registry service to be used by connect workers. The named VIP associated with this service will be used to specify the converter-schema-registry-url's", "type": "string" }, "zookeeper-connect": { "default": "master.mesos:2181/dcos-service-confluent-kafka", "description": "Zookeeper Connect string for service cluster. Format is comma-separated list of <zk-host>:<zkport>/<kservice>", "type": "string" } }, "required": [ "cpus", "mem", "instances", "name" ], "type": "object" }, "hdfs": { "description": "Connect-HDFS configuration properties", "properties": { "config-url": { "description": "Base URL that serves HDFS config files (hdfs-site.xml, core-site.xml). If not set, DCOS Connect will use its default configuration and read from DCOS HDFS.", "type": "string" } }, "type": "object" } }, "type": "object" }
o90658
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": { "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", "type": "integer" }, "readOnly": { "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "boolean" }, "volumeID": { "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": { "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "properties": { "cachingMode": { "description": "Host Caching mode: None, Read Only, Read Write.", "type": "string" }, "diskName": { "description": "The Name of the data disk in the blob storage", "type": "string" }, "diskURI": { "description": "The URI the data disk in the blob storage", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "kind": { "description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" } }, "required": [ "diskName", "diskURI" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFilePersistentVolumeSource": { "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "properties": { "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { "description": "the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "secretNamespace": { "description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod", "type": "string" }, "shareName": { "description": "Share Name", "type": "string" } }, "required": [ "secretName", "shareName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIPersistentVolumeSource": { "description": "Represents storage that is managed by an external CSI volume driver (Beta feature)", "properties": { "controllerExpandSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "ControllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This is an alpha field and requires enabling ExpandCSIVolumes feature gate. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "controllerPublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "driver": { "description": "Driver is the name of the driver to use for this volume. Required.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "nodeStageSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "readOnly": { "description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "Attributes of the volume to publish.", "type": "object" }, "volumeHandle": { "description": "VolumeHandle is the unique volume name returned by the CSI volume plugin\u2019s CreateVolume to refer to the volume on all subsequent calls. Required.", "type": "string" } }, "required": [ "driver", "volumeHandle" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource": { "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "path": { "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderPersistentVolumeSource": { "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": { "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "lun": { "_format": "int32", "description": "Optional: FC target lun number", "type": "integer" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "targetWWNs": { "description": "Optional: FC target worldwide names (WWNs)", "items": { "type": "string" }, "type": "array" }, "wwids": { "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexPersistentVolumeSource": { "description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { "description": "Driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { "additionalProperties": { "type": "string" }, "description": "Optional: Extra command options if any.", "type": "object" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": { "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", "properties": { "datasetName": { "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated", "type": "string" }, "datasetUUID": { "description": "UUID of the dataset. This is unique identifier of a Flocker dataset", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": { "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "integer" }, "pdName": { "description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "boolean" } }, "required": [ "pdName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsPersistentVolumeSource": { "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "endpointsNamespace": { "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } }, "required": [ "endpoints", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": { "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" }, "type": { "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIPersistentVolumeSource": { "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { "description": "whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { "description": "whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.", "type": "string" }, "iqn": { "description": "Target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { "_format": "int32", "description": "iSCSI Target Lun number.", "type": "integer" }, "portals": { "description": "iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "items": { "type": "string" }, "type": "array" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "type": "string" } }, "required": [ "targetPortal", "iqn", "lun" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource": { "description": "Local represents directly-attached storage with node affinity (Beta feature)", "properties": { "fsType": { "description": "Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a fileystem if unspecified.", "type": "string" }, "path": { "description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": { "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "boolean" }, "server": { "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" } }, "required": [ "server", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": { "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", "properties": { "nodeSelectorTerms": { "description": "Required. A list of node selector terms. The terms are ORed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm" }, "type": "array" } }, "required": [ "nodeSelectorTerms" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "operator": { "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", "type": "string" }, "values": { "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": { "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", "properties": { "matchExpressions": { "description": "A list of node selector requirements by node's labels.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" }, "matchFields": { "description": "A list of node selector requirements by node's fields.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference": { "description": "ObjectReference contains enough information to let you inspect or modify the referred object.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "fieldPath": { "description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.", "type": "string" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "namespace": { "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/", "type": "string" }, "resourceVersion": { "description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "uid": { "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeSpec": { "description": "PersistentVolumeSpec is the specification of a persistent volume.", "properties": { "accessModes": { "description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes", "items": { "type": "string" }, "type": "array" }, "awsElasticBlockStore": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource", "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource", "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFilePersistentVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "capacity": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", "type": "object" }, "cephfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource", "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderPersistentVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "claimRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference", "description": "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding" }, "csi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIPersistentVolumeSource", "description": "CSI represents storage that is handled by an external CSI driver (Beta feature)." }, "fc": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource", "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexPersistentVolumeSource", "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource", "description": "Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource", "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "glusterfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsPersistentVolumeSource", "description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource", "description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIPersistentVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin." }, "local": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource", "description": "Local represents directly-attached storage with node affinity" }, "mountOptions": { "description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options", "items": { "type": "string" }, "type": "array" }, "nfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource", "description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "nodeAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeNodeAffinity", "description": "NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume." }, "persistentVolumeReclaimPolicy": { "description": "What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming", "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource", "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource", "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "quobyte": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDPersistentVolumeSource", "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOPersistentVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "storageClassName": { "description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.", "type": "string" }, "storageos": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource", "description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md" }, "volumeMode": { "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.", "type": "string" }, "vsphereVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": { "description": "Represents a Photon Controller persistent disk resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "pdID": { "description": "ID that identifies Photon Controller persistent disk", "type": "string" } }, "required": [ "pdID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": { "description": "PortworxVolumeSource represents a Portworx volume resource.", "properties": { "fsType": { "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "volumeID": { "description": "VolumeID uniquely identifies a Portworx volume", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": { "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", "properties": { "group": { "description": "Group to map volume access to Default is no group", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", "type": "boolean" }, "registry": { "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", "type": "string" }, "tenant": { "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", "type": "string" }, "user": { "description": "User to map volume access to Defaults to serivceaccount user", "type": "string" }, "volume": { "description": "Volume is a string that references an already created Quobyte volume by name.", "type": "string" } }, "required": [ "registry", "volume" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDPersistentVolumeSource": { "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "pool": { "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors", "image" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOPersistentVolumeSource": { "description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"", "type": "string" }, "gateway": { "description": "The host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { "description": "The name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." }, "sslEnabled": { "description": "Flag to enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { "description": "The ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { "description": "The name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } }, "required": [ "gateway", "system", "secretRef" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference": { "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace", "properties": { "name": { "description": "Name is unique within a namespace to reference a secret resource.", "type": "string" }, "namespace": { "description": "Namespace defines the space within which the secret name must be unique.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference", "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." }, "volumeName": { "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeNodeAffinity": { "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.", "properties": { "required": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector", "description": "Required specifies hard node constraints that must be met." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": { "description": "Represents a vSphere volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "storagePolicyID": { "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": "string" }, "storagePolicyName": { "description": "Storage Policy Based Management (SPBM) profile name.", "type": "string" }, "volumePath": { "description": "Path that identifies vSphere volume vmdk", "type": "string" } }, "required": [ "volumePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1alpha1_VolumeAttachmentSource": { "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", "properties": { "inlineVolumeSpec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeSpec", "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature." }, "persistentVolumeName": { "description": "Name of the persistent volume to attach.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1alpha1_VolumeAttachmentSpec": { "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", "properties": { "attacher": { "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", "type": "string" }, "nodeName": { "description": "The node that the volume should be attached to.", "type": "string" }, "source": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1alpha1_VolumeAttachmentSource", "description": "Source represents the volume that should be attached." } }, "required": [ "attacher", "source", "nodeName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1alpha1_VolumeAttachmentStatus": { "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", "properties": { "attachError": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1alpha1_VolumeError", "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher." }, "attached": { "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", "type": "boolean" }, "attachmentMetadata": { "additionalProperties": { "type": "string" }, "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", "type": "object" }, "detachError": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1alpha1_VolumeError", "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher." } }, "required": [ "attached" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1alpha1_VolumeError": { "description": "VolumeError captures an error encountered during a volume operation.", "properties": { "message": { "description": "String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time the error was encountered." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "storage.k8s.io/v1alpha1" ], "type": [ "string", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "VolumeAttachment" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1alpha1_VolumeAttachmentSpec", "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system." }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1alpha1_VolumeAttachmentStatus", "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher." } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "VolumeAttachment", "version": "v1alpha1" } ] }
kb_1106_Normalized
{ "description": "Schema definition of a set of sprites for a pokemon", "properties": { "back_default": { "format": "url", "type": "string" }, "back_female": { "format": "url", "type": "string" }, "back_shiny": { "format": "url", "type": "string" }, "back_shiny_female": { "format": "url", "type": "string" }, "front_default": { "format": "url", "type": "string" }, "front_female": { "format": "url", "type": "string" }, "front_shiny": { "format": "url", "type": "string" }, "front_shiny_female": { "format": "url", "type": "string" } }, "required": [], "title": "sprites", "type": "object" }
o53017
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "http://example.com/schemas/Around.json", "type": "object", "definitions": { "ThingOne": { "type": "object", "properties": { "redFish": { "type": "string" } } }, "ThingTwo": { "type": "object", "properties": { "blueFish": { "type": "string" } } } }, "properties": { "thing": { "allOf": [ { "oneOf": [ { "$ref": "#/definitions/ThingOne" }, { "$ref": "#/definitions/ThingTwo" } ] }, { "properties": { "discriminator": { "enum": [ "ThingOne", "ThingTwo" ] } } } ] } } }
o58632
{ "properties": { "message": { "enum": [ "acknowledged" ] } }, "type": "object" }
o36645
{ "definitions": { "image": { "additionalProperties": false, "properties": { "purpose": { "default": "image", "enum": [ "image", "profile_image", "icon" ], "type": "string" }, "ref": { "maxLength": 2000, "type": [ "string", "null" ] } }, "type": "object" } }, "description": "Base images definitions", "title": "images", "properties": { "image": { "$ref": "#/definitions/image" } }, "required": [ "image" ] }
o55173
{ "properties": { "from_unit": { "description": "The unit of the provided temperature value", "enum": [ "Celsius", "Fahrenheit", "Kelvin" ], "type": "string" }, "to_unit": { "description": "The unit to convert the temperature value to", "enum": [ "Celsius", "Fahrenheit", "Kelvin" ], "type": "string" }, "value": { "description": "The temperature value to be converted", "type": "number" } }, "required": [ "value", "from_unit", "to_unit" ], "type": "object" }
convert_temperature_33a6db10
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "", "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkThumbHeight": { "type": "number" }, "bookmarkThumbWidth": { "type": "number" }, "leftPanelEnabled": { "type": "boolean" }, "limitLocales": { "type": "boolean" }, "minWidthBreakPoint": { "type": "number" }, "openTemplate": { "type": "string", "minLength": 1 }, "pessimisticAccessControl": { "type": "boolean" }, "rightPanelEnabled": { "type": "boolean" }, "theme": { "type": "string", "minLength": 1 } }, "required": [ "bookmarkThumbHeight", "bookmarkThumbWidth", "leftPanelEnabled", "limitLocales", "minWidthBreakPoint", "openTemplate", "pessimisticAccessControl", "rightPanelEnabled", "theme" ] }, "modules": { "type": "object", "properties": { "embedDialogue": { "type": "object", "properties": { "options": { "type": "object", "properties": { "embedTemplate": { "type": "string", "minLength": 1 } }, "required": [ "embedTemplate" ] }, "content": { "type": "object", "properties": { "customSize": { "type": "string", "minLength": 1 }, "height": { "type": "string", "minLength": 1 }, "instructions": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "width": { "type": "string", "minLength": 1 } }, "required": [ "customSize", "height", "instructions", "title", "width" ] } }, "required": [ "options", "content" ] }, "footerPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkEnabled": { "type": "boolean" }, "feedbackEnabled": { "type": "boolean" }, "minimiseButtons": { "type": "boolean" }, "openEnabled": { "type": "boolean" } }, "required": [ "bookmarkEnabled", "feedbackEnabled", "minimiseButtons", "openEnabled" ] }, "content": { "type": "object", "properties": { "bookmark": { "type": "string", "minLength": 1 }, "download": { "type": "string", "minLength": 1 }, "embed": { "type": "string", "minLength": 1 }, "exitFullScreen": { "type": "string", "minLength": 1 }, "fullScreen": { "type": "string", "minLength": 1 }, "open": { "type": "string", "minLength": 1 } }, "required": [ "bookmark", "download", "embed", "exitFullScreen", "fullScreen", "open" ] } }, "required": [ "options", "content" ] }, "genericDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "ok": { "type": "string", "minLength": 1 } }, "required": [ "ok" ] } }, "required": [ "content" ] }, "headerPanel": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 }, "help": { "type": "string", "minLength": 1 } }, "required": [ "close", "help" ] } }, "required": [ "content" ] }, "helpDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "text": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "text", "title" ] } }, "required": [ "content" ] }, "mediaelementCenterPanel": { "type": "object", "properties": { "defaultHeight": { "type": "number" }, "defaultWidth": { "type": "number" }, "content": { "type": "object", "properties": {}, "required": [] } }, "required": [ "defaultHeight", "defaultWidth", "content" ] }, "moreInfoRightPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "canvasExclude": { "type": "string" }, "displayOrder": { "type": "string" }, "manifestExclude": { "type": "string" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" } }, "required": [ "canvasExclude", "displayOrder", "manifestExclude", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth" ] }, "content": { "type": "object", "properties": { "attribution": { "type": "string", "minLength": 1 }, "collapse": { "type": "string", "minLength": 1 }, "collapseFull": { "type": "string", "minLength": 1 }, "description": { "type": "string", "minLength": 1 }, "expand": { "type": "string", "minLength": 1 }, "expandFull": { "type": "string", "minLength": 1 }, "holdingText": { "type": "string", "minLength": 1 }, "less": { "type": "string", "minLength": 1 }, "license": { "type": "string", "minLength": 1 }, "logo": { "type": "string", "minLength": 1 }, "more": { "type": "string", "minLength": 1 }, "noData": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "attribution", "collapse", "collapseFull", "description", "expand", "expandFull", "holdingText", "less", "license", "logo", "more", "noData", "title" ] } }, "required": [ "options", "content" ] }, "contentLeftPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "elideCount": { "type": "number" }, "galleryThumbHeight": { "type": "number" }, "galleryThumbWidth": { "type": "number" }, "oneColThumbHeight": { "type": "number" }, "oneColThumbWidth": { "type": "number" }, "pageModeEnabled": { "type": "boolean" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" }, "thumbsEnabled": { "type": "boolean" }, "thumbsExtraHeight": { "type": "number" }, "thumbsImageFadeInDuration": { "type": "number" }, "thumbsLoadRange": { "type": "number" }, "treeEnabled": { "type": "boolean" }, "twoColThumbHeight": { "type": "number" }, "twoColThumbWidth": { "type": "number" } }, "required": [ "elideCount", "galleryThumbHeight", "galleryThumbWidth", "oneColThumbHeight", "oneColThumbWidth", "pageModeEnabled", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "thumbsEnabled", "thumbsExtraHeight", "thumbsImageFadeInDuration", "thumbsLoadRange", "treeEnabled", "twoColThumbHeight", "twoColThumbWidth" ] } }, "required": [ "options" ] }, "dialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 } }, "required": [ "close" ] } }, "required": [ "content" ] }, "downloadDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "download": { "type": "string", "minLength": 1 }, "entireFileAsOriginal": { "type": "string", "minLength": 1 }, "noneAvailable": { "type": "string", "minLength": 1 }, "preview": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "download", "entireFileAsOriginal", "noneAvailable", "preview", "title" ] } }, "required": [ "content" ] }, "loginDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "login": { "type": "string", "minLength": 1 }, "cancel": { "type": "string", "minLength": 1 } }, "required": [ "login", "cancel" ] } }, "required": [ "content" ] }, "settingsDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "locale": { "type": "string", "minLength": 1 }, "pagingEnabled": { "type": "string", "minLength": 1 }, "preserveViewport": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "website": { "type": "string", "minLength": 1 } }, "required": [ "locale", "pagingEnabled", "preserveViewport", "title", "website" ] } }, "required": [ "content" ] } }, "required": [ "embedDialogue", "footerPanel", "genericDialogue", "headerPanel", "helpDialogue", "mediaelementCenterPanel", "moreInfoRightPanel", "contentLeftPanel", "dialogue", "downloadDialogue", "loginDialogue", "settingsDialogue" ] }, "localisation": { "type": "object", "properties": { "label": { "type": "string", "minLength": 1 }, "locales": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "name", "label" ], "properties": { "name": { "type": "string", "minLength": 1 }, "label": { "type": "string", "minLength": 1 } } } } }, "required": [ "label", "locales" ] }, "content": { "type": "object", "properties": { "authCORSError": { "type": "string", "minLength": 1 }, "authorisationFailedMessage": { "type": "string", "minLength": 1 }, "degradedResourceMessage": { "type": "string", "minLength": 1 }, "degradedResourceLogin": { "type": "string", "minLength": 1 }, "forbiddenResourceMessage": { "type": "string", "minLength": 1 } }, "required": [ "authCORSError", "authorisationFailedMessage", "degradedResourceMessage", "degradedResourceLogin", "forbiddenResourceMessage" ] } }, "required": [ "options", "modules", "localisation", "content" ] }
o66711
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "The JSON schema that matches an album product.", "id": "https://mastert.github.io/bandcamp-scraper/schemas/album-product.json", "properties": { "artist": { "type": "string" }, "currency": { "oneOf": [ { "type": "null" }, { "maxLength": 3, "minLength": 3, "type": "string" } ] }, "description": { "type": "string" }, "format": { "type": "string" }, "imageUrls": { "items": { "_format": "uri", "type": "string" }, "type": "array" }, "name": { "type": "string" }, "nameYourPrice": { "type": "boolean" }, "offerMore": { "type": "boolean" }, "priceInCents": { "oneOf": [ { "type": "null" }, { "minimum": 0, "type": "integer" } ] }, "soldOut": { "type": "boolean" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "name", "artist", "format", "url", "imageUrls", "priceInCents", "currency", "description", "soldOut", "nameYourPrice", "offerMore" ], "title": "album-product", "type": "object" }
o58928
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "authors": { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "object", "properties": { "name": { "type": "string" }, "email": { "type": "string", "format": "email" } }, "required": [ "name" ] } }, "license": { "type": "string" }, "title": { "type": "string" }, "description": { "type": "string" } } }
o78064
{ "title": "Test Object", "properties": { "my__Custom_Relationship__r": { "type": "array", "foreignKey": "vera__Test_Event__c", "sObject": "my__Custom_Object__c" } }, "type": "object", "$schema": "http://json-schema.org/draft-04/schema#" }
o12345
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://sharphosting.uk/schemas/sites", "title": "Sites", "description": "Schema for data describing web server configurations.", "type": "object", "properties": { "web_server": { "type": "object", "properties": { "type": { "type": "string", "pattern": "^[a-z]([a-z0-9_-]*[a-z])?$" }, "user": { "type": "string" }, "group": { "type": "string" } }, "required": [ "type", "user", "group" ], "additionalProperties": false }, "directory_structure": { "type": "object", "properties": { "user": { "type": "string" }, "group": { "type": "string" }, "d_mode": { "type": "string", "pattern": "^[0-7]{3,4}$" }, "f_mode": { "type": "string", "pattern": "^[0-7]{3,4}$" }, "directories": { "type": "object", "patternProperties": { "^[^/ ]+$": { "title": "Directory", "type": "object", "properties": { "allow_specials": { "type": "boolean" }, "user": { "type": "string" }, "group": { "type": "string" }, "d_mode": { "type": "string", "pattern": "^[0-7]{3,4}$" }, "f_mode": { "type": "string", "pattern": "^[0-7]{3,4}$" }, "optional": { "type": "string", "pattern": "^[a-z]([a-z0-9_-]*[a-z])?$" }, "optional_default": { "type": "boolean" }, "contents": { "user": { "type": "string" }, "group": { "type": "string" }, "d_mode": { "type": "string", "pattern": "^[0-7]{3,4}$" }, "f_mode": { "type": "string", "pattern": "^[0-7]{3,4}$" } } }, "additionalProperties": false, "dependencies": { "optional_default": [ "optional" ] } } }, "additionalProperties": false } }, "required": [ "user", "group", "d_mode", "f_mode", "directories" ], "additionalProperties": false }, "site_types": { "type": "object", "patternProperties": { "^[a-z]([a-z0-9_-]*[a-z])?$": { "title": "Site Type", "type": "object", "properties": { "temp_dirs": { "type": "array", "items": { "type": "string", "pattern": "^(/[^/ ]+)+$" } }, "world_writable_dirs": { "type": "array", "items": { "type": "string", "pattern": "^(/[^/ ]+)+$" } }, "read_only_files": { "type": "array", "items": { "type": "string", "pattern": "^(/[^/ ]+)+$" } }, "server_owned_files": { "type": "array", "items": { "type": "string", "pattern": "^(/[^/ ]+)+$" } }, "ignore_permissions": { "type": "array", "items": { "type": "string", "pattern": "^(/[^/ ]+)+/?$" } }, "options": { "type": "object", "patternProperties": { "^[a-z]([a-z0-9_-]*[a-z])?$": { "type": "boolean" } }, "additionalProperties": false } }, "additionalProperties": false } }, "additionalProperties": false }, "sites": { "type": "object", "patternProperties": { "^(/[^/ ]+)+$": { "title": "Site Folder", "type": "object", "properties": { "user": { "type": "string" }, "type": { "type": "string" }, "temp_dirs": { "type": "array", "items": { "type": "string", "pattern": "^(/[^/ ]+)+$" } }, "world_writable_dirs": { "type": "array", "items": { "type": "string", "pattern": "^(/[^/ ]+)+$" } }, "read_only_files": { "type": "array", "items": { "type": "string", "pattern": "^(/[^/ ]+)+$" } }, "server_owned_files": { "type": "array", "items": { "type": "string", "pattern": "^(/[^/ ]+)+$" } }, "ignore_permissions": { "type": "array", "items": { "type": "string", "pattern": "^(/[^/ ]+)+/?$" } }, "options": { "type": "object", "patternProperties": { "^[a-z]([a-z0-9_-]*[a-z])?$": { "type": "boolean" } }, "additionalProperties": false } }, "required": [ "user", "type" ], "additionalProperties": false } }, "additionalProperties": false } }, "additionalProperties": false }
o75202
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": true, "description": "Schema for Oceanography measurement point documents", "id": "http://api.npolar.no/schema/oceanography_point-1.0.0", "properties": { "collection": { "description": "Collection type", "enum": [ "cast", "mooring" ], "type": "string" }, "comments": { "description": "Comments", "items": { "type": "string" }, "type": "array" }, "cruise": { "description": "Cruise identifier", "type": "string" }, "depth": { "description": "Measurement depth", "type": [ "number", "null" ] }, "direction_of_sea_water_velocity": { "description": "Degrees from north", "maximum": 360, "minimum": 0, "type": [ "number", "null" ] }, "eastward_sea_water_velocity": { "description": "Eastward sea water velocity in m/s", "maximum": 10, "minimum": -10, "type": [ "number", "null" ] }, "id": { "description": "UUID of this doc", "type": "string" }, "instrument_type": { "description": "Instrument type", "type": "string" }, "latitude": { "description": "Location latitude in WGS-84", "maximum": 90, "minimum": -90, "type": "number" }, "longitude": { "description": "Location longitude in WGS-84", "maximum": 180, "minimum": -180, "type": "number" }, "measured": { "_format": "date-time", "description": "Date and time of measurement serie", "type": "string" }, "mooring": { "description": "Mooring id", "type": [ "string", "null" ] }, "northward_sea_water_velocity": { "description": "Northward sea water velocity in m/s", "maximum": 10, "minimum": -10, "type": [ "number", "null" ] }, "original_station": { "description": "Station identifier", "type": "string" }, "platform": { "description": "Platform from which the instrument was deployed. Example: RV Lance, sea-ice", "type": [ "string", "null" ] }, "schema": { "_format": "uri", "description": "Oceanography json schema uri", "type": "string" }, "sea_floor_depth_below_sea_surface": { "description": "Sea depth", "type": [ "number", "null" ] }, "sea_water_electrical_conductivity": { "description": "Conductivity in Siemens per meter (S/m)", "maximum": 10, "minimum": 0, "type": [ "number", "null" ] }, "sea_water_pressure": { "description": "Pressure in decibar", "maximum": 5000, "minimum": 0, "type": [ "number", "null" ] }, "sea_water_salinity": { "description": "Salinity in particle salinity units (PSU) PPS-78", "maximum": 45, "minimum": 0, "type": [ "number", "null" ] }, "sea_water_temperature": { "description": "Temperature in degrees Celsius ITS-90", "maximum": 50, "minimum": -5, "type": [ "number", "null" ] }, "serial_number": { "description": "Instrument serial number", "type": "string" }, "station": { "description": "Station identifier", "type": "string" }, "tilt": { "description": "Instrument tilt in degrees", "maximum": 360, "minimum": 0, "type": "number" } }, "required": [ "collection", "longitude", "latitude", "id", "measured", "schema" ], "title": "Oceanography measurement point Schema", "type": "object" }
o64540
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "pets": { "type": "object", "properties": { "dog": { "type": "array", "items": { "type": "string" }, "minItems": 4, "maxItems": 42 } }, "required": [ "dog" ] } }, "properties": { "pets": { "$ref": "#/definitions/pets" } }, "required": [ "pets" ] }
o41693
{ "properties": { "base": { "description": "The base of the triangle (if shape is triangle)", "type": "number" }, "height": { "description": "The height of the triangle (if shape is triangle)", "type": "number" }, "length": { "description": "The length of the rectangle (if shape is rectangle)", "type": "number" }, "radius": { "description": "The radius of the circle (if shape is circle)", "type": "number" }, "shape": { "description": "The type of shape", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "The width of the rectangle (if shape is rectangle)", "type": "number" } }, "type": "object" }
calculate_area_5015edb3
{ "id": "http://schemas.gdbots.io/json-schema/gdbots/forms/mixin/field/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string", "pattern": "^[a-zA-Z_]{1}[\\w-]*$", "description": "A unique identifier (within the form) for the field. This value is not shown to the user and should NOT change once set." }, "maps_to": { "type": "string", "default": "cf", "pattern": "^[a-zA-Z_]{1}\\w*$", "description": "The name of the schema field the answer will map to. By default this will go to the \"cf\" field which is a \"dynamic-field\" list containing all answers filled out on the form (ref \"gdbots:forms:mixin:send-submission\")." }, "label": { "type": "string", "minLength": 0, "maxLength": 255, "description": "The main text for the question/field." }, "placeholder": { "type": "string", "minLength": 0, "maxLength": 255 }, "description": { "type": "string", "minLength": 0, "maxLength": 65535, "description": "A short description to better explain this field." }, "is_required": { "type": "boolean" } }, "required": [ "name" ], "additionalProperties": true }
o42606
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string" }, "price": { "type": "number", "minimum": 0 }, "tags": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "name", "price" ] }
o19359
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "version": { "type": "string", "minLength": 1, "maxLength": 255 }, "notes": { "type": "string", "maxLength": 32767 }, "enabled": { "type": "boolean" }, "triggers": { "type": "array", "items": { "oneOf": [ { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "customNodeStart", "deviceCommand", "deviceIdConnect", "deviceTagConnect", "deviceIdDisconnect", "deviceTagDisconnect", "integration", "notebook", "onBoot", "onConnect", "onDisconnect", "request", "udp", "webhook" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "customNodeStart", "deviceCommand", "deviceIdsTagsConnect", "deviceIdsTagsDisconnect", "flowError", "googlePubSub", "meridian", "mqtt", "notebook", "onBoot", "onConnect", "onDisconnect", "particle", "request", "udp", "webhook" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "triggerId": { "type": "string", "maxLength": 48 }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "dataTable" ] }, "config": { "type": "object", "properties": { "bulkInsert": { "type": "boolean" }, "delete": { "type": "boolean" }, "insert": { "type": "boolean" }, "update": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "dataTable" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "deviceId", "deviceTag" ] }, "config": { "type": "object", "properties": { "attributeBlacklist": { "type": "array", "maxItems": 100, "items": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" } }, "attributeWhitelist": { "type": "array", "maxItems": 100, "items": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" } }, "maxAge": { "type": "number" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "deviceIdsTags", "device", "deviceTag" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "timeUnit": { "type": "string", "maxLength": 48 }, "maxAgeToggle": { "type": "boolean" }, "allowedAttributeType": { "type": "string", "enum": [ "attributeWhitelist", "any", "attributeBlacklist" ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "deviceIdInactivity", "deviceTagInactivity" ] }, "config": { "type": "object", "properties": { "seconds": { "type": "number" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "deviceIdsTagsInactivity" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "endpoint" ] }, "config": { "type": "object", "properties": { "experienceVersion": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "endpoint" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "event" ] }, "config": { "type": "object", "properties": { "subject": { "type": "string", "maxLength": 255 }, "new": { "type": "boolean" }, "acknowledged": { "type": "boolean" }, "resolved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "event" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "fileTail" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "encoding": { "type": "string", "maxLength": 48 }, "byteLength": { "type": "string", "maxLength": 48 }, "delimiter": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "fileTail" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "fileWatch" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "fileAdded": { "type": "boolean" }, "fileChanged": { "type": "boolean" }, "fileRemoved": { "type": "boolean" }, "directoryAdded": { "type": "boolean" }, "directoryRemoved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "fileWatch" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "flowError" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "flowError" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "mqttTopic" ] }, "config": { "type": "object", "properties": { "integrationId": { "type": "string", "enum": [ "losant", "local" ] } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "mqtt" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "triggerId": { "type": "string", "maxLength": 48 }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "opcua" ] }, "config": { "type": "object", "properties": { "uri": { "type": "string", "maxLength": 1024 }, "securityPolicy": { "type": "string", "maxLength": 255 }, "securityMode": { "type": "string", "maxLength": 255 }, "username": { "type": "string", "maxLength": 1024 }, "password": { "type": "string", "maxLength": 1024 }, "cert": { "type": "string", "maxLength": 32767 }, "privateKey": { "type": "string", "maxLength": 32767 }, "nameSpace": { "type": "string", "maxLength": 255 }, "identifier": { "type": "string", "maxLength": 255 }, "samplingInterval": { "type": "string", "maxLength": 255 }, "eventFilter": { "type": "array", "maxItems": 100, "items": { "type": "string", "maxLength": 255 } } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "opcua" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "redis" ] }, "config": { "type": "object", "properties": { "host": { "type": "string", "maxLength": 1024 }, "port": { "type": "string", "maxLength": 16 }, "password": { "type": "string", "maxLength": 1024 }, "topic": { "type": "string", "maxLength": 1024 }, "fileAdded": { "type": "boolean" }, "fileChanged": { "type": "boolean" }, "fileRemoved": { "type": "boolean" }, "directoryAdded": { "type": "boolean" }, "directoryRemoved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "redisTrigger" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "serial" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "baudRate": { "type": "number" }, "encoding": { "type": "string", "maxLength": 48 }, "writeOnOpen": { "type": "string", "maxLength": 1024 }, "byteLength": { "type": "string", "maxLength": 48 }, "delimiter": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "serial" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "parseBy": { "type": "string", "enum": [ "byteLength", "delimiter" ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "timer" ] }, "config": { "type": "object", "properties": { "seconds": { "type": "number" }, "cron": { "type": "string", "maxLength": 255 }, "tz": { "type": "string", "maxLength": 255 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "timer" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "timerTypeSelect": { "type": "string", "enum": [ "cronWeekly", "seconds", "cron" ] }, "timeAt": { "type": "string", "maxLength": 255 }, "timezone": { "type": "string", "maxLength": 255 }, "weekdays": { "type": "array", "maxItems": 7, "items": { "type": "number" } } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "virtualButton" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "virtualButton" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "groupId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "payload": { "type": "string", "maxLength": 262144 }, "deviceId": { "oneOf": [ { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, { "type": "string", "enum": [ "" ] }, { "type": "null" } ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false } ] } }, "nodes": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "minLength": 1, "maxLength": 1024 }, "config": { "type": "object" }, "meta": { "type": "object" }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "additionalProperties": false, "required": [ "type" ] } }, "globals": { "type": "array", "maxItems": 100, "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "json": { "type": "string", "minLength": 1, "maxLength": 32767 } }, "additionalProperties": false, "required": [ "key", "json" ] } }, "minimumAgentVersion": { "type": "string", "pattern": "^(0|([1-9]\\d*))\\.(0|([1-9]\\d*))\\.(0|([1-9]\\d*))$" }, "customNodeConfig": { "type": "object", "properties": { "outputCount": { "type": "number", "enum": [ 1, 2 ] }, "resultMode": { "type": "string", "enum": [ "optional", "required", "none" ] }, "resultDescription": { "type": "string", "maxLength": 32767 }, "fields": { "type": "array", "maxItems": 100, "items": { "oneOf": [ { "type": "object", "properties": { "type": { "type": "string", "enum": [ "checkbox" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "select" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "minLength": 1, "maxLength": 1024 }, "options": { "type": "array", "minItems": 1, "maxItems": 100, "items": { "type": "object", "properties": { "label": { "type": "string", "maxLength": 1024 }, "value": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "additionalProperties": false, "required": [ "value" ] } } }, "additionalProperties": false, "required": [ "type", "label", "defaultValue", "options" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "stringTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "maxLength": 1024 }, "required": { "type": "boolean" }, "validRegExp": { "type": "string", "maxLength": 1024 } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "numberTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "number" }, "required": { "type": "boolean" }, "validMin": { "type": "number" }, "validMax": { "type": "number" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "jsonTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "maxLength": 32767 }, "required": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "payloadPath" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "required": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "section" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 } }, "additionalProperties": false, "required": [ "type", "label" ] } ] } } }, "additionalProperties": false, "required": [ "outputCount", "resultMode", "fields" ] } }, "additionalProperties": false, "required": [ "version" ] }
o9913
{ "properties": { "check_in_date": { "description": "The check-in date", "type": "string" }, "check_out_date": { "description": "The check-out date", "type": "string" }, "location": { "description": "The location to search for hotels", "type": "string" }, "price_range": { "properties": { "max_price": { "description": "The maximum price range", "type": "number" }, "min_price": { "description": "The minimum price range", "type": "number" } }, "type": "object" } }, "required": [ "location", "check_in_date", "check_out_date" ], "type": "object" }
search_hotels_9b0d362c
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySelectorLabelRequirement": { "description": "A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "values": { "description": "An array of string values. One value must match the label to be selected. Each entry in Values is ORed.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "values" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySelectorTerm": { "description": "A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future.", "properties": { "matchLabelExpressions": { "description": "A list of topology selector requirements by labels.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySelectorLabelRequirement" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.", "properties": { "allowVolumeExpansion": { "description": "AllowVolumeExpansion shows whether the storage class allow volume expand", "type": [ "boolean", "null" ] }, "allowedTopologies": { "description": "Restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySelectorTerm" }, "type": [ "array", "null" ] }, "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "storage.k8s.io/v1" ], "type": [ "string", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "StorageClass" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "mountOptions": { "description": "Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "parameters": { "additionalProperties": { "type": [ "string", "null" ] }, "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.", "type": [ "object", "null" ] }, "provisioner": { "description": "Provisioner indicates the type of the provisioner.", "type": [ "string", "null" ] }, "reclaimPolicy": { "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.", "type": [ "string", "null" ] }, "volumeBindingMode": { "description": "VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.", "type": [ "string", "null" ] } }, "required": [ "provisioner" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "StorageClass", "version": "v1" } ] }
kb_1026_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/service" } }, "definitions": { "service": { "type": "object", "properties": { "build": { "type": "string" }, "cap_add": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "cap_drop": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "cgroup_parent": { "type": "string" }, "command": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "container_name": { "type": "string" }, "cpu_shares": { "type": [ "number", "string" ] }, "cpuset": { "type": "string" }, "devices": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "dns": { "$ref": "#/definitions/string_or_list" }, "dns_search": { "$ref": "#/definitions/string_or_list" }, "dockerfile": { "type": "string" }, "domainname": { "type": "string" }, "entrypoint": { "$ref": "#/definitions/string_or_list" }, "env_file": { "$ref": "#/definitions/string_or_list" }, "environment": { "oneOf": [ { "type": "object", "patternProperties": { "^[^-]+$": { "type": [ "string", "number", "boolean" ], "format": "environment" } }, "additionalProperties": false }, { "type": "array", "items": { "type": "string" }, "_uniqueItems": true } ] }, "expose": { "type": "array", "items": { "type": [ "string", "number" ] }, "_uniqueItems": true }, "extends": { "type": "object", "properties": { "service": { "type": "string" }, "file": { "type": "string" } }, "required": [ "service" ], "additionalProperties": false }, "extra_hosts": { "$ref": "#/definitions/list_or_dict" }, "external_links": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "hostname": { "type": "string" }, "image": { "type": "string" }, "ipc": { "type": "string" }, "labels": { "$ref": "#/definitions/list_or_dict" }, "links": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "log_driver": { "type": "string" }, "log_opt": { "type": "object" }, "mac_address": { "type": "string" }, "mem_limit": { "type": [ "number", "string" ] }, "memswap_limit": { "type": [ "number", "string" ] }, "name": { "type": "string" }, "net": { "type": "string" }, "pid": { "type": [ "string", "null" ] }, "ports": { "type": "array", "items": { "oneOf": [ { "type": "string", "format": "ports" }, { "type": "number", "format": "ports" } ] }, "_uniqueItems": true }, "privileged": { "type": "boolean" }, "read_only": { "type": "boolean" }, "restart": { "type": "string" }, "security_opt": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "stdin_open": { "type": "boolean" }, "tty": { "type": "boolean" }, "user": { "type": "string" }, "volumes": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "volume_driver": { "type": "string" }, "volumes_from": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "working_dir": { "type": "string" } }, "dependencies": { "memswap_limit": [ "mem_limit" ] }, "additionalProperties": false }, "string_or_list": { "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/list_of_strings" } ] }, "list_of_strings": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "list_or_dict": { "oneOf": [ { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, { "type": "object" } ] } }, "additionalProperties": false }
o61423
{ "$schema": "http://json-schema.org/draft-06/schema#", "version": "1.0.0", "type": "object", "properties": { "variant": { "type": "array", "_uniqueItems": true, "items": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "entries": { "type": "array", "items": { "properties": {} } }, "requires": { "type": "object", "properties": { "ammunition": { "type": "boolean" }, "armor": { "type": "boolean" }, "axe": { "type": "boolean" }, "sword": { "type": "boolean" }, "weapon": { "type": "boolean" }, "dmgType": { "type": "string" }, "name": { "type": "string" }, "type": { "type": "string" } }, "additionalProperties": false }, "inherits": { "type": "object", "properties": { "genericBonus": { "type": "string" }, "tier": { "type": "string" }, "rarity": { "type": "string" }, "source": { "type": "string" }, "page": { "type": "string" }, "namePrefix": { "type": "string" }, "nameSuffix": { "type": "string" }, "reqAttune": { "type": "string" }, "resist": { "type": "string" }, "stealth": { "type": "boolean" }, "entries": { "type": "array", "items": { "properties": {} } }, "modifier": { "type": "array", "items": { "type": "object", "properties": { "_category": { "type": "string" }, "__text": { "type": "string" }, "toString": { "type": "array" } }, "required": [ "_category", "__text", "toString" ], "additionalProperties": false } } }, "required": [ "rarity", "source", "page" ], "additionalProperties": false }, "excludes": { "type": "object", "properties": { "name": { "type": "string" }, "page": { "type": "string" } }, "additionalProperties": false }, "noDisplay": { "type": "boolean" } }, "required": [ "name", "inherits" ], "additionalProperties": false } } }, "required": [ "variant" ], "additionalProperties": false }
o44947
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "JWhere Catalog", "description": "JWhere disk catalog", "type": "object", "properties": { "schema": { "enum": [ "http://schemas.io7m.com/jwhere" ] }, "schema-version": { "type": "string" }, "catalog": { "$ref": "#/definitions/catalog" } }, "required": [ "schema", "schema-version", "catalog" ], "additionalProperties": false, "definitions": { "catalog": { "description": "The root type of catalog data.", "type": "object", "properties": { "type": { "enum": [ "catalog" ] }, "catalog-disks": { "type": "array", "items": { "$ref": "#/definitions/disk" } } }, "required": [ "type", "catalog-disks" ], "additionalProperties": false }, "disk": { "description": "A single catalogued disk", "type": "object", "properties": { "type": { "enum": [ "disk" ] }, "disk-name": { "type": "string" }, "disk-size": { "type": "integer" }, "disk-id": { "type": "integer" }, "disk-filesystem-type": { "type": "string" }, "disk-filesystem-root": { "$ref": "#/definitions/directory" } }, "required": [ "type", "disk-name", "disk-size", "disk-id", "disk-filesystem-type", "disk-filesystem-root" ], "additionalProperties": false }, "file": { "description": "A file", "type": "object", "properties": { "type": { "enum": [ "file" ] }, "name": { "type": "string" }, "size": { "type": "integer" }, "owner": { "type": "string" }, "group": { "type": "string" }, "access-time": { "type": "string" }, "modification-time": { "type": "string" }, "creation-time": { "type": "string" }, "inode": { "type": "integer" }, "permissions": { "type": "string" }, "hash": { "$ref": "#/definitions/hash" } }, "required": [ "type", "name", "size", "owner", "group", "access-time", "modification-time", "creation-time", "inode", "permissions" ], "additionalProperties": false }, "hash": { "description": "A hash value", "type": "object", "properties": { "type": { "enum": [ "hash" ] }, "algorithm": { "type": "string" }, "value": { "type": "string" } }, "required": [ "type", "algorithm", "value" ], "additionalProperties": false }, "directory": { "description": "A directory", "type": "object", "properties": { "type": { "enum": [ "directory" ] }, "name": { "type": "string" }, "owner": { "type": "string" }, "group": { "type": "string" }, "access-time": { "type": "string" }, "modification-time": { "type": "string" }, "creation-time": { "type": "string" }, "inode": { "type": "integer" }, "permissions": { "type": "string" }, "entries": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/directory" }, { "$ref": "#/definitions/file" } ] } } }, "required": [ "type", "name", "owner", "group", "access-time", "modification-time", "creation-time", "inode", "permissions", "entries" ], "additionalProperties": false } } }
o48022
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/getSecurityInfo.result.scheme.json", "title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b getSecurityInfo", "description": "\u0421\u0445\u0435\u043c\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b getSecurityInfo", "type": "object", "definitions": { "Security": { "description": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u043e \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0443", "type": "object", "properties": { "code": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 code", "type": "string" }, "name": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 name", "type": "string" }, "short_name": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 short_name", "type": "string" }, "class_code": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 class_code", "type": "string" }, "class_name": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 class_name", "type": "string" }, "face_value": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 face_value", "type": "string" }, "face_unit": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 face_unit", "type": "string" }, "scale": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 scale", "type": "string" }, "mat_date": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 mat_date", "type": "string" }, "lot_size": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 lot_size", "type": "string" }, "isin_code": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 isin_code", "type": "string" }, "min_price_step": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 min_price_step", "type": "string" } } } }, "properties": { "security_info": { "$ref": "#/definitions/Security" } }, "additionalProperties": false }
o5254
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authorization_v1beta1_NonResourceAttributes": { "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface", "properties": { "path": { "description": "Path is the URL path of the request", "type": "string" }, "verb": { "description": "Verb is the standard HTTP verb", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authorization_v1beta1_ResourceAttributes": { "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface", "properties": { "group": { "description": "Group is the API Group of the Resource. \"*\" means all.", "type": "string" }, "name": { "description": "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.", "type": "string" }, "namespace": { "description": "Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces \"\" (empty) is defaulted for LocalSubjectAccessReviews \"\" (empty) is empty for cluster-scoped resources \"\" (empty) means \"all\" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview", "type": "string" }, "resource": { "description": "Resource is one of the existing resource types. \"*\" means all.", "type": "string" }, "subresource": { "description": "Subresource is one of the existing resource types. \"\" means none.", "type": "string" }, "verb": { "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", "type": "string" }, "version": { "description": "Version is the API Version of the Resource. \"*\" means all.", "type": "string" } }, "type": "object" } }, "description": "SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", "properties": { "extra": { "additionalProperties": { "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.", "type": [ "object", "null" ] }, "group": { "description": "Groups is the groups you're testing for.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "nonResourceAttributes": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authorization_v1beta1_NonResourceAttributes", "description": "NonResourceAttributes describes information for a non-resource access request" }, "resourceAttributes": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authorization_v1beta1_ResourceAttributes", "description": "ResourceAuthorizationAttributes describes information for a resource access request" }, "uid": { "description": "UID information about the requesting user.", "type": [ "string", "null" ] }, "user": { "description": "User is the user you're testing for. If you specify \"User\" but not \"Group\", then is it interpreted as \"What if User were not a member of any groups", "type": [ "string", "null" ] } }, "type": "object" }
kb_1046_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "top level oneOf object", "type": "array", "items": { "oneOf": [ { "properties": { "firstName": { "type": "string" }, "lastName": { "type": "string" }, "sport": { "type": "string" } }, "required": [ "firstName" ] }, { "properties": { "vehicle": { "type": "string" }, "price": { "type": "integer" } }, "additionalProperties": false } ] } }
o58627
{ "id": "http://schemas.triniti.io/json-schema/triniti/common/render-context/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "_schema": { "type": "string", "pattern": "^pbj:([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+):([0-9]+-[0-9]+-[0-9]+)$", "default": "pbj:triniti:common::render-context:1-0-0" }, "cache_enabled": { "type": "boolean", "default": true, "pbj": { "type": "boolean", "rule": "single" } }, "cache_expiry": { "type": "integer", "default": 300, "minimum": 0, "maximum": 16777215, "description": "Number of seconds the rendered output can be cached, if the cache_enabled field is true. Zero means cache indefinitely.", "pbj": { "type": "medium-int", "rule": "single" } }, "container": { "type": "object", "description": "A message (e.g. article) where the rendering is taking place. This is used by some renderers when it needs data from the container or to generate urls.", "pbj": { "type": "message", "rule": "single" } }, "platform": { "type": "string", "default": "web", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255, "description": "The platform the rendering is happening in, e.g. web, amp, apple-news, facebook-instant-articles.", "pbj": { "type": "string", "rule": "single", "format": "slug" } }, "device_view": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single", "format": "slug" } }, "viewer_country": { "type": "string", "pattern": "^[A-Z]{2}$", "pbj": { "type": "string", "rule": "single" } }, "promotion_slot": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255, "description": "The promotion_slot the rendering is happening in, e.g. desktop-home-sidebar or smartphone-global-html-head.", "pbj": { "type": "string", "rule": "single", "format": "slug" } }, "section": { "type": "string", "pattern": "^[\\w-]+$", "description": "Refers to the location on the screen or application that the rendering is happening in, e.g. \"article-detail\", \"blogroll\", \"modal\", \"jumbotron\". Renderers can use this to customize the output.", "pbj": { "type": "string", "rule": "single" } }, "booleans": { "type": "object", "patternProperties": { "^[a-zA-Z_]{1}[\\w\\.:-]+$": { "type": "boolean" } }, "additionalProperties": false, "pbj": { "type": "boolean", "rule": "map" } }, "floats": { "type": "object", "patternProperties": { "^[a-zA-Z_]{1}[\\w\\.:-]+$": { "type": "number", "default": 0 } }, "additionalProperties": false, "pbj": { "type": "float", "rule": "map" } }, "ints": { "type": "object", "patternProperties": { "^[a-zA-Z_]{1}[\\w\\.:-]+$": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295 } }, "additionalProperties": false, "pbj": { "type": "int", "rule": "map" } }, "strings": { "type": "object", "patternProperties": { "^[a-zA-Z_]{1}[\\w\\.:-]+$": { "type": "string", "minLength": 0, "maxLength": 255 } }, "additionalProperties": false, "pbj": { "type": "string", "rule": "map" } }, "trinaries": { "type": "object", "patternProperties": { "^[a-zA-Z_]{1}[\\w\\.:-]+$": { "type": "integer", "default": 0, "minimum": 0, "maximum": 2 } }, "additionalProperties": false, "pbj": { "type": "trinary", "rule": "map" } } }, "required": [ "_schema" ], "additionalProperties": false }
o82726
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/RGB.args.scheme.json", "title": "\u0410\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u044b \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b RGB", "description": "\u0421\u0445\u0435\u043c\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u043a \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u043c\u0443 \u0432\u044b\u0437\u043e\u0432\u0443 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b RGB", "type": "object", "definitions": { "ColorComponent": { "description": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0446\u0432\u0435\u0442\u0430", "type": "integer", "minimum": 0, "maximum": 255 } }, "properties": { "red": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 red", "$ref": "#/definitions/ColorComponent" }, "green": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 green", "$ref": "#/definitions/ColorComponent" }, "blue": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 blue", "$ref": "#/definitions/ColorComponent" } }, "additionalProperties": false, "required": [ "red", "green", "blue" ] }
o5159
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "compilationOptions": { "title": "compilation options", "description": "[Deprecated] Options that are passed to the compiler. Use 'buildOptions' instead.", "type": "object", "properties": { "define": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "nowarn": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "warningsAsErrors": { "type": "boolean", "default": false }, "allowUnsafe": { "type": "boolean", "default": false }, "emitEntryPoint": { "type": "boolean", "default": false }, "optimize": { "type": "boolean", "default": false }, "platform": { "type": "string", "enum": [ "anycpu", "anycpu32bitpreferred", "ARM", "x86", "x64", "Itanium" ] }, "languageVersion": { "type": "string", "enum": [ "csharp1", "csharp2", "csharp3", "csharp4", "csharp5", "csharp6", "experimental" ] }, "keyFile": { "type": "string" }, "delaySign": { "type": "boolean", "default": false }, "publicSign": { "type": "boolean", "default": false }, "debugType": { "type": "string", "enum": ["portable", "full"] }, "preserveCompilationContext": { "type": "boolean", "description": "Set this option to preserve reference assemblies and other context data to allow for runtime compilation" }, "outputName": { "type": "string" } } }, "buildOptions": { "title": "build options", "description": "Options that are passed to the compiler.", "type": "object", "properties": { "define": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "nowarn": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "warningsAsErrors": { "type": "boolean", "default": false }, "allowUnsafe": { "type": "boolean", "default": false }, "emitEntryPoint": { "type": "boolean", "default": false }, "optimize": { "type": "boolean", "default": false }, "platform": { "type": "string", "enum": [ "anycpu", "anycpu32bitpreferred", "ARM", "x86", "x64", "Itanium" ] }, "languageVersion": { "type": "string", "enum": [ "csharp1", "csharp2", "csharp3", "csharp4", "csharp5", "csharp6", "experimental" ] }, "keyFile": { "type": "string" }, "delaySign": { "type": "boolean", "default": false }, "publicSign": { "type": "boolean", "default": false }, "debugType": { "type": "string", "enum": ["portable", "full", "none"] }, "preserveCompilationContext": { "type": "boolean", "description": "Set this option to preserve reference assemblies and other context data to allow for runtime compilation." }, "outputName": { "type": "string" }, "compilerName": { "type": "string", "default": "csc" }, "compile": { "description": "Defines glob patterns and file path to include for compilation.", "type": ["string", "array", "object"], "items": { "type": "string" }, "properties": { "include": { "type": ["string", "array"], "items": { "type": "string" }, "description": "List of file globbing patterns to be included." }, "exclude": { "type": ["string", "array"], "items": { "type": "string" }, "description": "List of file globbing patterns to be excluded." }, "includeFiles": { "type": ["string", "array"], "items": { "type": "string" }, "description": "List of file paths to be included." }, "excludeFiles": { "type": ["string", "array"], "items": { "type": "string" }, "description": "List of file paths to be excluded." }, "builtIns": { "type": ["string", "array", "object"], "items": { "type": "string" }, "properties": { "include": { "type": ["string", "array"], "items": { "type": "string" }, "description": "List of file globbing patterns to be included." }, "exclude": { "type": ["string", "array"], "items": { "type": "string" }, "description": "List of file globbing patterns to be included." } } }, "mappings": { "title": "mapping options", "type": "object", "description": "Pairs of destination folders and glob patterns specifying additional files to include/exclude." } } }, "embed": { "allOf": [ { "$ref": "#/definitions/buildOptions/properties/compile" }, { "description": "Defines glob patterns and file paths of resource files to include for compilation." } ] }, "copyToOutput": { "allOf": [ { "$ref": "#/definitions/buildOptions/properties/compile" }, { "description": "Defines glob patterns and file paths to include for copying to build output." } ] }, "xmlDoc": { "type": "boolean" }, "additionalArguments": { "type": "array", "items": { "type": "string" } } } }, "runtimeOptions": { "title": "runtime options", "type": "object", "properties": { "configProperties": { "title": "config options", "type": "object", "properties": { "System.GC.Server": { "type": "boolean", "description": "Enables/disables server garbage collection.", "default": false }, "System.GC.Concurrent": { "type": "boolean", "description": "Enables/disables concurrent garbage collection.", "default": true }, "System.GC.HeapCount": { "type": "integer", "minimum": 0, "description": "Limits the number of heaps created by the garbage collector." }, "System.GC.HeapAffinitizeMask": { "type": "integer", "minimum": 0, "description": "Specifies the exact processors that garbage collector threads should use." }, "System.GC.GCHeapAffinitizeRanges": { "type": "string", "minLength": 1, "description": "Specifies the list of processors to use for garbage collector threads." }, "System.GC.NoAffinitize": { "type": "boolean", "description": "Specifies whether to affinitize garbage collection threads with processors. To affinitize a GC thread means that it can only run on its specific CPU. A heap is created for each GC thread.", "default": false }, "System.GC.HeapHardLimit": { "type": "string", "description": "Specifies the maximum commit size, in bytes, for the GC heap and GC bookkeeping." }, "System.GC.HeapHardLimitPercent": { "type": "number", "description": "Specifies the GC heap usage as a percentage of the total memory." }, "System.GC.RetainVM": { "type": "boolean", "description": "Configures whether segments that should be deleted are put on a standby list for future use or are released back to the operating system (OS).", "default": false }, "System.GC.LOHThreshold": { "type": "integer", "description": "Specifies the threshold size, in bytes, that causes objects to go on the large object heap (LOH).", "default": 85000 }, "System.Threading.ThreadPool.MinThreads": { "type": "integer", "minimum": 1, "description": "Sets the minimum number of threads for the thread pool." }, "System.Threading.ThreadPool.MaxThreads": { "type": "integer", "minimum": 1, "description": "Sets the maximum number of threads for the thread pool." } } }, "framework": { "title": "framework options", "description": "Properties of the shared framework to use when activating the application.", "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" } } }, "applyPatches": { "description": "Determines if the framework version is strictly obeyed by the host.", "type": "boolean" } } }, "packOptions": { "title": "pack options", "description": "Defines options pertaining to the packaging of the project output into a NuGet package.", "type": "object", "properties": { "summary": { "description": "A short description of the package.", "type": "string" }, "tags": { "description": "A space-delimited list of tags and keywords that describe the package.", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "owners": { "description": "List of owners of the package.", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "releaseNotes": { "description": "A description of the changes made in each release of the package.", "type": "string" }, "iconUrl": { "description": "A URL for the image to use as the icon for the package. This should be a 32x32-pixel .png file that has a transparent background.", "type": "string" }, "licenseUrl": { "description": "A link to the license for the package.", "type": "string" }, "requireLicenseAcceptance": { "description": "A Boolean value that specifies whether the client needs to ensure that the package license (described by licenseUrl) is accepted before the package is installed.", "type": "boolean", "default": false }, "repository": { "title": "repository options", "type": "object", "description": "Contains information about the repository where the project is stored.", "properties": { "type": { "type": "string", "enum": ["git"], "default": "git" }, "url": { "type": "string", "format": "uri" } }, "additionalProperties": { "type": "string" } }, "files": { "allOf": [ { "$ref": "#/definitions/buildOptions/properties/compile" }, { "description": "Defines glob patterns and file paths to include in the generated NuGet package." } ] } } }, "publishOptions": { "allOf": [ { "$ref": "#/definitions/buildOptions/properties/compile" }, { "description": "Defines glob patterns and file paths to include in publish output." } ] }, "configType": { "title": "config options", "type": "object", "properties": { "dependencies": { "$ref": "#/definitions/dependencies" }, "compilationOptions": { "$ref": "#/definitions/compilationOptions" }, "buildOptions": { "$ref": "#/definitions/buildOptions" }, "frameworkAssemblies": { "$ref": "#/definitions/dependencies" }, "imports": { "type": ["string", "array"], "description": "Allow packages supporting these frameworks to be installed in this target, regardless of the compatibility rules.", "items": { "type": "string" } } } }, "libraryIncludeFlag": { "type": "string", "enum": [ "all", "runtime", "compile", "build", "contentFiles", "native", "analyzers", "none" ] }, "libraryIncludeFlags": { "oneOf": [ { "$ref": "#/definitions/libraryIncludeFlag" }, { "type": "array", "items": { "$ref": "#/definitions/libraryIncludeFlag" } } ] }, "dependencies": { "title": "dependency options", "type": "object", "additionalProperties": { "type": ["string", "object"], "properties": { "version": { "type": "string" }, "type": { "type": "string", "default": "default", "enum": ["default", "build", "platform"] }, "target": { "type": "string", "description": "Restrict this dependency to matching only a Project or a Package.", "enum": ["project", "package"] }, "include": { "$ref": "#/definitions/libraryIncludeFlags" }, "exclude": { "$ref": "#/definitions/libraryIncludeFlags" }, "suppressParent": { "$ref": "#/definitions/libraryIncludeFlags" } } }, "description": "Each dependency is defined by a name and a version. Dependencies are resolved from NuGet feeds defined by your package sources and projects located in the directories specified by the 'global.json' file." }, "script": { "type": ["string", "array"], "items": { "type": "string" }, "description": "A command line script or scripts.\r\rAvailable variables:\r%project:Directory% - The project directory\r%project:Name% - The project name\r%project:Version% - The project version" } }, "id": "https://json.schemastore.org/project.json", "properties": { "authors": { "description": "The author of the application.", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "packInclude": { "title": "path options", "description": "[Deprecated] Pairs of destination folders and glob patterns specifying additional files to include in the output NuGet package. (data type: JSON map). Example: { \"tools/\": \"tools/**/*.*\" }. Use 'files' in 'packOptions' instead.", "type": "object" }, "publishExclude": { "description": "[Deprecated] Glob pattern to specify files to exclude from publish output. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'publishOptions' instead.", "type": ["string", "array"], "items": { "type": "string" }, "default": ["obj/**/*.*", "bin/**/*.*", "**/.*/**"] }, "compile": { "description": "[Deprecated] Glob pattern to specify files to compile. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'compile' in 'buildOptions' instead.", "type": ["string", "array"], "items": { "type": "string" }, "default": "**/*.cs" }, "compileExclude": { "description": "[Deprecated] Glob pattern to specify files to exclude from compilation. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'compile' in 'buildOptions' instead.", "type": ["string", "array"], "items": { "type": "string" } }, "compileFiles": { "description": "[Deprecated] Files to include in compilation (overrides 'compileExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]. Use 'compile' in 'buildOptions' instead.", "type": ["string", "array"], "items": { "type": "string" } }, "content": { "description": "[Deprecated] Glob pattern to specify files to include as content. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'publishOptions' to publish or 'copyToOutput' in 'buildOptions' to copy to build output instead.", "type": ["string", "array"], "items": { "type": "string" }, "default": "**/*" }, "contentExclude": { "description": "[Deprecated] Glob pattern to specify files to exclude from the content list. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'publishOptions' to publish or 'copyToOutput' in 'buildOptions' to copy to build output instead.", "type": ["string", "array"], "items": { "type": "string" } }, "contentFiles": { "description": "[Deprecated] Files to include as content (overrides 'contentExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]. Use 'publishOptions' to publish or 'copyToOutput' in 'buildOptions' to copy to build output instead.", "type": ["string", "array"], "items": { "type": "string" } }, "preprocess": { "description": "Glob pattern to specify files to use for preprocessing. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]", "type": ["string", "array"], "items": { "type": "string" }, "default": "compiler/preprocess/**/*.cs" }, "preprocessExclude": { "description": "Glob pattern to specify files to exclude from use for preprocessing. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]", "type": ["string", "array"], "items": { "type": "string" } }, "preprocessFiles": { "description": "Files to include to use for preprocessing (overrides 'preprocessExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]", "type": ["string", "array"], "items": { "type": "string" } }, "resource": { "description": "[Deprecated] Glob pattern to specify files to include as resources. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'embed' in 'buildOptions' instead.", "type": ["string", "array"], "items": { "type": "string" }, "default": ["compiler/resources/**/*", "**/*.resx"] }, "resourceExclude": { "description": "[Deprecated] Glob pattern to specify files to exclude from the resources list. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'embed' in 'buildOptions' instead.", "type": ["string", "array"], "items": { "type": "string" } }, "resourceFiles": { "description": "[Deprecated] Files to include as resources (overrides 'resourceExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]. Use 'embed' in 'buildOptions' instead.", "type": ["string", "array"], "items": { "type": "string" } }, "shared": { "description": "Glob pattern to specify files to share with dependent projects. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]", "type": ["string", "array"], "items": { "type": "string" }, "default": "compiler/shared/**/*.cs" }, "sharedExclude": { "description": "Glob pattern to specify files to exclude from sharing with dependent projects. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]", "type": ["string", "array"], "items": { "type": "string" } }, "sharedFiles": { "description": "Files to include for sharing with dependent projects (overrides 'sharedExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]", "type": ["string", "array"], "items": { "type": "string" } }, "exclude": { "description": "[Deprecated] Glob pattern to indicate files to exclude from other glob patterns, in addition to the default patterns specified in 'excludeBuiltIn'. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'exclude' within 'compile' or 'embed' instead.", "type": ["string", "array"], "items": { "type": "string" } }, "excludeBuiltIn": { "description": "[Deprecated] Default glob pattern to indicate files to exclude from other glob patterns. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]. Use 'exclude' within 'compile' or 'embed' instead.", "type": ["string", "array"], "items": { "type": "string" }, "default": ["bin/**", "obj/**", "**/*.xproj"] }, "testRunner": { "description": "The name of the test runner to use with this project", "type": "string" }, "commands": { "title": "command options", "type": "object", "additionalProperties": { "type": "string" } }, "compilationOptions": { "$ref": "#/definitions/compilationOptions" }, "buildOptions": { "$ref": "#/definitions/buildOptions" }, "packOptions": { "$ref": "#/definitions/packOptions" }, "runtimeOptions": { "$ref": "#/definitions/runtimeOptions" }, "publishOptions": { "$ref": "#/definitions/publishOptions" }, "configurations": { "title": "configuration options", "type": "object", "description": "Configurations are named groups of compilation settings. There are two defaults built into the runtime: 'Debug' and 'Release'.", "additionalProperties": { "title": "additional options", "type": "object", "properties": { "compilationOptions": { "$ref": "#/definitions/compilationOptions" }, "buildOptions": { "$ref": "#/definitions/buildOptions" } } } }, "dependencies": { "$ref": "#/definitions/dependencies" }, "copyright": { "description": "Copyright details for the package.", "type": "string" }, "iconUrl": { "description": "[Deprecated] A URL for the image to use as the icon for the package. This should be a 32x32-pixel .png file that has a transparent background. Use this in 'packOptions' instead.", "type": "string" }, "licenseUrl": { "description": "[Deprecated] A link to the license for the package. Use this in 'packOptions' instead.", "type": "string" }, "requireLicenseAcceptance": { "description": "[Deprecated] A Boolean value that specifies whether the client needs to ensure that the package license (described by licenseUrl) is accepted before the package is installed. Use this in 'packOptions' instead.", "type": "boolean", "default": false }, "owners": { "description": "[Deprecated] List of owners of the package. Use this in 'packOptions' instead.", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "projectUrl": { "description": "A URL for the home page of the package.", "type": "string" }, "summary": { "description": "[Deprecated] A short description of the package. Use this in 'packOptions' instead.", "type": "string" }, "tags": { "description": "[Deprecated] A space-delimited list of tags and keywords that describe the package. Use this in 'packOptions' instead.", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "title": { "description": "The human-friendly title of the package", "type": "string" }, "releaseNotes": { "description": "[Deprecated] A description of the changes made in each release of the package. Use this in 'packOptions' instead.", "type": "string" }, "language": { "description": "The locale ID for the package, such as en-us.", "type": "string" }, "description": { "description": "The description of the project/package.", "type": "string" }, "frameworks": { "title": "framework options", "description": "Target frameworks that will be built, and dependencies that are specific to the build of this project for that framework.", "type": "object", "additionalProperties": { "$ref": "#/definitions/configType" } }, "namedResource": { "title": "resource options", "type": "object", "description": "Overrides the generated resource names with custom ones.", "additionalProperties": { "type": "string" } }, "repository": { "title": "repository options", "type": "object", "description": "[Deprecated] Contains information about the repository where the project is stored. Use this in 'packOptions' instead.", "properties": { "type": { "type": "string", "enum": ["git"], "default": "git" }, "url": { "type": "string", "format": "uri" } }, "additionalProperties": { "type": "string" } }, "scripts": { "title": "script options", "type": "object", "description": "Scripts to execute during the various stages.", "properties": { "precompile": { "$ref": "#/definitions/script" }, "postcompile": { "$ref": "#/definitions/script" }, "prepack": { "$ref": "#/definitions/script" }, "postpack": { "$ref": "#/definitions/script" }, "prepublish": { "$ref": "#/definitions/script" }, "postpublish": { "$ref": "#/definitions/script" }, "prerestore": { "$ref": "#/definitions/script" }, "postrestore": { "$ref": "#/definitions/script" }, "prepare": { "$ref": "#/definitions/script" } } }, "version": { "description": "The version of the project/package. Examples: 1.2.3, 1.2.3-beta, 1.2.3-*", "type": "string" }, "tools": { "title": "tool options", "description": "Project-specific command line tools accessible when in the project.json directory.", "type": "object", "additionalProperties": { "type": ["string", "object"], "properties": { "version": { "type": "string" } } } }, "runtimes": { "title": "runtime options", "description": "List of runtime identifiers supported by this project (used when building standalone applications).", "type": "object" }, "userSecretsId": { "description": "Specify a unique identifier for the development time user secrets of the project.", "type": "string" } }, "title": "JSON schema for .NET Core project.json files", "type": "object" }
project
{ "$id": "https://json.schemastore.org/dockerd.json", "$schema": "http://json-schema.org/draft-07/schema#", "description": "https://docs.docker.com/engine/reference/commandline/dockerd/#daemon", "properties": { "allow-nondistributable-artifacts": { "type": "array", "items": {} }, "api-cors-header": { "type": "string" }, "authorization-plugins": { "type": "array", "items": {} }, "bip": { "type": "string" }, "bridge": { "type": "string" }, "cgroup-parent": { "type": "string" }, "cluster-advertise": { "type": "string" }, "cluster-store": { "type": "string" }, "cluster-store-opts": { "type": "object" }, "containerd": { "type": "string", "examples": ["/run/containerd/containerd.sock"] }, "containerd-namespace": { "type": "string", "examples": ["docker"] }, "containerd-plugin-namespace": { "type": "string", "examples": ["docker-plugins"] }, "data-root": { "type": "string" }, "debug": { "type": "boolean", "default": false, "examples": [true] }, "default-address-pools": { "type": "array", "items": { "type": "object", "properties": { "base": { "type": "string", "examples": ["172.30.0.0/16", "172.31.0.0/16"] }, "size": { "type": "number", "examples": [24] } }, "examples": [ { "base": "172.30.0.0/16", "size": 24 }, { "base": "172.31.0.0/16", "size": 24 } ] }, "examples": [ [ { "base": "172.30.0.0/16", "size": 24 }, { "base": "172.31.0.0/16", "size": 24 } ] ] }, "default-cgroupns-mode": { "type": "string", "default": "host", "examples": ["host", "private"], "enum": ["private", "host"] }, "default-ipc-mode": { "type": "string", "default": "private", "examples": ["shareable", "private"], "enum": ["shareable", "private"] }, "default-gateway": { "type": "string" }, "default-gateway-v6": { "type": "string" }, "default-runtime": { "type": "string", "default": "containerd", "examples": ["runc", "containerd"] }, "default-shm-size": { "type": "string", "examples": ["64M"] }, "default-ulimits": { "type": "object", "properties": { "nofile": { "type": "object", "properties": { "Hard": { "type": "number", "default": 0, "examples": [64000] }, "Name": { "type": "string", "examples": ["nofile"] }, "Soft": { "type": "number", "default": 0, "examples": [64000] } }, "examples": [ { "Hard": 64000, "Name": "nofile", "Soft": 64000 } ] } }, "examples": [ { "nofile": { "Hard": 64000, "Name": "nofile", "Soft": 64000 } } ] }, "dns": { "type": "array", "items": {} }, "dns-opts": { "type": "array", "items": { "type": "string" } }, "dns-search": { "type": "array", "items": { "type": "string" } }, "exec-opts": { "type": "array", "items": { "type": "string" } }, "exec-root": { "type": "string" }, "experimental": { "type": "boolean", "default": false, "examples": [true] }, "features": { "type": "object" }, "fixed-cidr": { "type": "string" }, "fixed-cidr-v6": { "type": "string" }, "group": { "type": "string" }, "hosts": { "type": "array", "items": { "type": "string" } }, "icc": { "type": "boolean", "default": false }, "init": { "type": "boolean", "default": false }, "init-path": { "type": "string", "examples": ["/usr/libexec/docker-init"] }, "insecure-registries": { "type": "array", "items": { "type": "string" } }, "ip": { "type": "string", "examples": ["0.0.0.0"] }, "ip-forward": { "type": "boolean", "default": false }, "ip-masq": { "type": "boolean", "default": false }, "iptables": { "type": "boolean", "default": false }, "ip6tables": { "type": "boolean", "default": false }, "ipv6": { "type": "boolean", "default": false }, "labels": { "type": "array", "items": {} }, "live-restore": { "type": "boolean", "default": false, "examples": [true] }, "log-driver": { "type": "string", "examples": ["json-file"] }, "log-level": { "type": "string" }, "log-opts": { "type": "object", "properties": { "cache-disabled": { "type": "string", "examples": ["false"] }, "cache-max-file": { "type": "string", "examples": ["5"] }, "cache-max-size": { "type": "string", "examples": ["20m"] }, "cache-compress": { "type": "string", "examples": ["true"] }, "env": { "type": "string", "examples": ["os,customer"] }, "labels": { "type": "string", "examples": ["somelabel"] }, "max-file": { "type": "string", "examples": ["5"] }, "max-size": { "type": "string", "examples": ["10m"] } }, "examples": [ { "cache-disabled": "false", "cache-max-file": "5", "cache-max-size": "20m", "cache-compress": "true", "env": "os,customer", "labels": "somelabel", "max-file": "5", "max-size": "10m" } ] }, "max-concurrent-downloads": { "type": "number", "default": 0, "examples": [3] }, "max-concurrent-uploads": { "type": "number", "default": 0, "examples": [5] }, "max-download-attempts": { "type": "number", "default": 0, "examples": [5] }, "mtu": { "type": "number", "default": 0, "examples": [0] }, "no-new-privileges": { "type": "boolean", "default": false }, "node-generic-resources": { "type": "array", "items": { "type": "string", "examples": ["NVIDIA-GPU=UUID1", "NVIDIA-GPU=UUID2"] }, "examples": [["NVIDIA-GPU=UUID1", "NVIDIA-GPU=UUID2"]] }, "oom-score-adjust": { "type": "number", "examples": [-500] }, "pidfile": { "type": "string" }, "raw-logs": { "type": "boolean", "default": false }, "registry-mirrors": { "type": "array", "items": { "type": "string" } }, "runtimes": { "type": "object", "properties": { "cc-runtime": { "type": "object", "properties": { "path": { "type": "string", "examples": ["/usr/bin/cc-runtime"] } }, "examples": [ { "path": "/usr/bin/cc-runtime" } ] }, "custom": { "type": "object", "properties": { "path": { "type": "string", "examples": ["/usr/local/bin/my-runc-replacement"] }, "runtimeArgs": { "type": "array", "items": { "type": "string", "examples": ["--debug"] }, "examples": [["--debug"]] } }, "examples": [ { "path": "/usr/local/bin/my-runc-replacement", "runtimeArgs": ["--debug"] } ] } }, "examples": [ { "cc-runtime": { "path": "/usr/bin/cc-runtime" }, "custom": { "path": "/usr/local/bin/my-runc-replacement", "runtimeArgs": ["--debug"] } } ] }, "seccomp-profile": { "type": "string" }, "selinux-enabled": { "type": "boolean", "default": false }, "shutdown-timeout": { "type": "number", "default": 0, "examples": [15] }, "storage-driver": { "type": "string" }, "storage-opts": { "type": "array", "items": {} }, "swarm-default-advertise-addr": { "type": "string" }, "tls": { "type": "boolean", "default": false, "examples": [true] }, "tlscacert": { "type": "string" }, "tlscert": { "type": "string" }, "tlskey": { "type": "string" }, "tlsverify": { "type": "boolean", "default": false, "examples": [true] }, "userland-proxy": { "type": "boolean", "default": false }, "userland-proxy-path": { "type": "string", "examples": ["/usr/libexec/docker-proxy"] }, "userns-remap": { "type": "string" } }, "title": "Docker Daemon configuration schema", "type": "object" }
dockerd
{ "additionalProperties": false, "description": "Top-level schema for the validation process", "properties": { "data": {}, "schema": { "anyOf": [ { "pattern": "^iglu:[a-zA-Z0-9-_.]+/[a-zA-Z0-9-_]+/[a-zA-Z0-9-_]+/[0-9]+-[0-9]+-[0-9]+$" }, { "format": "strict-uri" } ], "type": "string" } }, "required": [ "schema", "data" ], "self": { "format": "jsonschema", "name": "instance", "vendor": "com.snowplowanalytics.self-desc", "version": "1-0-0" }, "type": "object" }
sp_247_Normalized
{ "$schema": "http://json-schema.org/draft-06/schema#", "type": "string", "enum": [ "1", "2-two", "3 three", null ] }
o25183
{ "id": "http://schemas.gdbots.io/json-schema/gdbots/forms/field/yes-no-field/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "_schema": { "type": "string", "pattern": "^pbj:([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+):([0-9]+-[0-9]+-[0-9]+)$", "default": "pbj:gdbots:forms:field:yes-no-field:1-0-0" }, "name": { "type": "string", "pattern": "^[a-zA-Z_]{1}[\\w-]*$", "description": "A unique identifier (within the form) for the field. This value is not shown to the user and should NOT change once set." }, "maps_to": { "type": "string", "default": "cf", "pattern": "^[a-zA-Z_]{1}\\w*$", "description": "The name of the schema field the answer will map to. By default this will go to the \"cf\" field which is a \"dynamic-field\" list containing all answers filled out on the form (ref \"gdbots:forms:mixin:send-submission\")." }, "label": { "type": "string", "minLength": 0, "maxLength": 255, "description": "The main text for the question/field." }, "placeholder": { "type": "string", "minLength": 0, "maxLength": 255 }, "description": { "type": "string", "minLength": 0, "maxLength": 65535, "description": "A short description to better explain this field." }, "is_required": { "type": "boolean" }, "link_text": { "type": "string", "minLength": 0, "maxLength": 255, "description": "The text that will replace the token \"{link}\" within the label or description." }, "link_url": { "type": "string", "pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$", "description": "The URL to use for the replaced token \"{link}\" within the label or description." }, "pii_impact": { "type": "string", "enum": [ "unknown", "high", "moderate", "low" ] }, "yes_label": { "type": "string", "minLength": 0, "maxLength": 255 }, "no_label": { "type": "string", "minLength": 0, "maxLength": 255 } }, "required": [ "_schema", "name" ], "additionalProperties": false }
o42599
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "MyGame_OtherNameSpace_FromInclude": { "type": "string", "enum": [ "IncludeVal" ] }, "MyGame_Example_Color": { "type": "string", "enum": [ "Red", "Green", "Blue" ] }, "MyGame_Example_Any": { "type": "string", "enum": [ "NONE", "Monster", "TestSimpleTableWithEnum", "MyGame_Example2_Monster" ] }, "MyGame_OtherNameSpace_Unused": { "type": "object", "properties": {}, "additionalProperties": false }, "MyGame_OtherNameSpace_TableB": { "type": "object", "properties": { "a": { "$ref": "#/definitions/TableA" } }, "additionalProperties": false }, "TableA": { "type": "object", "properties": { "b": { "$ref": "#/definitions/MyGame_OtherNameSpace_TableB" } }, "additionalProperties": false }, "MyGame_InParentNamespace": { "type": "object", "properties": {}, "additionalProperties": false }, "MyGame_Example2_Monster": { "type": "object", "properties": {}, "additionalProperties": false }, "MyGame_Example_Test": { "type": "object", "properties": { "a": { "type": "number" }, "b": { "type": "number" } }, "additionalProperties": false }, "MyGame_Example_TestSimpleTableWithEnum": { "type": "object", "properties": { "color": { "$ref": "#/definitions/MyGame_Example_Color" } }, "additionalProperties": false }, "MyGame_Example_Vec3": { "type": "object", "properties": { "x": { "type": "number" }, "y": { "type": "number" }, "z": { "type": "number" }, "test1": { "type": "number" }, "test2": { "$ref": "#/definitions/MyGame_Example_Color" }, "test3": { "$ref": "#/definitions/MyGame_Example_Test" } }, "additionalProperties": false }, "MyGame_Example_Ability": { "type": "object", "properties": { "id": { "type": "number" }, "distance": { "type": "number" } }, "additionalProperties": false }, "MyGame_Example_Stat": { "type": "object", "properties": { "id": { "type": "string" }, "val": { "type": "number" }, "count": { "type": "number" } }, "additionalProperties": false }, "MyGame_Example_Referrable": { "type": "object", "properties": { "id": { "type": "number" } }, "additionalProperties": false }, "MyGame_Example_Monster": { "type": "object", "description": " an example documentation comment: monster object", "properties": { "pos": { "$ref": "#/definitions/MyGame_Example_Vec3" }, "mana": { "type": "number" }, "hp": { "type": "number" }, "name": { "type": "string" }, "friendly": { "type": "boolean" }, "inventory": { "type": "array", "items": { "type": "number" } }, "color": { "$ref": "#/definitions/MyGame_Example_Color" }, "test_type": { "$ref": "#/definitions/MyGame_Example_Any" }, "test": { "anyOf": [ { "$ref": "#/definitions/MyGame_Example_Monster" }, { "$ref": "#/definitions/MyGame_Example_TestSimpleTableWithEnum" }, { "$ref": "#/definitions/MyGame_Example2_Monster" } ] }, "test4": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Test" } }, "testarrayofstring": { "type": "array", "items": { "type": "string" } }, "testarrayoftables": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Monster" } }, "enemy": { "$ref": "#/definitions/MyGame_Example_Monster" }, "testnestedflatbuffer": { "type": "array", "items": { "type": "number" } }, "testempty": { "$ref": "#/definitions/MyGame_Example_Stat" }, "testbool": { "type": "boolean" }, "testhashs32_fnv1": { "type": "number" }, "testhashu32_fnv1": { "type": "number" }, "testhashs64_fnv1": { "type": "number" }, "testhashu64_fnv1": { "type": "number" }, "testhashs32_fnv1a": { "type": "number" }, "testhashu32_fnv1a": { "type": "number" }, "testhashs64_fnv1a": { "type": "number" }, "testhashu64_fnv1a": { "type": "number" }, "testarrayofbools": { "type": "array", "items": { "type": "boolean" } }, "testf": { "type": "number" }, "testf2": { "type": "number" }, "testf3": { "type": "number" }, "testarrayofstring2": { "type": "array", "items": { "type": "string" } }, "testarrayofsortedstruct": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Ability" } }, "flex": { "type": "array", "items": { "type": "number" } }, "test5": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Test" } }, "vector_of_longs": { "type": "array", "items": { "type": "number" } }, "vector_of_doubles": { "type": "array", "items": { "type": "number" } }, "parent_namespace_test": { "$ref": "#/definitions/MyGame_InParentNamespace" }, "vector_of_referrables": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Referrable" } }, "single_weak_reference": { "type": "number" }, "vector_of_weak_references": { "type": "array", "items": { "type": "number" } }, "vector_of_strong_referrables": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Referrable" } }, "co_owning_reference": { "type": "number" }, "vector_of_co_owning_references": { "type": "array", "items": { "type": "number" } }, "non_owning_reference": { "type": "number" }, "vector_of_non_owning_references": { "type": "array", "items": { "type": "number" } } }, "required": [ "name" ], "additionalProperties": false }, "MyGame_Example_TypeAliases": { "type": "object", "properties": { "i8": { "type": "number" }, "u8": { "type": "number" }, "i16": { "type": "number" }, "u16": { "type": "number" }, "i32": { "type": "number" }, "u32": { "type": "number" }, "i64": { "type": "number" }, "u64": { "type": "number" }, "f32": { "type": "number" }, "f64": { "type": "number" }, "v8": { "type": "array", "items": { "type": "number" } }, "vf64": { "type": "array", "items": { "type": "number" } } }, "additionalProperties": false } }, "$ref": "#/definitions/MyGame_Example_Monster" }
o71568
{ "description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).", "properties": { "claimName": { "description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "type": [ "string", "null" ] }, "readOnly": { "description": "Will force the ReadOnly setting in VolumeMounts. Default false.", "type": [ "boolean", "null" ] } }, "required": [ "claimName" ], "type": "object" }
kb_674_Normalized
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Markdown contributions to package.json", "type": "object", "properties": { "contributes": { "type": "object", "properties": { "markdown.previewStyles": { "type": "array", "description": "Contributed CSS files that change the look or layout of the Markdown preview", "items": { "type": "string", "description": "Extension relative path to a css file" } }, "markdown.previewScripts": { "type": "array", "description": "Contributed scripts that are executed in the Markdown preview", "items": { "type": "string", "description": "Extension relative path to a JavaScript file" } }, "markdown.markdownItPlugins": { "type": "boolean", "description": "Does this extension contribute a markdown-it plugin?" } } } } }
o80279
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "location": { "description": "Location(s) to search for the object", "type": "object", "properties": { "location": { "description": "Location to search for the object", "type": "string" }, "locations": { "description": "Locations to search for the object", "type": "array", "items": { "type": "string" }, "minItems": 1, "_uniqueItems": true } } }, "libraries": { "description": "Javascript libraries to use with the code", "type": "array", "items": { "type": "string" }, "minItems": 1, "_uniqueItems": true }, "patternQuery": { "description": "Pattern to be matched", "type": "object", "allOf": [ { "properties": { "pattern": { "description": "Pattern to be matched", "type": "object" } }, "required": [ "pattern" ] }, { "$ref": "#/definitions/location" } ] }, "codeQuery": { "description": "Code to be executed", "type": "object", "allOf": [ { "properties": { "code": { "description": "Javascript code block", "type": "string" }, "libraries": { "$ref": "#/definitions/libraries" } }, "required": [ "code" ] }, { "$ref": "#/definitions/location" } ] }, "notQuery": { "description": "Not operation", "type": "object", "properties": { "not": { "description": "Query block", "oneOf": [ { "$ref": "#/definitions/patternQuery" }, { "$ref": "#/definitions/codeQuery" }, { "$ref": "#/definitions/notQuery" }, { "$ref": "#/definitions/andQuery" }, { "$ref": "#/definitions/orQuery" } ] } }, "required": [ "not" ] }, "andQuery": { "description": "And operation", "type": "object", "properties": { "and": { "description": "List of queries", "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/patternQuery" }, { "$ref": "#/definitions/codeQuery" }, { "$ref": "#/definitions/notQuery" }, { "$ref": "#/definitions/andQuery" }, { "$ref": "#/definitions/orQuery" } ] } } }, "required": [ "and" ] }, "orQuery": { "description": "Or operation", "type": "object", "properties": { "or": { "description": "List of queries", "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/patternQuery" }, { "$ref": "#/definitions/codeQuery" }, { "$ref": "#/definitions/notQuery" }, { "$ref": "#/definitions/andQuery" }, { "$ref": "#/definitions/orQuery" } ] } } }, "required": [ "or" ] }, "action": { "description": "Action to be executed", "type": "object", "allOf": [ { "properties": { "code": { "description": "Code to be executed", "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" }, "minItems": 1 }, { "type": "object" } ] }, "endpoint": { "description": "Endpoint to execute the code", "type": "string" }, "opts": { "description": "Optional data to be sent to the endpoint", "type": "object" }, "libraries": { "$ref": "#/definitions/libraries" } }, "required": [ "code" ] }, { "$ref": "#/definitions/location" } ] } }, "title": "Rule", "description": "Rule for rules system", "type": "object", "properties": { "when": { "$ref": "#/definitions/patternQuery" }, "schedule": { "description": "Schedule for the rule", "type": "string" }, "condition": { "description": "Conditions to be evaluated", "oneOf": [ { "$ref": "#/definitions/patternQuery" }, { "$ref": "#/definitions/codeQuery" }, { "$ref": "#/definitions/notQuery" }, { "$ref": "#/definitions/andQuery" }, { "$ref": "#/definitions/orQuery" } ] }, "action": { "$ref": "#/definitions/action" }, "actions": { "type": "array", "items": { "$ref": "#/definitions/action" } } }, "allOf": [ { "oneOf": [ { "required": [ "when" ] }, { "required": [ "schedule" ] } ] }, { "oneOf": [ { "required": [ "action" ] }, { "required": [ "actions" ] } ] } ] }
o3626
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "JSON schema for .graphlconfig", "id": "https://github.com/kamilkisiela/graphql-config/tree/legacy/specification.md", "type": "object", "properties": { "name": { "type": "string" }, "schemaPath": { "type": "string", "default": "./schema.graphql", "description": "A .graphql file that describes the schema using GraphQL SDL, e.g. \"./schema.graphql\", or a JSON file containing the result of a GraphQL Introspection query" }, "includes": { "type": "array", "description": "A glob pattern matching included files", "items": { "type": "string" } }, "excludes": { "type": "array", "description": "A glob pattern matching excluded files", "items": { "type": "string" } }, "extensions": { "$ref": "#/definitions/extensions" }, "projects": { "type": "object", "description": "One or more projects as an object keyed by project name. Values are objects with fields describing schema structure, endpoints etc.", "patternProperties": { ".*": { "description": "A named project with fields for describing schema structure, endpoints etc.", "type": "object", "properties": { "name": { "type": "string", "description": "The name of this project. If absent, the key of this project config object will be used as the project name." }, "schemaPath": { "type": "string", "description": "A .graphql file that describes the schema for this project using GraphQL SDL, e.g. \"./project-one-schema.graphql\"" }, "includes": { "type": "array", "description": "A glob pattern matching included files", "items": { "type": "string" } }, "excludes": { "type": "array", "description": "A glob pattern matching excluded files", "items": { "type": "string" } }, "extensions": { "$ref": "#/definitions/extensions" } } } } } }, "definitions": { "extensions": { "type": "object", "description": "Extensions to add additional configuration such as locations of GraphQL endpoint and framework-specific configuration.", "properties": { "endpoints": { "type": "object", "description": "GraphQL endpoints used for introspection and queries etc.", "patternProperties": { ".*": { "description": "A string containing the URL of the endpoint, or an object with the URL and headers", "oneOf": [ { "type": "string", "description": "The URL of the endpoint" }, { "type": "object", "properties": { "url": { "type": "string", "description": "The URL of the endpoint" }, "headers": { "type": "object", "description": "HTTP headers to send with requests" }, "introspect": { "type": "boolean", "description": "Boolean indicating whether this endpoint should be introspected automatically by the tool that loads the configuration, e.g. an IDE" } } } ] } } } } } } }
o50479
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "facts": { "type": "array", "items": { "type": "object", "properties": { "text": { "type": "string" }, "type": { "type": "string" }, "icon": { "type": "string" }, "value": { "type": "number" }, "hit_count": { "type": "number" }, "dmg_multiplier": { "type": "number" } }, "required": [ "text", "type", "icon" ] } }, "description": { "type": "string" }, "icon": { "type": "string" }, "flags": { "type": "array", "items": { "type": "string" } }, "id": { "type": "number" }, "chat_link": { "type": "string" }, "type": { "type": "string" }, "weapon_type": { "type": "string" }, "professions": { "type": "array", "items": { "type": "string" } }, "slot": { "type": "string" }, "flip_skill": { "type": "number" }, "traited_facts": { "type": "array", "items": { "type": "object", "properties": { "text": { "type": "string" }, "type": { "type": "string" }, "icon": { "type": "string" }, "duration": { "type": "number" }, "status": { "type": "string" }, "description": { "type": "string" }, "apply_count": { "type": "number" }, "requires_trait": { "type": "number" } } } } }, "required": [ "name", "facts", "description", "icon", "flags", "id", "chat_link" ] }, "properties": {}, "additionalProperties": false }
o45214
{ "properties": { "customer_details": { "properties": { "address": { "description": "The address of the customer", "type": "string" }, "email": { "description": "The email of the customer", "type": "string" }, "name": { "description": "The name of the customer", "type": "string" } }, "required": [ "name", "email", "address" ], "type": "object" }, "products": { "items": { "properties": { "name": { "description": "The name of the product", "type": "string" }, "price": { "description": "The price of the product", "type": "number" }, "quantity": { "description": "The quantity of the product", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_details", "products" ], "type": "object" }
generate_invoice_fe589692
{ "$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" }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "attachments": { "description": "An ordered list of asset links", "items": { "$ref": "#/definitions/publication_attachment_asset" }, "type": "array" }, "body": { "$ref": "#/definitions/body" }, "change_history": { "$ref": "#/definitions/change_history" }, "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": [ "body", "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" }, "publication_attachment_asset": { "oneOf": [ { "additionalProperties": false, "properties": { "accessible": { "type": "boolean" }, "alternative_format_contact_email": { "type": "string" }, "attachment_type": { "enum": [ "file" ], "type": "string" }, "command_paper_number": { "type": "string" }, "content_type": { "type": "string" }, "file_size": { "type": "integer" }, "filename": { "type": "string" }, "hoc_paper_number": { "type": "string" }, "id": { "type": "string" }, "isbn": { "type": "string" }, "locale": { "$ref": "#/definitions/locale" }, "number_of_pages": { "type": "integer" }, "parliamentary_session": { "type": "string" }, "preview_url": { "_format": "uri", "type": "string" }, "title": { "type": "string" }, "unique_reference": { "type": "string" }, "unnumbered_command_paper": { "type": "boolean" }, "unnumbered_hoc_paper": { "type": "boolean" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "attachment_type", "content_type", "id", "url" ], "type": "object" }, { "additionalProperties": false, "properties": { "attachment_type": { "enum": [ "html" ], "type": "string" }, "command_paper_number": { "type": "string" }, "hoc_paper_number": { "type": "string" }, "id": { "type": "string" }, "isbn": { "type": "string" }, "locale": { "$ref": "#/definitions/locale" }, "parliamentary_session": { "type": "string" }, "title": { "type": "string" }, "unique_reference": { "type": "string" }, "unnumbered_command_paper": { "type": "boolean" }, "unnumbered_hoc_paper": { "type": "boolean" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "attachment_type", "id", "url" ], "type": "object" }, { "additionalProperties": false, "properties": { "attachment_type": { "enum": [ "external" ], "type": "string" }, "command_paper_number": { "type": "string" }, "hoc_paper_number": { "type": "string" }, "id": { "type": "string" }, "isbn": { "type": "string" }, "locale": { "$ref": "#/definitions/locale" }, "parliamentary_session": { "type": "string" }, "title": { "type": "string" }, "unique_reference": { "type": "string" }, "unnumbered_command_paper": { "type": "boolean" }, "unnumbered_hoc_paper": { "type": "boolean" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "attachment_type", "id", "url" ], "type": "object" } ] }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "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": [ "statistical_data_set" ], "type": "string" }, "email_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "expanded_links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "government": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The government associated with this document" }, "lead_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "level_one_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "mainstream_browse_pages": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The user needs this piece of content meets." }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The parent content item.", "maxItems": 1 }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policy_areas": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "suggested_ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Prototype-stage taxonomy label for this content item" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "government_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "govuk_request_id": { "$ref": "#/definitions/govuk_request_id" }, "links": { "additionalProperties": false, "properties": { "facet_groups": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/guid_list", "description": "Powers links from content back to finders the content is surfaced on" }, "government": { "$ref": "#/definitions/guid_list", "description": "The government associated with this document" }, "lead_organisations": { "$ref": "#/definitions/guid_list", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "mainstream_browse_pages": { "$ref": "#/definitions/guid_list", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/guid_list", "description": "The user needs this piece of content meets." }, "ordered_related_items": { "$ref": "#/definitions/guid_list", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/guid_list", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/guid_list", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/guid_list", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/guid_list", "description": "The parent content item.", "maxItems": 1 }, "policy_areas": { "$ref": "#/definitions/guid_list", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/guid_list", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "suggested_ordered_related_items": { "$ref": "#/definitions/guid_list", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage taxonomy label for this content item" }, "topics": { "$ref": "#/definitions/guid_list", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "navigation_document_supertype": { "description": "Document type grouping powering the new taxonomy-based navigation pages", "type": "string" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "payload_version": { "$ref": "#/definitions/payload_version" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "redirects": { "additionalItems": false, "items": {}, "type": "array" }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "enum": [ "statistical_data_set" ], "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" }
o21384
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "descent-glovepie map", "description": "Describes the mappings for generating a GlovePIE script.", "type": "object", "properties": { "input": { "description": "Input prefix that is applied to all inputs. For instance, if you set this to \"Sixaxis1\" and define a button mapping for \"Square\", then the generated script will use \"Sixaxis1.Square\". This parameter is optional; if not specified, no prefix is applied to inputs.", "type": "string" }, "alias": { "description": "Input aliases. Allows arbitrary GlovePIE code to be used as an input.", "type": "object", "patternProperties": { "^[A-Za-z][A-Za-z0-9]*$": { "description": "Alias for an input.", "type": "string" } } }, "shift": { "description": "List of inputs that can be used as shift buttons.", "type": "array", "items": { "type": "string", "pattern": "^:?[A-Za-z][A-Za-z0-9]*(\\.[A-Za-z][A-Za-z0-9]*)*$" }, "_uniqueItems": true }, "axis": { "description": "Mappings for analog inputs to virtual joystick axes. Each property name is an input, and each value is the output.", "type": "object", "patternProperties": { "^:?[A-Za-z][A-Za-z0-9]*(\\.[A-Za-z][A-Za-z0-9]*)*$": { "description": "Mapping of an analog input to an output. The output may be inverted by putting a dash (-) at the beginning of the value.", "type": "string", "pattern": "^-?[A-Za-z][A-Za-z0-9]*(\\.[A-Za-z][A-Za-z0-9]*)*$" } }, "additionalProperties": false }, "button": { "description": "Mappings for digital inputs to virtual joystick buttons, keyboard keys, or keyboard macros. Each property name is an input.", "type": "object", "patternProperties": { "^:?[A-Za-z][A-Za-z0-9]*(\\.[A-Za-z][A-Za-z0-9]*)*$": { "oneOf": [ { "description": "Simple mapping for this digital input.", "$ref": "#/definitions/output" }, { "description": "Mappings for this digital input. The property names are the shift button inputs, except \"normal\" which is the unshifted mapping.", "type": "object", "properties": { "normal": { "description": "Normal, unshifted mapping for this digital input.", "$ref": "#/definitions/output" } }, "patternProperties": { "^[A-Za-z][A-Za-z0-9]*(\\.[A-Za-z][A-Za-z0-9]*)*$": { "description": "Shifted mapping for this digital input. The property name is the shift button input.", "$ref": "#/definitions/output" } } } ] } }, "additionalProperties": false }, "throttle": { "description": "Special mapping for using two buttons as a joystick axis and optional virtual button that indicates when both buttons are pressed.", "type": "object", "properties": { "axis": { "description": "Virtual joystick axis to use for the analog output.", "type": "string", "pattern": "^[A-Za-z][A-Za-z0-9]*(\\.[A-Za-z][A-Za-z0-9]*)*$" }, "button": { "description": "Virtual joystick button to use for the digital output indicating when both buttons are pressed.", "type": "string", "pattern": "^[A-Za-z][A-Za-z0-9]*(\\.[A-Za-z][A-Za-z0-9]*)*$" }, "forwardButton": { "description": "Virtual joystick button to use for the digital forward output.", "type": "string", "pattern": "^[A-Za-z][A-Za-z0-9]*(\\.[A-Za-z][A-Za-z0-9]*)*$" }, "reverseButton": { "description": "Virtual joystick button to use for the digital reverse output.", "type": "string", "pattern": "^[A-Za-z][A-Za-z0-9]*(\\.[A-Za-z][A-Za-z0-9]*)*$" }, "forwardDigital": { "description": "Digital input indicating when the button used for forward is pressed, if available.", "type": "string", "pattern": "^:?[A-Za-z][A-Za-z0-9]*(\\.[A-Za-z][A-Za-z0-9]*)*$" }, "forwardAnalog": { "description": "Analog input indicating how far the button used for forward is pressed, if available.", "type": "string", "pattern": "^:?[A-Za-z][A-Za-z0-9]*(\\.[A-Za-z][A-Za-z0-9]*)*$" }, "reverseDigital": { "description": "Digital input indicating when the button used for reverse is pressed, if available.", "type": "string", "pattern": "^:?[A-Za-z][A-Za-z0-9]*(\\.[A-Za-z][A-Za-z0-9]*)*$" }, "reverseAnalog": { "description": "Analog input indicating how far the button used for reverse is pressed, if available.", "type": "string", "pattern": "^:?[A-Za-z][A-Za-z0-9]*(\\.[A-Za-z][A-Za-z0-9]*)*$" }, "analogThreshold": { "description": "Threshold beyond which an analog button input is considered pressed for programming logic purposes. This value is only used if a digital input is not specified for forward or reverse.", "type": "number", "minimum": 0, "minimumExclusive": false, "maximum": 1, "maximumExclusive": true } }, "additionalProperties": false, "allOf": [ { "anyOf": [ { "required": [ "axis" ] }, { "required": [ "button" ] }, { "required": [ "forwardButton" ] }, { "required": [ "reverseButton" ] } ] }, { "anyOf": [ { "required": [ "forwardDigital" ] }, { "required": [ "forwardAnalog" ] } ] }, { "anyOf": [ { "required": [ "reverseDigital" ] }, { "required": [ "reverseAnalog" ] } ] } ] } }, "additionalProperties": false, "required": [ "button" ], "definitions": { "simpleOutput": { "description": "Output assignment to a simple button or key.", "type": "string", "pattern": "^[A-Za-z][A-Za-z0-9]*(\\.[A-Za-z][A-Za-z0-9]*)*$" }, "macroOutput": { "description": "Output assignment to a keyboard macro.", "type": "string", "pattern": "^~[A-Za-z][A-Za-z0-9]*([- ][A-Za-z][A-Za-z0-9]*)*$" }, "output": { "oneOf": [ { "$ref": "#/definitions/simpleOutput" }, { "$ref": "#/definitions/macroOutput" } ] } } }
o35830
{ "properties": { "check_in_date": { "description": "The check-in date in the format YYYY-MM-DD", "type": "string" }, "check_out_date": { "description": "The check-out date in the format YYYY-MM-DD", "type": "string" }, "guests": { "description": "The number of guests", "type": "integer" }, "location": { "description": "The location to search for hotels", "type": "string" } }, "required": [ "location", "check_in_date", "check_out_date", "guests" ], "type": "object" }
search_hotels_29d4c29d
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "flows": { "maxItems": 1000, "type": "array", "items": { "title": "Workflow", "description": "Schema for a single Workflow", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "flowId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "iconData": { "type": "string", "maxLength": 32767, "pattern": "^data:image/(jpg|jpeg|png|svg\\+xml);base64,[0-9a-zA-Z+/=]*$" }, "enabled": { "type": "boolean" }, "defaultVersionId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "minimumAgentVersion": { "type": "string", "pattern": "^(0|([1-9]\\d*))\\.(0|([1-9]\\d*))\\.(0|([1-9]\\d*))$" }, "flowClass": { "type": "string", "enum": [ "cloud", "edge", "experience", "customNode" ] }, "triggers": { "type": "array", "items": { "oneOf": [ { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "customNodeStart", "deviceCommand", "deviceIdConnect", "deviceTagConnect", "deviceIdDisconnect", "deviceTagDisconnect", "integration", "notebook", "onBoot", "onConnect", "onDisconnect", "request", "udp", "webhook" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "customNodeStart", "deviceCommand", "deviceIdsTagsConnect", "deviceIdsTagsDisconnect", "flowError", "googlePubSub", "meridian", "mqtt", "notebook", "onBoot", "onConnect", "onDisconnect", "particle", "request", "udp", "webhook" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "triggerId": { "type": "string", "maxLength": 48 }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "dataTable" ] }, "config": { "type": "object", "properties": { "bulkInsert": { "type": "boolean" }, "delete": { "type": "boolean" }, "insert": { "type": "boolean" }, "update": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "dataTable" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "deviceId", "deviceTag" ] }, "config": { "type": "object", "properties": { "attributeBlacklist": { "type": "array", "maxItems": 100, "items": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" } }, "attributeWhitelist": { "type": "array", "maxItems": 100, "items": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" } }, "maxAge": { "type": "number" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "deviceIdsTags", "device", "deviceTag" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "timeUnit": { "type": "string", "maxLength": 48 }, "maxAgeToggle": { "type": "boolean" }, "allowedAttributeType": { "type": "string", "enum": [ "attributeWhitelist", "any", "attributeBlacklist" ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "deviceIdInactivity", "deviceTagInactivity" ] }, "config": { "type": "object", "properties": { "seconds": { "type": "number" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "deviceIdsTagsInactivity" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "endpoint" ] }, "config": { "type": "object", "properties": { "experienceVersion": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "endpoint" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "event" ] }, "config": { "type": "object", "properties": { "subject": { "type": "string", "maxLength": 255 }, "new": { "type": "boolean" }, "acknowledged": { "type": "boolean" }, "resolved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "event" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "fileTail" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "encoding": { "type": "string", "maxLength": 48 }, "byteLength": { "type": "string", "maxLength": 48 }, "delimiter": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "fileTail" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "fileWatch" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "fileAdded": { "type": "boolean" }, "fileChanged": { "type": "boolean" }, "fileRemoved": { "type": "boolean" }, "directoryAdded": { "type": "boolean" }, "directoryRemoved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "fileWatch" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "flowError" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "flowError" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "mqttTopic" ] }, "config": { "type": "object", "properties": { "integrationId": { "type": "string", "enum": [ "losant", "local" ] } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "mqtt" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "triggerId": { "type": "string", "maxLength": 48 }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "opcua" ] }, "config": { "type": "object", "properties": { "uri": { "type": "string", "maxLength": 1024 }, "securityPolicy": { "type": "string", "maxLength": 255 }, "securityMode": { "type": "string", "maxLength": 255 }, "username": { "type": "string", "maxLength": 1024 }, "password": { "type": "string", "maxLength": 1024 }, "cert": { "type": "string", "maxLength": 32767 }, "privateKey": { "type": "string", "maxLength": 32767 }, "nameSpace": { "type": "string", "maxLength": 255 }, "identifier": { "type": "string", "maxLength": 255 }, "samplingInterval": { "type": "string", "maxLength": 255 }, "eventFilter": { "type": "array", "maxItems": 100, "items": { "type": "string", "maxLength": 255 } } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "opcua" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "redis" ] }, "config": { "type": "object", "properties": { "host": { "type": "string", "maxLength": 1024 }, "port": { "type": "string", "maxLength": 16 }, "password": { "type": "string", "maxLength": 1024 }, "topic": { "type": "string", "maxLength": 1024 }, "fileAdded": { "type": "boolean" }, "fileChanged": { "type": "boolean" }, "fileRemoved": { "type": "boolean" }, "directoryAdded": { "type": "boolean" }, "directoryRemoved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "redisTrigger" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "serial" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "baudRate": { "type": "number" }, "encoding": { "type": "string", "maxLength": 48 }, "writeOnOpen": { "type": "string", "maxLength": 1024 }, "byteLength": { "type": "string", "maxLength": 48 }, "delimiter": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "serial" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "parseBy": { "type": "string", "enum": [ "byteLength", "delimiter" ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "timer" ] }, "config": { "type": "object", "properties": { "seconds": { "type": "number" }, "cron": { "type": "string", "maxLength": 255 }, "tz": { "type": "string", "maxLength": 255 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "timer" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "timerTypeSelect": { "type": "string", "enum": [ "cronWeekly", "seconds", "cron" ] }, "timeAt": { "type": "string", "maxLength": 255 }, "timezone": { "type": "string", "maxLength": 255 }, "weekdays": { "type": "array", "maxItems": 7, "items": { "type": "number" } } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "virtualButton" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "virtualButton" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "groupId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "payload": { "type": "string", "maxLength": 262144 }, "deviceId": { "oneOf": [ { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, { "type": "string", "enum": [ "" ] }, { "type": "null" } ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false } ] } }, "nodes": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "minLength": 1, "maxLength": 1024 }, "config": { "type": "object" }, "meta": { "type": "object" }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "additionalProperties": false, "required": [ "type" ] } }, "customNodeConfig": { "type": "object", "properties": { "outputCount": { "type": "number", "enum": [ 1, 2 ] }, "resultMode": { "type": "string", "enum": [ "optional", "required", "none" ] }, "resultDescription": { "type": "string", "maxLength": 32767 }, "fields": { "type": "array", "maxItems": 100, "items": { "oneOf": [ { "type": "object", "properties": { "type": { "type": "string", "enum": [ "checkbox" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "select" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "minLength": 1, "maxLength": 1024 }, "options": { "type": "array", "minItems": 1, "maxItems": 100, "items": { "type": "object", "properties": { "label": { "type": "string", "maxLength": 1024 }, "value": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "additionalProperties": false, "required": [ "value" ] } } }, "additionalProperties": false, "required": [ "type", "label", "defaultValue", "options" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "stringTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "maxLength": 1024 }, "required": { "type": "boolean" }, "validRegExp": { "type": "string", "maxLength": 1024 } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "numberTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "number" }, "required": { "type": "boolean" }, "validMin": { "type": "number" }, "validMax": { "type": "number" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "jsonTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "maxLength": 32767 }, "required": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "payloadPath" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "required": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "section" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 } }, "additionalProperties": false, "required": [ "type", "label" ] } ] } } }, "additionalProperties": false, "required": [ "outputCount", "resultMode", "fields" ] }, "customNodeSupports": { "type": "array", "items": { "type": "string", "enum": [ "cloud" ] } }, "customNodeUseCount": { "type": "number" }, "globals": { "type": "array", "maxItems": 100, "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "json": { "type": "string", "minLength": 1, "maxLength": 32767 } }, "additionalProperties": false, "required": [ "key", "json" ] } }, "deletedInDevelop": { "type": "boolean" }, "stats": { "type": "object", "properties": { "runCount": { "type": "number" }, "errorCount": { "type": "number" }, "byVersion": { "type": "object", "patternProperties": { ".*": { "type": "object", "properties": { "runCount": { "type": "number" }, "errorCount": { "type": "number" } } } } } } } } } }, "flowVersions": { "maxItems": 1000, "type": "array", "items": { "title": "Workflow Version", "description": "Schema for a single Workflow Version", "oneOf": [ { "description": "Schema for a single Cloud/Edge/Custom Node Workflow Version", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "flowVersionId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "flowId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "version": { "type": "string", "minLength": 1, "maxLength": 255 }, "notes": { "type": "string", "maxLength": 32767 }, "enabled": { "type": "boolean" }, "triggers": { "type": "array", "items": { "oneOf": [ { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "customNodeStart", "deviceCommand", "deviceIdConnect", "deviceTagConnect", "deviceIdDisconnect", "deviceTagDisconnect", "integration", "notebook", "onBoot", "onConnect", "onDisconnect", "request", "udp", "webhook" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "customNodeStart", "deviceCommand", "deviceIdsTagsConnect", "deviceIdsTagsDisconnect", "flowError", "googlePubSub", "meridian", "mqtt", "notebook", "onBoot", "onConnect", "onDisconnect", "particle", "request", "udp", "webhook" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "triggerId": { "type": "string", "maxLength": 48 }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "dataTable" ] }, "config": { "type": "object", "properties": { "bulkInsert": { "type": "boolean" }, "delete": { "type": "boolean" }, "insert": { "type": "boolean" }, "update": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "dataTable" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "deviceId", "deviceTag" ] }, "config": { "type": "object", "properties": { "attributeBlacklist": { "type": "array", "maxItems": 100, "items": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" } }, "attributeWhitelist": { "type": "array", "maxItems": 100, "items": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" } }, "maxAge": { "type": "number" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "deviceIdsTags", "device", "deviceTag" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "timeUnit": { "type": "string", "maxLength": 48 }, "maxAgeToggle": { "type": "boolean" }, "allowedAttributeType": { "type": "string", "enum": [ "attributeWhitelist", "any", "attributeBlacklist" ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "deviceIdInactivity", "deviceTagInactivity" ] }, "config": { "type": "object", "properties": { "seconds": { "type": "number" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "deviceIdsTagsInactivity" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "endpoint" ] }, "config": { "type": "object", "properties": { "experienceVersion": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "endpoint" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "event" ] }, "config": { "type": "object", "properties": { "subject": { "type": "string", "maxLength": 255 }, "new": { "type": "boolean" }, "acknowledged": { "type": "boolean" }, "resolved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "event" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "fileTail" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "encoding": { "type": "string", "maxLength": 48 }, "byteLength": { "type": "string", "maxLength": 48 }, "delimiter": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "fileTail" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "fileWatch" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "fileAdded": { "type": "boolean" }, "fileChanged": { "type": "boolean" }, "fileRemoved": { "type": "boolean" }, "directoryAdded": { "type": "boolean" }, "directoryRemoved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "fileWatch" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "flowError" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "flowError" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "mqttTopic" ] }, "config": { "type": "object", "properties": { "integrationId": { "type": "string", "enum": [ "losant", "local" ] } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "mqtt" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "triggerId": { "type": "string", "maxLength": 48 }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "opcua" ] }, "config": { "type": "object", "properties": { "uri": { "type": "string", "maxLength": 1024 }, "securityPolicy": { "type": "string", "maxLength": 255 }, "securityMode": { "type": "string", "maxLength": 255 }, "username": { "type": "string", "maxLength": 1024 }, "password": { "type": "string", "maxLength": 1024 }, "cert": { "type": "string", "maxLength": 32767 }, "privateKey": { "type": "string", "maxLength": 32767 }, "nameSpace": { "type": "string", "maxLength": 255 }, "identifier": { "type": "string", "maxLength": 255 }, "samplingInterval": { "type": "string", "maxLength": 255 }, "eventFilter": { "type": "array", "maxItems": 100, "items": { "type": "string", "maxLength": 255 } } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "opcua" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "redis" ] }, "config": { "type": "object", "properties": { "host": { "type": "string", "maxLength": 1024 }, "port": { "type": "string", "maxLength": 16 }, "password": { "type": "string", "maxLength": 1024 }, "topic": { "type": "string", "maxLength": 1024 }, "fileAdded": { "type": "boolean" }, "fileChanged": { "type": "boolean" }, "fileRemoved": { "type": "boolean" }, "directoryAdded": { "type": "boolean" }, "directoryRemoved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "redisTrigger" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "serial" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "baudRate": { "type": "number" }, "encoding": { "type": "string", "maxLength": 48 }, "writeOnOpen": { "type": "string", "maxLength": 1024 }, "byteLength": { "type": "string", "maxLength": 48 }, "delimiter": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "serial" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "parseBy": { "type": "string", "enum": [ "byteLength", "delimiter" ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "timer" ] }, "config": { "type": "object", "properties": { "seconds": { "type": "number" }, "cron": { "type": "string", "maxLength": 255 }, "tz": { "type": "string", "maxLength": 255 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "timer" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "timerTypeSelect": { "type": "string", "enum": [ "cronWeekly", "seconds", "cron" ] }, "timeAt": { "type": "string", "maxLength": 255 }, "timezone": { "type": "string", "maxLength": 255 }, "weekdays": { "type": "array", "maxItems": 7, "items": { "type": "number" } } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "virtualButton" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "virtualButton" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "groupId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "payload": { "type": "string", "maxLength": 262144 }, "deviceId": { "oneOf": [ { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, { "type": "string", "enum": [ "" ] }, { "type": "null" } ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false } ] } }, "nodes": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "minLength": 1, "maxLength": 1024 }, "config": { "type": "object" }, "meta": { "type": "object" }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "additionalProperties": false, "required": [ "type" ] } }, "globals": { "type": "array", "maxItems": 100, "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "json": { "type": "string", "minLength": 1, "maxLength": 32767 } }, "additionalProperties": false, "required": [ "key", "json" ] } }, "minimumAgentVersion": { "type": "string", "pattern": "^(0|([1-9]\\d*))\\.(0|([1-9]\\d*))\\.(0|([1-9]\\d*))$" }, "customNodeConfig": { "type": "object", "properties": { "outputCount": { "type": "number", "enum": [ 1, 2 ] }, "resultMode": { "type": "string", "enum": [ "optional", "required", "none" ] }, "resultDescription": { "type": "string", "maxLength": 32767 }, "fields": { "type": "array", "maxItems": 100, "items": { "oneOf": [ { "type": "object", "properties": { "type": { "type": "string", "enum": [ "checkbox" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "select" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "minLength": 1, "maxLength": 1024 }, "options": { "type": "array", "minItems": 1, "maxItems": 100, "items": { "type": "object", "properties": { "label": { "type": "string", "maxLength": 1024 }, "value": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "additionalProperties": false, "required": [ "value" ] } } }, "additionalProperties": false, "required": [ "type", "label", "defaultValue", "options" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "stringTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "maxLength": 1024 }, "required": { "type": "boolean" }, "validRegExp": { "type": "string", "maxLength": 1024 } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "numberTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "number" }, "required": { "type": "boolean" }, "validMin": { "type": "number" }, "validMax": { "type": "number" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "jsonTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "maxLength": 32767 }, "required": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "payloadPath" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "required": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "section" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 } }, "additionalProperties": false, "required": [ "type", "label" ] } ] } } }, "additionalProperties": false, "required": [ "outputCount", "resultMode", "fields" ] }, "stats": { "type": "object", "properties": { "runCount": { "type": "number" }, "errorCount": { "type": "number" }, "byVersion": { "type": "object", "patternProperties": { ".*": { "type": "object", "properties": { "runCount": { "type": "number" }, "errorCount": { "type": "number" } } } } } } } } }, { "description": "Schema for a single Experience Workflow Version", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "flowVersionId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "flowId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "iconData": { "type": "string", "maxLength": 32767, "pattern": "^data:image/(jpg|jpeg|png|svg\\+xml);base64,[0-9a-zA-Z+/=]*$" }, "flowClass": { "type": "string", "enum": [ "experience" ] }, "versions": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 255 } }, "enabled": { "type": "boolean" }, "triggers": { "type": "array", "items": { "oneOf": [ { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "customNodeStart", "deviceCommand", "deviceIdConnect", "deviceTagConnect", "deviceIdDisconnect", "deviceTagDisconnect", "integration", "notebook", "onBoot", "onConnect", "onDisconnect", "request", "udp", "webhook" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "customNodeStart", "deviceCommand", "deviceIdsTagsConnect", "deviceIdsTagsDisconnect", "flowError", "googlePubSub", "meridian", "mqtt", "notebook", "onBoot", "onConnect", "onDisconnect", "particle", "request", "udp", "webhook" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "triggerId": { "type": "string", "maxLength": 48 }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "dataTable" ] }, "config": { "type": "object", "properties": { "bulkInsert": { "type": "boolean" }, "delete": { "type": "boolean" }, "insert": { "type": "boolean" }, "update": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "dataTable" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "deviceId", "deviceTag" ] }, "config": { "type": "object", "properties": { "attributeBlacklist": { "type": "array", "maxItems": 100, "items": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" } }, "attributeWhitelist": { "type": "array", "maxItems": 100, "items": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" } }, "maxAge": { "type": "number" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "deviceIdsTags", "device", "deviceTag" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "timeUnit": { "type": "string", "maxLength": 48 }, "maxAgeToggle": { "type": "boolean" }, "allowedAttributeType": { "type": "string", "enum": [ "attributeWhitelist", "any", "attributeBlacklist" ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "deviceIdInactivity", "deviceTagInactivity" ] }, "config": { "type": "object", "properties": { "seconds": { "type": "number" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "deviceIdsTagsInactivity" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "endpoint" ] }, "config": { "type": "object", "properties": { "experienceVersion": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "endpoint" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "event" ] }, "config": { "type": "object", "properties": { "subject": { "type": "string", "maxLength": 255 }, "new": { "type": "boolean" }, "acknowledged": { "type": "boolean" }, "resolved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "event" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "fileTail" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "encoding": { "type": "string", "maxLength": 48 }, "byteLength": { "type": "string", "maxLength": 48 }, "delimiter": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "fileTail" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "fileWatch" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "fileAdded": { "type": "boolean" }, "fileChanged": { "type": "boolean" }, "fileRemoved": { "type": "boolean" }, "directoryAdded": { "type": "boolean" }, "directoryRemoved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "fileWatch" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "flowError" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "flowError" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "mqttTopic" ] }, "config": { "type": "object", "properties": { "integrationId": { "type": "string", "enum": [ "losant", "local" ] } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "mqtt" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "triggerId": { "type": "string", "maxLength": 48 }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "opcua" ] }, "config": { "type": "object", "properties": { "uri": { "type": "string", "maxLength": 1024 }, "securityPolicy": { "type": "string", "maxLength": 255 }, "securityMode": { "type": "string", "maxLength": 255 }, "username": { "type": "string", "maxLength": 1024 }, "password": { "type": "string", "maxLength": 1024 }, "cert": { "type": "string", "maxLength": 32767 }, "privateKey": { "type": "string", "maxLength": 32767 }, "nameSpace": { "type": "string", "maxLength": 255 }, "identifier": { "type": "string", "maxLength": 255 }, "samplingInterval": { "type": "string", "maxLength": 255 }, "eventFilter": { "type": "array", "maxItems": 100, "items": { "type": "string", "maxLength": 255 } } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "opcua" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "redis" ] }, "config": { "type": "object", "properties": { "host": { "type": "string", "maxLength": 1024 }, "port": { "type": "string", "maxLength": 16 }, "password": { "type": "string", "maxLength": 1024 }, "topic": { "type": "string", "maxLength": 1024 }, "fileAdded": { "type": "boolean" }, "fileChanged": { "type": "boolean" }, "fileRemoved": { "type": "boolean" }, "directoryAdded": { "type": "boolean" }, "directoryRemoved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "redisTrigger" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "serial" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "baudRate": { "type": "number" }, "encoding": { "type": "string", "maxLength": 48 }, "writeOnOpen": { "type": "string", "maxLength": 1024 }, "byteLength": { "type": "string", "maxLength": 48 }, "delimiter": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "serial" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "parseBy": { "type": "string", "enum": [ "byteLength", "delimiter" ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "timer" ] }, "config": { "type": "object", "properties": { "seconds": { "type": "number" }, "cron": { "type": "string", "maxLength": 255 }, "tz": { "type": "string", "maxLength": 255 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "timer" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "timerTypeSelect": { "type": "string", "enum": [ "cronWeekly", "seconds", "cron" ] }, "timeAt": { "type": "string", "maxLength": 255 }, "timezone": { "type": "string", "maxLength": 255 }, "weekdays": { "type": "array", "maxItems": 7, "items": { "type": "number" } } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "virtualButton" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "virtualButton" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "groupId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "payload": { "type": "string", "maxLength": 262144 }, "deviceId": { "oneOf": [ { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, { "type": "string", "enum": [ "" ] }, { "type": "null" } ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false } ] } }, "nodes": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "minLength": 1, "maxLength": 1024 }, "config": { "type": "object" }, "meta": { "type": "object" }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "additionalProperties": false, "required": [ "type" ] } }, "globals": { "type": "array", "maxItems": 100, "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "json": { "type": "string", "minLength": 1, "maxLength": 32767 } }, "additionalProperties": false, "required": [ "key", "json" ] } }, "stats": { "type": "object", "properties": { "runCount": { "type": "number" }, "errorCount": { "type": "number" }, "byVersion": { "type": "object", "patternProperties": { ".*": { "type": "object", "properties": { "runCount": { "type": "number" }, "errorCount": { "type": "number" } } } } } } } } } ] } }, "importedFlowIdMap": { "type": "object", "patternProperties": { "^[A-Fa-f\\d]{24}$": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } }, "importedVersionIdMap": { "type": "object", "patternProperties": { "^[A-Fa-f\\d]{24}$": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } } } }
o9917
{ "additionalProperties": false, "description": "Schema for a Pingdom incident being closed event", "properties": { "check": { "type": "string" }, "checkname": { "type": "string" }, "description": { "type": "string" }, "host": { "type": "string" }, "incidentid": { "type": "integer" } }, "self": { "format": "jsonschema", "name": "incident_notify_of_close", "vendor": "com.pingdom", "version": "1-0-0" }, "type": "object" }
sp_167_Normalized
{ "properties": { "from_unit": { "description": "The unit of the temperature to be converted from", "enum": [ "Celsius", "Fahrenheit", "Kelvin" ], "type": "string" }, "temperature": { "description": "The temperature to be converted", "type": "number" }, "to_unit": { "description": "The unit of the temperature to be converted to", "enum": [ "Celsius", "Fahrenheit", "Kelvin" ], "type": "string" } }, "required": [ "temperature", "from_unit", "to_unit" ], "type": "object" }
convert_temperature_cc92bc87
{ "title": "inheritedDomain", "type": "object", "$schema": "http://json-schema.org/draft-04/schema", "description": "This domain applies to domains on subtypes. It implies that the domain for a field at the subtype level is the same as the domain for the field at the layer level.", "properties": { "name": { "type": "string", "description": "The domain name." }, "type": { "type": "string", "description": "String value representing the domain type.", "enum": [ "inherited" ] } }, "required": [ "type" ], "additionalProperties": false }
o90219