json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": [ "string", "null" ] } }, "type": "object" }
kb_542_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "number" }, "properties": {}, "additionalProperties": false }
o45213
{ "additionalProperties": false, "description": "Schema for an application error", "properties": { "className": { "maxLength": 1024, "type": [ "string", "null" ] }, "exceptionName": { "maxLength": 1024, "type": [ "string", "null" ] }, "isFatal": { "type": [ "boolean", "null" ] }, "lineNumber": { "maximum": 2147483647, "minimum": 0, "type": [ "integer", "null" ] }, "message": { "maxLength": 2048, "type": "string" }, "programmingLanguage": { "enum": [ "JAVA", "SCALA", "KOTLIN", "GROOVY", "RUBY", "GOLANG", "JAVASCRIPT", "PHP", "PYTHON", "OBJECTIVEC", "SWIFT", "C", "CPLUSPLUS", "CSHARP", "ACTIONSCRIPT", "LUA", "RUST", "HASKELL", "CLOJURE", "ERLANG", "ELIXIR", "CRYSTAL", "PONY", "NIM" ] }, "stackTrace": { "maxLength": 8192, "type": [ "string", "null" ] }, "threadId": { "maximum": 2147483647, "minimum": 0, "type": [ "integer", "null" ] }, "threadName": { "maxLength": 1024, "type": [ "string", "null" ] } }, "required": [ "programmingLanguage", "message" ], "self": { "format": "jsonschema", "name": "application_error", "vendor": "com.snowplowanalytics.snowplow", "version": "1-0-0" }, "type": "object" }
sp_257_Normalized
{ "$id": "https://json.schemastore.org/drupal-libraries.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "version": { "title": "The library version", "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "remote": { "title": "The library repository URL", "type": "string" }, "license": { "type": "object", "additionalProperties": false, "properties": { "name": { "title": "The human-readable name of the license", "type": "string" }, "url": { "title": "The URL of the license file/information for the version of the library used", "type": "string" }, "gpl-compatible": { "title": "A boolean for whether this library is GPL compatible", "type": "boolean" } } }, "header": { "title": "A boolean for whether the script must be included in the header", "type": "boolean" }, "drupalSettings": { "title": "Settings that needs to be attached to drupalSettings object in JavaScript", "type": "object" }, "js": { "title": "List of JavaScript files to load", "type": "object", "additionalProperties": { "type": "object", "$ref": "#/definitions/file", "properties": { "cache": { "type": "boolean" } }, "additionalProperties": false } }, "css": { "title": "List of CSS files to load", "type": "object", "properties": { "base": { "$ref": "#/definitions/cssFiles" }, "layout": { "$ref": "#/definitions/cssFiles" }, "component": { "$ref": "#/definitions/cssFiles" }, "theme": { "$ref": "#/definitions/cssFiles" }, "state": { "$ref": "#/definitions/cssFiles" } } }, "dependencies": { "title": "List libraries that should be loaded along with this library", "type": "array", "items": { "type": "string", "pattern": "^.+/.+$" } } } }, "definitions": { "file": { "type": "object", "properties": { "attributes": { "title": "Optional attributes", "type": "object" }, "browsers": { "title": "Load asset conditionally based on browser", "type": "object" }, "minified": { "title": "Whether the asset is already minified", "type": "boolean" }, "external": { "type": "boolean" }, "type": { "title": "The source of the asset", "type": "string" }, "preprocess": { "title": "Whether the assets should be aggregated", "type": "boolean" }, "weight": { "title": "The order relative to other assets", "type": "integer" } } }, "cssFiles": { "type": "object", "additionalProperties": { "type": "object", "$ref": "#/definitions/file", "properties": { "group": { "title": "The SMACSS group in which the asset is placed", "type": "integer" }, "media": { "title": "Media type", "type": "string", "enum": ["all", "screen", "print", "speech"] } }, "additionalProperties": false } } }, "title": "JSON schema for Drupal libraries file", "type": "object" }
drupal-libraries
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "radius" ], "type": "object" }, "shape": { "description": "The shape to calculate the area for", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_f611b938
{ "id": "http://schemas.triniti.io/json-schema/gdbots/forms/mixin/field/1-0-1.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.", "pbj": { "type": "string", "rule": "single" } }, "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\").", "pbj": { "type": "string", "rule": "single" } }, "label": { "type": "string", "minLength": 0, "maxLength": 255, "description": "The main text for the question/field.", "pbj": { "type": "string", "rule": "single" } }, "placeholder": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "description": { "type": "string", "minLength": 0, "maxLength": 65535, "description": "A short description to better explain this field.", "pbj": { "type": "text", "rule": "single" } }, "is_required": { "type": "boolean", "pbj": { "type": "boolean", "rule": "single" } }, "link_text": { "type": "string", "minLength": 0, "maxLength": 255, "description": "The text that will replace the token \"{link}\" within the label or description.", "pbj": { "type": "string", "rule": "single" } }, "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.", "pbj": { "type": "string", "rule": "single", "format": "url" } } }, "required": [ "name" ], "additionalProperties": true }
o82378
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle or triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_20bcc1ff
{ "properties": { "adaptivetcpprofname": { "readonly": true, "type": "string" }, "advwnd": { "readonly": true, "type": "integer" }, "burstratecontrol": { "enum": [ "DISABLED", "FIXED", "DYNAMIC" ], "readonly": true, "type": "string" }, "bwestimate": { "readonly": true, "type": "integer" }, "channelidnnm": { "readonly": true, "type": "integer" }, "congstate": { "enum": [ "open", "recovery", "loss", "reneg", "partial_ACK", "retx_lost" ], "readonly": true, "type": "string" }, "connid": { "readonly": true, "type": "integer" }, "connproperties": { "enum": [ "LINK", "HASLINK", "CLIENT", "SERVER", "NNM", "MPTCP", "SUBFLOW" ], "readonly": true, "type": "object" }, "cqabifavg": { "readonly": true, "type": "integer" }, "cqaccl": { "readonly": true, "type": "integer" }, "cqacsq": { "readonly": true, "type": "integer" }, "cqaiai1mspct": { "readonly": true, "type": "integer" }, "cqaiai2mspct": { "readonly": true, "type": "integer" }, "cqaiaiavg": { "readonly": true, "type": "integer" }, "cqaiaisamples": { "readonly": true, "type": "integer" }, "cqaisiavg": { "readonly": true, "type": "integer" }, "cqaloaddelayavg": { "readonly": true, "type": "integer" }, "cqanetclass": { "readonly": true, "type": "string" }, "cqanoisedelayavg": { "readonly": true, "type": "integer" }, "cqarcvwndavg": { "readonly": true, "type": "integer" }, "cqarcvwndmin": { "readonly": true, "type": "integer" }, "cqaretxcong": { "readonly": true, "type": "integer" }, "cqaretxcorr": { "readonly": true, "type": "integer" }, "cqaretxpackets": { "readonly": true, "type": "integer" }, "cqarttavg": { "readonly": true, "type": "integer" }, "cqarttmax": { "readonly": true, "type": "integer" }, "cqarttmin": { "readonly": true, "type": "integer" }, "cqasamples": { "readonly": true, "type": "integer" }, "cqathruputavg": { "readonly": true, "type": "integer" }, "creditsinbytes": { "readonly": true, "type": "integer" }, "destip": { "readonly": true, "type": "string" }, "destport": { "readonly": true, "type": "integer" }, "detail": { "enum": [ "LINK", "NAME", "CONNFAILOVER", "FULL", "NNM", "FULL+" ], "type": "object" }, "entityname": { "readonly": true, "type": "string" }, "filterexpression": { "type": "string" }, "filtername": { "type": "boolean" }, "flavor": { "enum": [ "Default", "Westwood", "BIC", "CUBIC", "Nile" ], "readonly": true, "type": "string" }, "httpendseq": { "readonly": true, "type": "integer" }, "httprequest": { "enum": [ "OPTIONS", "GET", "HEAD", "POST", "PUT", "DELETE", "TRACE", "TRACK", "CONNECT", "RPCCONNECT" ], "readonly": true, "type": "string" }, "httpreqver": { "enum": [ "HTTP_1_0", "HTTP_1_1", "HTTP_0_9", "RTSP_1_0", "SIP_2_0", "VPN_ICA_SOCKS", "VPN_ICA_CGP", "HTTP_2_0" ], "readonly": true, "type": "string" }, "httprspcode": { "readonly": true, "type": "integer" }, "httpstate": { "enum": [ "INITIALIZED", "CONTENT_LENGTH", "CHUNKED", "WAIT_FINAL_ACK", "UNKNOWN", "DONE", "WAIT_FIN" ], "readonly": true, "type": "string" }, "idletime": { "readonly": true, "type": "integer" }, "irs": { "readonly": true, "type": "integer" }, "iss": { "readonly": true, "type": "integer" }, "link": { "type": "boolean" }, "linkburstratecontrol": { "enum": [ "DISABLED", "FIXED", "DYNAMIC" ], "readonly": true, "type": "string" }, "linkbwestimate": { "readonly": true, "type": "integer" }, "linkcongstate": { "enum": [ "open", "recovery", "loss", "reneg", "partial_ACK", "retx_lost" ], "readonly": true, "type": "string" }, "linkconnid": { "readonly": true, "type": "integer" }, "linkcredits": { "readonly": true, "type": "integer" }, "linkdestip": { "readonly": true, "type": "string" }, "linkdestport": { "readonly": true, "type": "integer" }, "linkentityname": { "readonly": true, "type": "string" }, "linkflavor": { "enum": [ "Default", "Westwood", "BIC", "CUBIC", "Nile" ], "readonly": true, "type": "string" }, "linkidletime": { "readonly": true, "type": "integer" }, "linkmaxrcvbuf": { "readonly": true, "type": "integer" }, "linkmaxsndbuf": { "readonly": true, "type": "integer" }, "linkname": { "readonly": true, "type": "string" }, "linknsbretxq": { "readonly": true, "type": "integer" }, "linknsbtcpwaitq": { "readonly": true, "type": "integer" }, "linknswsvalue": { "readonly": true, "type": "integer" }, "linkoptionflag": { "enum": [ "sack", "timstmp", "ws" ], "readonly": true, "type": "object" }, "linkpeerwsvalue": { "readonly": true, "type": "integer" }, "linkrateinbytes": { "readonly": true, "type": "integer" }, "linkrateschedulerqueue": { "readonly": true, "type": "integer" }, "linkrealtimertt": { "readonly": true, "type": "integer" }, "linkrttmin": { "readonly": true, "type": "integer" }, "linkrxqsize": { "readonly": true, "type": "integer" }, "linksackblocks": { "readonly": true, "type": "integer" }, "linkservicetype": { "enum": [ "HTTP", "FTP", "TCP", "UDP", "SSL", "SSL_BRIDGE", "SSL_TCP", "NNTP", "RPCSVR", "DNS", "ADNS", "SNMP", "RTSP", "DHCPRA", "ANY", "SIP_UDP", "SIP_TCP", "SIP_SSL", "DNS_TCP", "ADNS_TCP", "HTTPSVR", "HTTPCLIENT", "NAT", "HA", "AAA", "SINCTCP", "VPN AFTP", "MONITORS", "SSLVPN UDP", "SINCUDP", "RIP", "UDP CLNT", "SASP", "RPCCLNTS", "ROUTE", "AUDIT", "STA HTTP", "STA SSL", "DNS RESOLVE", "RDP", "MYSQL", "MSSQL", "DIAMETER", "SSL_DIAMETER", "TFTP", "ORACLE", "ICA", "RADIUS", "RADIUSListener", "SMPP", "PPTP", "GRE", "SYSLOGTCP", "SYSLOGUDP", "FIX", "SSL_FIX", "QUIC", "TFTP_DATA", "USER_TCP", "USER_SSL_TCP" ], "readonly": true, "type": "string" }, "linksndbuf": { "readonly": true, "type": "integer" }, "linksndrecoverle": { "readonly": true, "type": "integer" }, "linksourceip": { "readonly": true, "type": "string" }, "linksourceport": { "readonly": true, "type": "integer" }, "linkstate": { "enum": [ "CLOSED", "LISTEN", "SYN_SENT", "SYN_RECEIVED", "ESTABLISHED", "CLOSE_WAIT", "FIN_WAIT_1", "CLOSING", "LAST_ACK", "FIN_WAIT_2", "TIME_WAIT", "NA" ], "readonly": true, "type": "string" }, "linktcpmode": { "enum": [ "TRANSPARENT", "ENDPOINT" ], "readonly": true, "type": "string" }, "linktxqsize": { "readonly": true, "type": "integer" }, "listen": { "type": "boolean" }, "maxack": { "readonly": true, "type": "integer" }, "maxrcvbuf": { "readonly": true, "type": "integer" }, "maxsndbuf": { "readonly": true, "type": "integer" }, "msgversionnnm": { "readonly": true, "type": "integer" }, "mss": { "readonly": true, "type": "integer" }, "name": { "readonly": true, "type": "string" }, "nodeid": { "type": "integer" }, "nsbretxq": { "readonly": true, "type": "integer" }, "nsbtcpwaitq": { "readonly": true, "type": "integer" }, "nswsvalue": { "readonly": true, "type": "integer" }, "optionflags": { "enum": [ "sack", "timstmp", "ws" ], "readonly": true, "type": "object" }, "outoforderblocks": { "readonly": true, "type": "integer" }, "outoforderbytes": { "readonly": true, "type": "integer" }, "outoforderflushedcount": { "readonly": true, "type": "integer" }, "outoforderpkts": { "readonly": true, "type": "integer" }, "peerwsvalue": { "readonly": true, "type": "integer" }, "priority": { "enum": [ "SC Priority", "Priority queue1", "priority queue2", "priority queue3", "DoS Priority", "Surge Priority" ], "readonly": true, "type": "string" }, "rateinbytes": { "readonly": true, "type": "integer" }, "rateschedulerqueue": { "readonly": true, "type": "integer" }, "rcvnxt": { "readonly": true, "type": "integer" }, "rcvwnd": { "readonly": true, "type": "integer" }, "realtimertt": { "readonly": true, "type": "integer" }, "retxretrycnt": { "readonly": true, "type": "integer" }, "rttmin": { "readonly": true, "type": "integer" }, "rttsmoothed": { "readonly": true, "type": "integer" }, "rttvariance": { "readonly": true, "type": "integer" }, "rxqsize": { "readonly": true, "type": "integer" }, "sackblocks": { "readonly": true, "type": "integer" }, "sndbuf": { "readonly": true, "type": "integer" }, "sndcwnd": { "readonly": true, "type": "integer" }, "sndnxt": { "readonly": true, "type": "integer" }, "sndrecoverle": { "readonly": true, "type": "integer" }, "sndunack": { "readonly": true, "type": "integer" }, "sourceip": { "readonly": true, "type": "string" }, "sourcenodeidnnm": { "readonly": true, "type": "integer" }, "sourceport": { "readonly": true, "type": "integer" }, "state": { "enum": [ "CLOSED", "LISTEN", "SYN_SENT", "SYN_RECEIVED", "ESTABLISHED", "CLOSE_WAIT", "FIN_WAIT_1", "CLOSING", "LAST_ACK", "FIN_WAIT_2", "TIME_WAIT", "NA" ], "readonly": true, "type": "string" }, "svctype": { "enum": [ "HTTP", "FTP", "TCP", "UDP", "SSL", "SSL_BRIDGE", "SSL_TCP", "NNTP", "RPCSVR", "DNS", "ADNS", "SNMP", "RTSP", "DHCPRA", "ANY", "SIP_UDP", "SIP_TCP", "SIP_SSL", "DNS_TCP", "ADNS_TCP", "HTTPSVR", "HTTPCLIENT", "NAT", "HA", "AAA", "SINCTCP", "VPN AFTP", "MONITORS", "SSLVPN UDP", "SINCUDP", "RIP", "UDP CLNT", "SASP", "RPCCLNTS", "ROUTE", "AUDIT", "STA HTTP", "STA SSL", "DNS RESOLVE", "RDP", "MYSQL", "MSSQL", "DIAMETER", "SSL_DIAMETER", "TFTP", "ORACLE", "ICA", "RADIUS", "RADIUSListener", "SMPP", "PPTP", "GRE", "SYSLOGTCP", "SYSLOGUDP", "FIX", "SSL_FIX", "QUIC", "TFTP_DATA", "USER_TCP", "USER_SSL_TCP" ], "readonly": true, "type": "string" }, "targetnodeidnnm": { "readonly": true, "type": "integer" }, "tcpmode": { "enum": [ "TRANSPARENT", "ENDPOINT" ], "readonly": true, "type": "string" }, "td": { "readonly": true, "type": "integer" }, "trcount": { "readonly": true, "type": "integer" }, "txqsize": { "readonly": true, "type": "integer" } }, "title": "nsconnectiontable", "type": "object" }
o30745
{ "properties": { "experience_level": { "description": "The required experience level for the job positions", "type": "string" }, "keywords": { "description": "The keywords to search for in job positions", "items": { "type": "string" }, "type": "array" }, "location": { "description": "The location of the job positions", "type": "string" }, "salary_range": { "properties": { "max_salary": { "description": "The maximum salary range", "type": "number" }, "min_salary": { "description": "The minimum salary range", "type": "number" } }, "type": "object" } }, "required": [], "type": "object" }
search_jobs_4f621276
{ "additionalProperties": false, "description": "Schema for a PII enrichment original values", "properties": { "pii": { "additionalProperties": false, "anyOf": [ { "required": [ "pojo" ] }, { "required": [ "json" ] } ], "properties": { "json": { "description": "A JSON field replacement from the EnrichedEvent POJO (e.g. contexts). Each entry in this array is a match of the jsonPath for that field", "items": { "properties": { "fieldMapping": { "additionalProperties": false, "description": "A single replacement (there can be multiple) caused by specifying that JsonPath", "properties": { "fieldName": { "description": "The name of the field", "enum": [ "contexts", "derived_contexts", "unstruct_event" ] }, "jsonPath": { "description": "The JsonPath that was specified", "type": "string" }, "modifiedValue": { "description": "The modified value (e.g. hash) of the original value", "maxLength": 128, "type": "string" }, "originalValue": { "description": "The original value of the field", "type": "string" }, "schema": { "description": "The iglu schema corresponding to this field and value", "pattern": "^iglu:([a-zA-Z0-9-_.]+)/([a-zA-Z0-9-_]+)/([a-zA-Z0-9-_]+)/([1-9][0-9]*|\\*)-((?:0|[1-9][0-9]*)|\\*)-((?:0|[1-9][0-9]*)|\\*)$", "type": "string" } }, "required": [ "fieldName", "jsonPath", "originalValue", "modifiedValue", "schema" ], "type": "object" } }, "type": "object" }, "type": "array" }, "pojo": { "description": "A scalar field replacement from the EnrichedEvent POJO (e.g. user_id)", "items": { "additionalProperties": false, "properties": { "fieldName": { "description": "The name of the field", "enum": [ "user_id", "user_ipaddress", "user_fingerprint", "domain_userid", "network_userid", "ip_organization", "ip_domain", "tr_orderid", "ti_orderid", "mkt_term", "mkt_content", "se_category", "se_action", "se_label", "se_property", "mkt_clickid", "refr_domain_userid", "domain_sessionid" ] }, "modifiedValue": { "description": "The value that this field was replaced with (e.g. the hash of the original)", "maxLength": 128, "type": "string" }, "originalValue": { "description": "The original value (before the PII transform), of the field", "type": "string" } }, "required": [ "fieldName", "originalValue", "modifiedValue" ], "type": "object" }, "type": "array" } }, "type": "object" }, "strategy": { "additionalProperties": false, "description": "The strategy used to modify the original value", "properties": { "pseudonymize": { "additionalProperties": false, "description": "The pseudonymize strategy for modifying the original value", "properties": { "hashFunction": { "description": "The function used to pseudonymize", "enum": [ "MD2", "MD5", "SHA-1", "SHA-256", "SHA-384", "SHA-512" ] } }, "required": [ "hashFunction" ], "type": "object" } }, "required": [ "pseudonymize" ], "type": "object" } }, "required": [ "pii", "strategy" ], "self": { "format": "jsonschema", "name": "pii_transformation", "vendor": "com.snowplowanalytics.snowplow", "version": "1-0-0" }, "type": "object" }
sp_307_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "authorization": true, "content-type": "application/x-www-form-urlencoded.", "id": "http://localhost:3000/schemas/token-revoke-request.json#", "method": "POST", "properties": { "token": { "description": "The token that the client wants to get revoked.", "type": "string" }, "token_type_hint": { "description": "Optional hint about the type of the submitted token; if omitted the server will use heuristics to determine the token type:", "enum": [ "access_token", "refresh_token" ], "type": "string" } }, "required": [ "token", "token_type_hint" ], "resource": "POST /token/revoke", "title": "Token revoke", "type": "object" }
o20489
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_LimitResponse": { "description": "LimitResponse defines how to handle requests that can not be executed right now.", "properties": { "queuing": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_QueuingConfiguration", "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`." }, "type": { "description": "`type` is \"Queue\" or \"Reject\". \"Queue\" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. \"Reject\" means that requests that can not be executed upon arrival are rejected. Required.", "type": "string" } }, "required": [ "type" ], "type": "object", "x-kubernetes-unions": [ { "discriminator": "type", "fields-to-discriminateBy": { "queuing": "Queuing" } } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_LimitedPriorityLevelConfiguration": { "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n * How are requests for this priority level limited?\n * What should be done with requests that exceed the limit?", "properties": { "assuredConcurrencyShares": { "_format": "int32", "description": "`assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level:\n\n ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )\n\nbigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30.", "type": "integer" }, "limitResponse": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_LimitResponse", "description": "`limitResponse` indicates what to do with requests that can not be executed right now" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfiguration": { "description": "PriorityLevelConfiguration represents the configuration of a priority level.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": "string" }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "PriorityLevelConfiguration" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationSpec", "description": "`spec` is the specification of the desired behavior of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationStatus", "description": "`status` is the current status of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "flowcontrol.apiserver.k8s.io", "kind": "PriorityLevelConfiguration", "version": "v1alpha1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationCondition": { "description": "PriorityLevelConfigurationCondition defines the condition of priority level.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another." }, "message": { "description": "`message` is a human-readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", "type": "string" }, "status": { "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", "type": "string" }, "type": { "description": "`type` is the type of the condition. Required.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationSpec": { "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.", "properties": { "limited": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_LimitedPriorityLevelConfiguration", "description": "`limited` specifies how requests are handled for a Limited priority level. This field must be non-empty if and only if `type` is `\"Limited\"`." }, "type": { "description": "`type` indicates whether this priority level is subject to limitation on request execution. A value of `\"Exempt\"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of `\"Limited\"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required.", "type": "string" } }, "required": [ "type" ], "type": "object", "x-kubernetes-unions": [ { "discriminator": "type", "fields-to-discriminateBy": { "limited": "Limited" } } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationStatus": { "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".", "properties": { "conditions": { "description": "`conditions` is the current state of \"request-priority\".", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationCondition" }, "type": "array", "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_QueuingConfiguration": { "description": "QueuingConfiguration holds the configuration parameters for queuing", "properties": { "handSize": { "_format": "int32", "description": "`handSize` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8.", "type": "integer" }, "queueLengthLimit": { "_format": "int32", "description": "`queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50.", "type": "integer" }, "queues": { "_format": "int32", "description": "`queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64.", "type": "integer" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "properties": { "continue": { "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.", "type": "string" }, "remainingItemCount": { "_format": "int64", "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.", "type": "integer" }, "resourceVersion": { "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": [ "string", "null" ] }, "items": { "description": "`items` is a list of request-priorities.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfiguration" }, "type": [ "array", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "PriorityLevelConfigurationList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "flowcontrol.apiserver.k8s.io", "kind": "PriorityLevelConfigurationList", "version": "v1alpha1" } ] }
kb_771_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "AuthorizationType", "HttpMethod", "ResourceId", "RestApiId" ], "additionalProperties": false, "properties": { "AuthorizationType": { "type": "string", "enum": [ "AWS_IAM", "NONE" ] }, "HttpMethod": { "type": "string", "enum": [ "DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT" ] }, "ResourceId": { "type": "string", "pattern": "^[a-z0-9]+$" }, "RestApiId": { "type": "string", "pattern": "^[a-z0-9]{10}$" }, "ApiKeyRequired": { "type": "string", "enum": [ "true", "false" ] }, "RequestModels": { "type": "object", "properties": {}, "patternProperties": { ".+": { "type": "string" } }, "additionalProperties": false }, "RequestParameters": { "type": "object", "properties": {}, "patternProperties": { "^method\\.request\\.(querystring|header|path)\\..+$": { "type": "string", "enum": [ "true", "false" ] } }, "additionalProperties": false } } }
o21851
{ "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" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authorization_v1beta1_SelfSubjectAccessReviewSpec": { "description": "SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", "properties": { "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" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authorization_v1beta1_SubjectAccessReviewStatus": { "description": "SubjectAccessReviewStatus", "properties": { "allowed": { "description": "Allowed is required. True if the action would be allowed, false otherwise.", "type": "boolean" }, "denied": { "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.", "type": "boolean" }, "evaluationError": { "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", "type": "string" }, "reason": { "description": "Reason is optional. It indicates why a request was allowed or denied.", "type": "string" } }, "required": [ "allowed" ], "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": "SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means \"in all namespaces\". Self is a special case, because users should always be able to check whether they can perform an action", "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": [ "authorization.k8s.io/v1beta1" ], "type": [ "string", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "SelfSubjectAccessReview" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authorization_v1beta1_SelfSubjectAccessReviewSpec", "description": "Spec holds information about the request being evaluated. user and groups must be empty" }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_authorization_v1beta1_SubjectAccessReviewStatus", "description": "Status is filled in by the server and indicates whether the request is allowed or not" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "authorization.k8s.io", "kind": "SelfSubjectAccessReview", "version": "v1beta1" } ] }
kb_950_Normalized
{ "properties": { "linkerd": { "properties": { "admin-port": { "default": 9990, "description": "Admin port. Provides an administrative UI for this instance.", "type": "integer" }, "cpus": { "default": 0.25, "description": "CPU shares to allocate to each linkerd instance.", "minimum": 0.25, "type": "number" }, "instances": { "default": 1, "description": "Number of instances to run.", "minimum": 1, "type": "integer" }, "internal-port": { "default": 4141, "description": "Internal routing port.", "type": "integer" }, "mem": { "default": 256.0, "description": "Memory (MB) to allocate to each linkerd task.", "minimum": 256.0, "type": "number" }, "resource-roles": { "default": "\"*\", \"slave_public\"", "description": "The accepted resource roles (e.g. slave_public). By default, this will deploy to any agents with the \"*\" or \"slave_public\" roles.", "type": "string" }, "routing-port": { "default": 4140, "description": "Routing port.", "type": "integer" } }, "required": [ "admin-port", "cpus", "instances", "internal-port", "mem", "resource-roles", "routing-port" ], "type": "object" } }, "required": [ "linkerd" ], "type": "object" }
o90730
{ "additionalProperties": false, "definitions": { "ContentTypeType": { "additionalProperties": false, "oneOf": [ { "$ref": "#/definitions/textTypeType" }, { "$ref": "#/definitions/MimeType" } ], "type": "object" }, "KnownRelCodeType": { "description": "alternate: The value \"alternate\" signifies that the IRI in the value of the href attribute identifies an alternate version of the resource described by the containing element.related: The value \"related\" signifies that the IRI in the value of the href attribute identifies a resource related to the resource described by the containing element. For example, the feed for a site that discusses the performance of the search engine at \"http://search.example.com\" might contain, as a child of atom:feed. An identical link might appear as a child of any atom:entry whose content contains a discussion of that same search engine.self: The value \"self\" signifies that the IRI in the value of the href attribute identifies a resource equivalent to the containing element.enclosure: The value \"enclosure\" signifies that the IRI in the value of the href attribute identifies a related resource that is potentially large in size and might require special handling. For atom:link elements with rel=\"enclosure\", the length attribute SHOULD be provided.via: The value \"via\" signifies that the IRI in the value of the href attribute identifies a resource that is the source of the information provided in the containing element.", "enum": [ "alternate", "related", "self", "enclosure", "via" ] }, "MimeType": { "description": "XML encoded identifier of a standard MIME type, possibly a parameterized MIME type. Copied from ows 2.0.1", "pattern": "(application|audio|image|text|video|message|multipart|model)/.+(;\\s*.+=.+)*", "type": "string" }, "RelCodeType": { "additionalProperties": false, "oneOf": [ { "$ref": "#/definitions/KnownRelCodeType" }, { "type": "string" } ], "type": "object" }, "categoryType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes", "required": [ "term" ] }, { "properties": { "label": { "type": "string" }, "scheme": { "format": "uri", "type": "string" }, "term": { "type": "string" } } } ], "description": "The Atom category construct is defined in section 4.2.2 of the format spec.", "type": "object" }, "commonAttributes": { "additionalProperties": true, "properties": { "xml:base": { "type": "string" }, "xml:lang": { "type": "string" } }, "type": "object" }, "contentType": { "additionalProperties": true, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "src": { "format": "uri", "type": "string" }, "type": { "$ref": "#/definitions/ContentTypeType" } } } ], "description": "The Atom content construct is defined in section 4.1.3 of the format spec.", "type": "object" }, "dateTimeType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "#text": { "format": "date-time", "type": "string" } } } ], "type": "object" }, "emailType": { "description": "Schema definition for an email address.", "pattern": "\\w+@(\\w+\\.)+\\w+", "type": "string" }, "entry": { "$ref": "#/definitions/entryType" }, "entryType": { "additionalProperties": true, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "author": { "items": { "$ref": "#/definitions/personType" }, "type": "array" }, "category": { "items": { "$ref": "#/definitions/categoryType" }, "type": "array" }, "content": { "$ref": "#/definitions/contentType" }, "contributor": { "items": { "$ref": "#/definitions/personType" }, "type": "array" }, "id": { "$ref": "#/definitions/idType" }, "link": { "items": { "$ref": "#/definitions/linkType" }, "type": "array" }, "published": { "$ref": "#/definitions/dateTimeType" }, "rights": { "$ref": "#/definitions/textType" }, "source": { "$ref": "#/definitions/textType" }, "summary": { "$ref": "#/definitions/textType" }, "title": { "$ref": "#/definitions/textType" }, "updated": { "$ref": "#/definitions/dateTimeType" } } } ], "description": "The Atom entry construct is defined in section 4.1.2 of the format spec.", "type": "object" }, "feedType": { "additionalProperties": true, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "author": { "items": { "$ref": "#/definitions/personType" }, "type": "array" }, "category": { "items": { "$ref": "#/definitions/categoryType" }, "type": "array" }, "contributor": { "items": { "$ref": "#/definitions/personType" }, "type": "array" }, "entry": { "items": { "$ref": "#/definitions/entryType" }, "type": "array" }, "generator": { "$ref": "#/definitions/generatorType" }, "icon": { "$ref": "#/definitions/iconType" }, "id": { "$ref": "#/definitions/idType" }, "link": { "items": { "$ref": "#/definitions/linkType" }, "type": "array" }, "logo": { "$ref": "#/definitions/logoType" }, "rights": { "$ref": "#/definitions/textType" }, "subtitle": { "$ref": "#/definitions/textType" }, "title": { "$ref": "#/definitions/textType" }, "updated": { "$ref": "#/definitions/dateTimeType" } } } ], "description": "The Atom feed construct is defined in section 4.1.1 of the format spec.", "type": "object" }, "generatorType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "#text": { "type": "string" }, "uri": { "format": "uri", "type": "string" }, "version": { "type": "string" } } } ], "description": "The Atom generator element is defined in section 4.2.4 of the format spec.", "type": "object" }, "iconType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "#text": { "format": "uri", "type": "string" } } } ], "description": "The Atom icon construct is defined in section 4.2.5 of the format spec.", "type": "object" }, "idType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "#text": { "format": "uri", "type": "string" } } } ], "description": "The Atom id construct is defined in section 4.2.6 of the format spec.", "type": "object" }, "linkType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes", "required": [ "href" ] }, { "properties": { "href": { "format": "uri", "type": "string" }, "hreflang": { "type": "string" }, "length": { "minimum": 1, "type": "integer" }, "rel": { "$ref": "#/definitions/RelCodeType" }, "title": { "type": "string" }, "type": { "type": "string" } } } ], "description": "The Atom link construct is defined in section 3.4 of the format spec.", "type": "object" }, "logoType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "#text": { "format": "uri", "type": "string" } } } ], "description": "The Atom logo construct is defined in section 4.2.8 of the format spec.", "type": "object" }, "personType": { "additionalProperties": true, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "email": { "$ref": "#/definitions/emailType" }, "name": { "type": "string" }, "uri": { "$ref": "#/definitions/uriType" } } } ], "description": "The Atom person construct is defined in section 3.2 of the format spec.", "type": "object" }, "sourceType": { "additionalProperties": true, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "author": { "items": { "$ref": "#/definitions/personType" }, "type": "array" }, "category": { "items": { "$ref": "#/definitions/categoryType" }, "type": "array" }, "contributor": { "items": { "$ref": "#/definitions/personType" }, "type": "array" }, "generator": { "$ref": "#/definitions/generatorType" }, "icon": { "$ref": "#/definitions/iconType" }, "id": { "$ref": "#/definitions/idType" }, "link": { "items": { "$ref": "#/definitions/linkType" }, "type": "array" }, "logo": { "$ref": "#/definitions/logoType" }, "rights": { "$ref": "#/definitions/textType" }, "subtitle": { "$ref": "#/definitions/textType" }, "title": { "$ref": "#/definitions/textType" }, "updated": { "$ref": "#/definitions/dateTimeType" } } } ], "description": "The Atom source construct is defined in section 4.2.11 of the format spec.", "type": "object" }, "textType": { "additionalProperties": true, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "type": { "$ref": "#/definitions/textTypeType" } } } ], "description": "The Atom text construct is defined in section 3.1 of the format spec.", "type": "object" }, "textTypeType": { "enum": [ "text", "html", "xhtml" ] }, "uriType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "#text": { "format": "uri", "type": "string" } } } ], "type": "object" } }, "description": "This version of the Atom schema is based on version 1.0 of the format specifications, found here http://www.atomenabled.org/developers/syndication/atom-format-spec.php. The original namespace was http://www.w3.org/2005/Atom but we changed it to http://www.opengis.net/atom/2005 to avoid conflicting definitions of the same namespace in the future. NOT DONE YET. There is no XSD official schema for atom but this one seems to be the most known: http://www.kbcafe.com/rss/atom.xsd.xml (The Atom Publishing Protocol was issued as a Proposed Standard in IETF RFC 5023 in October 2007 http://tools.ietf.org/html/rfc5023)\nAn Atom document may have two root elements, feed and entry, as defined in section 2.", "properties": { "feed": { "$ref": "#/definitions/feedType" } }, "required": [ "feed" ], "title": "converted/atomSchema.xsd", "type": "object" }
o10421
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "award": { "description": "The award made in support of the object.", "properties": { "awardIdentifier": { "_format": "uri", "description": "An HTTP URI for the award.", "type": "string" }, "awardName": { "description": "The textual representation of the award identifier as issued by the sponsor.", "type": "string" } }, "required": [ "awardName" ], "type": "object" }, "license": { "properties": { "description": { "description": "Text describing to what aspect of the object the license is applied.", "type": "string" }, "endDate": { "_format": "date-time", "description": "The date and time at which this resource will no longer be licensed in this way.", "type": "string" }, "startDate": { "_format": "date-time", "description": "The date and time at which the license will apply to this object. If the resource was always licensed this way, then this date can be omitted.", "type": "string" }, "uri": { "_format": "uri", "description": "The HTTP URI of the license of the object or--if startDate and endDate are included--in effect during the period listed.", "type": "string" } }, "required": [ "uri" ], "type": "object" }, "organization": { "description": "An organization or institution.", "properties": { "email": { "_format": "uri", "description": "An email address for this organization", "type": "string" }, "name": { "description": "The name of the organization.", "type": "string" }, "sameAs": { "description": "Identifiers that describe this organization", "items": { "_format": "uri", "description": "A single HTTP URI that describes this organization", "type": "string" }, "type": "array" } }, "required": [ "name" ], "type": "object" }, "otherProperties": { "properties": { "description": { "description": "A description of this collection of properties.", "type": "string" }, "name": { "description": "A name that describes this collection of properties.", "type": "string" }, "properties": { "description": "The collection of key/value pair properties.", "type": "object" }, "uri": { "_format": "uri", "description": "A URI that points to the definition, schema, and/or vocabulary of this entry.", "type": "string" } }, "required": [ "name", "properties" ], "type": "object" }, "person": { "description": "A person that is a contributor to the research object.", "properties": { "additionalName": { "description": "Also called the \"middle name\", this element will be derived from the creator.name by SHARE if not supplied by the source.", "type": "string" }, "affiliation": { "description": "The organization(s) that this person is affiliated with. For example, a school/university.", "items": { "$ref": "#/definitions/organization" }, "type": "array" }, "email": { "_format": "email", "description": "The email address for this person.", "type": "string" }, "familyName": { "description": "Also called the \"last name\", this element is preferred over using the combined \"name\" field.", "type": "string" }, "givenName": { "description": "Also called the \"first name\", this element is preferred over using the combined \"name\" field.", "type": "string" }, "name": { "description": "The name of the person if familyName, givenName, and/or additionalName.", "type": "string" }, "sameAs": { "description": "An array of identifiers expressed as HTTP URIs that describe the person. For example, an ORCID, ResearcherID, arXiv author ID, ScopusID, ISNI, or other unique identifier expressed as an HTTP URI.", "items": { "_format": "uri", "description": "An HTTP URI that describes the person.", "type": "string" }, "type": "array" } }, "required": [ "name" ], "type": "object" }, "sponsor": { "description": "This describes the sponsor of the resource.", "properties": { "sponsorIdentifier": { "_format": "uri", "description": "A globally unique identifier for the sponsor of the resource should be recorded here.", "type": "string" }, "sponsorName": { "description": "The name of the entity responsible for sponsoring the resource, recorded here as text.", "type": "string" } }, "required": [ "sponsorName" ], "type": "object" }, "sponsorship": { "description": "A sponsorship associated with the resource.", "properties": { "award": { "$ref": "#/definitions/award" }, "sponsor": { "$ref": "#/definitions/sponsor" } }, "required": [ "sponsor" ], "type": "object" } }, "properties": { "contributors": { "description": "The people or organizations responsible for making contributions to an object.", "items": { "anyOf": [ { "$ref": "#/definitions/person" }, { "$ref": "#/definitions/organization" } ] }, "type": "array" }, "description": { "description": "A textual description of the resource.", "type": "string" }, "freeToRead": { "description": "A date range specifying when this research object will be accessible, without restrictsions such as fee or registration). If the object is free to read, then only the startDate is required.", "properties": { "endDate": { "_format": "date", "description": "The date and time at which restrictions such as fees or registrations will be in place limiting accessibility.", "type": "string" }, "startDate": { "description": "The date and time at which the object will be accessible. If the resource was always free to read, then the date the object was created should be used.", "format": "date", "type": [ "string", "null" ] } }, "required": [ "startDate" ], "type": "object" }, "languages": { "description": "The primary languages in which the content of the resource is presented. Values used for this element MUST conform to ISO 639\u20133. This offers two and three letter tags e.g. \"en\" or \"eng\" for English and \"en-GB\" for English used in the UK.", "items": { "pattern": "[a-z][a-z]?[a-z]", "type": [ "string", "null" ] }, "type": "array" }, "licenses": { "description": "The licenses under which the object has been released.", "items": { "$ref": "#/definitions/license" }, "type": "array" }, "otherProperties": { "description": "Any structured or unstructured properties (properties that do or do not include URIs to definitions) that do not fall into the schema provided.", "items": { "$ref": "#/definitions/otherProperties" }, "type": "array" }, "providerUpdatedDateTime": { "_format": "date-time", "description": "The date and time the provider describing the object has been updated about either the creation or update of an object by its contributors. E.g., this may be the date a manuscript is published, but not necessarily the date the manuscript was written.", "type": "string" }, "publisher": { "anyOf": [ { "$ref": "#/definitions/person" }, { "$ref": "#/definitions/organization" } ], "description": "This element contains the name of the entity, typically a 'publisher', responsible for making the version of record of the resource available. This could be a person, organisation or service", "type": "object" }, "shareProperties": { "description": "Properties that are generated and/or organized by the SHARE system (e.g., timestamps of when SHARE processes data). These properities are used internally and are not guaranteed to remain consistent.", "type": "object" }, "sponsorships": { "description": "Sponsorships associated with the object", "items": { "$ref": "#/definitions/sponsorship" }, "type": "array" }, "subjects": { "description": "The topic or domain of the object. Follows recommendations of http://dublincore.org/documents/2012/06/14/dcmi-terms/?v=elements#terms-subject", "items": { "type": "string" }, "type": "array" }, "tags": { "description": "Non-hierarchical terms or keywords assigned to an object to aid browsing or searching.", "items": { "type": "string" }, "type": "array" }, "title": { "description": "The title and any sub-titles of the resource.", "type": "string" }, "uris": { "properties": { "anyOf": { "descriptorUris": { "description": "A persistent HTTP URI that points to a description of the research object.", "items": { "_format": "uri", "type": "string" }, "type": "array" }, "objectUris": { "description": "A persistent HTTP URI that points directly to the research object.", "items": { "_format": "uri", "type": "string" }, "type": "array" }, "providerUris": { "description": "The persistent HTTP URI that points to the object's record at the SHARE provider regardless of format.", "items": { "_format": "uri", "type": "string" }, "type": "array" } }, "canonicalUri": { "_format": "uri", "description": "The preferred persistent HTTP URI that represents the research object. This should be repeated in exactly one other field in the uris object.", "type": "string" } }, "required": [ "canonicalUri" ], "type": "object" }, "version": { "description": "Infomation about this version of the object.", "properties": { "versionDateTime": { "_format": "date-time", "description": "The date and time the object was created or updated by its contributors. If the data for the object describes the first version of that object, it will be the date and time of object creation, otherwise it will be considered the date and time the object was updated.", "type": "string" }, "versionId": { "description": "The name or number representing this version of the object." }, "versionOf": { "_format": "uri", "description": "If the object is an update, the HTTP URI of the object the content is updating. Depending upon what the upate is relative to, that could be the object at creation or a previous version.", "type": "string" } }, "type": "object" } }, "required": [ "title", "contributors", "uris", "providerUpdatedDateTime" ], "type": "object" }
o60179
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://judkins.house/apis/k2/v1/autoScalingConfig.json", "$$target": "autoScalingConfig.json", "title": "AutoScaling configurations", "description": "Describes the autoScaling configuration for a nodePool.", "properties": { "minNodes": { "description": "Minimum number of nodes the cluster auto-scaler should scale down to.", "minimum": 1, "type": "number" }, "maxNodes": { "description": "Maximum number of nodes the cluster auto-scaler should scale up to.", "minimum": 2, "type": "number" }, "enabled": { "description": "Enable or disable the cluster auto-scaler addon.", "type": "boolean" } }, "required": [ "minNodes", "maxNodes", "enabled" ], "additionalProperties": false, "type": "object" }
o90351
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Google form driven interview", "properties": { "callbackId": { "type": "string" }, "createdOn": { "_format": "date-time", "type": "string" }, "doc_type": { "pattern": "^interview$", "type": "string" }, "humanId": { "type": "string" }, "reason": { "enum": [ "burial", "suspect" ] } }, "required": [ "doc_type", "createdOn", "reason", "humanId", "callbackId" ], "title": "Interview", "type": "object" }
o37725
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape (for triangle)", "type": "number" }, "height": { "description": "The height of the shape (for triangle)", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape (for circle)", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width" ], "type": "object" }, "shape": { "description": "The shape for which area needs to be calculated", "enum": [ "rectangle", "circle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_4f2bd9b6
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "nome": { "type": "string" }, "email": { "type": "string" }, "senha": { "type": "string" }, "telefones": { "type": "array", "items": {} } }, "required": [ "nome", "email", "senha", "telefones" ] }
o34462
{ "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "`name` is the name of the service. Required", "type": [ "string", "null" ] }, "namespace": { "description": "`namespace` is the namespace of the service. Required", "type": [ "string", "null" ] }, "path": { "description": "`path` is an optional URL path which will be sent in any request to this service.", "type": [ "string", "null" ] }, "port": { "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", "format": "int32", "type": [ "integer", "null" ] } }, "required": [ "namespace", "name" ], "type": "object" }
kb_988_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "PickedProduct", "description": "A specific product within a packing list", "type": "object", "properties": { "doc_type": { "type": "string", "pattern": "^pickedProduct$" }, "version": { "type": "string", "format": "semver" }, "expectedQty": { "type": "integer" }, "actualQty": { "type": "integer" }, "productType": { "type": "string" } }, "required": [ "doc_type", "version", "expectedQty", "actualQty", "productType" ] }
o37730
{ "default": {}, "definitions": { "propertyDefinition": { "additionalProperties": { "$ref": "#/definitions/propertyObject" }, "default": {}, "type": "object" }, "propertyObject": { "patternProperties": { "^x_": {} }, "properties": { "contentType": { "description": "Defines the content type of the property", "enum": [ "default", "uid", "xref", "href", "file", "markdown" ], "type": "string" }, "default": {}, "description": { "type": "string" }, "items": { "anyOf": [ { "$ref": "#/definitions/propertyObject" }, { "$ref": "#/definitions/schemaArray" } ], "default": {} }, "mergeType": { "description": "Defines how to merge the property", "enum": [ "key", "merge", "replace", "ignore" ], "type": "string" }, "properties": { "$ref": "#/definitions/propertyDefinition" }, "reference": { "description": "Defines whether current property is a reference to the actual value of the property", "enum": [ "none", "file" ], "type": "string" }, "tags": { "items": { "type": "string" }, "type": "array" }, "title": { "pattern": "^[^.]*$", "type": "string" }, "type": { "$ref": "#/definitions/simpleTypes" }, "xrefProperties": { "description": "Defines the properties of current object when it is cross referenced by others. Each item is the name of the property in the instance.", "items": { "type": "string" }, "type": "array", "_uniqueItems": true } }, "type": "object" }, "schemaArray": { "items": { "$ref": "#/definitions/propertyObject" }, "minItems": 1, "type": "array" }, "simpleTypes": { "enum": [ "array", "boolean", "integer", "null", "number", "object", "string" ] } }, "properties": { "$schema": { "_format": "uri", "description": "The version of the schema specification, for example, `https://github.com/dotnet/docfx/v1.0/schema#", "type": "string" }, "default": {}, "description": { "type": "string" }, "id": { "description": "It is best practice to include an `id` property as an unique identifier for each schema.", "type": "string" }, "metadata": { "_format": "json-pointer", "type": "string" }, "patternProperties": { "^x_": {} }, "properties": { "$ref": "#/definitions/propertyDefinition" }, "title": { "description": "The title of current schema, `LandingPage`, for example. In DocFX, this value can be used to determine what kind of documents apply to this schema, If not specified, file name of this schema is used.", "type": "string" }, "type": { "description": "The type of the root document model MUST be `object`", "enum": [ "object" ], "type": "string" }, "version": { "description": "The version of current schema object", "type": "string" } }, "required": [ "$schema", "version" ], "title": "DocFX document schema meta-schema", "type": "object" }
o78957
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "This schema represents a numerical value with a unit of measure.", "type": "object", "properties": { "value": { "description": "The numeric value of the element.", "type": "number" }, "unit": { "references": [ { "description": "The unit of measure of the element. Allowed values are drawn from the Common synonyms (non-UCUM) column of [subset of] UCUM, SI and English units. ", "url": "http://www.hl7.de/download/documents/ucum/ucumdata.html" } ], "type": "string" } }, "required": [ "value", "unit" ] }
o44130
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "https://www.yacpdb.org/schemas/yacpdb-tourney.schema.json", "type": "object", "properties": { "name": { "$ref": "#/definitions/text" }, "comments": { "$ref": "#/definitions/text_list" } }, "required": [ "name" ], "additionalProperties": false, "definitions": { "text": { "anyOf": [ { "type": "number" }, { "type": "string", "minLength": 1 } ] }, "text_list": { "type": "array", "elements": { "$ref": "#/definitions/text" }, "minItems": 1, "_uniqueItems": true } } }
o37615
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "FlowSchemaCondition describes conditions for a FlowSchema.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another." }, "message": { "description": "`message` is a human-readable message indicating details about last transition.", "type": [ "string", "null" ] }, "reason": { "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", "type": [ "string", "null" ] }, "status": { "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", "type": [ "string", "null" ] }, "type": { "description": "`type` is the type of the condition. Required.", "type": [ "string", "null" ] } }, "type": "object" }
kb_365_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Jupyter Interactive Widget State JSON schema.", "type": "object", "properties": { "version_major": { "description": "Format version (major)", "type": "number", "minimum": 2, "maximum": 2 }, "version_minor": { "description": "Format version (minor)", "type": "number", "minimum": 0, "maximum": 0 }, "state": { "description": "Model State for All Widget Models - keys are model ids, values are model state", "type": "object", "additionalProperties": { "type": "object", "properties": { "model_name": { "description": "Name of the JavaScript class holding the model implementation", "type": "string" }, "model_module": { "description": "Name of the JavaScript module holding the model implementation", "type": "string" }, "model_module_version": { "description": "Semver range for the JavaScript module holding the model implementation", "type": "string" }, "state": { "description": "Serialized state of the model", "type": "object" }, "buffers": { "description": "Binary buffers in the state", "type": "array", "items": { "type": "object", "properties": { "path": { "description": "A path for a binary buffer value.", "type": "array", "items": { "description": "An object key or array index", "type": [ "string", "number" ] } }, "data": { "description": "A binary buffer encoded as specified in the 'encoding' property", "type": "string" }, "encoding": { "description": "The encoding of the buffer data", "type": "string", "oneOf": [ { "enum": [ "hex" ], "description": "Base 16 encoding, as specified in RFC 4648, section 8 (https://tools.ietf.org/html/rfc4648#section-8)" }, { "enum": [ "base64" ], "description": "Base 64 encoding, as specified in RFC 4648, section 4 (https://tools.ietf.org/html/rfc4648#section-4)" } ] } }, "required": [ "path", "data", "encoding" ] } } }, "required": [ "model_name", "model_module", "state" ] } } }, "required": [ "version_major", "version_minor", "state" ] }
o63608
{ "$schema": "http://json-schema.org/draft-06/schema#", "$id": "http://kalisio.xyz/schemas/users.update-profile.json#", "title": "schemas.OBJECT_NAME", "description": "User profile perspective", "type": "object", "properties": { "avatar": { "type": "object", "field": { "component": "form/KAttachmentField", "helper": "schemas.AVATAR_FIELD_HELPER", "service": "storage", "acceptedFiles": "image/*", "maxFilesize": 0.5, "autoProcessQueue": false, "storagePath": "avatars/<%= id %>", "params": { "public": true } } }, "name": { "type": "string", "maxLength": 128, "minLength": 3, "field": { "component": "form/KTextField", "helper": "schemas.NAME_FIELD_HELPER" } } }, "required": [ "name" ] }
o54586
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base length of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" } }, "required": [ "base", "height", "radius" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_8657f401
{ "$id": "https://json.schemastore.org/jovo-language-model", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "dialogflowEntity": { "type": "object", "properties": { "name": { "type": "string" }, "isOverridable": { "type": "boolean" }, "isEnum": { "type": "boolean" }, "automatedExpansion": { "type": "boolean" }, "isList": { "type": "boolean" } } } }, "description": "JSON Schema for Jovo language Models (https://www.jovo.tech/docs/model)", "properties": { "invocation": { "type": "string" }, "intents": { "type": "array", "items": { "type": "object", "required": ["name", "phrases"], "properties": { "name": { "type": "string" }, "phrases": { "type": "array", "items": { "type": "string" } }, "dialogflow": { "type": "object", "properties": { "priority": { "type": "number" }, "webhookForSlotFilling": { "type": "boolean" } } }, "inputs": { "type": "array", "items": { "type": "object", "required": ["name", "type"], "properties": { "name": { "type": "string" }, "type": { "type": ["string", "object"], "properties": { "alexa": { "type": "string" }, "dialogflow": { "type": "string" } } }, "dialogflow": { "$ref": "#/definitions/dialogflowEntity" } } } } } } }, "inputTypes": { "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "type": "string" }, "dialogflow": { "type": "object", "properties": { "automatedExpansion": { "type": "boolean" } } }, "values": { "type": "array", "items": { "type": "object", "required": ["value"], "properties": { "value": { "type": "string" }, "synonyms": { "type": "array", "items": { "type": "string" } } } } } } } }, "alexa": { "type": "object", "properties": { "interactionModel": { "type": "object", "properties": { "languageModel": { "type": "object", "properties": { "intents": { "type": "array", "items": { "required": ["name", "samples"], "type": "object", "properties": { "name": { "type": "string" }, "samples": { "type": "array", "items": { "type": "string" } } } } } } } } } } }, "dialogflow": { "type": "object", "properties": { "intents": { "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "type": "string" }, "auto": { "type": "boolean" }, "webhookUsed": { "type": "boolean" }, "fallbackIntent": { "type": "boolean" }, "events": { "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "type": "string" } } } } } } }, "entities": { "type": "array", "items": { "allOf": [ { "$ref": "#/definitions/dialogflowEntity" }, { "type": "object", "required": ["name"] } ] } } } } }, "required": ["invocation"], "title": "JSON Schema for Jovo language Models", "type": "object" }
jovo-language-model
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "comments_from_lms": { "comment": { "type": "string" }, "location": { "type": "string" }, "timestamp": { "type": "string", "format": "date-time" } }, "credit": { "enum": [ "credit", "no-credit" ] }, "mode": { "enum": [ "browse", "normal", "review" ] }, "location": { "type": "string" }, "preferences": { "audio_level": { "type": "number", "minimum": 0 }, "language": { "type": "string" }, "delivery_speed": { "type": "number", "minimum": 0 }, "audio_captioning": { "enum": [ -1, 0, 1 ] } }, "total_time": { "type": "string" }, "adl_data": { "type": "array", "items": { "type": "object", "properties": { "activityId": { "type": "string", "format": "uri" }, "agent": { "objectType": { "enum": [ "Agent" ] }, "name": { "type": "string" }, "mbox": { "type": "string", "format": "uri" }, "mbox_sha1sum": { "type": "string" }, "openid": { "type": "string", "format": "uri" }, "account": { "type": "object", "properties": { "name": { "type": "string" }, "homePage": { "type": "string", "format": "uri" } } } }, "stateId": { "type": "string" }, "registration": { "type": "string" } } } } } }
o42140
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/service" } }, "definitions": { "service": { "type": "object", "properties": { "build": { "type": "string" }, "cap_add": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "cap_drop": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "command": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "container_name": { "type": "string" }, "cpu_shares": { "oneOf": [ { "type": "number" }, { "type": "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" }, { "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" }, "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": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memswap_limit": { "oneOf": [ { "type": "number" }, { "type": "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 }
o67017
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/getClassInfo.result.scheme.json", "title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b getClassInfo", "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 getClassInfo", "type": "object", "properties": { "class_info": { "description": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "object", "properties": { "firmid": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 firmid", "type": "string" }, "name": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 name", "type": "string" }, "code": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 code", "type": "string" }, "npars": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 npars", "type": "number" }, "nsecs": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 nsecs", "type": "number" } } } }, "additionalProperties": false, "required": [ "class_info" ] }
o5214
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "CAP Files Schema v1.0.0", "type": "object", "properties": { "_buckets": { "type": "object", "properties": { "record": { "type": "string", "description": "Record bucket ID." }, "deposit": { "type": "string", "description": "Deposit bucket ID." } } }, "_files": { "items": { "type": "object", "description": "Describe information needed for files in records.", "properties": { "checksum": { "type": "string" }, "bucket": { "type": "string" }, "version_id": { "type": "string" }, "key": { "type": "string" }, "type": { "type": "string", "description": "File type extension." }, "size": { "type": "integer" } } }, "type": "array" } } }
o89688
{ "properties": { "channel": { "readonly": true, "type": "integer" }, "encapip": { "readonly": true, "type": "string" }, "grepayload": { "enum": [ "ETHERNETwithDOT1Q", "ETHERNET", "IP" ], "type": "string" }, "ipsecprofilename": { "type": "string" }, "ipsectunnelstatus": { "enum": [ "DOWN", "UP", "PARTIAL-UP", "UNKNOWN" ], "readonly": true, "type": "string" }, "local": { "type": "string" }, "name": { "type": "string" }, "ownergroup": { "type": "string" }, "protocol": { "enum": [ "IPIP", "GRE", "IPSEC", "UDP" ], "type": "string" }, "refcnt": { "readonly": true, "type": "integer" }, "remote": { "type": "string" }, "remotesubnetmask": { "type": "string" }, "sysname": { "readonly": true, "type": "string" }, "tunneltype": { "enum": [ "Configured", "Delete-In-Progress" ], "readonly": true, "type": "object" }, "type": { "readonly": true, "type": "integer" }, "vlan": { "type": "integer" } }, "title": "iptunnel", "type": "object" }
o30651
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/SetColor.args.scheme.json", "title": "\u0410\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u044b \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b SetColor", "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 SetColor", "type": "object", "definitions": { "NullableMatrixIndex": { "description": "\u0418\u043d\u0434\u0435\u043a\u0441 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u043c\u0430\u0442\u0440\u0438\u0446\u044b", "type": [ "integer", "null" ], "minimum": 0 }, "NullableColor": { "description": "\u0426\u0432\u0435\u0442 \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435 RGB", "type": [ "integer", "null" ] } }, "properties": { "t_id": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 t_id", "type": "number" }, "row": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 row", "$ref": "#/definitions/NullableMatrixIndex" }, "col": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 col", "$ref": "#/definitions/NullableMatrixIndex" }, "b_color": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 b_color", "$ref": "#/definitions/NullableColor" }, "f_color": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 f_color", "$ref": "#/definitions/NullableColor" }, "sel_b_color": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 sel_b_color", "$ref": "#/definitions/NullableColor" }, "sel_f_color": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 sel_f_color", "$ref": "#/definitions/NullableColor" } }, "additionalProperties": false, "required": [ "t_id" ] }
o5165
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "data": { "media": { "binaryEncoding": "base64" }, "type": "string" }, "fileName": { "type": "string" }, "mediaType": { "description": "keep in synch with the trait document_asStream", "enum": [ "application/pdf", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "application/msword", "application/rtf", "text/plain", "image/png", "image/jpeg", "image/gif", "text/html", "audio/x-mpeg-3", "video/x-msvideo", "video/mp4" ] }, "via": { "description": "the mechanism via which the file was uploaded - either 'device' or the fqdn of a cloud storage platform (e.g. dropbox.com)", "type": "string" } }, "description": "details for a previously uploaded file", "properties": { "dateUploaded": { "_format": "date-time", "description": "the date and time the file was uploaded", "type": "string" }, "fileName": { "$ref": "#/definitions/fileName" }, "md5": { "description": "hash of the file's binary content", "type": "string" }, "mediaType": { "$ref": "#/definitions/mediaType" }, "preSignedUri": { "_format": "uri", "description": "pre-signed link as per http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html to access the raw data. Includes file name as the trailing component so that browsers name the download correctly.", "type": "string" }, "size": { "type": "integer" }, "via": { "$ref": "#/definitions/via" } }, "required": [ "fileName", "size", "mediaType", "preSignedUri" ], "type": "object" }
o79563
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "properties": { "donate": { "description": "donate urls", "items": { "enum": [ "https://pledgie.com/campaigns/28037", "https://gratipay.com/aminassian" ] }, "maxItems": 2, "minItems": 2, "type": "array", "_uniqueItems": true }, "licence": { "description": "licence code", "type": "string" }, "path": { "description": "path result", "items": { "type": "string" }, "type": "array" } }, "required": [ "licence", "donate", "path" ], "title": "select-object-path/select/out", "type": "object" }
o21733
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "address": { "type": "object", "properties": { "street_address": { "type": "string" }, "city": { "type": "string" }, "state": { "type": "string" } }, "required": [ "street_address", "city", "state" ] }, "office_address": { "properties": { "type": { "enum": [ "business" ] }, "building": { "type": "string" } }, "required": [ "type", "building" ], "additionalProperties": false }, "home_address": { "properties": { "type": { "enum": [ "home" ] }, "street_address": { "type": "string" }, "city": { "type": "string" }, "state": { "type": "string" } }, "required": [ "type", "street_address", "city", "state" ], "additionalProperties": false }, "partOne": { "properties": { "one": { "type": "string" } } }, "partTwo": { "properties": { "two": { "type": "integer" } } } }, "type": "object", "properties": { "client_address": { "oneOf": [ { "$ref": "#/definitions/office_address" }, { "$ref": "#/definitions/home_address" } ] }, "parts": { "oneOf": [ { "$ref": "#/definitions/partOne" }, { "$ref": "#/definitions/partTwo" } ], "additionalProperties": false } } }
o90967
{ "properties": { "linkerd": { "properties": { "admin-port": { "default": 9990, "description": "Admin port. Provides an administrative UI for this instance.", "type": "integer" }, "config-filename": { "default": "linkerd-dcos-060.yaml", "description": "URI of linkerd config file, appends to config-uri. See https://linkerd.io for config docs.", "type": "string" }, "config-uri": { "default": "https://s3.amazonaws.com/buoyant-dcos", "description": "URI of linkerd config file, prepends to config-filename.", "type": "string" }, "cpus": { "default": 0.25, "description": "CPU shares to allocate to each linkerd instance.", "minimum": 0.25, "type": "number" }, "instances": { "default": 1, "description": "Number of instances to run.", "minimum": 1, "type": "integer" }, "mem": { "default": 256.0, "description": "Memory (MB) to allocate to each linkerd task.", "minimum": 256.0, "type": "number" }, "name": { "default": "linkerd", "description": "Name for linkerd instance(s).", "type": "string" }, "routing-port": { "default": 4140, "description": "Routing port.", "type": "integer" } }, "required": [ "admin-port", "config-filename", "config-uri", "cpus", "instances", "mem", "name", "routing-port" ], "type": "object" } }, "required": [ "linkerd" ], "type": "object" }
o90726
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "change_history": { "$ref": "#/definitions/change_history" }, "collections": { "description": "Collections of links grouped under a title and description", "items": { "additionalProperties": false, "properties": { "description": { "description": "Collection description", "type": "string" }, "links": { "description": "Array of links in this collection", "items": { "additionalProperties": false, "properties": { "description": { "description": "Link description", "type": "string" }, "title": { "description": "Link Title", "type": "string" }, "url": { "_format": "uri", "description": "Link URL (absolute)", "type": "string" } }, "required": [ "title", "url" ], "type": "object" }, "type": "array" }, "title": { "description": "Collection title", "type": "string" } }, "required": [ "title", "links" ], "type": "object" }, "type": "array" } }, "type": "object" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "publishing_scheduled_at": { "_format": "date-time", "description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.", "type": "string" }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "scheduled_publishing_delay_seconds": { "description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.", "type": "integer" }, "title": { "type": "string" }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "service_manual_service_toolkit" ], "type": "string" }, "first_published_at": { "anyOf": [ { "$ref": "#/definitions/first_published_at" }, { "type": "null" } ] }, "links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "level_one_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "mainstream_browse_pages": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The user needs this piece of content meets." }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The parent content item.", "maxItems": 1 }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policy_areas": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "suggested_ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Prototype-stage taxonomy label for this content item" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "anyOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "publishing_scheduled_at": { "anyOf": [ { "$ref": "#/definitions/publishing_scheduled_at" }, { "type": "null" } ] }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "scheduled_publishing_delay_seconds": { "anyOf": [ { "$ref": "#/definitions/scheduled_publishing_delay_seconds" }, { "type": "null" } ] }, "schema_name": { "enum": [ "service_manual_service_toolkit" ], "type": "string" }, "title": { "$ref": "#/definitions/title" }, "updated_at": { "_format": "date-time", "type": "string" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "required": [ "base_path", "content_id", "description", "details", "document_type", "links", "locale", "public_updated_at", "schema_name", "title", "updated_at" ], "type": "object" }
o21355
{ "type": "object", "properties": { "yarnTimestamp": { "default": "", "type": "string" }, "loaderTimestamp": { "default": "", "type": "string" }, "yarns": { "default": [], "type": "array", "items": { "$ref": "#/definitions/FabricArtifactVersion" } }, "loaders": { "default": [], "type": "array", "items": { "$ref": "#/definitions/FabricArtifactVersion" } } }, "required": [ "loaderTimestamp", "loaders", "yarnTimestamp", "yarns" ], "definitions": { "FabricArtifactVersion": { "type": "object", "properties": { "gameVersion": { "type": "string" }, "separator": { "type": "string" }, "build": { "type": "number" }, "maven": { "type": "string" }, "version": { "type": "string" }, "stable": { "type": "boolean" } }, "required": [ "maven", "stable", "version" ] } }, "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false }
o7380
{ "additionalProperties": false, "description": "Schema for application warning event", "properties": { "warning": { "type": "string" } }, "self": { "format": "jsonschema", "name": "app_warning", "vendor": "com.snowplowanalytics.monitoring.kinesis", "version": "1-0-0" }, "type": "object" }
sp_240_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "lastChanged": { "type": "integer" }, "isTemporary": { "type": "boolean" }, "title": { "type": "string" }, "documents": { "type": "array", "items": { "type": "object", "properties": { "filetype": { "type": "string" }, "path": { "type": "string" }, "name": { "type": "string" }, "containsSearchText": { "type": "boolean" } }, "required": [ "filetype", "path", "name" ] } }, "lastChangedBy": { "type": "object", "properties": { "email": { "type": "string" }, "name": { "type": "string" } }, "required": [ "email", "name" ] }, "author": { "type": "object", "properties": { "email": { "type": "string" }, "name": { "type": "string" } }, "required": [ "email", "name" ] }, "id": { "type": "string" }, "text": { "type": "string" }, "date": { "type": "integer" } }, "required": [ "lastChanged", "isTemporary", "title", "documents", "lastChangedBy", "author", "id", "date" ] } }
o54619
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Generated from kata/spec/fixtures/examples/empty_collections.json with shasum 136e83755f93cb49d7e6cf255c7cbb28f08d59ce", "type": "object", "required": [ "id", "name", "price", "array", "hash" ], "properties": { "id": { "type": "integer", "default": 1 }, "name": { "type": "string", "default": "A green door" }, "price": { "type": "number", "default": 12.5 }, "array": { "type": "array", "minItems": 0, "_uniqueItems": true, "items": {} }, "hash": { "type": "object", "properties": {} } } }
o59667
{ "$comment": "Please run `npm run build-config-interface` after changing this file. Thanks!", "additionalProperties": false, "properties": { "addons": { "description": "Configuration reserved for installed third party addons.", "items": { "additionalProperties": true, "properties": {}, "type": "object" }, "type": "array" }, "apps": { "additionalProperties": false, "description": "Properties of the different applications in this project.", "items": { "additionalProperties": false, "properties": { "assets": { "default": [], "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "deployUrl": { "type": "string" }, "environments": { "additionalProperties": true, "description": "Name and corresponding file for environment config.", "type": "object" }, "index": { "default": "index.html", "type": "string" }, "main": { "type": "string" }, "mobile": { "default": false, "type": "boolean" }, "outDir": { "default": "dist/", "type": "string" }, "polyfills": { "type": "string" }, "prefix": { "type": "string" }, "root": { "type": "string" }, "scripts": { "additionalProperties": false, "description": "Global scripts to be included in the build.", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": true, "properties": { "input": { "type": "string" } }, "required": [ "input" ], "type": "object" } ] }, "type": "array" }, "stylePreprocessorOptions": { "additionalProperties": false, "description": "Options to pass to style preprocessors", "properties": { "includePaths": { "default": [], "description": "Paths to include. Paths will be resolved to project root.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "styles": { "additionalProperties": false, "description": "Global styles to be included in the build.", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": true, "properties": { "input": { "type": "string" } }, "type": "object" } ] }, "type": "array" }, "test": { "type": "string" }, "tsconfig": { "default": "tsconfig.json", "type": "string" } }, "type": "object" }, "type": "array" }, "defaults": { "additionalProperties": false, "properties": { "changeDetection": { "type": "string" }, "inline": { "properties": { "style": { "default": false, "type": "boolean" }, "template": { "default": false, "type": "boolean" } }, "type": "object" }, "poll": { "type": "number" }, "prefixInterfaces": { "type": "boolean" }, "serve": { "description": "Properties to be passed to the serve command", "properties": { "host": { "default": "localhost", "description": "The host the application will be served on", "type": "string" }, "port": { "default": 4200, "description": "The port the application will be served on", "type": "number" } }, "type": "object" }, "spec": { "properties": { "class": { "default": false, "type": "boolean" }, "component": { "default": true, "type": "boolean" }, "directive": { "default": true, "type": "boolean" }, "module": { "default": false, "type": "boolean" }, "pipe": { "default": true, "type": "boolean" }, "service": { "default": true, "type": "boolean" } }, "type": "object" }, "styleExt": { "type": "string" }, "viewEncapsulation": { "type": "string" } }, "type": "object" }, "e2e": { "additionalProperties": false, "properties": { "protractor": { "additionalProperties": false, "properties": { "config": { "type": "string" } }, "type": "object" } }, "type": "object" }, "lint": { "description": "Properties to be passed to TSLint.", "items": { "additionalProperties": false, "properties": { "files": { "type": "string" }, "project": { "type": "string" }, "tslintConfig": { "default": "tslint.json", "type": "string" } }, "required": [ "files", "project" ], "type": "object" }, "type": "array" }, "packages": { "description": "Configuration reserved for installed third party packages.", "items": { "additionalProperties": true, "properties": {}, "type": "object" }, "type": "array" }, "project": { "additionalProperties": false, "description": "The global configuration of the project.", "properties": { "name": { "type": "string" }, "version": { "type": "string" } }, "type": "object" }, "test": { "additionalProperties": false, "properties": { "karma": { "additionalProperties": false, "properties": { "config": { "type": "string" } }, "type": "object" } }, "type": "object" }, "warnings": { "description": "Allow people to disable console warnings.", "properties": { "nodeDeprecation": { "default": true, "description": "Show a warning when the node version is incompatible.", "type": "boolean" }, "packageDeprecation": { "default": true, "description": "Show a warning when the user installed angular-cli.", "type": "boolean" }, "versionMismatch": { "default": true, "description": "Show a warning when the global version is newer than the local one.", "type": "boolean" } }, "type": "object" } }, "title": "Angular CLI Config Schema", "type": "object" }
o73113
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Plurality Election", "description": "A single plurality race", "type": "object", "properties": { "isTest": { "description": "Value that is always true if it exists, could later be used to specify some useful info about the test", "type": "boolean", "enum": [ true ] }, "counts": { "description": "In a test, this array specifies how many of each of the ballots in votes will appear. Can be used for a compressed form of tests", "type": "array", "items": { "type": "integer" } }, "votes": { "description": "all of the votes in the election", "type": "array", "items": { "type": "object", "properties": { "id": { "description": "A unique identifier for each ballot", "type": "integer" }, "selection": { "description": "The candidate selected on this ballot", "type": "integer" } }, "required": [ "id", "selection" ], "additionalProperties": false } }, "tiebreak": { "description": "the candidate that should be chosen in the event of a tie", "type": "integer" }, "results": { "description": "a record of what happened as the election was tabulated", "type": "object", "properties": { "winner": { "description": "which candidate won the election", "type": "integer" }, "tabulation": { "type": "array", "items": { "type": "object", "properties": { "candidate": { "type": "integer" }, "votes": { "type": "integer" } }, "required": [ "candidate", "votes" ], "additionalProperties": false } } }, "required": [ "winner" ], "additionalProperties": false } }, "additionalProperties": false, "dependencies": { "isTest": [ "results", "tiebreak", "counts" ] } }
o32437
{ "$schema": "http://json-schema.org/draft-04/schema#", "name": "Package", "type": "object", "additionalProperties": false, "required": [ "name", "description" ], "properties": { "name": { "type": "string", "description": "Package name, including 'vendor-name/' prefix." }, "type": { "description": "Package type, either 'library' for common packages, 'composer-plugin' for plugins, 'metapackage' for empty packages, or a custom type ([a-z0-9-]+) defined by whatever project this package applies to.", "type": "string" }, "target-dir": { "description": "DEPRECATED: Forces the package to be installed into the given subdirectory path. This is used for autoloading PSR-0 packages that do not contain their full path. Use forward slashes for cross-platform compatibility.", "type": "string" }, "description": { "type": "string", "description": "Short package description." }, "keywords": { "type": "array", "items": { "type": "string", "description": "A tag/keyword that this package relates to." } }, "homepage": { "type": "string", "description": "Homepage URL for the project.", "format": "uri" }, "version": { "type": "string", "description": "Package version, see https://getcomposer.org/doc/04-schema.md#version for more info on valid schemes." }, "time": { "type": "string", "description": "Package release date, in 'YYYY-MM-DD', 'YYYY-MM-DD HH:MM:SS' or 'YYYY-MM-DDTHH:MM:SSZ' format." }, "license": { "type": [ "string", "array" ], "description": "License name. Or an array of license names." }, "authors": { "type": "array", "description": "List of authors that contributed to the package. This is typically the main maintainers, not the full list.", "items": { "type": "object", "additionalProperties": false, "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Full name of the author." }, "email": { "type": "string", "description": "Email address of the author.", "format": "email" }, "homepage": { "type": "string", "description": "Homepage URL for the author.", "format": "uri" }, "role": { "type": "string", "description": "Author's role in the project." } } } }, "require": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that are required to run this package.", "additionalProperties": { "type": "string" } }, "replace": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that can be replaced by this package.", "additionalProperties": { "type": "string" } }, "conflict": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that conflict with this package.", "additionalProperties": { "type": "string" } }, "provide": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that this package provides in addition to this package's name.", "additionalProperties": { "type": "string" } }, "require-dev": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that this package requires for developing it (testing tools and such).", "additionalProperties": { "type": "string" } }, "suggest": { "type": "object", "description": "This is a hash of package name (keys) and descriptions (values) that this package suggests work well with it (this will be suggested to the user during installation).", "additionalProperties": { "type": "string" } }, "config": { "type": "object", "description": "Composer options.", "properties": { "process-timeout": { "type": "integer", "description": "The timeout in seconds for process executions, defaults to 300 (5mins)." }, "use-include-path": { "type": "boolean", "description": "If true, the Composer autoloader will also look for classes in the PHP include path." }, "preferred-install": { "type": [ "string", "object" ], "description": "The install method Composer will prefer to use, defaults to auto and can be any of source, dist, auto, or a hash of {\"pattern\": \"preference\"}." }, "notify-on-install": { "type": "boolean", "description": "Composer allows repositories to define a notification URL, so that they get notified whenever a package from that repository is installed. This option allows you to disable that behaviour, defaults to true." }, "github-protocols": { "type": "array", "description": "A list of protocols to use for github.com clones, in priority order, defaults to [\"git\", \"https\", \"http\"].", "items": { "type": "string" } }, "github-oauth": { "type": "object", "description": "A hash of domain name => github API oauth tokens, typically {\"github.com\":\"<token>\"}.", "additionalProperties": { "type": "string" } }, "gitlab-oauth": { "type": "object", "description": "A hash of domain name => gitlab API oauth tokens, typically {\"gitlab.com\":\"<token>\"}.", "additionalProperties": { "type": "string" } }, "gitlab-token": { "type": "object", "description": "A hash of domain name => gitlab private tokens, typically {\"gitlab.com\":\"<token>\"}.", "additionalProperties": true }, "disable-tls": { "type": "boolean", "description": "Defaults to `false`. If set to true all HTTPS URLs will be tried with HTTP instead and no network level encryption is performed. Enabling this is a security risk and is NOT recommended. The better way is to enable the php_openssl extension in php.ini." }, "secure-http": { "type": "boolean", "description": "Defaults to `true`. If set to true only HTTPS URLs are allowed to be downloaded via Composer. If you really absolutely need HTTP access to something then you can disable it, but using \"Let's Encrypt\" to get a free SSL certificate is generally a better alternative." }, "cafile": { "type": "string", "description": "A way to set the path to the openssl CA file. In PHP 5.6+ you should rather set this via openssl.cafile in php.ini, although PHP 5.6+ should be able to detect your system CA file automatically." }, "capath": { "type": "string", "description": "If cafile is not specified or if the certificate is not found there, the directory pointed to by capath is searched for a suitable certificate. capath must be a correctly hashed certificate directory." }, "http-basic": { "type": "object", "description": "A hash of domain name => {\"username\": \"...\", \"password\": \"...\"}.", "additionalProperties": { "type": "object", "required": [ "username", "password" ], "properties": { "username": { "type": "string", "description": "The username used for HTTP Basic authentication" }, "password": { "type": "string", "description": "The password used for HTTP Basic authentication" } } } }, "store-auths": { "type": [ "string", "boolean" ], "description": "What to do after prompting for authentication, one of: true (store), false (do not store) or \"prompt\" (ask every time), defaults to prompt." }, "platform": { "type": "object", "description": "This is a hash of package name (keys) and version (values) that will be used to mock the platform packages on this machine.", "additionalProperties": { "type": "string" } }, "vendor-dir": { "type": "string", "description": "The location where all packages are installed, defaults to \"vendor\"." }, "bin-dir": { "type": "string", "description": "The location where all binaries are linked, defaults to \"vendor/bin\"." }, "data-dir": { "type": "string", "description": "The location where old phar files are stored, defaults to \"$home\" except on XDG Base Directory compliant unixes." }, "cache-dir": { "type": "string", "description": "The location where all caches are located, defaults to \"~/.composer/cache\" on *nix and \"%LOCALAPPDATA%\\Composer\" on windows." }, "cache-files-dir": { "type": "string", "description": "The location where files (zip downloads) are cached, defaults to \"{$cache-dir}/files\"." }, "cache-repo-dir": { "type": "string", "description": "The location where repo (git/hg repo clones) are cached, defaults to \"{$cache-dir}/repo\"." }, "cache-vcs-dir": { "type": "string", "description": "The location where vcs infos (git clones, github api calls, etc. when reading vcs repos) are cached, defaults to \"{$cache-dir}/vcs\"." }, "cache-ttl": { "type": "integer", "description": "The default cache time-to-live, defaults to 15552000 (6 months)." }, "cache-files-ttl": { "type": "integer", "description": "The cache time-to-live for files, defaults to the value of cache-ttl." }, "cache-files-maxsize": { "type": [ "string", "integer" ], "description": "The cache max size for the files cache, defaults to \"300MiB\"." }, "bin-compat": { "enum": [ "auto", "full" ], "description": "The compatibility of the binaries, defaults to \"auto\" (automatically guessed) and can be \"full\" (compatible with both Windows and Unix-based systems)." }, "discard-changes": { "type": [ "string", "boolean" ], "description": "The default style of handling dirty updates, defaults to false and can be any of true, false or \"stash\"." }, "autoloader-suffix": { "type": "string", "description": "Optional string to be used as a suffix for the generated Composer autoloader. When null a random one will be generated." }, "optimize-autoloader": { "type": "boolean", "description": "Always optimize when dumping the autoloader." }, "prepend-autoloader": { "type": "boolean", "description": "If false, the composer autoloader will not be prepended to existing autoloaders, defaults to true." }, "classmap-authoritative": { "type": "boolean", "description": "If true, the composer autoloader will not scan the filesystem for classes that are not found in the class map, defaults to false." }, "apcu-autoloader": { "type": "boolean", "description": "If true, the Composer autoloader will check for APCu and use it to cache found/not-found classes when the extension is enabled, defaults to false." }, "github-domains": { "type": "array", "description": "A list of domains to use in github mode. This is used for GitHub Enterprise setups, defaults to [\"github.com\"].", "items": { "type": "string" } }, "github-expose-hostname": { "type": "boolean", "description": "Defaults to true. If set to false, the OAuth tokens created to access the github API will have a date instead of the machine hostname." }, "gitlab-domains": { "type": "array", "description": "A list of domains to use in gitlab mode. This is used for custom GitLab setups, defaults to [\"gitlab.com\"].", "items": { "type": "string" } }, "archive-format": { "type": "string", "description": "The default archiving format when not provided on cli, defaults to \"tar\"." }, "archive-dir": { "type": "string", "description": "The default archive path when not provided on cli, defaults to \".\"." } } }, "extra": { "type": [ "object", "array" ], "description": "Arbitrary extra data that can be used by plugins, for example, package of type composer-plugin may have a 'class' key defining an installer class name.", "additionalProperties": true }, "autoload": { "type": "object", "description": "Description of how the package can be autoloaded.", "properties": { "psr-0": { "type": "object", "description": "This is a hash of namespaces (keys) and the directories they can be found in (values, can be arrays of paths) by the autoloader.", "additionalProperties": { "type": [ "string", "array" ], "items": { "type": "string" } } }, "psr-4": { "type": "object", "description": "This is a hash of namespaces (keys) and the PSR-4 directories they can map to (values, can be arrays of paths) by the autoloader.", "additionalProperties": { "type": [ "string", "array" ], "items": { "type": "string" } } }, "classmap": { "type": "array", "description": "This is an array of directories that contain classes to be included in the class-map generation process." }, "files": { "type": "array", "description": "This is an array of files that are always required on every request." }, "exclude-from-classmap": { "type": "array", "description": "This is an array of patterns to exclude from autoload classmap generation. (e.g. \"exclude-from-classmap\": [\"/test/\", \"/tests/\", \"/Tests/\"]" } } }, "autoload-dev": { "type": "object", "description": "Description of additional autoload rules for development purpose (eg. a test suite).", "properties": { "psr-0": { "type": "object", "description": "This is a hash of namespaces (keys) and the directories they can be found into (values, can be arrays of paths) by the autoloader.", "additionalProperties": { "type": [ "string", "array" ], "items": { "type": "string" } } }, "psr-4": { "type": "object", "description": "This is a hash of namespaces (keys) and the PSR-4 directories they can map to (values, can be arrays of paths) by the autoloader.", "additionalProperties": { "type": [ "string", "array" ], "items": { "type": "string" } } }, "classmap": { "type": "array", "description": "This is an array of directories that contain classes to be included in the class-map generation process." }, "files": { "type": "array", "description": "This is an array of files that are always required on every request." } } }, "archive": { "type": [ "object" ], "description": "Options for creating package archives for distribution.", "properties": { "exclude": { "type": "array", "description": "A list of patterns for paths to exclude or include if prefixed with an exclamation mark." } } }, "repositories": { "type": [ "object", "array" ], "description": "A set of additional repositories where packages can be found.", "additionalProperties": true }, "minimum-stability": { "type": [ "string" ], "description": "The minimum stability the packages must have to be install-able. Possible values are: dev, alpha, beta, RC, stable.", "pattern": "^dev|alpha|beta|rc|RC|stable$" }, "prefer-stable": { "type": [ "boolean" ], "description": "If set to true, stable packages will be preferred to dev packages when possible, even if the minimum-stability allows unstable packages." }, "bin": { "type": [ "array" ], "description": "A set of files that should be treated as binaries and symlinked into bin-dir (from config).", "items": { "type": "string" } }, "include-path": { "type": [ "array" ], "description": "DEPRECATED: A list of directories which should get added to PHP's include path. This is only present to support legacy projects, and all new code should preferably use autoloading.", "items": { "type": "string" } }, "scripts": { "type": [ "object" ], "description": "Scripts listeners that will be executed before/after some events.", "properties": { "pre-install-cmd": { "type": [ "array", "string" ], "description": "Occurs before the install command is executed, contains one or more Class::method callables or shell commands." }, "post-install-cmd": { "type": [ "array", "string" ], "description": "Occurs after the install command is executed, contains one or more Class::method callables or shell commands." }, "pre-update-cmd": { "type": [ "array", "string" ], "description": "Occurs before the update command is executed, contains one or more Class::method callables or shell commands." }, "post-update-cmd": { "type": [ "array", "string" ], "description": "Occurs after the update command is executed, contains one or more Class::method callables or shell commands." }, "pre-status-cmd": { "type": [ "array", "string" ], "description": "Occurs before the status command is executed, contains one or more Class::method callables or shell commands." }, "post-status-cmd": { "type": [ "array", "string" ], "description": "Occurs after the status command is executed, contains one or more Class::method callables or shell commands." }, "pre-package-install": { "type": [ "array", "string" ], "description": "Occurs before a package is installed, contains one or more Class::method callables or shell commands." }, "post-package-install": { "type": [ "array", "string" ], "description": "Occurs after a package is installed, contains one or more Class::method callables or shell commands." }, "pre-package-update": { "type": [ "array", "string" ], "description": "Occurs before a package is updated, contains one or more Class::method callables or shell commands." }, "post-package-update": { "type": [ "array", "string" ], "description": "Occurs after a package is updated, contains one or more Class::method callables or shell commands." }, "pre-package-uninstall": { "type": [ "array", "string" ], "description": "Occurs before a package has been uninstalled, contains one or more Class::method callables or shell commands." }, "post-package-uninstall": { "type": [ "array", "string" ], "description": "Occurs after a package has been uninstalled, contains one or more Class::method callables or shell commands." }, "pre-autoload-dump": { "type": [ "array", "string" ], "description": "Occurs before the autoloader is dumped, contains one or more Class::method callables or shell commands." }, "post-autoload-dump": { "type": [ "array", "string" ], "description": "Occurs after the autoloader is dumped, contains one or more Class::method callables or shell commands." }, "post-root-package-install": { "type": [ "array", "string" ], "description": "Occurs after the root-package is installed, contains one or more Class::method callables or shell commands." }, "post-create-project-cmd": { "type": [ "array", "string" ], "description": "Occurs after the create-project command is executed, contains one or more Class::method callables or shell commands." } } }, "support": { "type": "object", "properties": { "email": { "type": "string", "description": "Email address for support.", "format": "email" }, "issues": { "type": "string", "description": "URL to the issue tracker.", "format": "uri" }, "forum": { "type": "string", "description": "URL to the forum.", "format": "uri" }, "wiki": { "type": "string", "description": "URL to the wiki.", "format": "uri" }, "irc": { "type": "string", "description": "IRC channel for support, as irc://server/channel.", "format": "uri" }, "source": { "type": "string", "description": "URL to browse or download the sources.", "format": "uri" }, "docs": { "type": "string", "description": "URL to the documentation.", "format": "uri" }, "rss": { "type": "string", "description": "URL to the RSS feed.", "format": "uri" } } }, "non-feature-branches": { "type": [ "array" ], "description": "A set of string or regex patterns for non-numeric branch names that will not be handled as feature branches.", "items": { "type": "string" } }, "abandoned": { "type": [ "boolean", "string" ], "description": "Indicates whether this package has been abandoned, it can be boolean or a package name/URL pointing to a recommended alternative. Defaults to false." }, "_comment": { "type": [ "array", "string" ], "description": "A key to store comments in" } } }
o81119
{ "properties": { "keywords": { "description": "The keywords to search for in job openings", "items": { "type": "string" }, "type": "array" }, "location": { "description": "The location to search for job openings", "type": "string" }, "salary_range": { "properties": { "max_salary": { "description": "The maximum salary range", "type": "number" }, "min_salary": { "description": "The minimum salary range", "type": "number" } }, "type": "object" } }, "required": [ "keywords" ], "type": "object" }
search_jobs_575ce7fa
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "dictionary", "description": "A dictionary captures a set of key/value pairs", "type": "object", "patternProperties": { "^[a-zA-Z0-9_-]{1,}$": { "type": "string", "description": "Custom hash key" }, "^MD5$": { "type": "string", "description": "Specifies the MD5 message digest algorithm.", "pattern": "^[a-fA-F0-9]{32}$" }, "^MD6$": { "type": "string", "description": "Specifies the MD6 message digest algorithm.", "pattern": "^[a-fA-F0-9]{32}|[a-fA-F0-9]{40}|[a-fA-F0-9]{56}|[a-fA-F0-9]{64}|[a-fA-F0-9]{96}|[a-fA-F0-9]{128}$" }, "^RIPEMD-160$": { "type": "string", "description": "Specifies the RIPEMD\u00ad-160 (R\u200bACE\u200b Integrity Primitives Evaluation Message Digest)\u200b cryptographic hash function.", "pattern": "^[a-fA-F0-9]{40}$" }, "^SHA-1$": { "type": "string", "description": "Specifies the SHA\u00ad-1 (secure-\u00adhash algorithm 1) cryptographic hash function.", "pattern": "^[a-fA-F0-9]{40}$" }, "^SHA-224$": { "type": "string", "description": "Specifies the SHA-\u00ad224 cryptographic hash function (part of the SHA\u00ad2 family).", "pattern": "^[a-fA-F0-9]{56}$" }, "^SHA-256$": { "type": "string", "description": "Specifies the SHA-\u00ad256 cryptographic hash function (part of the SHA\u00ad2 family).", "pattern": "^[a-fA-F0-9]{64}$" }, "^SHA-384$": { "type": "string", "description": "Specifies the SHA-\u00ad384 cryptographic hash function (part of the SHA\u00ad2 family).", "pattern": "^[a-fA-F0-9]{96}$" }, "^SHA-512$": { "type": "string", "description": "Specifies the SHA-\u00ad512 cryptographic hash function (part of the SHA\u00ad2 family).", "pattern": "^[a-fA-F0-9]{128}$" }, "^SHA3-224$": { "type": "string", "description": "Specifies the SHA3-224 cryptographic hash function.", "pattern": "^[a-fA-F0-9]{56}$" }, "^SHA3-256$": { "type": "string", "description": "Specifies the SHA3-256 cryptographic hash function.", "pattern": "^[a-fA-F0-9]{64}$" }, "^SHA3-384$": { "type": "string", "description": "Specifies the SHA3-384 cryptographic hash function.", "pattern": "^[a-fA-F0-9]{96}$" }, "^SHA3-512$": { "type": "string", "description": "Specifies the SHA3-512 cryptographic hash function.", "pattern": "^[a-fA-F0-9]{128}$" }, "^ssdeep$": { "type": "string", "description": "Specifies the ssdeep fuzzy hashing algorithm.", "pattern": "^[a-zA-Z0-9/+:.]{1,128}$" }, "^WHIRLPOOL$": { "type": "string", "description": "Specifies the whirlpool cryptographic hash function", "pattern": "^[a-fA-F0-9]{128}$" } }, "additionalProperties": false }
o51177
{ "properties": { "partitionnameintrap": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "snmpset": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "snmptraplogging": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "snmptraplogginglevel": { "enum": [ "EMERGENCY", "ALERT", "CRITICAL", "ERROR", "WARNING", "NOTICE", "INFORMATIONAL", "DEBUG" ], "type": "string" } }, "title": "snmpoption", "type": "object" }
o30899
{ "additionalProperties": true, "description": "Schema for a SendGrid unsubscribe event. Property descriptions derived from the SendGrid documentation: https://sendgrid.com/docs/for-developers/tracking-events/event/", "properties": { "asm_group_id": { "description": "The ID of the unsubscribe group the recipient\u2019s email address is included in. ASM IDs correspond to the ID that is returned when you create an unsubscribe group.", "maximum": 32767, "minimum": 0, "type": "integer" }, "category": { "description": "Categories are custom tags that you set for the purpose of organizing your emails. Categories can be set as an array or string, and they will be returned as such when posted in your event endpoint.", "items": { "type": "string" }, "type": [ "array", "string" ] }, "email": { "_format": "email", "description": "The email address of the recipient", "type": "string" }, "marketing_campaign_id": { "description": "For emails sent through our Marketing Campaigns feature, we add Marketing Campaigns specific parameters to the Event Webhook. Both marketing_campaign_name and marketing_campaign_id are displayed as unique arguments in the event data.", "type": "integer" }, "marketing_campaign_name": { "description": "For emails sent through our Marketing Campaigns feature, we add Marketing Campaigns specific parameters to the Event Webhook. Both marketing_campaign_name and marketing_campaign_id are displayed as unique arguments in the event data.", "type": "string" }, "marketing_campaign_split_id": { "description": "Marketing campaign split id", "type": "integer" }, "marketing_campaign_version": { "description": "Displayed in the event data for emails sent as part of an A/B Test. The value for marketing_campaign_version are returned as A, B, C, etc.", "type": "string" }, "sg_event_id": { "description": "A unique ID to this event that you can use for deduplication purposes. These IDs are up to 100 characters long and are URL safe.", "maxLength": 4096, "minLength": 22, "type": "string" }, "sg_message_id": { "description": "A unique, internal SendGrid ID for the message. The first half of this is pulled from the smtp-id.", "type": "string" }, "smtp-id": { "description": "A unique ID attached to the message by the originating system", "type": "string" }, "timestamp": { "_format": "date-time", "description": "The timestamp of when the message was sent", "type": "string" } }, "self": { "format": "jsonschema", "name": "unsubscribe", "vendor": "com.sendgrid", "version": "2-0-0" }, "type": "object" }
sp_199_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Transitland Datastore Feed", "type": "object", "required": [ "onestopId" ], "properties": { "onestopId": { "type": "string", "format": "feed-onestop-id" }, "newOnestopId": { "type": "string", "format": "feed-onestop-id" }, "onestopIdsToMerge": { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string", "format": "feed-onestop-id" } }, "geometry": { "type": "object" }, "name": { "type": "string" }, "tags": { "type": "object" }, "url": { "type": "string" }, "feedFormat": { "type": "string" }, "licenseName": { "type": "string" }, "licenseUrl": { "type": "string" }, "licenseUseWithoutAttribution": { "type": "string" }, "licenseAttributionText": { "type": "string" }, "licenseCreateDerivedProduct": { "type": "string" }, "licenseRedistribute": { "type": "string" }, "includesOperators": { "type": "array", "minItems": 1, "items": { "type": "object", "required": [ "operatorOnestopId", "gtfsAgencyId" ], "operatorOnestopId": { "type": "string", "format": "operator-onestop-id" }, "gtfsAgencyId": { "type": "string" } } }, "doesNotIncludeOperators": { "type": "array", "minItems": 1, "items": { "type": "object", "required": [ "operatorOnestopId", "gtfsAgencyId" ], "operatorOnestopId": { "type": "string", "format": "operator-onestop-id" }, "gtfsAgencyId": { "type": "string" } } } } }
o82243
{ "description": "A MWF metatext component's schema definition.", "properties": { "config": { "properties": { "tag": { "type": "string" } }, "required": [ "tag" ], "type": "object" }, "content": { "properties": { "text": { "type": "string" } }, "required": [ "text" ], "type": "object" } }, "required": [ "config", "content" ], "title": "Call to action", "type": "object" }
o85199
{ "description": "Creates a new, generic service definition in the given or default project.", "properties": { "flat": { "default": true, "description": "When true (the default), creates files at the top level of the project.", "type": "boolean" }, "lintFix": { "default": false, "description": "When true, applies lint fixes after generating the service.", "type": "boolean", "x-user-analytics": 15 }, "name": { "$default": { "$source": "argv", "index": 0 }, "description": "The name of the service.", "type": "string", "x-prompt": "What name would you like to use for the service?" }, "path": { "description": "The path at which to create the service, relative to the workspace root.", "format": "path", "type": "string", "visible": false }, "project": { "$default": { "$source": "projectName" }, "description": "The name of the project.", "type": "string" }, "skipTests": { "default": false, "description": "When true, does not create \"spec.ts\" test files for the new service.", "type": "boolean", "x-user-analytics": 12 }, "spec": { "default": true, "description": "When true (the default), generates a \"spec.ts\" test file for the new service.", "type": "boolean", "x-deprecated": "Use \"skipTests\" instead." } }, "required": [ "name" ], "title": "Angular Service Options Schema", "type": "object" }
o64888
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "MultipleChoice question options", "description": "Options for a MultipleChoice question.", "type": "object", "additionalProperties": false, "required": [ "text", "correctAnswers", "incorrectAnswers" ], "properties": { "text": { "description": "The question HTML text that comes before the options.", "type": "string" }, "correctAnswers": { "description": "A list of correct answers to the question. Each is an HTML string.", "type": "array", "items": { "type": "string" } }, "incorrectAnswers": { "description": "A list of incorrect answers to the question. Each is an HTML string.", "type": "array", "items": { "type": "string" } }, "numberAnswers": { "description": "The total number of answers in the list of possible answers.", "type": "integer", "minimum": 1 }, "minCorrectAnswers": { "description": "The minimum number of correct answers in the list of possible answers.", "type": "integer", "minimum": 0 }, "maxCorrectAnswers": { "description": "The maximum number of correct answers in the list of possible answers.", "type": "integer", "minimum": 0 } } }
o69599
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "side_length": { "description": "The side length of the square", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, square, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_819de1bb
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "itemType": { "type": "string", "enum": [ "application", "device", "flow", "dashboard", "organization" ] }, "parentId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "items": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 } } } } } }
o9952
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Edges in a Guice injector graph.", "type": "object", "required": [ "fromId", "toId", "type" ], "properties": { "fromId": { "type": "string" }, "toId": { "type": "string" }, "type": { "enum": [ "binding", "dependency" ] }, "bindingType": { "type": "string" } } }
o33832
{ "copyright": [ "Copyright 2013 Red Hat, Inc. and/or its affiliates.", "This file is part of lightblue.", "This program is free software: you can redistribute it and/or modify", "it under the terms of the GNU General Public License as published by", "the Free Software Foundation, either version 3 of the License, or", "(at your option) any later version.", "This program is distributed in the hope that it will be useful,", "but WITHOUT ANY WARRANTY; without even the implied warranty of", "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the", "GNU General Public License for more details.", "You should have received a copy of the GNU General Public License", "along with this program. If not, see <http://www.gnu.org/licenses/>." ], "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "array": { "type": "string" }, "contains": { "enum": [ "$any", "$all", "$none" ] }, "values": { "type": "array", "minItems": 1, "items": { "type": "string" }, "_uniqueItems": true } }, "required": [ "array", "contains", "values" ], "additionalProperties": false }
o66302
{ "description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": [ "string", "null" ] }, "optional": { "description": "Specify whether the Secret must be defined", "type": [ "boolean", "null" ] } }, "type": "object" }
kb_935_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "ChangeConfigurationRequest", "type": "object", "properties": { "key": { "type": "string", "maxLength": 50 }, "value": { "type": "string", "maxLength": 500 } }, "additionalProperties": false, "required": [ "key", "value" ] }
o43974
{ "description": "ClientIPConfig represents the configurations of Client IP based session affinity.", "properties": { "timeoutSeconds": { "description": "timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == \"ClientIP\". Default value is 10800(for 3 hours).", "format": "int32", "type": [ "integer", "null" ] } }, "type": "object" }
kb_82_Normalized
{ "properties": { "destination": { "description": "The destination of the package", "type": "string" }, "height": { "description": "The height of the package in centimeters", "type": "number" }, "length": { "description": "The length of the package in centimeters", "type": "number" }, "weight": { "description": "The weight of the package in kilograms", "type": "number" }, "width": { "description": "The width of the package in centimeters", "type": "number" } }, "required": [ "length", "width", "height", "weight", "destination" ], "type": "object" }
calculate_shipping_cost_e1b412b0
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://judkins.house/apis/k2/v1/helmChart.json", "$$target": "helmChart.json", "title": "Helm Chart", "description": "Configuration for a helm chart for use in K2.", "properties": { "name": { "description": "Friendly name for the chart.", "type": "string" }, "namespace": { "description": "Namespace of the chart.", "type": "string" }, "repo": { "description": "Repository to pull this chart from - referenced by helm application.", "type": "string" }, "registry": { "description": "Registry to pull this chart from - referenced by helm application.", "type": "string" }, "chart": { "description": "Actual name of chart in the repository - referenced by helm application.", "type": "string" }, "version": { "description": "Version of the chart to deploy - referenced by helm application.", "type": "string" }, "channel": { "description": "Channel of the chart to deploy - referenced by helm application.", "enum": [ "stable", "beta", "alpha" ], "type": "string" } }, "required": [ "name", "chart" ], "oneOf": [ { "required": [ "version" ] }, { "required": [ "channel" ] } ], "additionalProperties": false, "type": "object" }
o90391
{ "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": [ "string", "null" ] } }, "type": "object" }
kb_541_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "order": { "type": "object", "properties": { "orderId": { "type": "integer" }, "customerName": { "type": "string" }, "drinkType": { "type": "string" }, "size": { "type": "string" }, "date": { "type": "string" }, "time": { "type": "string" }, "milk": { "type": "string" }, "espressoConCard": { "type": "string" }, "totalPrice": { "type": "number" } }, "additionalProperties": false, "required": [ "orderId", "customerName", "drinkType", "size", "date", "time", "milk", "espressoConCard", "totalPrice" ] } }, "additionalProperties": false, "required": [ "order" ] }
o81596
{ "properties": { "AuthMethod": { "default": "UserEnteredPassword", "description": "Allow the user to enter the password upon installation instead of being supplied in the payload", "enum": [ "Password", "UserEnteredPassword" ], "type": "string" }, "EmailAddress": { "description": "The address for the accounts.", "type": "string" }, "FullName": { "description": "The full name of the designated accounts.", "type": "string" }, "Password": { "description": "You can provide the password or choose to have the user provide it when he or she installs the profile.", "type": "string" }, "PayloadDescription": { "default": "Identification Payload", "description": "Description of the payload", "type": "string" }, "PayloadDisplayName": { "default": "Identification Payload", "description": "Name of the payload", "type": "string" }, "PayloadIdentifier": { "default": "com.apple.configurationprofile.identification", "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.configurationprofile.identification", "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" }, "Prompt": { "description": "Short prompt text", "type": "string" }, "PromptMessage": { "description": "Additional prompt description.", "type": "string" }, "UserName": { "description": "The UNIX user name for the accounts.", "type": "string" } }, "title": "com.apple.configurationprofile.identification", "type": "object" }
o61603
{ "additionalProperties": false, "definitions": { "ContentTypeType": { "additionalProperties": false, "oneOf": [ { "$ref": "#/definitions/textTypeType" }, { "$ref": "#/definitions/MimeType" } ], "type": "object" }, "KnownRelCodeType": { "description": "alternate: The value \"alternate\" signifies that the IRI in the value of the href attribute identifies an alternate version of the resource described by the containing element.related: The value \"related\" signifies that the IRI in the value of the href attribute identifies a resource related to the resource described by the containing element. For example, the feed for a site that discusses the performance of the search engine at \"http://search.example.com\" might contain, as a child of atom:feed. An identical link might appear as a child of any atom:entry whose content contains a discussion of that same search engine.self: The value \"self\" signifies that the IRI in the value of the href attribute identifies a resource equivalent to the containing element.enclosure: The value \"enclosure\" signifies that the IRI in the value of the href attribute identifies a related resource that is potentially large in size and might require special handling. For atom:link elements with rel=\"enclosure\", the length attribute SHOULD be provided.via: The value \"via\" signifies that the IRI in the value of the href attribute identifies a resource that is the source of the information provided in the containing element.", "enum": [ "alternate", "related", "self", "enclosure", "via" ], "type": "string" }, "MimeType": { "description": "XML encoded identifier of a standard MIME type, possibly a parameterized MIME type. Copied from ows 2.0.1", "pattern": "(application|audio|image|text|video|message|multipart|model)/.+(;\\s*.+=.+)*", "type": "string" }, "RelCodeType": { "additionalProperties": false, "oneOf": [ { "$ref": "#/definitions/KnownRelCodeType" }, { "type": "string" } ], "type": "object" }, "categoryType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes", "required": [ "term" ] }, { "properties": { "label": { "type": "string" }, "scheme": { "format": "uri", "type": "string" }, "term": { "type": "string" } } } ], "description": "The Atom category construct is defined in section 4.2.2 of the format spec.", "type": "object" }, "commonAttributes": { "additionalProperties": true, "properties": { "xml:base": { "type": "string" }, "xml:lang": { "type": "string" } }, "type": "object" }, "contentType": { "additionalProperties": true, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "src": { "format": "uri", "type": "string" }, "type": { "$ref": "#/definitions/ContentTypeType" } } } ], "description": "The Atom content construct is defined in section 4.1.3 of the format spec.", "type": "object" }, "dateTimeType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "#text": { "format": "date-time", "type": "string" } } } ], "type": "object" }, "emailType": { "description": "Schema definition for an email address.", "pattern": "\\w+@(\\w+\\.)+\\w+", "type": "string" }, "entry": { "$ref": "#/definitions/entryType" }, "entryType": { "additionalProperties": true, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "author": { "items": { "$ref": "#/definitions/personType" }, "type": "array" }, "category": { "items": { "$ref": "#/definitions/categoryType" }, "type": "array" }, "content": { "$ref": "#/definitions/contentType" }, "contributor": { "items": { "$ref": "#/definitions/personType" }, "type": "array" }, "id": { "$ref": "#/definitions/idType" }, "link": { "items": { "$ref": "#/definitions/linkType" }, "type": "array" }, "published": { "$ref": "#/definitions/dateTimeType" }, "rights": { "$ref": "#/definitions/textType" }, "source": { "$ref": "#/definitions/textType" }, "summary": { "$ref": "#/definitions/textType" }, "title": { "$ref": "#/definitions/textType" }, "updated": { "$ref": "#/definitions/dateTimeType" } } } ], "description": "The Atom entry construct is defined in section 4.1.2 of the format spec.", "type": "object" }, "feedType": { "additionalProperties": true, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "author": { "items": { "$ref": "#/definitions/personType" }, "type": "array" }, "category": { "items": { "$ref": "#/definitions/categoryType" }, "type": "array" }, "contributor": { "items": { "$ref": "#/definitions/personType" }, "type": "array" }, "entry": { "items": { "$ref": "#/definitions/entryType" }, "type": "array" }, "generator": { "$ref": "#/definitions/generatorType" }, "icon": { "$ref": "#/definitions/iconType" }, "id": { "$ref": "#/definitions/idType" }, "link": { "items": { "$ref": "#/definitions/linkType" }, "type": "array" }, "logo": { "$ref": "#/definitions/logoType" }, "rights": { "$ref": "#/definitions/textType" }, "subtitle": { "$ref": "#/definitions/textType" }, "title": { "$ref": "#/definitions/textType" }, "updated": { "$ref": "#/definitions/dateTimeType" } } } ], "description": "The Atom feed construct is defined in section 4.1.1 of the format spec.", "type": "object" }, "generatorType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "#text": { "type": "string" }, "uri": { "format": "uri", "type": "string" }, "version": { "type": "string" } } } ], "description": "The Atom generator element is defined in section 4.2.4 of the format spec.", "type": "object" }, "iconType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "#text": { "format": "uri", "type": "string" } } } ], "description": "The Atom icon construct is defined in section 4.2.5 of the format spec.", "type": "object" }, "idType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "#text": { "format": "uri", "type": "string" } } } ], "description": "The Atom id construct is defined in section 4.2.6 of the format spec.", "type": "object" }, "linkType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes", "required": [ "href" ] }, { "properties": { "href": { "format": "uri", "type": "string" }, "hreflang": { "type": "string" }, "length": { "minimum": 1, "type": "integer" }, "rel": { "$ref": "#/definitions/RelCodeType" }, "title": { "type": "string" }, "type": { "type": "string" } } } ], "description": "The Atom link construct is defined in section 3.4 of the format spec.", "type": "object" }, "logoType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "#text": { "format": "uri", "type": "string" } } } ], "description": "The Atom logo construct is defined in section 4.2.8 of the format spec.", "type": "object" }, "personType": { "additionalProperties": true, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "email": { "$ref": "#/definitions/emailType" }, "name": { "type": "string" }, "uri": { "$ref": "#/definitions/uriType" } } } ], "description": "The Atom person construct is defined in section 3.2 of the format spec.", "type": "object" }, "sourceType": { "additionalProperties": true, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "author": { "items": { "$ref": "#/definitions/personType" }, "type": "array" }, "category": { "items": { "$ref": "#/definitions/categoryType" }, "type": "array" }, "contributor": { "items": { "$ref": "#/definitions/personType" }, "type": "array" }, "generator": { "$ref": "#/definitions/generatorType" }, "icon": { "$ref": "#/definitions/iconType" }, "id": { "$ref": "#/definitions/idType" }, "link": { "items": { "$ref": "#/definitions/linkType" }, "type": "array" }, "logo": { "$ref": "#/definitions/logoType" }, "rights": { "$ref": "#/definitions/textType" }, "subtitle": { "$ref": "#/definitions/textType" }, "title": { "$ref": "#/definitions/textType" }, "updated": { "$ref": "#/definitions/dateTimeType" } } } ], "description": "The Atom source construct is defined in section 4.2.11 of the format spec.", "type": "object" }, "textType": { "additionalProperties": true, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "type": { "$ref": "#/definitions/textTypeType" } } } ], "description": "The Atom text construct is defined in section 3.1 of the format spec.", "type": "object" }, "textTypeType": { "enum": [ "text", "html", "xhtml" ], "type": "string" }, "uriType": { "additionalProperties": false, "anyOf": [ { "$ref": "#/definitions/commonAttributes" }, { "properties": { "#text": { "format": "uri", "type": "string" } } } ], "type": "object" } }, "description": "This version of the Atom schema is based on version 1.0 of the format specifications, found here http://www.atomenabled.org/developers/syndication/atom-format-spec.php. The original namespace was http://www.w3.org/2005/Atom but we changed it to http://www.opengis.net/atom/2005 to avoid conflicting definitions of the same namespace in the future. NOT DONE YET. There is no XSD official schema for atom but this one seems to be the most known: http://www.kbcafe.com/rss/atom.xsd.xml (The Atom Publishing Protocol was issued as a Proposed Standard in IETF RFC 5023 in October 2007 http://tools.ietf.org/html/rfc5023)\nAn Atom document may have two root elements, feed and entry, as defined in section 2.", "properties": { "feed": { "$ref": "#/definitions/feedType" } }, "required": [ "feed" ], "title": "test/atomSchema.xsd", "type": "object" }
o10515
{ "copyright": [ "Copyright 2013 Red Hat, Inc. and/or its affiliates.", "This file is part of lightblue.", "This program is free software: you can redistribute it and/or modify", "it under the terms of the GNU General Public License as published by", "the Free Software Foundation, either version 3 of the License, or", "(at your option) any later version.", "This program is distributed in the hope that it will be useful,", "but WITHOUT ANY WARRANTY; without even the implied warranty of", "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the", "GNU General Public License for more details.", "You should have received a copy of the GNU General Public License", "along with this program. If not, see <http://www.gnu.org/licenses/>." ], "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "objectType": { "enum": [ "error" ], "description": "Always 'error'" }, "context": { "type": "string", "description": "A string delimited with '/' characters that define the context of execution where the error occurred. Analogous to a stack trace." }, "errorCode": { "type": "string", "description": "Error code string" }, "msg": { "type": "string", "description": "Somewhat user friendly error message" } }, "required": [ "objectType", "context", "errorCode", "msg" ], "additionalProperties": false }
o66297
{ "additionalProperties": false, "description": "Bad row caused by internal error (such as unhandled exception), least structured bad row", "properties": { "error": { "description": "Error message, either human-readable or stacktrace", "type": "string" }, "event": { "additionalProperties": false, "description": "The enriched event that resulted in a storage loader failure", "properties": { "app_id": { "maxLength": 255, "type": [ "string", "null" ] }, "base_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "br_colordepth": { "maxLength": 12, "type": [ "string", "null" ] }, "br_cookies": { "type": [ "boolean", "null" ] }, "br_family": { "maxLength": 50, "type": [ "string", "null" ] }, "br_features_director": { "type": [ "boolean", "null" ] }, "br_features_flash": { "type": [ "boolean", "null" ] }, "br_features_gears": { "type": [ "boolean", "null" ] }, "br_features_java": { "type": [ "boolean", "null" ] }, "br_features_pdf": { "type": [ "boolean", "null" ] }, "br_features_quicktime": { "type": [ "boolean", "null" ] }, "br_features_realplayer": { "type": [ "boolean", "null" ] }, "br_features_silverlight": { "type": [ "boolean", "null" ] }, "br_features_windowsmedia": { "type": [ "boolean", "null" ] }, "br_lang": { "maxLength": 255, "type": [ "string", "null" ] }, "br_name": { "maxLength": 50, "type": [ "string", "null" ] }, "br_renderengine": { "maxLength": 50, "type": [ "string", "null" ] }, "br_type": { "maxLength": 50, "type": [ "string", "null" ] }, "br_version": { "maxLength": 50, "type": [ "string", "null" ] }, "br_viewheight": { "type": [ "integer", "null" ] }, "br_viewwidth": { "type": [ "integer", "null" ] }, "collector_tstamp": { "_format": "date-time", "type": "string" }, "contexts": { "type": [ "object", "null" ] }, "derived_contexts": { "type": [ "object", "null" ] }, "derived_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "doc_charset": { "maxLength": 128, "type": [ "string", "null" ] }, "doc_height": { "type": [ "integer", "null" ] }, "doc_width": { "type": [ "integer", "null" ] }, "domain_sessionid": { "maxLength": 128, "type": [ "string", "null" ] }, "domain_sessionidx": { "type": [ "integer", "null" ] }, "domain_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "dvce_created_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "dvce_ismobile": { "type": [ "boolean", "null" ] }, "dvce_screenheight": { "type": [ "integer", "null" ] }, "dvce_screenwidth": { "type": [ "integer", "null" ] }, "dvce_sent_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "dvce_type": { "maxLength": 50, "type": [ "string", "null" ] }, "etl_tags": { "maxLength": 500, "type": [ "string", "null" ] }, "etl_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "event": { "maxLength": 128, "type": [ "string", "null" ] }, "event_fingerprint": { "maxLength": 128, "type": [ "string", "null" ] }, "event_format": { "maxLength": 128, "type": [ "string", "null" ] }, "event_id": { "maxLength": 36, "type": "string" }, "event_name": { "maxLength": 1000, "type": [ "string", "null" ] }, "event_vendor": { "maxLength": 1000, "type": [ "string", "null" ] }, "event_version": { "maxLength": 128, "type": [ "string", "null" ] }, "geo_city": { "maxLength": 75, "type": [ "string", "null" ] }, "geo_country": { "maxLength": 2, "type": [ "string", "null" ] }, "geo_latitude": { "type": [ "number", "null" ] }, "geo_longitude": { "type": [ "number", "null" ] }, "geo_region": { "maxLength": 3, "type": [ "string", "null" ] }, "geo_region_name": { "maxLength": 100, "type": [ "string", "null" ] }, "geo_timezone": { "maxLength": 64, "type": [ "string", "null" ] }, "geo_zipcode": { "maxLength": 15, "type": [ "string", "null" ] }, "ip_domain": { "maxLength": 128, "type": [ "string", "null" ] }, "ip_isp": { "maxLength": 100, "type": [ "string", "null" ] }, "ip_netspeed": { "maxLength": 100, "type": [ "string", "null" ] }, "ip_organization": { "maxLength": 128, "type": [ "string", "null" ] }, "mkt_campaign": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_clickid": { "maxLength": 128, "type": [ "string", "null" ] }, "mkt_content": { "maxLength": 500, "type": [ "string", "null" ] }, "mkt_medium": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_network": { "maxLength": 64, "type": [ "string", "null" ] }, "mkt_source": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_term": { "maxLength": 255, "type": [ "string", "null" ] }, "name_tracker": { "maxLength": 128, "type": [ "string", "null" ] }, "network_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "os_family": { "maxLength": 50, "type": [ "string", "null" ] }, "os_manufacturer": { "maxLength": 50, "type": [ "string", "null" ] }, "os_name": { "maxLength": 50, "type": [ "string", "null" ] }, "os_timezone": { "maxLength": 255, "type": [ "string", "null" ] }, "page_referrer": { "maxLength": 4096, "type": [ "string", "null" ] }, "page_title": { "maxLength": 2000, "type": [ "string", "null" ] }, "page_url": { "maxLength": 4096, "type": [ "string", "null" ] }, "page_urlfragment": { "maxLength": 3000, "type": [ "string", "null" ] }, "page_urlhost": { "maxLength": 255, "type": [ "string", "null" ] }, "page_urlpath": { "maxLength": 3000, "type": [ "string", "null" ] }, "page_urlport": { "type": [ "integer", "null" ] }, "page_urlquery": { "maxLength": 6000, "type": [ "string", "null" ] }, "page_urlscheme": { "maxLength": 16, "type": [ "string", "null" ] }, "platform": { "maxLength": 255, "type": [ "string", "null" ] }, "pp_xoffset_max": { "type": [ "integer", "null" ] }, "pp_xoffset_min": { "type": [ "integer", "null" ] }, "pp_yoffset_max": { "type": [ "integer", "null" ] }, "pp_yoffset_min": { "type": [ "integer", "null" ] }, "refr_domain_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "refr_dvce_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "refr_medium": { "maxLength": 25, "type": [ "string", "null" ] }, "refr_source": { "maxLength": 50, "type": [ "string", "null" ] }, "refr_term": { "maxLength": 255, "type": [ "string", "null" ] }, "refr_urlfragment": { "maxLength": 3000, "type": [ "string", "null" ] }, "refr_urlhost": { "maxLength": 255, "type": [ "string", "null" ] }, "refr_urlpath": { "maxLength": 6000, "type": [ "string", "null" ] }, "refr_urlport": { "type": [ "integer", "null" ] }, "refr_urlquery": { "maxLength": 6000, "type": [ "string", "null" ] }, "refr_urlscheme": { "maxLength": 16, "type": [ "string", "null" ] }, "se_action": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_category": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_label": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_property": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_value": { "type": [ "number", "null" ] }, "ti_category": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "ti_name": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_orderid": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_price": { "type": [ "number", "null" ] }, "ti_price_base": { "type": [ "number", "null" ] }, "ti_quantity": { "type": [ "integer", "null" ] }, "ti_sku": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_affiliation": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_city": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_country": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "tr_orderid": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_shipping": { "type": [ "number", "null" ] }, "tr_shipping_base": { "type": [ "number", "null" ] }, "tr_state": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_tax": { "type": [ "number", "null" ] }, "tr_tax_base": { "type": [ "number", "null" ] }, "tr_total": { "type": [ "number", "null" ] }, "tr_total_base": { "type": [ "number", "null" ] }, "true_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "txn_id": { "type": [ "integer", "null" ] }, "unstruct_event": { "type": [ "object", "null" ] }, "user_fingerprint": { "maxLength": 128, "type": [ "string", "null" ] }, "user_id": { "maxLength": 255, "type": [ "string", "null" ] }, "user_ipaddress": { "maxLength": 128, "type": [ "string", "null" ] }, "useragent": { "maxLength": 1000, "type": [ "string", "null" ] }, "v_collector": { "maxLength": 100, "type": "string" }, "v_etl": { "maxLength": 100, "type": "string" }, "v_tracker": { "maxLength": 100, "type": [ "string", "null" ] } }, "type": "object" } }, "required": [ "event", "error" ], "self": { "format": "jsonschema", "name": "loader_runtime_error", "vendor": "com.snowplowanalytics.snowplow.badrows", "version": "1-0-0" }, "type": "object" }
sp_338_Normalized
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle (if applicable)", "type": "number" }, "height": { "description": "The height of the triangle (if applicable)", "type": "number" }, "length": { "description": "The length of the rectangle (if applicable)", "type": "number" }, "radius": { "description": "The radius of the circle (if applicable)", "type": "number" }, "width": { "description": "The width of the rectangle (if applicable)", "type": "number" } }, "type": "object" }, "shape": { "description": "The geometric shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_cae07f36
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://hepdata.org/submission/schema/additional_info", "type": "object", "title": "This section is optional for the provision of information about the overall submission.", "description": "An explanation about the purpose of this instance described by this schema.", "name": "/", "properties": { "record_ids": { "id": "http://jsonschema.net/record_ids", "type": "array", "items": { "id": "http://jsonschema.net/record_ids/record_id", "type": "object", "properties": { "type": { "id": "http://jsonschema.net/record_ids/record_id/type", "type": [ "string" ] }, "id": { "id": "http://jsonschema.net/record_ids/record_id/id", "type": [ "string", "number" ] } }, "additionalProperties": false, "required": [ "type", "id" ] } }, "preprintyear": { "id": "http://hepdata.org/submission/schema/data/preprintyear", "type": "string", "title": "Preprint Year", "description": "Indicates the year when the submission preprint was first available.", "name": "preprintyear" }, "publicationyear": { "id": "http://hepdata.org/submission/schema/data/publicationyear", "type": "string", "title": "Publication Year", "description": "Indicates the year when the submission publication was available.", "name": "publicationyear" }, "dateupdated": { "id": "http://hepdata.org/submission/schema/data/dateupdated", "type": "string", "title": "Date Updated", "description": "Indicates when the submission was last updated.", "name": "dateupdated" }, "modifications": { "id": "http://jsonschema.net/modifications", "type": "array", "items": { "id": "http://jsonschema.net/modifications/modification", "type": "object", "properties": { "action": { "id": "http://jsonschema.net/modifications/modification/action", "type": "string" }, "who": { "id": "http://jsonschema.net/modifications/modification/who", "type": "string" } }, "additionalProperties": true, "required": [ "action", "who" ] } }, "additional_resources": { "id": "http://jsonschema.net/additional_resources", "type": "array", "items": { "id": "http://jsonschema.net/additional_resources/resource", "type": "object", "properties": { "location": { "id": "http://jsonschema.net/additional_resources/resource/location", "type": "string" }, "description": { "id": "http://jsonschema.net/additional_resources/resource/description", "type": "string" }, "license": { "id": "http://jsonschema.net/additional_resources/resource/license", "type": "object", "properties": { "name": { "id": "http://jsonschema.net/additional_resources/resource/license/name", "type": "string" }, "url": { "id": "http://jsonschema.net/additional_resources/resource/license/url", "type": "string" }, "description": { "id": "http://jsonschema.net/additional_resources/resource/license/description", "type": "string" } }, "additionalProperties": false, "required": [ "name", "url" ] } }, "required": [ "location" ] } }, "associated_records": { "id": "http://jsonschema.net/associated_records", "type": "array", "description": "Links to other HEPData Submissions or INSPIRE Records that relate to this submission.", "items": { "id": "http://jsonschema.net/associated_records/output", "type": "object", "properties": { "type": { "id": "http://jsonschema.net/associated_records/output/type", "type": "string" }, "identifier": { "id": "http://jsonschema.net/associated_records/output/identifier", "type": [ "string", "number" ] }, "description": { "id": "http://jsonschema.net/associated_records/output/description", "type": "string" }, "url": { "id": "http://jsonschema.net/associated_records/output/url", "type": "string" } }, "required": [ "identifier", "type" ] } }, "comment": { "id": "http://hepdata.org/submission/schema/additional_info/comment", "type": "string", "title": "Comment.", "description": "Information that applies to all data tables.", "name": "comment" } }, "additionalProperties": true }
o6761
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "notifications": { "type": "boolean", "description": "whether this candidate wants to receive email alerts about new jobs" }, "internalFlag": { "type": "boolean", "description": "whether this candidate is an internal" } }, "type": "object", "properties": { "notifications": { "$ref": "#/definitions/notifications" }, "internalFlag": { "$ref": "#/definitions/internalFlag" } }, "required": [ "notifications", "internalFlag" ], "additionalProperties": false }
o79542
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://dev.twitter.com/cards/overview", "title": "TwitterCards", "name": "TwitterCards", "description": "With Twitter Cards, you can attach rich photos, videos and media experience to Tweets that drive traffic to your website. Simply add a few lines of HTML to your webpage, and users who Tweet links to your content will have a \u201cCard\u201d added to the Tweet that\u2019s visible to all of their followers.", "properties": { "twitter:card": { "title": "twitter:card", "description": "The card type", "type": "string" }, "twitter:site": { "title": "twitter:site", "description": "@username of website", "type": "string" }, "twitter:site:id": { "title": "twitter:site:id", "description": "Same as twitter:site, but the user\u2019s Twitter ID", "type": "string" }, "twitter:creator": { "title": "twitter:creator", "description": "@username of content creator", "type": "string" }, "twitter:creator:id": { "title": "twitter:creator:id", "description": "Twitter user ID of content creator", "type": "string" }, "twitter:description": { "title": "twitter:description", "description": "Description of content (maximum 200 characters)", "type": "string" }, "twitter:title": { "title": "twitter:title", "description": "Title of content (max 70 characters)", "type": "string" }, "twitter:image:src": { "title": "twitter:image:src", "description": "URL of image to use in the card. Image must be less than 1MB in size", "type": "string", "format": "uri" }, "twitter:image:width": { "title": "twitter:image:width", "description": "Width of image in pixels", "type": "number" }, "twitter:image:height": { "title": "twitter:image:height", "description": "Height of image in pixels", "type": "number" }, "twitter:image0": { "title": "twitter:image0", "description": "1st, 2nd, 3rd, and 4th image in the gallery, respectively. Images must be less than 1MB in size", "type": "string", "format": "uri" }, "twitter:image1": { "title": "twitter:image1", "description": "1st, 2nd, 3rd, and 4th image in the gallery, respectively. Images must be less than 1MB in size", "type": "string", "format": "uri" }, "twitter:image2": { "title": "twitter:image2", "description": "1st, 2nd, 3rd, and 4th image in the gallery, respectively. Images must be less than 1MB in size", "type": "string", "format": "uri" }, "twitter:image3": { "title": "twitter:image3", "description": "1st, 2nd, 3rd, and 4th image in the gallery, respectively. Images must be less than 1MB in size", "type": "string", "format": "uri" }, "twitter:player": { "title": "twitter:player", "description": "HTTPS URL of player iframe", "type": "string", "format": "uri" }, "twitter:player:width": { "title": "twitter:player:width", "description": "Width of iframe in pixels", "type": "number" }, "twitter:player:height": { "title": "twitter:player:height", "description": "Height of iframe in pixels", "type": "number" }, "twitter:player:stream": { "title": "twitter:player:stream", "description": "URL to raw video or audio stream", "type": "string", "format": "uri" }, "twitter:data1": { "title": "twitter:data1", "description": "Top customizable data field, can be a relatively short string (ie \u201c$3.99\u201d)", "type": "string" }, "twitter:label1": { "title": "twitter:label1", "description": "Customizable label or units for the information in twitter:data1 (best practice: use all caps)", "type": "string" }, "twitter:data2": { "title": "twitter:data2", "description": "Bottom customizable data field, can be a relatively short string (ie \u201cSeattle, WA\u201d)", "type": "string" }, "twitter:label2": { "title": "twitter:label2", "description": "Customizable label or units for the information in twitter:data1 (best practice: use all caps)", "type": "string" }, "twitter:app:name:iphone": { "title": "twitter:app:name:iphone", "description": "Name of your iPhone app", "type": "string" }, "twitter:app:id:iphone": { "title": "twitter:app:id:iphone", "description": "Your app ID in the iTunes App Store (Note: NOT your bundle ID)", "type": "string" }, "twitter:app:url:iphone": { "title": "twitter:app:url:iphone", "description": "Your app\u2019s custom URL scheme (you must include \u201c://\u201d after your scheme name)", "type": "string" }, "twitter:app:name:ipad": { "title": "twitter:app:name:ipad", "description": "Name of your iPad optimized app", "type": "string" }, "twitter:app:id:ipad": { "title": "twitter:app:id:ipad", "description": "Your app ID in the iTunes App Store", "type": "string" }, "twitter:app:url:ipad": { "title": "twitter:app:url:ipad", "description": "Your app\u2019s custom URL scheme", "type": "string" }, "twitter:app:name:googleplay": { "title": "twitter:app:name:googleplay", "description": "Name of your Android app", "type": "string" }, "twitter:app:id:googleplay": { "title": "twitter:app:id:googleplay", "description": "Your app ID in the Google Play Store", "type": "string" }, "twitter:app:url:googleplay": { "title": "twitter:app:url:googleplay", "description": "Your app\u2019s custom URL scheme", "type": "string" } } }
o54536
{ "additionalProperties": false, "description": "Schema for an event which has been successfully enriched and stored in Elasticsearch", "patternProperties": { "^contexts_.*": { "type": "array" }, "^unstruct_event_.*": {} }, "properties": { "app_id": { "type": "string" }, "br_colordepth": { "type": "string" }, "br_cookies": { "type": "boolean" }, "br_family": { "type": "string" }, "br_features_director": { "type": "boolean" }, "br_features_flash": { "type": "boolean" }, "br_features_gears": { "type": "boolean" }, "br_features_java": { "type": "boolean" }, "br_features_pdf": { "type": "boolean" }, "br_features_quicktime": { "type": "boolean" }, "br_features_realplayer": { "type": "boolean" }, "br_features_silverlight": { "type": "boolean" }, "br_features_windowsmedia": { "type": "boolean" }, "br_lang": { "type": "string" }, "br_name": { "type": "string" }, "br_renderengine": { "type": "string" }, "br_type": { "type": "string" }, "br_version": { "type": "string" }, "br_viewheight": { "type": "integer" }, "br_viewwidth": { "type": "integer" }, "collector_tstamp": { "type": "string" }, "doc_charset": { "type": "string" }, "doc_height": { "type": "integer" }, "doc_width": { "type": "integer" }, "domain_sessionidx": { "type": "integer" }, "domain_userid": { "type": "string" }, "dvce_ismobile": { "type": "boolean" }, "dvce_screenheight": { "type": "integer" }, "dvce_screenwidth": { "type": "integer" }, "dvce_tstamp": { "type": "string" }, "dvce_type": { "type": "string" }, "etl_tstamp": { "type": "string" }, "event": { "type": "string" }, "event_id": { "type": "string" }, "geo_city": { "type": "string" }, "geo_country": { "type": "string" }, "geo_latitude": { "type": "number" }, "geo_location": { "pattern": "-?[0-9]+(?:\\.[0-9+])?,-?[0-9]+(?:\\.[0-9+])?", "type": "string" }, "geo_longitude": { "type": "number" }, "geo_region": { "type": "string" }, "geo_region_name": { "type": "string" }, "geo_zipcode": { "type": "string" }, "ip_domain": { "type": "string" }, "ip_isp": { "type": "string" }, "ip_netspeed": { "type": "string" }, "ip_org": { "type": "string" }, "mkt_campaign": { "type": "string" }, "mkt_content": { "type": "string" }, "mkt_medium": { "type": "string" }, "mkt_source": { "type": "string" }, "mkt_term": { "type": "string" }, "name_tracker": { "type": "string" }, "network_userid": { "type": "string" }, "os_family": { "type": "string" }, "os_manufacturer": { "type": "string" }, "os_name": { "type": "string" }, "os_timezone": { "type": "string" }, "page_referrer": { "type": "string" }, "page_title": { "type": "string" }, "page_url": { "type": "string" }, "page_urlfragment": { "type": "string" }, "page_urlhost": { "type": "string" }, "page_urlpath": { "type": "string" }, "page_urlport": { "type": "integer" }, "page_urlquery": { "type": "string" }, "page_urlscheme": { "type": "string" }, "platform": { "type": "string" }, "pp_xoffset_max": { "type": "integer" }, "pp_xoffset_min": { "type": "integer" }, "pp_yoffset_max": { "type": "integer" }, "pp_yoffset_min": { "type": "integer" }, "refr_medium": { "type": "string" }, "refr_source": { "type": "string" }, "refr_term": { "type": "string" }, "refr_urlfragment": { "type": "string" }, "refr_urlhost": { "type": "string" }, "refr_urlpath": { "type": "string" }, "refr_urlport": { "type": "integer" }, "refr_urlquery": { "type": "string" }, "refr_urlscheme": { "type": "string" }, "se_action": { "type": "string" }, "se_category": { "type": "string" }, "se_label": { "type": "string" }, "se_property": { "type": "string" }, "se_value": { "type": "string" }, "ti_category": { "type": "string" }, "ti_name": { "type": "string" }, "ti_orderid": { "type": "string" }, "ti_price": { "type": "number" }, "ti_quantity": { "type": "integer" }, "ti_sku": { "type": "string" }, "tr_affiliation": { "type": "string" }, "tr_city": { "type": "string" }, "tr_country": { "type": "string" }, "tr_orderid": { "type": "string" }, "tr_shipping": { "type": "number" }, "tr_state": { "type": "string" }, "tr_tax": { "type": "number" }, "tr_total": { "type": "number" }, "txn_id": { "type": "integer" }, "user_fingerprint": { "type": "string" }, "user_id": { "type": "string" }, "user_ipaddress": { "type": "string" }, "useragent": { "type": "string" }, "v_collector": { "type": "string" }, "v_etl": { "type": "string" }, "v_tracker": { "type": "string" } }, "self": { "format": "jsonschema", "name": "elasticsearch_enriched_event", "vendor": "com.snowplowanalytics.snowplow", "version": "1-0-0" }, "type": "object" }
sp_279_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Claim", "description": "Claim provided by a service", "type": "object", "properties": { "claimant": { "description": "Short name of the service used for subscription", "value": "string" }, "subject": { "description": "subject of the predicate (claim)", "type": "object", "properties": { "type": { "description": "Type of persistent identifier (e.g. INSPIRE_RECORD_ID)", "type": "string" }, "value": { "description": "Actual value of the identifier", "type": "string" } }, "required": [ "type", "value" ], "additionalProperties": false }, "claim": { "description": "type of claim", "type": "object", "properties": { "predicate": { "description": "predicate of the claim", "type": "string", "enum": [ "is_same_as", "is_different_than", "is_erratum_of", "is_superseded_by", "is_cited_by", "is_software_for", "is_dataset_for" ] }, "datetime": { "description": "#TODO: which date time is this?", "type": "string" }, "certainty": { "description": "certainty of the claim", "type": "number", "minimum": 0, "maximum": 100 }, "arguments": { "description": "arguments supporting the certainty", "type": "object", "properties": { "human": { "description": "the claim was done by a human or an algorithm", "type": "string", "enum": [ "True", "False" ] }, "actor": { "description": "who assessed the certainty", "type": "string" }, "role": { "description": "role of the actor", "type": "string" } } } }, "required": [ "predicate", "certainty" ] }, "object": { "description": "object of the predicate (claim)", "type": "object", "properties": { "type": { "description": "Type of persistent identifier (e.g. INSPIRE_RECORD_ID)", "type": "string" }, "value": { "description": "Actual value of the identifier", "type": "string" } }, "required": [ "type", "value" ], "additionalProperties": false } }, "required": [ "claimant", "subject", "claim", "object" ], "additionalProperties": false }
o57435
{ "properties": { "date_range": { "description": "The date range to search within", "properties": { "end_date": { "description": "The end date in format yyyy-mm-dd", "type": "string" }, "start_date": { "description": "The start date in format yyyy-mm-dd", "type": "string" } }, "required": [ "start_date", "end_date" ], "type": "object" }, "language": { "description": "The language of the tweets", "type": "string" }, "query": { "description": "The search query", "type": "string" } }, "required": [ "query" ], "type": "object" }
search_tweets_1810a1cc
{ "id": "http://schemas.gdbots.io/json-schema/gdbots/pbjx/envelope/1-0-2.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:pbjx::envelope:1-0-2" }, "envelope_id": { "type": "string", "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$" }, "ok": { "type": "boolean", "default": true }, "code": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535 }, "http_code": { "type": "integer", "default": 200, "enum": [ 0, 100, 101, 102, 200, 201, 202, 203, 204, 205, 206, 207, 208, 226, 300, 301, 302, 303, 304, 305, 306, 307, 308, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 422, 423, 424, 425, 426, 428, 429, 499, 431, 451, 500, 501, 502, 503, 504, 505, 506, 507, 508, 510, 511 ] }, "etag": { "type": "string", "pattern": "^[\\w\\.:-]+$" }, "error_name": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$" }, "error_message": { "type": "string", "minLength": 0, "maxLength": 65535 }, "message_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 }, "message": { "type": "object" }, "derefs": { "type": "object", "patternProperties": { "^[a-zA-Z_]{1}[\\w\\.:-]+$": { "type": "object" } }, "additionalProperties": false, "description": "Some pbjx operations (normally requests) can include \"dereferenced\" messages on the envelope to prevent the consumer from needing to make multiple HTTP requests. It is up to the consumer to make use of the dereferenced messages if/when they are provided." }, "links": { "type": "object", "patternProperties": { "^[a-zA-Z_]{1}[\\w\\.:-]+$": { "type": "string", "pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$" } }, "additionalProperties": false, "description": "@link https://en.wikipedia.org/wiki/HATEOAS" } }, "required": [ "_schema", "envelope_id" ], "additionalProperties": false }
o42890
{ "properties": { "dimensions": { "properties": { "base": { "description": "Base of the triangle", "type": "number" }, "height": { "description": "Height of the triangle", "type": "number" }, "length": { "description": "Length of the rectangle", "type": "number" }, "radius": { "description": "Radius of the circle", "type": "number" }, "side_length": { "description": "Length of a side (square)", "type": "number" }, "width": { "description": "Width of the rectangle", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "Type of shape (circle, square, rectangle, triangle)", "type": "string" } }, "required": [ "shape" ], "type": "object" }
calculate_area_544de1a7
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "tags": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "value": { "type": "string", "minLength": 1, "maxLength": 255 } }, "required": [ "key", "value" ], "additionalProperties": false }, "maxItems": 100 }, "attributes": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "dataType": { "type": "string", "enum": [ "string", "number", "gps", "boolean", "blob" ] }, "contentType": { "type": "string", "maxLength": 64 }, "description": { "type": "string", "maxLength": 32767 }, "attributeTags": { "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "system": { "type": "object", "properties": { "aggregation": { "type": "string", "enum": [ "FIRST", "LAST", "COUNT", "MAX", "MIN", "MEDIAN", "MEAN", "SUM", "STD_DEV" ] }, "aggregationOptions": { "type": "array", "items": { "type": "object", "additionalProperties": false }, "additionalProperties": false, "maxItems": 0 }, "childAttributes": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "mode": { "type": "string", "enum": [ "all", "whitelist", "blacklist" ] }, "deviceIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "deviceTags": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "value": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "maxItems": 100 } }, "required": [ "name", "mode" ], "additionalProperties": false }, "maxItems": 256 } }, "additionalProperties": false } }, "required": [ "name", "dataType" ], "additionalProperties": false }, "maxItems": 256 }, "deviceClass": { "type": "string", "enum": [ "standalone", "gateway", "peripheral", "floating", "edgeCompute", "system" ] }, "gatewayId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "parentId": { "oneOf": [ { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, { "type": "null" } ] }, "systemInterval": { "type": "integer", "minimum": 5, "maximum": 3600 }, "keepDuplicates": { "type": "boolean" } }, "additionalProperties": false }
o9830
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "SSM model", "description": "Description of a state space model following the grammar of the SSM inference package", "definitions": { "require": { "type": "object", "properties": { "datapackage": { "type": "string" }, "resource": { "type": "string" }, "fields": { "type": "array", "items": { "type": "string" } } } } }, "type": "object", "properties": { "populations": { "type": "array", "description": "Grouping of the state variables comprised in your compartmental model. For each group, provide a name and the list of corresponding states. By adding an optional remainder field, you will ensure the population size remains positive.", "items": { "type": "object", "properties": { "name": { "type": "string" }, "composition": { "type": "array", "items": { "type": "string" } }, "remainder": { "type": "object", "description": "Following this instruction, the value of the remainder variable at every time will be determined by the size of the population minus the sum of the other compartments. Note that SSM will discard scenarios where this variable becomes negative.", "properties": { "name": { "type": "string" }, "pop_size": { "type": "string" } }, "required": [ "name", "pop_size" ] } }, "required": [ "name", "composition" ] } }, "reactions": { "type": "array", "description": "Description of the dynamics of your compartmental model. We only consider density-dependent reactions: each rate will be multiplied by the size of the compartment individuals are leaving. See the accumulators and white_noise optional fields for additional options.", "items": { "type": "object", "properties": { "from": { "type": "string" }, "to": { "type": "string" }, "rate": { "type": "string" }, "description": { "type": "string" }, "white_noise": { "type": "object", "description": "In order to cope with the absence or mis-specification of environmental factors in the model, you can multiply the rate of each reaction by a white gamma noise. To correlate these noises, use the same name. For more information, see Breto et al. 2009, Time series analysis via mechanistic models.", "properties": { "name": { "type": "string" }, "sd": { "type": "string" } }, "required": [ "name", "sd" ] }, "accumulators": { "type": "array", "description": "When your are monitoring or fitting the integrated flow of a given reaction, you can store it in one or several variables defined in this list. If a given flow variable is repeated in several reactions, it will correspond of the sum of the flows of these reactions.", "items": { "type": "string" } }, "keywords": { "type": "array", "items": { "type": "string" } } }, "required": [ "from", "to", "rate" ] } }, "sde": { "type": "object", "description": "System of stochastic differential equations, defined by their drift vector and dispersion matrix", "properties": { "drift": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "State variable which dynamic is determined by this line of the system." }, "f": { "type": [ "number", "string" ], "description": "Deterministic component of the equation." }, "transformation": { "type": "string", "description": "In case you want to express the equation in terms of a function of X and avoid applying the Ito formula." } }, "required": [ "name", "f" ] } }, "dispersion": { "type": "array", "description": "Dispersion matrix L. It needs to have as many rows as objects in drifts, and as many colums as independent sources of noise.", "items": { "type": "array", "items": { "type": [ "number", "string" ] } } } }, "required": [ "drift", "dispersion" ] }, "ode": { "type": "array", "description": "System of ordinary differential equations.", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "State variable which dynamic is determined by this line of the system." }, "f": { "type": [ "number", "string" ], "description": "Deterministic component of the equation." }, "transformation": { "type": "string", "description": "In case you want to express the equation in terms of a function of X and avoid applying the Ito formula." } }, "required": [ "name", "f" ] } }, "observations": { "type": "array", "description": "Name each of the observed time series, determine when observations started to be collected and what is the distribution of the observation process.", "items": { "type": "object", "properties": { "name": { "type": "string" }, "start": { "type": "string", "format": "date-time" }, "distribution": { "type": "string" }, "mean": { "type": "string" }, "sd": { "type": "string" }, "n": { "type": "string" }, "p": { "type": "string" } }, "required": [ "name", "start", "distribution" ] } }, "data": { "type": "array", "description": "Link each of the observed variables to a data resource.", "items": { "type": "object", "anyOf": [ { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "require": { "$ref": "#/definitions/require" }, "transformation": { "description": "When the parameters used in the model are functions of the data resources, specify the relation here.", "type": "string" } }, "required": [ "name", "require" ] } ] } }, "inputs": { "type": "array", "description": "Link each of the parameters or covariates at stake in your model to a data resource.", "items": { "type": "object", "anyOf": [ { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "require": { "$ref": "#/definitions/require" }, "transformation": { "description": "When the parameters used in the model are functions of the data resources, specify the relation here.", "type": "string" }, "to_resource": { "description": "In order to make predictions after fitting your data, specify how to invert the transformation relation at a later time than t0.", "type": "string" } }, "required": [ "name" ] } ] } } } }
o64563
{ "$id": "https://json.schemastore.org/sourcehut-build-0.65.0.json", "$schema": "http://json-schema.org/draft-07/schema#", "description": "A recipe for Sourcehut CI service. For details, see https://man.sr.ht/builds.sr.ht/manifest.md.", "properties": { "image": { "description": "Which OS image to build in. A list of available build images can be found at https://man.sr.ht/builds.sr.ht/compatibility.md", "type": "string", "examples": ["archlinux", "alpine/latest"] }, "arch": { "description": "Which architecture to build for. See https://man.sr.ht/builds.sr.ht/compatibility.md for a list of available architectures.", "type": "string", "examples": ["aarch64", "x86_64"] }, "packages": { "description": "A list of packages to install on the image. For image-specific details, consult https://man.sr.ht/builds.sr.ht/compatibility.md", "type": "array", "items": { "type": "string" } }, "repositories": { "description": "A list of extra repositories to enable with the image's package manager. The specific format varies by base image, consult https://man.sr.ht/builds.sr.ht/compatibility.md for details.", "type": "object", "additionalProperties": { "type": "string" } }, "artifacts": { "description": "A list of files to extract from the completed build environment and make available for downloading from the jobs page. Artifacts are only uploaded for successful jobs and are pruned after 90 days. \nNote that the file names are interpreted literally: do not use ~ or any shell code. If a relative path is used (e.g. example/my-artifact.tar.gz), it will be interpreted relative to the build user's home directory.", "type": "array", "items": { "type": "string" }, "examples": ["example/my-artifact.tar.gz"] }, "shell": { "description": "Whether to keep the build VM alive after all of the tasks have finished, even if it doesn't fail, so you can SSH in. You can also SSH in before the tasks have finished and tail the output of the build in your terminal. Learn more at https://man.sr.ht/builds.sr.ht/build-ssh.md", "type": "boolean" }, "sources": { "description": "A list of repositories to clone into the home directory of the build user in the build environment. Optionally, prefix the protocol with the source control management scheme, to specify a protocol other than git. To specify a non-default git revision, append #commit-object to the repository.", "type": "array", "items": { "type": "string", "examples": [ "https://git.sr.ht/~sircmpwn/scdoc", "https://git.sr.ht/~sircmpwn/scdoc#devel", "[email protected]:~sircmpwn/scdoc", "hg+https://hg.sr.ht/~sircmpwn/scdoc", "hg+ssh://hg.sr.ht/~sircmpwn/scdoc" ] } }, "tasks": { "description": "A list of scripts to execute in the build environment. \nTask names must use only lowercase alphanumeric characters, underscores or dashes and must be <=128 characters in length. Tasks are executed in the order specified. \nEach task is run in a separate login session, so if you modify the groups of the build user they will be effective starting from the subsequent task.", "type": "array", "minItems": 1, "items": { "type": "object", "additionalProperties": { "type": "string" }, "propertyNames": { "pattern": "^[a-z0-9_-]{1,128}$" }, "examples": [ { "package": "cd $site\ntar -cvz . > ../site.tar.gz" } ] } }, "triggers": { "description": "A list of triggers to execute post-build, which can be used to send emails or do other post-build tasks. \nLearn more at https://man.sr.ht/builds.sr.ht/triggers.md", "type": "array", "items": { "type": "object", "additionalProperties": true, "properties": { "action": { "description": "Trigger type", "type": "string", "enum": ["email", "webhook"] }, "condition": { "description": "When to execute this trigger", "type": "string", "enum": ["always", "failure", "success"] } }, "required": ["action", "condition"] } }, "environment": { "description": "A list of key/value pairs for options to set in the build environment via ~/.buildenv", "type": "object", "additionalProperties": { "type": "string" }, "examples": [ { "site": "your-username.srht.site" } ] }, "secrets": { "description": "List of secret UUIDs to be added to the guest during the build. Learn more at https://man.sr.ht/builds.sr.ht/#secrets", "type": "array", "items": { "type": "string", "examples": ["46f739e5-4538-45dd-a79f-bf173b7a2ed9"] } }, "oauth": { "description": "If present, and secrets are enabled for this build, an OAuth 2.0 bearer token is generated for this build with the given string as the list of grants. The acurl command may be used in the task scripts to perform authenticated GraphAL API requests (https://man.sr.ht/graphql.md).", "type": "string", "examples": ["pages.sr.ht/PAGES:RW"] } }, "required": ["image", "tasks"], "title": "Sourcehut Build Manifest", "type": "object" }
sourcehut-build-0
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "a", "description": "A a test", "type": "object", "properties": { "listitems": { "type": "array", "items": { "type": "object", "properties": { "text": { "type": "string" } } }, "minItems": 1 } }, "required": [ "listitems" ] }
o62757
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "integer" }, "height": { "description": "The height of the triangle", "type": "integer" }, "length": { "description": "The length of the rectangle", "type": "integer" }, "radius": { "description": "The radius of the circle", "type": "integer" }, "width": { "description": "The width of the rectangle", "type": "integer" } }, "required": [ "radius", "length", "width", "base", "height" ], "type": "object" }, "shape": { "description": "The shape for which the area needs to be calculated", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_c6f1b383
{ "properties": { "keywords": { "description": "The keywords to search for in job titles", "items": { "type": "string" }, "type": "array" }, "location": { "description": "The location to search for jobs", "type": "string" }, "salary_range": { "properties": { "max": { "description": "The maximum salary in dollars", "type": "number" }, "min": { "description": "The minimum salary in dollars", "type": "number" } }, "type": "object" } }, "required": [ "keywords", "location" ], "type": "object" }
search_jobs_2df22946
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_FlowSchemaCondition": { "description": "FlowSchemaCondition describes conditions for a FlowSchema.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another." }, "message": { "description": "`message` is a human-readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", "type": "string" }, "status": { "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", "type": "string" }, "type": { "description": "`type` is the type of the condition. Required.", "type": "string" } }, "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": "FlowSchemaStatus represents the current state of a FlowSchema.", "properties": { "conditions": { "description": "`conditions` is a list of the current states of FlowSchema.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_FlowSchemaCondition" }, "type": [ "array", "null" ], "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } }, "type": "object" }
kb_370_Normalized
{ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Recommended Sequence", "description": "A sequence of semesters corresponding to a given program as recommended by Concordia University", "type": "object", "properties": { "sequenceInfo": { "description": "Auxiliary info related to the sequence", "type": "object", "properties": { "program": { "type": "string", "pattern": "\\w+" }, "option": { "type": "string", "pattern": "\\w+" }, "entryType": { "type": "string", "pattern": "\\w+" } }, "required": [ "program", "option", "entryType" ], "additionalProperties": false }, "sourceUrl": { "description": "A visitable web url from which the contents of the sequence were inferred", "type": "string", "pattern": "^https?://" }, "minTotalCredits": { "description": "The minimum number of credits needed in order to graduate from the program which this sequence is based upon", "type": "string", "pattern": "^\\d+$" }, "yearList": { "type": "array", "items": { "type": "object", "properties": { "fall": { "$ref": "#/definitions/semester" }, "winter": { "$ref": "#/definitions/semester" }, "summer": { "$ref": "#/definitions/semester" } }, "required": [ "fall", "winter", "summer" ], "additionalProperties": false }, "minItems": 3 } }, "required": [ "sequenceInfo", "sourceUrl", "minTotalCredits", "yearList" ], "additionalProperties": false, "definitions": { "semester": { "type": "object", "properties": { "courseList": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/regularCourse" }, { "$ref": "#/definitions/electiveCourse" }, { "$ref": "#/definitions/orList" } ] } }, "isWorkTerm": { "type": "string", "enum": [ "true", "false" ] } }, "required": [ "courseList", "isWorkTerm" ], "additionalProperties": false }, "orList": { "description": "A list of courses where the student can choose any one of them to add to take in the current semester", "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/regularCourse" }, { "$ref": "#/definitions/electiveCourse" } ] }, "minItems": 2 }, "regularCourse": { "type": "object", "properties": { "code": { "type": "string", "pattern": "^\\w{4}\\s{1}\\d{3}$" }, "isElective": { "type": "string", "pattern": "^false$" }, "electiveType": { "type": "string", "pattern": "^$" } }, "required": [ "code", "isElective", "electiveType" ], "additionalProperties": false }, "electiveCourse": { "type": "object", "properties": { "code": { "type": "string", "pattern": "^$" }, "isElective": { "type": "string", "pattern": "^true$" }, "electiveType": { "type": "string", "enum": [ "Science", "Program", "General" ] } }, "required": [ "code", "isElective", "electiveType" ], "additionalProperties": false } } }
o78739
{ "$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": [ "EiffelTestCaseTriggeredEvent" ] }, "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": { "testCase": { "type": "object", "properties": { "tracker": { "type": "string" }, "id": { "type": "string" }, "version": { "type": "string" }, "uri": { "type": "string" } }, "required": [ "id" ], "additionalProperties": false }, "recipeId": { "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}$" }, "triggers": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "MANUAL", "EIFFEL_EVENT", "SOURCE_CHANGE", "TIMER", "OTHER" ] }, "description": { "type": "string" } }, "required": [ "type" ], "additionalProperties": false } }, "executionType": { "type": "string", "enum": [ "MANUAL", "SEMI_AUTOMATED", "AUTOMATED", "OTHER" ] }, "parameters": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "value": { "type": "string" } }, "required": [ "name", "value" ], "additionalProperties": false } }, "customData": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": {} }, "required": [ "key", "value" ], "additionalProperties": false } } }, "required": [ "testCase" ], "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 }
o5407
{ "additionalProperties": false, "description": "Schema for storage recovery jobs, such as Snowplow BigQuery Repeater", "properties": { "failure": { "description": "A reason why payload could not be inserted", "properties": { "error": { "oneOf": [ { "description": "Payload couldn't be parsed as an event (ParsingError)", "properties": { "location": { "items": { "type": "string" }, "type": "array" }, "message": { "description": "Human-readable error", "type": "string" } }, "required": [ "message", "location" ], "type": "object" }, { "description": "Payload couldn't be inserted because of a service failure (RuntimeError)", "properties": { "location": { "type": [ "string", "null" ] }, "message": { "description": "Human-readable error", "type": "string" }, "reason": { "type": [ "string", "null" ] } }, "required": [ "message", "location", "reason" ], "type": "object" } ] } }, "required": [ "error" ] }, "payload": { "description": "Data blob which was not inserted into a warehouse", "type": "string" }, "processor": { "additionalProperties": false, "description": "Information about the piece of software responsible for the creation of enrichment failures", "properties": { "artifact": { "description": "Artifact responsible for the creation of enrichment failures", "maxLength": 512, "type": "string" }, "version": { "description": "Version of the artifact responsible for the creation of enrichment failures", "maxLength": 32, "pattern": "^(\\d+\\.\\d+\\.\\d+.*)$", "type": "string" } }, "required": [ "artifact", "version" ], "type": "object" } }, "required": [ "payload", "failure", "processor" ], "self": { "format": "jsonschema", "name": "loader_recovery_error", "vendor": "com.snowplowanalytics.snowplow.badrows", "version": "1-0-0" }, "type": "object" }
sp_337_Normalized
{ "properties": { "acquisition_source": { "description": "Source of acquisition (former 541)", "id": "#acquisition_source", "properties": { "date": { "_format": "date", "description": "Date of acquisition", "type": "string" }, "email": { "_format": "email", "description": "Email of submitter", "type": "string" }, "method": { "description": "Method of acquisition", "enum": [ "OAI", "batchupload", "submission" ] }, "source": { "description": "Source of acquisition (e.g. ID of the user)", "type": "string" }, "submission_number": { "description": "Internal submission number", "type": "integer" } }, "type": "object" } } }
o63534
{ "description": "Control network modes", "properties": { "configuration": { "_id": "configuration", "description": "", "format": "table", "properties": { "hostname": { "_format": "simpletext", "_id": "hostname", "default": "raspberrypi", "description": "The hostname of this server, usually your boatname", "minLength": 4, "options": { "input_width": "200px" }, "title": "Hostname", "type": "string" }, "mode": { "_id": "mode", "default": "HOME", "description": "Hotspot starts a private wifi hotspot, Home tries to connect to an existing wifi network.", "enum": [ "HOME", "HOTSPOT" ], "minLength": 1, "title": "Network Mode", "type": "string" }, "password": { "_id": "password", "default": "raspberrypi", "description": "The password for the hotspot", "minLength": 8, "options": { "input_width": "200px" }, "title": "Hotspot Password", "type": "string" }, "roam": { "_id": "roam", "description": "Define hotspots to connect with", "options": { "remove_empty_properties": true }, "properties": { "networks": { "_id": "networks", "description": "Auto-connect to these networks when in range. <br/>SSID: The hotspot name, eg myHomeWifi,<br/>Passphrase: the access passphrase", "format": "table", "items": { "_id": "1", "description": "The wifi network to auto-connect", "format": "grid", "properties": { "password": { "_id": "password", "minLength": 1, "options": { "input_width": "200px" }, "title": "WPA2 Passphrase", "type": "string" }, "ssid": { "_format": "simpletext", "_id": "ssid", "minLength": 1, "options": { "input_width": "200px" }, "title": "SSID", "type": "string" } }, "required": [ "ssid", "password" ], "title": "Hotspot", "type": "object" }, "required": [ "networks" ], "title": "Networks", "type": "array", "_uniqueItems": true } }, "title": "Roam", "type": "object" }, "ssid": { "_format": "simpletext", "_id": "ssid", "default": "freeboard", "description": "The hotspot name", "minLength": 4, "options": { "input_width": "200px" }, "title": "Hotspot Name", "type": "string" } }, "required": [ "mode", "hostname", "ssid", "password", "roam" ], "title": "Configuration", "type": "object" } }, "required": [ "configuration" ], "title": "Network Configuration", "type": "object" }
o14076
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "DeploymentCondition describes the state of a deployment at a certain point.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "lastUpdateTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "The last time this condition was updated." }, "message": { "description": "A human readable message indicating details about the transition.", "type": [ "string", "null" ] }, "reason": { "description": "The reason for the condition's last transition.", "type": [ "string", "null" ] }, "status": { "description": "Status of the condition, one of True, False, Unknown.", "type": [ "string", "null" ] }, "type": { "description": "Type of deployment condition.", "type": [ "string", "null" ] } }, "required": [ "type", "status" ], "type": "object" }
kb_260_Normalized
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "shopware-cli", "description": "shopware cli project configuration definition file", "$ref": "#/definitions/Config", "definitions": { "Config": { "type": "object", "title": ".shopware-project.yml", "additionalProperties": false, "properties": { "url": { "type": "string", "description": "URL to Shopware instance" }, "admin_api": { "$ref": "#/definitions/AdminApi" }, "dump": { "$ref": "#/definitions/Dump" }, "sync": { "$ref": "#/definitions/Sync" }, "build": { "$ref": "#/definitions/Build" } } }, "Build": { "type": "object", "title": "Project Build Settings", "additionalProperties": false, "properties": { "disable_asset_copy": { "type": "boolean", "description": "When enabled, the assets will not be copied to the public folder", "default": false }, "remove_extension_assets": { "type": "boolean", "description": "When enabled, the assets of extensions will be removed from the extension public folder. (Requires Shopware 6.5.2.0)", "default": false }, "cleanup_paths": { "type": "array", "items": {"type": "string"}, "description": "Paths to delete for the final build" } } }, "AdminApi": { "type": "object", "title": "Admin API credentials", "additionalProperties": false, "properties": { "client_id": { "type": "string", "description": "Client ID of integration" }, "client_secret": { "type": "string", "description": "Client Secret of integration" }, "username": { "type": "string", "description": "Username of admin user" }, "password": { "type": "string", "description": "Password of admin user" }, "disable_ssl_check": { "type": "boolean", "description": "Disable SSL check for API requests", "default": false } } }, "Dump": { "type": "object", "title": "MySQL dump configuration", "additionalProperties": false, "properties": { "rewrite": { "type": "object" }, "nodata": { "type": "array", "items": {"type": "string"} }, "ignore": { "type": "array", "items": {"type": "string"} }, "where": { "type": "object" } } }, "Sync": { "type": "object", "title": "Sync Settings", "additionalProperties": false, "properties": { "config": { "type": "array", "items": {"$ref": "#/definitions/SyncConfigItem"} }, "theme": { "type": "array", "items": {"$ref": "#/definitions/ThemeConfigItem"} }, "mail_template": { "type": "array", "items": {"$ref": "#/definitions/MailTemplateItem"} }, "entity": { "type": "array", "items": {"$ref": "#/definitions/EntitySyncItem"} } } }, "SyncConfigItem": { "type": "object", "title": "System Config Sync", "additionalProperties": false, "properties": { "sales_channel": { "title": "Sales Channel to apply", "type": "string" }, "settings": { "type": "object" } }, "required": ["settings"] }, "ThemeConfigItem": { "type": "object", "title": "Theme Config Sync", "additionalProperties": false, "properties": { "name": { "type": "string" }, "settings": { "type": "object" } } }, "MailTemplateItem": { "type": "object", "title": "Mail Template Sync", "additionalProperties": false, "properties": { "id": { "type": "string" }, "translations": { "type": "array", "items": {"$ref": "#/definitions/MailTemplateItemTranslation"} } } }, "MailTemplateItemTranslation": { "type": "object", "title": "Mail Template Single Translation", "additionalProperties": false, "properties": { "language": { "type": "string" }, "sender_name": { "type": "string" }, "subject": { "type": "string" }, "html": { "type": "string" }, "plain": { "type": "string" }, "custom_fields": { "type": ["object", "null"] } } }, "EntitySyncItem": { "type": "object", "title": "Entity Sync", "additionalProperties": false, "properties": { "entity": { "type": "string" }, "exists": { "type": "array", "items": {"$ref": "#/definitions/EntitySyncFilter"} }, "payload": { "type": "object", "description": "API payload" } }, "required": ["entity", "payload"] }, "EntitySyncFilter": { "type": "object", "title": "Entity Sync Filter", "additionalProperties": false, "properties": { "type": { "type": "string", "enum": ["equals", "multi", "contains", "prefix", "suffix", "not", "range", "until", "equalsAll" ,"equalsAny"], "description": "filter type" }, "field": { "type": "string", "description": "field" }, "value": { "type": ["string", "integer", "array", "boolean", "null"], "description": "value" }, "operator": { "type": "string", "enum": ["AND", "OR", "XOR"] }, "queries": { "type": "array", "items": {"$ref": "#/definitions/EntitySyncFilterInner"} } }, "required": ["type", "field"], "allOf": [ { "if": { "properties": { "type": { "const": "multi" } } }, "then": { "required": ["type", "queries"] } } ] }, "EntitySyncFilterInner": { "type": "object", "title": "Entity Sync Filter", "additionalProperties": false, "properties": { "type": { "type": "string", "enum": ["equals", "multi", "contains", "prefix", "suffix", "not", "range", "until", "equalsAll" ,"equalsAny"], "description": "filter type" }, "field": { "type": "string", "description": "field" }, "value": { "type": ["string", "integer", "array", "boolean", "null"], "description": "value" }, "operator": { "type": "string", "enum": ["AND", "OR", "XOR"] } }, "required": ["type", "field"], "allOf": [ { "if": { "properties": { "type": { "const": "multi" } } }, "then": { "required": ["type", "queries"] } } ] } } }
shopware-project-schema
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "description": "A list of mappings from Puli paths to filesystem paths or other Puli paths.", "definitions": { "relativePath": { "description": "A filesystem path relative to the base directory of the repository.", "type": "string", "pattern": "^([a-zA-Z][^:]|[^/@a-zA-Z])[^/]*(/[^/]+)*$" }, "absolutePath": { "description": "An absolute filesystem path.", "type": "string", "pattern": "^([a-zA-Z]:)?/(([^/]+/)*[^/]+)?$" }, "virtualDirectory": { "description": "A directory in the Puli repository that does not correspond to a real filesystem directory.", "type": "null" }, "repositoryLink": { "description": "A link to another resource in the Puli repository.", "type": "string", "pattern": "^@/(([^/]+/)*[^/]+)?$" }, "singleReference": { "description": "A reference to a single file, directory, link or virtual directory.", "oneOf": [ { "$ref": "#/definitions/relativePath" }, { "$ref": "#/definitions/absolutePath" }, { "$ref": "#/definitions/repositoryLink" }, { "$ref": "#/definitions/virtualDirectory" } ] }, "combinedReference": { "description": "A list of references. The first reference has highest priority. Directory contents are merged.", "type": "array", "minItems": 2, "_uniqueItems": true, "items": { "$ref": "#/definitions/singleReference" } } }, "patternProperties": { "^/(([^/]+/)*[^/]+)?$": { "description": "A mapping from a Puli path to one or more path references.", "oneOf": [ { "$ref": "#/definitions/singleReference" }, { "$ref": "#/definitions/combinedReference" } ] } }, "properties": { "_order": { "description": "Overrides the default resolution order. By default, mappings for longer paths (e.g. /a/b) have precedence over mapping for shorter paths (e.g. /a). This can be overridden here.", "type": "object", "patternProperties": { "^/(([^/]+/)*[^/]+)?$": { "description": "Overrides the resolution order for a mapped Puli path. The repository will check the path mappings referred to by the entries of the array in the given order.", "type": "array", "minItems": 2, "items": { "description": "Contains the path of a path mapping and the number of references to check of that path mapping.", "type": "object", "properties": { "path": { "description": "The Puli path of a mapping in this file.", "type": "string", "pattern": "^/(([^/]+/)*[^/]+)?$" }, "references": { "description": "The number of references of the mapping to check.", "type": "integer", "min": 1 } } } } } } }, "additionalProperties": false }
o68694
{ "properties": { "date": { "description": "The date of the meeting in YYYY-MM-DD format", "type": "string" }, "participants": { "description": "The email addresses of the meeting participants", "items": { "type": "string" }, "type": "array" }, "time": { "description": "The time of the meeting in HH:MM format", "type": "string" }, "title": { "description": "The title of the meeting", "type": "string" } }, "required": [ "title", "participants", "date", "time" ], "type": "object" }
schedule_meeting_f2cfc8de
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape type (e.g. rectangle, triangle, circle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_60e95838
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "change_history": { "$ref": "#/definitions/change_history" }, "current": { "type": "boolean" }, "ended_on": { "format": "date-time", "type": [ "string", "null" ] }, "started_on": { "_format": "date-time", "type": "string" } }, "type": "object" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "publishing_scheduled_at": { "_format": "date-time", "description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.", "type": "string" }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "scheduled_publishing_delay_seconds": { "description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.", "type": "integer" }, "title": { "type": "string" }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "government" ], "type": "string" }, "first_published_at": { "anyOf": [ { "$ref": "#/definitions/first_published_at" }, { "type": "null" } ] }, "links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "level_one_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "mainstream_browse_pages": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The user needs this piece of content meets." }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The parent content item.", "maxItems": 1 }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policy_areas": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "suggested_ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Prototype-stage taxonomy label for this content item" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "anyOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "publishing_scheduled_at": { "anyOf": [ { "$ref": "#/definitions/publishing_scheduled_at" }, { "type": "null" } ] }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "scheduled_publishing_delay_seconds": { "anyOf": [ { "$ref": "#/definitions/scheduled_publishing_delay_seconds" }, { "type": "null" } ] }, "schema_name": { "enum": [ "government" ], "type": "string" }, "title": { "$ref": "#/definitions/title" }, "updated_at": { "_format": "date-time", "type": "string" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "required": [ "base_path", "content_id", "description", "details", "document_type", "links", "locale", "public_updated_at", "schema_name", "title", "updated_at" ], "type": "object" }
o21239
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "purpose": { "description": "values are: createAccount - this action can create the candidate's account. Applies only to general actions. apply - this action can apply for a job. Applies only to job actions. editDetails - this action can edit candidate details. Applies only to general actions.", "enum": [ "createAccount", "editDetails", "apply" ] }, "gateForElement": { "type": "object", "description": "a purpose that (e.g. 'apply') that this button is a gate for.", "properties": { "purpose": { "$ref": "#/definitions/purpose" } }, "allowAdditionalProperties": false, "required": [ "purpose" ] }, "semantics": { "description": "details about the semantics of this action that can be used by other apps. For example, knowledge that the action is used to apply for jobs may be useful if we want to (e.g.) prevent the user from applying unless they have completed some pre-qualification stage", "type": "object", "properties": { "purpose": { "$ref": "#/definitions/purpose" }, "gateFor": { "type": "array", "items": { "$ref": "#/definitions/gateForElement" } } }, "allowAdditionalProperties": false }, "possibleAction": { "type": "object", "properties": { "actionName": { "type": "string", "description": "A fixed name of this action, containing only lower case alpha, digits and '-' characters, length <= 30. The actionName is displayed to the user at setup time (e.g. to enable or disable the button) so it should make some sense to them. actionName should be unique within this app and scope, i.e. an app should never return more than one action with the same actionName as a possible job action." }, "description": { "type": "string", "description": "A description of what this action does" }, "availableToInternals": { "type": "boolean" }, "availableToExternals": { "type": "boolean" }, "mayRequireSetupFlag": { "type": "boolean", "description": "true if this action may provide a setup page (i.e. require some setup before it can be used)" }, "semantics": { "$ref": "#/definitions/semantics" } }, "allowAdditionalProperties": false, "required": [ "actionName", "availableToInternals", "availableToExternals", "mayRequireSetupFlag" ] } }, "type": "array", "items": { "$ref": "#/definitions/possibleAction" } }
o79504