json_schema
stringlengths 43
1.28M
| unique_id
stringlengths 2
41
|
---|---|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"email": {
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"favoriteTopic": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"email",
"firstName",
"lastName"
],
"dependencies": {
"favoriteTopic": [
"tags"
]
}
} | o81583 |
{
"title": "Web Map Tile Service Info",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"description": "Object defines and provides information about layers in a [WMTSLayer](webTiledLayer.md) service.",
"properties": {
"customLayerParameters": {
"type": "object",
"description": "A sequence of parameters used to append different custom parameters to a WMTS tile request. These parameters are applied to `GetTile`. The `customLayerParameters` property takes precedence if `customParameters` is also present.",
"patternProperties": {
".*": {
"type": "string"
}
}
},
"customParameters": {
"type": "object",
"description": "A sequence of parameters used to append custom parameters to all WMTS requests. These parameters are applied to `GetCapabilities` and `GetTile`. If used with the `customLayerParameters` property, `customParameters` will not take precedence.",
"patternProperties": {
".*": {
"type": "string"
}
}
},
"layerIdentifier": {
"type": "string",
"description": "Identifier for the specific layer used in the WMTS service. Required input by the user."
},
"tileMatrixSet": {
"type": "string",
"description": "Tiling schema, set by the WMTS service."
},
"url": {
"type": "string",
"description": "URL to the WMTS web service. Required input by the user.",
"format": "uri"
}
},
"additionalProperties": false,
"esriDocumentation": {
"examples": [
{
"title": "Web Map Service Tile Info",
"description": "The WMTSInfo as used within a WMTS Layer",
"schema": "wmtsInfo_schema.json",
"code": {
"wmtsInfo": {
"url": "http://maps.wien.gv.at/wmts",
"layerIdentifier": "lb",
"tileMatrixSet": "google3857",
"customParameters": {
"token": "1ADE-FR54T"
},
"customLayerParameters": {
"style": "basic"
}
}
}
}
]
}
} | o90347 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"title": "IRC Client Preferences",
"description": "Preferences and configuration options to be used by the IRC client.",
"properties": {
"$schema": {
"type": "string",
"default": "https://headcr4sh.github.io/irc/schema/client-preferences.schema.json#"
}
}
} | o45592 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Area",
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"area"
]
},
"division_id": {
"type": "string",
"pattern": "^ocd-division/country:[a-z]{2}$"
},
"gid": {
"type": "integer"
},
"row": {
"type": "integer"
},
"id": {
"type": "string",
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$"
},
"name": {
"$ref": "#/definitions/simple_string"
},
"geonames_id": {
"type": "object",
"properties": {
"value": {
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"value"
]
}
},
"additionalProperties": false,
"required": [
"type",
"division_id",
"gid",
"row",
"id",
"name"
],
"definitions": {
"simple_string": {
"type": "object",
"properties": {
"value": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"value"
]
}
}
} | o74443 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "avalon-core:config-1.0",
"description": "A project configuration.",
"type": "object",
"additionalProperties": false,
"required": [
"template",
"tasks",
"apps"
],
"properties": {
"schema": {
"description": "Schema identifier for payload",
"type": "string"
},
"template": {
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^.*$": {
"type": "string"
}
}
},
"tasks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"icon": {
"type": "string"
},
"group": {
"type": "string"
},
"label": {
"type": "string"
}
},
"required": [
"name"
]
}
},
"apps": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"icon": {
"type": "string"
},
"group": {
"type": "string"
},
"label": {
"type": "string"
}
},
"required": [
"name"
]
}
},
"families": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"icon": {
"type": "string"
},
"label": {
"type": "string"
},
"hideFilter": {
"type": "boolean"
}
},
"required": [
"name"
]
}
},
"groups": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"icon": {
"type": "string"
},
"color": {
"type": "string"
},
"order": {
"type": [
"integer",
"number"
]
}
},
"required": [
"name"
]
}
},
"copy": {
"type": "object"
}
}
} | o60864 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"name": {
"type": "string"
},
"maxValue": {
"type": "number"
},
"minValue": {
"type": "number"
}
},
"required": [
"name",
"maxValue",
"minValue"
]
} | o44972 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Note (Full Update Payload)",
"type": "object",
"properties": {
"body": {
"description": "The note's body text",
"type": "string"
},
"tags": {
"description": "Names of the tags the note is associated with",
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
}
},
"required": [
"body",
"tags"
]
} | o80292 |
{
"additionalProperties": false,
"properties": {
"additionalFields": {
"type": "object"
},
"chunk-size": {
"type": "number"
},
"empty-data-set": {
"type": "boolean"
},
"idMapping": {
"items": {
"type": "string"
},
"type": "array"
},
"mappings": {
"type": "object"
},
"row_type_name": {
"type": "string"
}
},
"title": "Webtrends Keymetrics Collector Options",
"type": "object"
} | o21490 |
{
"additionalProperties": false,
"description": "New self-describing schema appeared in enriched event stream",
"properties": {
"location": {
"description": "Enriched event property where schema appeared",
"enum": [
"UNSTRUCT_EVENT",
"CONTEXTS",
"DERIVED_CONTEXTS"
]
},
"schema": {
"description": "Iglu URI",
"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": [
"schema",
"location"
],
"self": {
"format": "jsonschema",
"name": "shredded_type",
"vendor": "com.snowplowanalytics.snowplow",
"version": "1-0-0"
},
"type": "object"
} | sp_316_Normalized |
{
"description": "Return object from the inventory controller",
"properties": {
"direction": {
"description": "Sort direction. ASCENDING or DESCENDING",
"type": "string"
},
"items": {
"description": "Inventory objects",
"items": {
"type": "object"
},
"type": "array"
},
"limit": {
"description": "The maximum number of return results",
"type": "integer"
},
"total": {
"description": "The number of items present in the database",
"type": "integer"
}
},
"title": "Inventory Computers",
"type": "object"
} | o53002 |
{
"id": "https://github.com/ww24/mlo/blob/master/test/fixtures/json/data.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "test data",
"type": "object",
"required": [
"status"
],
"properties": {
"status": {
"enum": [
"ok",
"ng"
]
},
"message": {
"type": "string"
},
"timestamp": {
"type": "integer"
}
}
} | o89560 |
{
"properties": {
"attendees": {
"description": "The list of attendees for the event",
"items": {
"type": "string"
},
"type": "array"
},
"end_time": {
"description": "The end time of the event",
"type": "string"
},
"location": {
"description": "The location of the event",
"type": "string"
},
"start_time": {
"description": "The start time of the event",
"type": "string"
},
"title": {
"description": "The title of the event",
"type": "string"
}
},
"required": [
"title",
"start_time",
"end_time"
],
"type": "object"
} | create_calendar_event_7342f481 |
{
"properties": {
"_id": {
"type": "integer"
},
"allow_declaration_reuse": {
"type": "boolean"
},
"applications_close_at_utc": {
"format": "date-time",
"type": "string"
},
"clarification_questions_open": {
"type": "boolean"
},
"clarifications_close_at_utc": {
"format": "date-time",
"type": "string"
},
"clarifications_publish_at_utc": {
"format": "date-time",
"type": "string"
},
"framework": {
"type": "string"
},
"framework_agreement_details": {
"type": "object"
},
"framework_expires_at_utc": {
"format": "date-time",
"type": "string"
},
"framework_live_at_utc": {
"format": "date-time",
"type": "string"
},
"has_direct_award": {
"type": "boolean"
},
"has_further_competition": {
"type": "boolean"
},
"intention_to_award_at_utc": {
"format": "date-time",
"type": "string"
},
"lots": {
"description": "Relationship link to multiple Lot instances",
"items": {
"type": "object"
},
"type": "array"
},
"name": {
"maxLength": 255,
"type": "string"
},
"slug": {
"type": "string"
},
"status": {
"type": "string"
}
},
"required": [
"id",
"slug",
"name",
"framework",
"has_direct_award",
"has_further_competition"
],
"title": "Framework",
"type": "object"
} | o21095 |
{
"maximum": 1,
"minimum": 0,
"type": "number"
} | o89637 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"answers": {
"type": "array",
"items": {
"type": "string"
}
},
"order": {
"type": "number"
},
"professions": {
"type": "array",
"items": {
"type": "string"
}
},
"races": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"id",
"title",
"description",
"answers",
"order"
]
},
"properties": {},
"additionalProperties": false
} | o45140 |
{
"properties": {
"dimensions": {
"oneOf": [
{
"required": [
"length",
"width"
]
},
{
"required": [
"base",
"height"
]
}
],
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius"
],
"type": "object"
},
"shape": {
"description": "The shape to calculate the area for",
"enum": [
"circle",
"rectangle",
"triangle"
],
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_d4217661 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"ThingWithCodes": {
"type": "object",
"additionalProperties": true,
"title": "Thing with Codes schema.",
"description": "An explanation about the purpose of this instance described by this schema.",
"properties": {
"codes": {
"type": "object",
"minItems": 0,
"additionalProperties": true,
"title": "codes schema.",
"description": "An explanation about the purpose of this instance described by this schema.",
"items": {}
}
}
}
},
"properties": {
"ThingWithCodes": {
"$ref": "#/definitions/ThingWithCodes"
}
},
"required": [
"ThingWithCodes"
]
} | o68472 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"list"
],
"properties": {
"list": {
"type": "object",
"description": "Display a selectable list of widgets and activities received through a resource.",
"required": [
"resource"
],
"properties": {
"title": {
"default": {
"htmlLabel": "Widgets"
},
"type": "object",
"properties": {
"htmlLabel": {
"type": "string",
"description": "Title for the selectable list."
}
}
},
"resource": {
"type": "string",
"format": "topic",
"axRole": "inlet",
"description": "The topic of the resource with the list."
}
}
},
"select": {
"type": "object",
"description": "Select a widget from the list and publish resources with data of the selected widget.",
"required": [
"parameter"
],
"properties": {
"parameter": {
"type": "string",
"format": "topic",
"description": "The place parameter for the flow definition."
},
"parameterList": {
"type": "array",
"description": "A list with place parameters which are overwritten with an empty string.",
"default": [],
"items": {
"type": "string",
"format": "topic",
"description": "A place parameter to reset."
}
},
"information": {
"type": "object",
"properties": {
"resource": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"description": "The topic of the resource with the widget.json content."
}
}
},
"package": {
"type": "object",
"properties": {
"resource": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"description": "The topic of the resource with the package.json content."
}
}
},
"documentation": {
"type": "object",
"properties": {
"resource": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"description": "The topic of the resource with the documentation markdown url."
}
}
},
"testRunner": {
"type": "object",
"properties": {
"resource": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"description": "The topic of the resource with the url to the test runner."
}
}
}
}
}
}
} | o9407 |
{
"$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": [
"EiffelSourceChangeSubmittedEvent"
]
},
"version": {
"type": "string",
"enum": [
"1.1.0"
],
"default": "1.1.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": "object",
"properties": {
"groupId": {
"type": "string"
},
"artifactId": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"groupId",
"artifactId",
"version"
],
"additionalProperties": false
},
"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": {
"submitter": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"id": {
"type": "string"
},
"group": {
"type": "string"
}
},
"additionalProperties": false
},
"gitIdentifier": {
"type": "object",
"properties": {
"commitId": {
"type": "string"
},
"branch": {
"type": "string"
},
"repoName": {
"type": "string"
},
"repoUri": {
"type": "string"
}
},
"required": [
"commitId",
"repoUri"
],
"additionalProperties": false
},
"svnIdentifier": {
"type": "object",
"properties": {
"revision": {
"type": "integer"
},
"directory": {
"type": "string"
},
"repoName": {
"type": "string"
},
"repoUri": {
"type": "string"
}
},
"required": [
"revision",
"directory",
"repoUri"
],
"additionalProperties": false
},
"ccCompositeIdentifier": {
"type": "object",
"properties": {
"vobs": {
"type": "array",
"items": {
"type": "string"
}
},
"branch": {
"type": "string"
},
"configSpec": {
"type": "string"
}
},
"required": [
"vobs",
"branch",
"configSpec"
],
"additionalProperties": false
},
"hgIdentifier": {
"type": "object",
"properties": {
"commitId": {
"type": "string"
},
"branch": {
"type": "string"
},
"repoName": {
"type": "string"
},
"repoUri": {
"type": "string"
}
},
"required": [
"commitId",
"repoUri"
],
"additionalProperties": false
},
"customData": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"value": {}
},
"required": [
"key",
"value"
],
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"target": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
}
},
"required": [
"type",
"target"
],
"additionalProperties": false
}
}
},
"required": [
"meta",
"data",
"links"
],
"additionalProperties": false
} | o5389 |
{
"properties": {
"appflowlog": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"autodisabledelay": {
"type": "integer"
},
"autodisablegraceful": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"autoscale": {
"enum": [
"DISABLED",
"DNS",
"POLICY",
"CLOUD",
"API"
],
"type": "string"
},
"cacheable": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"cachetype": {
"enum": [
"TRANSPARENT",
"REVERSE",
"FORWARD"
],
"type": "string"
},
"cip": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"cipheader": {
"type": "string"
},
"cka": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"clmonowner": {
"readonly": true,
"type": "integer"
},
"clmonview": {
"readonly": true,
"type": "integer"
},
"clttimeout": {
"type": "integer"
},
"cmp": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"comment": {
"type": "string"
},
"customserverid": {
"type": "string"
},
"dbsttl": {
"type": "integer"
},
"delay": {
"type": "integer"
},
"downstateflush": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"dup_weight": {
"type": "integer"
},
"graceful": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"groupcount": {
"readonly": true,
"type": "integer"
},
"hashid": {
"type": "integer"
},
"healthmonitor": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"httpprofilename": {
"type": "string"
},
"includemembers": {
"type": "boolean"
},
"ip": {
"readonly": true,
"type": "string"
},
"maxbandwidth": {
"type": "integer"
},
"maxclient": {
"type": "integer"
},
"maxreq": {
"type": "integer"
},
"memberport": {
"type": "integer"
},
"monconnectionclose": {
"enum": [
"RESET",
"FIN"
],
"type": "string"
},
"monitor_name_svc": {
"type": "string"
},
"monstatcode": {
"readonly": true,
"type": "integer"
},
"monstatparam1": {
"readonly": true,
"type": "integer"
},
"monstatparam2": {
"readonly": true,
"type": "integer"
},
"monstatparam3": {
"readonly": true,
"type": "integer"
},
"monthreshold": {
"type": "integer"
},
"nameserver": {
"type": "string"
},
"netprofile": {
"type": "string"
},
"newname": {
"type": "string"
},
"nodefaultbindings": {
"enum": [
"YES",
"NO"
],
"readonly": true,
"type": "string"
},
"numofconnections": {
"readonly": true,
"type": "integer"
},
"pathmonitor": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"pathmonitorindv": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"port": {
"type": "integer"
},
"riseapbrstatsmsgcode": {
"type": "integer"
},
"riseapbrstatsmsgcode2": {
"readonly": true,
"type": "integer"
},
"rtspsessionidremap": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"sc": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"serverid": {
"type": "integer"
},
"servername": {
"type": "string"
},
"serviceconftype": {
"readonly": true,
"type": "boolean"
},
"servicegroupeffectivestate": {
"enum": [
"UP",
"DOWN",
"OUT OF SERVICE",
"PARTIAL-UP",
"PARTIAL-DOWN"
],
"readonly": true,
"type": "string"
},
"servicegroupname": {
"type": "string"
},
"serviceipstr": {
"readonly": true,
"type": "string"
},
"servicetype": {
"enum": [
"HTTP",
"FTP",
"TCP",
"UDP",
"SSL",
"SSL_BRIDGE",
"SSL_TCP",
"DTLS",
"NNTP",
"RPCSVR",
"DNS",
"ADNS",
"SNMP",
"RTSP",
"DHCPRA",
"ANY",
"SIP_UDP",
"SIP_TCP",
"SIP_SSL",
"DNS_TCP",
"ADNS_TCP",
"MYSQL",
"MSSQL",
"ORACLE",
"RADIUS",
"RADIUSListener",
"RDP",
"DIAMETER",
"SSL_DIAMETER",
"TFTP",
"SMPP",
"PPTP",
"GRE",
"SYSLOGTCP",
"SYSLOGUDP",
"FIX",
"SSL_FIX",
"USER_TCP",
"USER_SSL_TCP",
"QUIC",
"IPFIX",
"LOGSTREAM"
],
"type": "string"
},
"sp": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"state": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"statechangetimemsec": {
"readonly": true,
"type": "integer"
},
"stateupdatereason": {
"readonly": true,
"type": "integer"
},
"svcitmactsvcs": {
"readonly": true,
"type": "integer"
},
"svcitmboundsvcs": {
"readonly": true,
"type": "integer"
},
"svrstate": {
"enum": [
"UP",
"DOWN",
"UNKNOWN",
"BUSY",
"OUT OF SERVICE",
"GOING OUT OF SERVICE",
"DOWN WHEN GOING OUT OF SERVICE",
"NS_EMPTY_STR",
"Unknown",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"svrtimeout": {
"type": "integer"
},
"tcpb": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"tcpprofilename": {
"type": "string"
},
"td": {
"type": "integer"
},
"useproxyport": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"usip": {
"enum": [
"YES",
"NO"
],
"type": "string"
},
"value": {
"enum": [
"Certkey not bound",
"SSL feature disabled"
],
"readonly": true,
"type": "string"
},
"weight": {
"type": "integer"
}
},
"title": "servicegroup",
"type": "object"
} | o30227 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"sslKey": {
"type": "string",
"maxLength": 32767,
"minLength": 50
},
"sslCert": {
"type": "string",
"maxLength": 32767,
"minLength": 50
},
"sslBundle": {
"type": "string",
"maxLength": 32767,
"minLength": 50
},
"domainName": {
"type": "string",
"maxLength": 1024,
"minLength": 3
},
"version": {
"oneOf": [
{
"type": "string",
"minLength": 1,
"maxLength": 255
},
{
"type": "null"
}
]
}
},
"additionalProperties": false,
"required": [
"domainName"
]
} | o9871 |
{
"properties": {
"amenities": {
"description": "The desired amenities",
"items": {
"type": "string"
},
"type": "array"
},
"check_in_date": {
"description": "The check-in date",
"format": "date",
"type": "string"
},
"check_out_date": {
"description": "The check-out date",
"format": "date",
"type": "string"
},
"location": {
"description": "The location of the hotel",
"type": "string"
}
},
"required": [
"location",
"check_in_date",
"check_out_date"
],
"type": "object"
} | search_hotels_348c46f6 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
}
},
"description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
"properties": {
"clusterRoleSelectors": {
"description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector"
},
"type": [
"array",
"null"
]
}
},
"type": "object"
} | kb_3_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_CSIDriver": {
"description": "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. CSI drivers do not need to create the CSIDriver object directly. Instead they may use the cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically creates a CSIDriver object representing the driver. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"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": [
"CSIDriver"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object metadata. metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_CSIDriverSpec",
"description": "Specification of the CSI Driver."
}
},
"required": [
"spec"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "storage.k8s.io",
"kind": "CSIDriver",
"version": "v1beta1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_CSIDriverSpec": {
"description": "CSIDriverSpec is the specification of a CSIDriver.",
"properties": {
"attachRequired": {
"description": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.",
"type": "boolean"
},
"podInfoOnMount": {
"description": "If set to true, podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations. If set to false, pod information will not be passed on mount. Default is false. The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" iff the volume is an ephemeral inline volume\n defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.",
"type": "boolean"
},
"volumeLifecycleModes": {
"description": "VolumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism. The other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume. For more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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": "CSIDriverList is a collection of CSIDriver objects.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"enum": [
"storage.k8s.io/v1beta1"
],
"type": [
"string",
"null"
]
},
"items": {
"description": "items is the list of CSIDriver",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_CSIDriver"
},
"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": [
"CSIDriverList"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta",
"description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "storage.k8s.io",
"kind": "CSIDriverList",
"version": "v1beta1"
}
]
} | kb_163_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v1_CrossVersionObjectReference": {
"description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
"properties": {
"apiVersion": {
"description": "API version of the referent",
"type": "string"
},
"kind": {
"description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"",
"type": "string"
},
"name": {
"description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
}
},
"required": [
"kind",
"name"
],
"type": "object"
}
},
"description": "specification of a horizontal pod autoscaler.",
"properties": {
"maxReplicas": {
"description": "upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"minReplicas": {
"description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"scaleTargetRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v1_CrossVersionObjectReference",
"description": "reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource."
},
"targetCPUUtilizationPercentage": {
"description": "target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.",
"format": "int32",
"type": [
"integer",
"null"
]
}
},
"required": [
"scaleTargetRef",
"maxReplicas"
],
"type": "object"
} | kb_402_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$",
"type": "string"
},
"analytics_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations."
},
"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"
},
"external_related_links": {
"$ref": "#/definitions/external_related_links"
},
"promotion": {
"additionalProperties": false,
"oneOf": [
{
"properties": {
"category": {
"enum": [
"mot_reminder"
]
}
},
"required": [
"url"
]
},
{
"properties": {
"category": {
"enum": [
"organ_donor"
]
}
},
"required": [
"url"
]
},
{
"properties": {
"category": {
"enum": [
"register_to_vote"
]
}
},
"required": [
"url"
]
},
{
"properties": {
"category": {
"enum": [
"electric_vehicle"
]
}
},
"required": [
"url"
]
}
],
"properties": {
"category": {
"enum": [
"mot_reminder",
"organ_donor",
"register_to_vote",
"electric_vehicle"
]
},
"opt_in_url": {
"_format": "uri",
"type": "string"
},
"opt_out_url": {
"_format": "uri",
"type": "string"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"external_link": {
"additionalProperties": false,
"properties": {
"title": {
"type": "string"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"title",
"url"
],
"type": "object"
},
"external_related_links": {
"items": {
"$ref": "#/definitions/external_link"
},
"type": "array"
},
"first_published_at": {
"_format": "date-time",
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"frontend_links": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"frontend_links_with_base_path": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"govuk_request_id": {
"type": [
"string",
"null"
]
},
"guid": {
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$",
"type": "string"
},
"guid_list": {
"items": {
"$ref": "#/definitions/guid"
},
"type": "array",
"_uniqueItems": true
},
"locale": {
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
],
"type": "string"
},
"payload_version": {
"description": "Counter to indicate when the payload was generated",
"type": "integer"
},
"public_updated_at": {
"_format": "date-time",
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"publishing_app_name": {
"description": "The application that published this item.",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
],
"type": "string"
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"rendering_app": {
"description": "The application that renders this item.",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
],
"type": "string"
},
"route": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"type": {
"enum": [
"prefix",
"exact"
]
}
},
"required": [
"path",
"type"
],
"type": "object"
},
"routes": {
"items": {
"$ref": "#/definitions/route"
},
"minItems": 1,
"type": "array"
},
"title": {
"type": "string"
},
"update_type": {
"enum": [
"major",
"minor",
"republish"
]
},
"withdrawn_notice": {
"additionalProperties": false,
"properties": {
"explanation": {
"type": "string"
},
"withdrawn_at": {
"format": "date-time"
}
},
"type": "object"
}
},
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"content_purpose_document_supertype": {
"description": "DEPRECATED. Use `content_purpose_subgroup`.",
"type": "string"
},
"content_purpose_subgroup": {
"description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.",
"type": "string"
},
"content_purpose_supergroup": {
"description": "Document supergroup grouping documents by a purpose",
"type": "string"
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"enum": [
"completed_transaction"
],
"type": "string"
},
"email_document_supertype": {
"description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions",
"type": "string"
},
"expanded_links": {
"additionalProperties": false,
"properties": {
"available_translations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"child_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"children": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"document_collections": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"facet_groups": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers links from content back to finders the content is surfaced on"
},
"lead_organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"level_one_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"mainstream_browse_pages": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The user needs this piece of content meets."
},
"ministers": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The parent content item.",
"maxItems": 1
},
"part_of_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policies": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policy_areas": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"related_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"role_appointments": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"secondary_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Prototype-stage taxonomy label for this content item"
},
"topic_taxonomy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"topics": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
}
},
"type": "object"
},
"first_published_at": {
"$ref": "#/definitions/first_published_at"
},
"government_document_supertype": {
"description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions",
"type": "string"
},
"govuk_request_id": {
"$ref": "#/definitions/govuk_request_id"
},
"links": {
"additionalProperties": false,
"properties": {
"facet_groups": {
"$ref": "#/definitions/guid_list",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/guid_list",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/guid_list",
"description": "Powers links from content back to finders the content is surfaced on"
},
"lead_organisations": {
"$ref": "#/definitions/guid_list",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"mainstream_browse_pages": {
"$ref": "#/definitions/guid_list",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/guid_list",
"description": "The user needs this piece of content meets."
},
"ordered_related_items": {
"$ref": "#/definitions/guid_list",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/guid_list",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/guid_list",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/guid_list",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/guid_list",
"description": "The parent content item.",
"maxItems": 1
},
"policy_areas": {
"$ref": "#/definitions/guid_list",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/guid_list",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/guid_list",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/guid_list",
"description": "Prototype-stage taxonomy label for this content item"
},
"topics": {
"$ref": "#/definitions/guid_list",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"navigation_document_supertype": {
"description": "Document type grouping powering the new taxonomy-based navigation pages",
"type": "string"
},
"need_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"payload_version": {
"$ref": "#/definitions/payload_version"
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"enum": [
"alpha",
"beta",
"live"
],
"type": "string"
},
"public_updated_at": {
"$ref": "#/definitions/public_updated_at"
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"publishing_request_id": {
"$ref": "#/definitions/publishing_request_id"
},
"redirects": {
"additionalItems": false,
"items": {},
"type": "array"
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"routes": {
"$ref": "#/definitions/routes"
},
"schema_name": {
"enum": [
"completed_transaction"
],
"type": "string"
},
"search_user_need_document_supertype": {
"description": "Document supertype grouping core and government documents",
"type": "string"
},
"title": {
"$ref": "#/definitions/title"
},
"update_type": {
"$ref": "#/definitions/update_type"
},
"user_journey_document_supertype": {
"description": "Document type grouping powering analytics of user journeys",
"type": "string"
},
"user_need_document_supertype": {
"description": "DEPRECATED. Use `content_purpose_document_supertype`.",
"type": "string"
},
"withdrawn_notice": {
"$ref": "#/definitions/withdrawn_notice"
}
},
"required": [
"analytics_identifier",
"base_path",
"content_id",
"description",
"details",
"document_type",
"email_document_supertype",
"expanded_links",
"first_published_at",
"government_document_supertype",
"govuk_request_id",
"links",
"locale",
"navigation_document_supertype",
"payload_version",
"phase",
"public_updated_at",
"publishing_app",
"redirects",
"rendering_app",
"routes",
"schema_name",
"title",
"update_type",
"user_journey_document_supertype"
],
"type": "object"
} | o21169 |
{
"$id": "https://raw.githubusercontent.com/Cog-Creators/Red-DiscordBot/V3/develop/schema/red_cog.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Red-DiscordBot Сog metadata file",
"type": "object",
"properties": {
"author": {
"type": "array",
"description": "List of names of authors of the cog",
"items": {
"type": "string"
}
},
"description": {
"type": "string",
"description": "A long description of the cog or repo. For cogs, this is displayed when a user executes [p]cog info."
},
"install_msg": {
"type": "string",
"description": "The message that gets displayed when a cog is installed or a repo is added"
},
"short": {
"type": "string",
"description": "A short description of the cog or repo. For cogs, this info is displayed when a user executes [p]cog list"
},
"end_user_data_statement": {
"type": "string",
"description": "A statement explaining what end user data the cog is storing. This is displayed when a user executes [p]cog info. If the statement has changed since last update, user will be informed during the update."
},
"min_bot_version": {
"type": "string",
"description": "Min version number of Red in the format MAJOR.MINOR.MICRO",
"pattern": "^(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)((a|b|rc)(0|[1-9][0-9]*))?(\\.post(0|[1-9][0-9]*))?(\\.dev(0|[1-9][0-9]*))?$"
},
"max_bot_version": {
"type": "string",
"description": "Max version number of Red in the format MAJOR.MINOR.MICRO, if min_bot_version is newer than max_bot_version, max_bot_version will be ignored",
"pattern": "^(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)((a|b|rc)(0|[1-9][0-9]*))?(\\.post(0|[1-9][0-9]*))?(\\.dev(0|[1-9][0-9]*))?$"
},
"min_python_version": {
"type": "array",
"description": "Min version number of Python in the format [MAJOR, MINOR, PATCH]",
"minItems": 3,
"maxItems": 3,
"items": {
"type": "integer"
}
},
"hidden": {
"type": "boolean",
"description": "Determines if a cog is visible in the cog list for a repo."
},
"disabled": {
"type": "boolean",
"description": "Determines if a cog is available for install."
},
"required_cogs": {
"type": "object",
"description": "A dict of required cogs that this cog depends on in the format {cog_name : repo_url}. Downloader will not deal with this functionality but it may be useful for other cogs.",
"$ref": "#/definitions/required_cog"
},
"requirements": {
"type": "array",
"description": "List of required libraries that are passed to pip on cog install.",
"items": {
"type": "string"
}
},
"tags": {
"type": "array",
"description": "A list of strings that are related to the functionality of the cog. Used to aid in searching.",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"type": {
"type": "string",
"description": "Optional, defaults to COG. Must be either COG or SHARED_LIBRARY. If SHARED_LIBRARY then hidden will be True.",
"enum": [
"COG",
"SHARED_LIBRARY"
]
}
},
"definitions": {
"required_cog": {
"type": "object",
"patternProperties": {
".+": {
"type": "string",
"format": "uri"
}
},
"additionalProperties": false
}
}
}
| red_cog |
{
"description": "Information about the condition of a component.",
"properties": {
"error": {
"description": "Condition error code for a component. For example, a health check error code.",
"type": [
"string",
"null"
]
},
"message": {
"description": "Message about the condition for a component. For example, information about a health check.",
"type": [
"string",
"null"
]
},
"status": {
"description": "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".",
"type": [
"string",
"null"
]
},
"type": {
"description": "Type of condition for a component. Valid value: \"Healthy\"",
"type": [
"string",
"null"
]
}
},
"required": [
"type",
"status"
],
"type": "object"
} | kb_100_Normalized |
{
"id": "http://info.meshcentral.com/download/meshcentral-config-schema.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "MeshCentral configuration file schema",
"type": "object",
"properties": {
"settings": {
"type": "object",
"properties": {
"cert": {
"type": "string"
},
"mongoDb": {
"type": "string"
},
"mongoDbName": {
"type": "string"
},
"mongoDbChangeStream": {
"type": "boolean"
},
"mongoDumpPath": {
"type": "string"
},
"WANonly": {
"type": "boolean",
"default": false
},
"LANonly": {
"type": "boolean",
"default": false
},
"sessionTime": {
"type": "integer"
},
"sessionKey": {
"type": "string"
},
"sessionSameSite": {
"type": "string"
},
"dbEncryptKey": {
"type": "string"
},
"dbRecordsEncryptKey": {
"type": "string"
},
"dbRecordsDecryptKey": {
"type": "string"
},
"dbExpire": {
"type": "object",
"properties": {
"events": {
"type": "integer"
},
"powerevents": {
"type": "integer"
},
"statsevents": {
"type": "integer"
}
}
},
"port": {
"type": "integer",
"minimum": 1,
"maximum": 65535
},
"portBind": {
"type": "string",
"description": "When set, bind the HTTPS main port to a specific network address."
},
"aliasPort": {
"type": "integer",
"minimum": 1,
"maximum": 65535
},
"redirPort": {
"type": "integer",
"minimum": 1,
"maximum": 65535
},
"redirPortBind": {
"type": "string",
"description": "When set, bind the HTTP redirection port to a specific network address."
},
"redirAliasPort": {
"type": "integer",
"minimum": 1,
"maximum": 65535
},
"agentPort": {
"type": "integer",
"minimum": 1,
"maximum": 65535,
"description": "When set, enabled a new HTTPS server port that only accepts agent connections."
},
"agentPortBind": {
"type": "string",
"description": "When set, binds the agent port to a specific network interface."
},
"agentAliasPort": {
"type": "integer",
"minimum": 1,
"maximum": 65535,
"description": "When set, indicates the actual publically visible agent-only port. If not set, the AgentPort value is used."
},
"agentAliasDNS": {
"type": "string",
"format": "hostname",
"description": "When set, specified the DNS name used by agents to connect to the agent-only port."
},
"agentPortTls": {
"type": "boolean",
"default": true,
"description": "Indicates if the agent-only port must perform TLS, this should be set to false if TLS is performed in front of this server."
},
"agentCoreDump": {
"type": "boolean",
"default": false,
"description": "Automatically activates and transfers any agent crash dump files to the server in meshcentral-data/coredumps."
},
"exactPorts": {
"type": "boolean",
"default": false
},
"allowLoginToken": {
"type": "boolean",
"default": false
},
"allowFraming": {
"type": "boolean",
"default": false
},
"cookieIpCheck": {
"type": "boolean"
},
"cookieEncoding": {
"type": "string",
"enum": [
"hex",
"base64"
],
"default": "base64",
"description": "Encoding format of cookies in the HTTP headers, this is typically Base64 but some reverse proxies will require HEX."
},
"webRTC": {
"type": "boolean",
"default": false,
"description": "When enabled, allows use of WebRTC to allow direct network traffic between the agent and browser."
},
"nice404": {
"type": "boolean",
"default": true,
"description": "By default, a nice looking 404 error page is displayed when needed. Set this to false to disable it."
},
"clickOnce": {
"type": "boolean",
"default": true,
"description": "By default Microsoft ClickOnce support is enabled allowing connection routing from the web site on IE browser and browsers with ClickOnce add-in."
},
"selfUpdate": {
"type": "boolean",
"default": false,
"description": "When true, this server will attempt to self-update everyday after midnight."
},
"browserPing": {
"type": "integer",
"minimum": 1,
"description": "When specified, sends data to the browser at x seconds interval and expects a response from the browser."
},
"browserPong": {
"type": "integer",
"minimum": 1,
"description": "When specified, sends data to the browser at x seconds interval."
},
"agentPing": {
"type": "integer",
"minimum": 1,
"description": "When specified, sends data to the agent at x seconds interval and expects a response from the agent."
},
"agentPong": {
"type": "integer",
"minimum": 1,
"description": "When specified, sends data to the agent at x seconds interval."
},
"agentIdleTimeout": {
"type": "integer",
"minimum": 1
},
"compression": {
"type": "boolean",
"default": true,
"description": "Enables GZIP compression for web requests."
},
"wscompression": {
"type": "boolean",
"default": false,
"description": "Enables websocket per-message deflate compression."
},
"meshErrorLogPath": {
"type": "string"
},
"npmPath": {
"type": "string"
},
"npmProxy": {
"type": "string",
"format": "uri"
},
"allowHighQualityDesktop": {
"type": "boolean",
"default": true
},
"desktopMultiplex": {
"type": "boolean",
"default": false
},
"userAllowedIP": {
"type": [
"string",
"array"
]
},
"userBlockedIP": {
"type": [
"string",
"array"
]
},
"agentAllowedIP": {
"type": [
"string",
"array"
]
},
"agentBlockedIP": {
"type": [
"string",
"array"
]
},
"authLog": {
"type": "string"
},
"manageAllDeviceGroups": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"manageCrossDomain": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"localDiscovery": {
"type": "object",
"description": "When this server is in LAN mode, you may discover this server using a multicast discovery tool. When discovery happens, the name and info fields are sent back to the discovery tool.",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"info": {
"type": "string"
}
},
"required": [
"name",
"info"
]
},
"tlsOffload": {
"type": [
"string",
"boolean"
],
"default": false
},
"trustedProxy": {
"type": "string"
},
"mpsPort": {
"type": "integer",
"minimum": 1,
"maximum": 65535
},
"mpsPortBind": {
"type": "string"
},
"mpsAliasPort": {
"type": "integer",
"minimum": 1,
"maximum": 65535
},
"mpsAliasHost": {
"type": "string"
},
"mpsTlsOffload": {
"type": "boolean",
"default": false
},
"no2FactorAuth": {
"type": "boolean"
},
"log": {
"type": "string"
},
"syslog": {
"type": "string"
},
"syslogauth": {
"type": "string"
},
"syslogjson": {
"type": "string"
},
"webrtcConfig": {
"type": "object",
"properties": {
"iceServers": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "object",
"properties": {
"urls": {
"type": "string"
}
},
"required": [
"urls"
]
}
}
},
"required": [
"iceServers"
]
},
"autoBackup": {
"type": "object",
"properties": {
"backupIntervalHours": {
"type": "integer"
},
"keepLastDaysBackup": {
"type": "integer"
},
"zipPassword": {
"type": "string"
},
"backupPath": {
"type": "string"
}
}
},
"redirects": {
"type": "object"
},
"maxInvalidLogin": {
"type": "object",
"additionalProperties": false,
"properties": {
"time": {
"type": "integer"
},
"count": {
"type": "integer"
},
"coolofftime": {
"type": "integer"
}
}
},
"plugins": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
}
},
"required": [
"enabled"
]
}
}
},
"domaindefaults": {
"$ref": "#/properties/domains/items"
},
"domains": {
"type": "object",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string"
},
"title2": {
"type": "string"
},
"titlePicture": {
"type": "string"
},
"userQuota": {
"type": "integer"
},
"meshQuota": {
"type": "integer"
},
"minify": {
"type": "boolean",
"default": false,
"description": "When enabled, the server will send reduced sided web pages."
},
"newAccounts": {
"type": "boolean"
},
"newAccountsUserGroups": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"userNameIsEmail": {
"type": "boolean",
"default": false,
"description": "When enabled, the username of each account is also the email address of the account."
},
"newAccountEmailDomains": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"newAccountsRights": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"welcomeText": {
"type": "string"
},
"welcomePicture": {
"type": "string"
},
"hide": {
"type": "integer"
},
"footer": {
"type": "string"
},
"certUrl": {
"type": "string",
"format": "uri"
},
"passwordRequirements": {
"type": "object",
"properties": {
"min": {
"type": "integer"
},
"max": {
"type": "integer"
},
"upper": {
"type": "integer"
},
"lower": {
"type": "integer"
},
"numeric": {
"type": "integer"
},
"nonalpha": {
"type": "integer"
},
"reset": {
"type": "integer"
},
"force2factor": {
"type": "boolean"
},
"skip2factor": {
"type": "string"
}
}
},
"agentInviteCodes": {
"type": "boolean",
"default": false
},
"agentNoProxy": {
"type": "boolean",
"default": false
},
"geoLocation": {
"type": "boolean",
"default": false
},
"novnc": {
"type": "boolean",
"default": true
},
"mstsc": {
"type": "boolean",
"default": false
},
"customUI": {
"type": "object"
},
"consentMessages": {
"type": "object",
"additionalProperties": false,
"properties": {
"Title": {
"type": "string"
},
"Desktop": {
"type": "string"
},
"Terminal": {
"type": "string"
},
"Files": {
"type": "string"
}
}
},
"notificationMessages": {
"type": "object",
"additionalProperties": false,
"properties": {
"Title": {
"type": "string"
},
"Desktop": {
"type": "string"
},
"Terminal": {
"type": "string"
},
"Files": {
"type": "string"
}
}
},
"userAllowedIP": {
"type": "string"
},
"userBlockedIP": {
"type": "string"
},
"agentAllowedIP": {
"type": "string"
},
"agentBlockedIP": {
"type": "string"
},
"userSessionIdleTimeout": {
"type": "integer"
},
"userConsentFlags": {
"type": "integer"
},
"urlSwitching": {
"type": "boolean"
},
"desktopPrivacyBarText": {
"type": "string"
},
"limits": {
"type": "object",
"additionalProperties": false,
"properties": {
"MaxDevices": {
"type": "integer"
},
"MaxUserAccounts": {
"type": "integer"
},
"MaxUserSessions": {
"type": "integer"
},
"MaxAgentSessions": {
"type": "integer"
},
"MaxSingleUserSessions": {
"type": "integer"
}
}
},
"amtAcmActivation": {
"type": "object",
"additionalProperties": false,
"properties": {
"log": {
"type": "string"
},
"certs": {
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": false,
"properties": {
"certfiles": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"keyfile": {
"type": "string"
}
},
"required": [
"certfiles",
"keyfile"
]
}
}
},
"required": [
"certs"
]
},
"redirects": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"yubikey": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"secret": {
"type": "string"
},
"proxy": {
"type": "string",
"format": "uri"
}
},
"required": [
"id",
"secret"
]
},
"httpHeaders": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"agentConfig": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"sessionRecording": {
"type": "object",
"additionalProperties": false,
"properties": {
"filepath": {
"type": "string"
},
"index": {
"type": "boolean",
"default": false
},
"maxRecordings": {
"type": "integer"
},
"maxRecordingSizeMegabytes": {
"type": "integer"
},
"protocols": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "integer"
}
}
},
"required": [
"protocols"
]
},
"authStrategies": {
"type": "object",
"additionalProperties": false,
"properties": {
"twitter": {
"type": "object",
"additionalProperties": false,
"properties": {
"callbackurl": {
"type": "string",
"format": "uri"
},
"newAccounts": {
"type": "boolean",
"default": false
},
"newAccountsUserGroups": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"clientid": {
"type": "string"
},
"clientsecret": {
"type": "string"
}
},
"required": [
"clientid",
"clientsecret"
]
},
"google": {
"type": "object",
"properties": {
"callbackurl": {
"type": "string",
"format": "uri"
},
"newAccounts": {
"type": "boolean",
"default": false
},
"newAccountsUserGroups": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"clientid": {
"type": "string"
},
"clientsecret": {
"type": "string"
}
},
"required": [
"clientid",
"clientsecret"
]
},
"github": {
"type": "object",
"properties": {
"callbackurl": {
"type": "string",
"format": "uri"
},
"newAccounts": {
"type": "boolean",
"default": false
},
"newAccountsUserGroups": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"clientid": {
"type": "string"
},
"clientsecret": {
"type": "string"
}
},
"required": [
"clientid",
"clientsecret"
]
},
"reddit": {
"type": "object",
"properties": {
"callbackurl": {
"type": "string",
"format": "uri"
},
"newAccounts": {
"type": "boolean",
"default": false
},
"newAccountsUserGroups": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"clientid": {
"type": "string"
},
"clientsecret": {
"type": "string"
}
},
"required": [
"clientid",
"clientsecret"
]
},
"azure": {
"type": "object",
"properties": {
"callbackurl": {
"type": "string",
"format": "uri"
},
"newAccounts": {
"type": "boolean",
"default": false
},
"newAccountsUserGroups": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"clientid": {
"type": "string"
},
"clientsecret": {
"type": "string"
},
"tenantid": {
"type": "string"
}
},
"required": [
"clientid",
"clientsecret",
"tenantid"
]
},
"jumpcloud": {
"type": "object",
"properties": {
"callbackurl": {
"type": "string",
"format": "uri"
},
"newAccounts": {
"type": "boolean",
"default": false
},
"newAccountsUserGroups": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"entityid": {
"type": "string"
},
"idpurl": {
"type": "string",
"format": "uri"
},
"cert": {
"type": "string"
}
},
"required": [
"entityid",
"idpurl",
"cert"
]
},
"saml": {
"type": "object",
"properties": {
"callbackurl": {
"type": "string",
"format": "uri"
},
"disableRequestedAuthnContext": {
"type": "boolean"
},
"newAccounts": {
"type": "boolean",
"default": false
},
"newAccountsUserGroups": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"newAccountsRights": {
"type": "array",
"_uniqueItems": true,
"items": {
"type": "string"
}
},
"entityid": {
"type": "string"
},
"idpurl": {
"type": "string",
"format": "uri"
},
"cert": {
"type": "string"
}
},
"required": [
"entityid",
"idpurl",
"cert"
]
}
}
}
}
}
},
"letsEncrypt": {
"title": "Built-in Let's Encrypt support",
"description": "If your server has a proper DNS name and it public facing on the Internet with a public facing HTTP server on port 80, you can get a free TLS certificate.",
"type": "object",
"additionalProperties": false,
"properties": {
"email": {
"type": "string",
"format": "email",
"description": "Email address of the administrator of this server. Make sure this is a valid email address otherwise the certificate request will fail."
},
"names": {
"type": "string"
},
"production": {
"type": "boolean",
"default": false,
"description": "By default a test certificate will be obtained from Let's Encrypt. Always start by getting a test certificate and make sure that works before setting this to true and obtaining a production certificaite. Making too many bad requests for a production certificate will get you banned for a long period of time."
}
},
"required": [
"email",
"names"
]
},
"peers": {
"title": "Server peering",
"description": "Setup peer server for load-balancing between many servers.",
"type": "object",
"minProperties": 1,
"propertyNames": {
"pattern": "^[A-Za-z_][A-Za-z0-9_]*$"
},
"additionalProperties": false,
"properties": {
"serverId": {
"type": "string"
},
"servers": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri"
}
},
"required": [
"url"
]
}
}
},
"required": [
"serverId",
"servers"
]
},
"smtp": {
"title": "Email server",
"description": "Connects MeshCentral to a email server, allows MeshCentral to send email messages for 2FA or user notification.",
"type": "object",
"properties": {
"host": {
"type": "string",
"format": "hostname"
},
"port": {
"type": "integer",
"minimum": 1,
"maximum": 65535
},
"from": {
"type": "string",
"format": "email"
},
"tls": {
"type": "boolean"
},
"tlscertcheck": {
"type": "boolean"
},
"tlsstrict": {
"type": "boolean"
}
},
"required": [
"host",
"port",
"from",
"tls"
]
},
"sms": {
"title": "SMS provider",
"description": "Connects MeshCentral to a SMS text messaging provider, allows MeshCentral to send SMS messages for 2FA or user notification.",
"oneOf": [
{
"type": "object",
"properties": {
"provider": {
"type": "string",
"enum": [
"twilio"
]
},
"sid": {
"type": "string"
},
"auth": {
"type": "string"
},
"from": {
"type": "string"
}
},
"required": [
"provider",
"sid",
"auth",
"from"
]
},
{
"type": "object",
"properties": {
"provider": {
"type": "string",
"enum": [
"plivo"
]
},
"id": {
"type": "string"
},
"token": {
"type": "string"
},
"from": {
"type": "string"
}
},
"required": [
"provider",
"id",
"token",
"from"
]
}
]
}
},
"required": [
"settings",
"domains"
]
} | o17591 |
{
"additionalProperties": false,
"description": "Schema for a Mandrill message delayed event",
"properties": {
"_id": {
"type": "string"
},
"diag": {
"type": "string"
},
"msg": {
"additionalProperties": false,
"properties": {
"_id": {
"type": "string"
},
"_version": {
"type": "string"
},
"clicks": {
"type": "array"
},
"email": {
"type": "string"
},
"metadata": {
"additionalProperties": true,
"properties": {
"user_id": {
"type": "number"
}
},
"type": "object"
},
"opens": {
"type": "array"
},
"resends": {
"type": "array"
},
"sender": {
"type": "string"
},
"smtp_events": {
"items": {
"additionalProperties": true,
"properties": {
"destination_ip": {
"type": "string"
},
"diag": {
"type": "string"
},
"size": {
"type": "number"
},
"source_ip": {
"type": "string"
},
"ts": {
"_format": "date-time",
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"state": {
"type": "string"
},
"subject": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"template": {
"type": [
"string",
"null"
]
},
"ts": {
"_format": "date-time",
"type": "string"
}
},
"type": "object"
},
"ts": {
"_format": "date-time",
"type": "string"
}
},
"self": {
"format": "jsonschema",
"name": "message_delayed",
"vendor": "com.mandrill",
"version": "1-0-0"
},
"type": "object"
} | sp_125_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"delete": {
"type": "array",
"items": {
"type": "string"
}
},
"read": {
"type": "array",
"items": {
"type": "string"
}
},
"contrib": {
"type": "array",
"items": {
"type": "string"
}
},
"manager": {
"type": "array",
"items": {
"type": "string"
}
}
}
} | o12223 |
{
"properties": {
"length": {
"description": "The length of the password",
"type": "integer"
},
"lowercase": {
"description": "Include lowercase letters in the password",
"type": "boolean"
},
"numbers": {
"description": "Include numbers in the password",
"type": "boolean"
},
"special_characters": {
"description": "Include special characters in the password",
"type": "boolean"
},
"uppercase": {
"description": "Include uppercase letters in the password",
"type": "boolean"
}
},
"required": [
"length"
],
"type": "object"
} | generate_random_password_4ec97c11 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": {
"description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
"properties": {
"effect": {
"description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
"type": "string"
},
"key": {
"description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.",
"type": "string"
},
"operator": {
"description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.",
"type": "string"
},
"tolerationSeconds": {
"_format": "int64",
"description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.",
"type": "integer"
},
"value": {
"description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.",
"type": "string"
}
},
"type": "object"
}
},
"description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.",
"properties": {
"nodeSelector": {
"additionalProperties": {
"type": [
"string",
"null"
]
},
"description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.",
"type": [
"object",
"null"
]
},
"tolerations": {
"description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration"
},
"type": [
"array",
"null"
],
"x-kubernetes-list-type": "atomic"
}
},
"type": "object"
} | kb_926_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"SelenaManagementNet": {
"description": "Configuration of the virtual network which Selena uses as a back-channel to manage an experiment's VMs",
"properties": {
"SELENA_MGMT_NETADDR": {
"_format": "ipv4",
"description": "Domain-0 management net interface: network address",
"type": "string"
},
"SELENA_MGMT_NET_IP": {
"_format": "ipv4",
"description": "Domain-0 management net interface: IP address",
"type": "string"
},
"SELENA_MGMT_NET_MASK": {
"_format": "ipv4",
"description": "Domain-0 management net interface: network mask",
"type": "string"
},
"SELENA_MGMT_NET_NAME": {
"description": "Keyword to add in Selena's management network description",
"pattern": "^[a-zA-z0-9_-]+$",
"type": "string"
}
},
"required": [
"SELENA_MGMT_NET_NAME",
"SELENA_MGMT_NET_IP",
"SELENA_MGMT_NETADDR",
"SELENA_MGMT_NET_MASK"
],
"type": "object"
},
"SelenaMetaInfo": {
"description": "Keywords used to identify deployed Selena VMs / Networks / disks",
"properties": {
"SELENA_NET_KEYWORD": {
"description": "Keyword to add in Network description",
"pattern": "^[a-zA-z0-9_-]+$",
"type": "string"
},
"SELENA_VBD_KEYWORD": {
"description": "Keyword to add in VBD description",
"pattern": "^[a-zA-z0-9_-]+$",
"type": "string"
},
"SELENA_VDI_KEYWORD": {
"description": "Keyword to add in VDI description",
"pattern": "^[a-zA-z0-9_-]+$",
"type": "string"
},
"SELENA_VM_KEYWORD": {
"description": "Keyword to add in VM description",
"pattern": "^[a-zA-z0-9_-]+$",
"type": "string"
}
},
"required": [
"SELENA_VM_KEYWORD",
"SELENA_NET_KEYWORD",
"SELENA_VDI_KEYWORD",
"SELENA_VBD_KEYWORD"
],
"type": "object"
},
"SelenaTemplates": {
"items": {
"description": "VM template definition: used to represent a unique node type in Selena network experiments",
"properties": {
"Name": {
"description": "Name of the template",
"pattern": "^[a-zA-z_]+$",
"type": "string"
},
"PV_args": {
"description": "VM kernel boot args",
"type": "string"
},
"PV_bootloader": {
"description": "Boot loader selection for PV",
"type": "string"
},
"PV_bootloader_args": {
"description": "PV bootloader args",
"type": "string"
},
"PV_kernel": {
"description": "Location of the VM kernel",
"type": "string"
},
"PV_ramdisk": {
"description": "Location of the VM RAM disk",
"type": "string"
},
"VDI_UUID": {
"description": "The UUID of Xen VDI, used as a template",
"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}$)",
"type": "string"
}
},
"required": [
"Name",
"PV_kernel",
"PV_ramdisk",
"PV_args",
"PV_bootloader",
"PV_bootloader_args",
"VDI_UUID"
],
"type": "object"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"XenServerConfig": {
"description": "Information required to use the Xen API",
"properties": {
"XCP_passwd": {
"description": "The password for Xen API",
"type": "string"
},
"XCP_uname": {
"description": "The username for Xen API",
"pattern": "^[a-z_][a-z0-9_-]*$",
"type": "string"
},
"XCP_url": {
"_format": "uri",
"description": "The URL of the XenServer management interface",
"type": "string"
}
},
"required": [
"XCP_url",
"XCP_uname",
"XCP_passwd"
],
"type": "object"
}
},
"required": [
"XenServerConfig",
"SelenaMetaInfo",
"SelenaManagementNet",
"SelenaTemplates"
],
"title": "Product set",
"type": "object"
} | o74464 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "#/definitions/version",
"title": "Collection Version",
"description": "Postman allows you to version your collections as they grow, and this field holds the version number. While optional, it is recommended that you use this field to its fullest extent!",
"oneOf": [
{
"type": "object",
"properties": {
"major": {
"description": "Increment this number if you make changes to the collection that changes its behaviour. E.g: Removing or adding new test scripts. (partly or completely).",
"minimum": 0,
"type": "integer"
},
"minor": {
"description": "You should increment this number if you make changes that will not break anything that uses the collection. E.g: removing a folder.",
"minimum": 0,
"type": "integer"
},
"patch": {
"description": "Ideally, minor changes to a collection should result in the increment of this number.",
"minimum": 0,
"type": "integer"
},
"identifier": {
"description": "A human friendly identifier to make sense of the version numbers. E.g: 'beta-3'",
"type": "string",
"maxLength": 10
},
"meta": {}
},
"required": [
"major",
"minor",
"patch"
]
},
{
"type": "string"
}
]
} | o67616 |
{
"id": "http://schemas.triniti.io/json-schema/gdbots/analytics/mixin/tracker/1-0-0.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"is_enabled": {
"type": "boolean",
"pbj": {
"type": "boolean",
"rule": "single"
}
}
},
"additionalProperties": true
} | o82290 |
{
"properties": {
"adfstruststatus": {
"enum": [
"INIT",
"FAILED",
"ESTABLISHED",
"ESTABLISHED/CONFIGURED",
"ESTABLISHED_RENEW_SUCCESS",
"ESTABLISHED_RENEW_FAILED",
"RENEWED/CONFIGURED"
],
"readonly": true,
"type": "string"
},
"certkeyname": {
"type": "string"
},
"name": {
"type": "string"
},
"password": {
"type": "string"
},
"serverurl": {
"type": "string"
},
"username": {
"type": "string"
}
},
"title": "authenticationadfsproxyprofile",
"type": "object"
} | o30076 |
{
"additionalProperties": false,
"description": "Snowplow Amazon DynamoDB storage configuration",
"properties": {
"accessKeyId": {
"type": "string"
},
"awsRegion": {
"type": "string"
},
"dynamodbTable": {
"type": "string"
},
"id": {
"_format": "uuid",
"type": "string"
},
"name": {
"type": "string"
},
"purpose": {
"enum": [
"DUPLICATE_TRACKING"
],
"type": "string"
},
"secretAccessKey": {
"type": "string"
}
},
"required": [
"name",
"accessKeyId",
"secretAccessKey",
"awsRegion",
"dynamodbTable",
"purpose"
],
"self": {
"format": "jsonschema",
"name": "amazon_dynamodb_config",
"vendor": "com.snowplowanalytics.snowplow.storage",
"version": "1-0-1"
},
"type": "object"
} | sp_359_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"targetType": "document_surface1d",
"schemaType": "document_surface1d",
"type": "object",
"required": [
"schemaType",
"_corpusID",
"_documentID",
"offsets"
],
"properties": {
"schemaType": {
"type": "string",
"description": "Schema type",
"searchable": true,
"searchModes": [
"noop"
],
"locked": true
},
"_documentID": {
"type": "string",
"description": "Internal document GUID",
"searchable": true,
"searchModes": [
"noop"
],
"locked": true
},
"_corpusID": {
"type": "string",
"description": "Internal Corpus GUID",
"searchable": true,
"searchModes": [
"noop"
],
"locked": true
},
"offsets": {
"searchable": true,
"locked": true,
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"properties": {
"begin": {
"type": "integer",
"minimum": 0
},
"end": {
"type": "integer",
"minimum": 0
}
}
}
}
}
} | o33708 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Generated from kata/spec/fixtures/examples/load_balancer.json with shasum cf9408412884a83aed58bca92933c0ec4a100c6b",
"type": "object",
"required": [
"loadBalancer"
],
"properties": {
"loadBalancer": {
"type": "object",
"required": [
"id",
"name",
"protocol",
"port",
"algorithm",
"status",
"timeout",
"connectionLogging",
"virtualIps",
"nodes",
"sessionPersistence",
"connectionThrottle",
"cluster",
"created",
"updated",
"sourceAddresses"
],
"properties": {
"id": {
"type": "integer",
"default": 2000
},
"name": {
"type": "string",
"default": "sample-loadbalancer"
},
"protocol": {
"type": "string",
"default": "HTTP"
},
"port": {
"type": "integer",
"default": 80
},
"algorithm": {
"type": "string",
"default": "RANDOM"
},
"status": {
"type": "string",
"default": "ACTIVE"
},
"timeout": {
"type": "integer",
"default": 30
},
"connectionLogging": {
"type": "object",
"required": [
"enabled"
],
"properties": {
"enabled": {
"type": "boolean",
"default": true
}
}
},
"virtualIps": {
"type": "array",
"minItems": 1,
"_uniqueItems": true,
"items": {
"type": "object",
"required": [
"id",
"address",
"type",
"ipVersion"
],
"properties": {
"id": {
"type": "integer",
"default": 1000
},
"address": {
"type": "string",
"default": "206.10.10.210"
},
"type": {
"type": "string",
"default": "PUBLIC"
},
"ipVersion": {
"type": "string",
"default": "IPdraft4"
}
}
}
},
"nodes": {
"type": "array",
"minItems": 1,
"_uniqueItems": true,
"items": {
"type": "object",
"required": [
"id",
"address",
"port",
"condition",
"status"
],
"properties": {
"id": {
"type": "integer",
"default": 1041
},
"address": {
"type": "string",
"default": "10.1.1.1"
},
"port": {
"type": "integer",
"default": 80
},
"condition": {
"type": "string",
"default": "ENABLED"
},
"status": {
"type": "string",
"default": "ONLINE"
}
}
}
},
"sessionPersistence": {
"type": "object",
"required": [
"persistenceType"
],
"properties": {
"persistenceType": {
"type": "string",
"default": "HTTP_COOKIE"
}
}
},
"connectionThrottle": {
"type": "object",
"required": [
"minConnections",
"maxConnections",
"maxConnectionRate",
"rateInterval"
],
"properties": {
"minConnections": {
"type": "integer",
"default": 10
},
"maxConnections": {
"type": "integer",
"default": 100
},
"maxConnectionRate": {
"type": "integer",
"default": 50
},
"rateInterval": {
"type": "integer",
"default": 60
}
}
},
"cluster": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"default": "c1.dfw1"
}
}
},
"created": {
"type": "object",
"required": [
"time"
],
"properties": {
"time": {
"type": "string",
"default": "2010-11-30T03:23:42Z"
}
}
},
"updated": {
"type": "object",
"required": [
"time"
],
"properties": {
"time": {
"type": "string",
"default": "2010-11-30T03:23:44Z"
}
}
},
"sourceAddresses": {
"type": "object",
"required": [
"ipv6Public",
"ipdraft4Servicenet",
"ipdraft4Public"
],
"properties": {
"ipv6Public": {
"type": "string",
"default": "2001:4801:79f1:1::1/64"
},
"ipdraft4Servicenet": {
"type": "string",
"default": "10.0.0.0"
},
"ipdraft4Public": {
"type": "string",
"default": "10.12.99.28"
}
}
}
}
}
}
} | o59668 |
{
"additionalProperties": false,
"description": "Schema for user attribute change event",
"properties": {
"deleted": {
"type": "boolean"
},
"isNewAttribute": {
"type": "boolean"
},
"name": {
"type": "string"
},
"newValue": {
"type": "string"
},
"newValues": {
"items": {
"type": "string"
},
"type": "array"
},
"oldValue": {
"type": "string"
},
"oldValues": {
"items": {
"type": "string"
},
"type": "array"
},
"userAttributeName": {
"type": "string"
}
},
"required": [
"name"
],
"self": {
"format": "jsonschema",
"name": "userattributechange_event",
"vendor": "com.mparticle.snowplow",
"version": "1-0-0"
},
"type": "object"
} | sp_150_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://www.52north.org/schema/json/Geometry#",
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"crs": {
"$ref": "#/definitions/crs"
}
},
"oneOf": [
{
"$ref": "#/definitions/GeometryCollection"
},
{
"$ref": "#/definitions/Point"
},
{
"$ref": "#/definitions/MultiPoint"
},
{
"$ref": "#/definitions/LineString"
},
{
"$ref": "#/definitions/MultiLineString"
},
{
"$ref": "#/definitions/Polygon"
},
{
"$ref": "#/definitions/MultiPolygon"
}
],
"definitions": {
"GeometryCollection": {
"required": [
"geometries"
],
"properties": {
"type": {
"enum": [
"GeometryCollection"
]
},
"geometries": {
"type": "array",
"items": {
"$ref": "#"
}
}
}
},
"Point": {
"required": [
"coordinates"
],
"properties": {
"type": {
"enum": [
"Point"
]
},
"coordinates": {
"$ref": "#/definitions/position"
}
}
},
"MultiPoint": {
"required": [
"coordinates"
],
"properties": {
"type": {
"enum": [
"MultiPoint"
]
},
"coordinates": {
"$ref": "#/definitions/positionArray"
}
}
},
"LineString": {
"required": [
"coordinates"
],
"properties": {
"type": {
"enum": [
"LineString"
]
},
"coordinates": {
"$ref": "#/definitions/lineString"
}
}
},
"MultiLineString": {
"required": [
"coordinates"
],
"properties": {
"type": {
"enum": [
"MultiLineString"
]
},
"coordinates": {
"type": "array",
"items": {
"$ref": "#/definitions/lineString"
}
}
}
},
"Polygon": {
"required": [
"coordinates"
],
"properties": {
"type": {
"enum": [
"Polygon"
]
},
"coordinates": {
"$ref": "#/definitions/polygonCoordinates"
}
}
},
"MultiPolygon": {
"required": [
"coordinates"
],
"properties": {
"type": {
"enum": [
"MultiPolygon"
]
},
"coordinates": {
"type": "array",
"items": {
"$ref": "#/definitions/polygonCoordinates"
}
}
}
},
"lineString": {
"allOf": [
{
"$ref": "#/definitions/positionArray"
},
{
"minItems": 2
}
]
},
"polygonCoordinates": {
"type": "array",
"minItems": 1,
"items": {
"allOf": [
{
"$ref": "#/definitions/positionArray"
},
{
"minItems": 4
}
]
}
},
"position": {
"type": "array",
"minItems": 2,
"maxItems": 3,
"items": {
"type": "number"
}
},
"positionArray": {
"type": "array",
"items": {
"$ref": "#/definitions/position"
}
},
"crs": {
"type": "object",
"required": [
"type",
"properties"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string"
},
"properties": {
"type": "object"
}
},
"oneOf": [
{
"properties": {
"type": {
"enum": [
"name"
]
},
"properties": {
"required": [
"name"
],
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
}
}
}
},
{
"properties": {
"type": {
"enum": [
"link"
]
},
"properties": {
"required": [
"href"
],
"additionalProperties": false,
"properties": {
"href": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
}
}
]
}
}
} | o75099 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"icon": {
"type": "string"
},
"icon_big": {
"type": "string"
},
"specializations": {
"type": "array",
"items": {
"type": "number"
}
},
"weapons": {
"type": "object",
"properties": {
"Dagger": {
"type": "object",
"properties": {
"flags": {
"type": "array",
"items": {
"type": "string"
}
},
"skills": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"slot": {
"type": "string"
},
"offhand": {
"type": "string"
}
},
"required": [
"id",
"slot"
]
}
}
}
},
"Spear": {
"type": "object",
"properties": {
"flags": {
"type": "array",
"items": {
"type": "string"
}
},
"skills": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"slot": {
"type": "string"
}
},
"required": [
"id",
"slot"
]
}
}
}
},
"Pistol": {
"type": "object",
"properties": {
"flags": {
"type": "array",
"items": {
"type": "string"
}
},
"skills": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"slot": {
"type": "string"
},
"offhand": {
"type": "string"
}
},
"required": [
"id",
"slot"
]
}
}
}
},
"Rifle": {
"type": "object",
"properties": {
"specialization": {
"type": "number"
},
"flags": {
"type": "array",
"items": {
"type": "string"
}
},
"skills": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"slot": {
"type": "string"
}
},
"required": [
"id",
"slot"
]
}
}
}
},
"Shortbow": {
"type": "object",
"properties": {
"flags": {
"type": "array",
"items": {
"type": "string"
}
},
"skills": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"slot": {
"type": "string"
}
},
"required": [
"id",
"slot"
]
}
}
}
},
"Speargun": {
"type": "object",
"properties": {
"flags": {
"type": "array",
"items": {
"type": "string"
}
},
"skills": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"slot": {
"type": "string"
}
},
"required": [
"id",
"slot"
]
}
}
}
},
"Staff": {
"type": "object",
"properties": {
"specialization": {
"type": "number"
},
"flags": {
"type": "array",
"items": {
"type": "string"
}
},
"skills": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"slot": {
"type": "string"
}
},
"required": [
"id",
"slot"
]
}
}
}
},
"Sword": {
"type": "object",
"properties": {
"flags": {
"type": "array",
"items": {
"type": "string"
}
},
"skills": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"slot": {
"type": "string"
},
"offhand": {
"type": "string"
}
},
"required": [
"id",
"slot"
]
}
}
}
}
}
},
"flags": {
"type": "array",
"items": {}
},
"skills": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"slot": {
"type": "string"
},
"type": {
"type": "string"
},
"source": {
"type": "string"
}
},
"required": [
"id",
"slot",
"type"
]
}
},
"training": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"category": {
"type": "string"
},
"name": {
"type": "string"
},
"track": {
"type": "array",
"items": {
"type": "object",
"properties": {
"cost": {
"type": "number"
},
"type": {
"type": "string"
},
"trait_id": {
"type": "number"
},
"skill_id": {
"type": "number"
}
},
"required": [
"cost",
"type"
]
}
}
},
"required": [
"id",
"category",
"name",
"track"
]
}
}
},
"required": [
"id",
"name",
"icon",
"icon_big",
"specializations",
"weapons",
"flags",
"skills",
"training"
]
},
"properties": {},
"additionalProperties": false
} | o45196 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the shape",
"type": "number"
},
"height": {
"description": "The height of the shape",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The shape for which area is to be calculated",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_9fff5e08 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference": {
"description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace",
"properties": {
"name": {
"description": "Name is unique within a namespace to reference a secret resource.",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within which the secret name must be unique.",
"type": "string"
}
},
"type": "object"
}
},
"description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
"properties": {
"chapAuthDiscovery": {
"description": "whether support iSCSI Discovery CHAP authentication",
"type": [
"boolean",
"null"
]
},
"chapAuthSession": {
"description": "whether support iSCSI Session CHAP authentication",
"type": [
"boolean",
"null"
]
},
"fsType": {
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi",
"type": [
"string",
"null"
]
},
"initiatorName": {
"description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
"type": [
"string",
"null"
]
},
"iqn": {
"description": "Target iSCSI Qualified Name.",
"type": [
"string",
"null"
]
},
"iscsiInterface": {
"description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).",
"type": [
"string",
"null"
]
},
"lun": {
"description": "iSCSI Target Lun number.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"portals": {
"description": "iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"readOnly": {
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
"type": [
"boolean",
"null"
]
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "CHAP Secret for iSCSI target and initiator authentication"
},
"targetPortal": {
"description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
"type": [
"string",
"null"
]
}
},
"required": [
"targetPortal",
"iqn",
"lun"
],
"type": "object"
} | kb_474_Normalized |
{
"properties": {
"humio": {
"properties": {
"dataspace": {
"description": "Name of Humio dataspace",
"type": "string"
},
"host": {
"description": "Humio url. i.e. go.humio.com",
"type": "string"
},
"ingestToken": {
"description": "Humio ingest token",
"type": "string"
}
},
"required": [
"host",
"dataspace",
"ingestToken"
],
"type": "object"
},
"node": {
"properties": {
"cpus": {
"default": 0.5,
"description": "CPU shares to allocate to each Filebeat instance.",
"minimum": 0.1,
"type": "number"
},
"datadir": {
"default": "/var/humio/data",
"description": "Path of directory",
"type": "string"
},
"mem": {
"default": 512.0,
"description": "Memory (MB) to allocate to each Filebeat task.",
"minimum": 256.0,
"type": "number"
}
},
"required": [
"cpus",
"mem",
"datadir"
],
"type": "object"
},
"service": {
"properties": {
"name": {
"default": "humio-agent",
"description": "Name for this Humio application",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"type": "object"
} | o90706 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Ansible Inventory",
"description": "Ansible Inventory for the script inventory plugin",
"type": "object",
"patternProperties": {
"^\\w$": {
"type": "object",
"properties": {
"hosts": {
"description": "list of hosts that are part of this group",
"type": "array",
"items": {
"type": "string"
}
},
"vars": {
"type": "object",
"description": "Variables to assign to hosts that are part of this group",
"patternProperties": {
"^\\w$": {
"type": "object",
"description": "Vars for this hosts in this group"
}
}
},
"children": {
"description": "list of groups that are children of this group, their hosts will be added to this group",
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"_meta": {
"type": "object",
"description": "Key that avoids calling the script per host",
"required": [
"hostvars"
],
"properties": {
"hostvars": {
"type": "object",
"description": "Each key is a hostname and the value is a dictionary of the variables for that host",
"patternProperties": {
"^\\w$": {
"type": "object",
"description": "Hosts with their associated vars",
"patternProperties": {
"^\\w$": {
"type": "object",
"description": "Vars for this host"
}
}
}
}
}
},
"additionalProperties": false
}
},
"additionalProperties": false
} | o90425 |
{
"additionalProperties": false,
"description": "Schema for mobile contexts",
"properties": {
"androidIdfa": {
"type": [
"string",
"null"
]
},
"appAvailableMemory": {
"description": "Amount of memory in bytes available to the current app (iOS only)",
"maximum": 9223372036854776000,
"minimum": 0,
"type": [
"integer",
"null"
]
},
"appleIdfa": {
"type": [
"string",
"null"
]
},
"appleIdfv": {
"type": [
"string",
"null"
]
},
"availableStorage": {
"description": "Bytes of storage remaining",
"maximum": 9223372036854776000,
"minimum": 0,
"type": [
"integer",
"null"
]
},
"batteryLevel": {
"description": "Remaining battery level as an integer percentage of total battery capacity",
"maximum": 100,
"minimum": 0,
"type": [
"integer",
"null"
]
},
"batteryState": {
"description": "Battery state for the device",
"enum": [
"unplugged",
"charging",
"full",
null
],
"maxLength": 255,
"type": [
"string",
"null"
]
},
"carrier": {
"type": [
"string",
"null"
]
},
"deviceManufacturer": {
"type": "string"
},
"deviceModel": {
"type": "string"
},
"lowPowerMode": {
"description": "A Boolean indicating whether Low Power Mode is enabled (iOS only)",
"type": [
"boolean",
"null"
]
},
"networkTechnology": {
"type": [
"string",
"null"
]
},
"networkType": {
"enum": [
"mobile",
"wifi",
"offline",
null
],
"type": [
"string",
"null"
]
},
"openIdfa": {
"type": [
"string",
"null"
]
},
"osType": {
"type": "string"
},
"osVersion": {
"type": "string"
},
"physicalMemory": {
"description": "Total physical system memory in bytes",
"maximum": 9223372036854776000,
"minimum": 0,
"type": [
"integer",
"null"
]
},
"systemAvailableMemory": {
"description": "Available memory on the system in bytes (Android only)",
"maximum": 9223372036854776000,
"minimum": 0,
"type": [
"integer",
"null"
]
},
"totalStorage": {
"description": "Total size of storage in bytes",
"maximum": 9223372036854776000,
"minimum": 0,
"type": [
"integer",
"null"
]
}
},
"required": [
"osType",
"osVersion",
"deviceManufacturer",
"deviceModel"
],
"self": {
"format": "jsonschema",
"name": "mobile_context",
"vendor": "com.snowplowanalytics.snowplow",
"version": "1-0-2"
},
"type": "object"
} | sp_300_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"start_time": {
"type": "string"
},
"end_time": {
"type": "string"
},
"scores": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
},
"worlds": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
},
"all_worlds": {
"type": "object",
"properties": {
"red": {
"type": "array",
"items": {
"type": "number"
}
},
"blue": {
"type": "array",
"items": {
"type": "number"
}
},
"green": {
"type": "array",
"items": {
"type": "number"
}
}
}
},
"deaths": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
},
"kills": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
},
"victory_points": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
},
"skirmishes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"scores": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
},
"map_scores": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"scores": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
}
},
"required": [
"type",
"scores"
]
}
}
}
}
},
"maps": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"type": {
"type": "string"
},
"scores": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
},
"bonuses": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"owner": {
"type": "string"
}
}
}
},
"objectives": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string"
},
"owner": {
"type": "string"
},
"last_flipped": {
"type": "string"
},
"claimed_by": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"claimed_at": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"points_tick": {
"type": "number"
},
"points_capture": {
"type": "number"
},
"yaks_delivered": {
"type": "number"
},
"guild_upgrades": {
"type": "array",
"items": {}
}
},
"required": [
"id",
"type",
"owner",
"last_flipped",
"points_tick",
"points_capture"
]
}
},
"deaths": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
},
"kills": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
}
},
"required": [
"id",
"type",
"scores",
"bonuses",
"objectives",
"deaths",
"kills"
]
}
}
},
"required": [
"id",
"start_time",
"end_time",
"scores",
"worlds",
"all_worlds",
"deaths",
"kills",
"victory_points",
"skirmishes",
"maps"
]
},
"properties": {},
"additionalProperties": false
} | o45224 |
{
"properties": {
"bcc": {
"description": "Email addresses to be BCC'd",
"items": {
"type": "string"
},
"type": "array"
},
"cc": {
"description": "Email addresses to be CC'd",
"items": {
"type": "string"
},
"type": "array"
},
"message": {
"description": "The content of the email",
"type": "string"
},
"subject": {
"description": "The subject of the email",
"type": "string"
},
"to": {
"description": "The recipient's email address",
"type": "string"
}
},
"required": [
"to",
"subject",
"message"
],
"type": "object"
} | send_email_97b26761 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"details_metadata": {
"type": "object",
"description": "generic metadata dict in details list",
"properties": {
"author": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"bug_reporting": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"code_repository": {
"oneOf": [
{
"$ref": "#/definitions/metadata_code_repository"
},
{
"type": "null"
}
]
},
"declared_license": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"dependencies": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
]
},
"description": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"devel_dependencies": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
]
},
"engines": {
"oneOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
]
},
"files": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
]
},
"git_head": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"homepage": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"keywords": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
]
},
"metadata": {
"oneOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
]
},
"name": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"platform": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"readme": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"scripts": {
"oneOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
]
},
"version": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"maintainers": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
]
},
"contributors": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
]
},
"_tests_implemented": {
"type": "boolean"
},
"ecosystem": {
"type": "string"
},
"_dependency_tree_lock": {
"oneOf": [
{
"$ref": "#/definitions/metadata_lockfile"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"metadata_code_repository": {
"type": "object",
"description": "Code repository description",
"properties": {
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"type",
"url"
],
"additionalProperties": false
},
"metadata_locked_dependency": {
"type": "object",
"description": "Locked dependency description",
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string"
},
"specification": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"resolved": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"dependencies": {
"type": "array",
"items": {
"$ref": "#/definitions/metadata_locked_dependency"
}
}
},
"additionalProperties": false
},
"metadata_lockfile": {
"type": "object",
"description": "Dependency lock file description",
"properties": {
"runtime": {
"type": "string"
},
"version": {
"type": "string"
},
"dependencies": {
"type": "array",
"items": {
"$ref": "#/definitions/metadata_locked_dependency"
}
},
"name": {
"type": "string"
}
},
"additionalProperties": false
}
},
"type": "object",
"description": "Result of Mercator worker",
"properties": {
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the schema",
"pattern": "^[a-zA-Z0-9_]+$"
},
"version": {
"type": "string",
"description": "Version of the schema",
"pattern": "^[0-9]+-[0-9]+-[0-9]+$"
},
"url": {
"type": "string",
"description": "Full URL of the schema",
"format": "uri"
}
},
"required": [
"name",
"version"
],
"additionalProperties": false
},
"_release": {
"type": "string",
"description": "Unique release id in form of \"ecosystem:package:version\""
},
"details": {
"type": "array",
"items": {
"$ref": "#/definitions/details_metadata"
}
}
},
"additionalProperties": false,
"title": "metadata-v3-0-0"
} | o60991 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"id",
"price"
],
"properties": {
"id": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"img": {
"type": "string"
},
"text": {
"type": "string"
},
"app_url": {
"type": "string"
}
}
},
"price": {
"type": "number"
},
"click_through_url": {
"type": "array",
"items": {
"type": "string"
}
},
"tracking_url": {
"type": "array",
"items": {
"type": "string"
}
}
}
} | o19066 |
{
"title": "Parameter Publisher",
"required": [
"publisher_type",
"outputmap"
],
"properties": {
"publisher_type": {
"default": "frompar-pub",
"enum": [
"frompar-pub"
],
"type": "string"
},
"outputmap": {
"type": "object"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"id": "parameter_publisher"
} | o66162 |
{
"properties": {
"delivery_address": {
"description": "The delivery address",
"type": "string"
},
"items": {
"items": {
"properties": {
"name": {
"description": "The name of the food item",
"type": "string"
},
"quantity": {
"description": "The quantity of the food item",
"type": "integer"
}
},
"required": [
"name",
"quantity"
],
"type": "object"
},
"type": "array"
},
"restaurant": {
"description": "The name of the restaurant",
"type": "string"
}
},
"required": [
"restaurant",
"items",
"delivery_address"
],
"type": "object"
} | order_food_a0b861b2 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"checksums": {
"description": "A hash where each key is one of the checksums that you are willing to upload",
"patternProperties": {
"[0-9a-f]{32}": {
"type": "null"
}
}
}
}
} | o78129 |
{
"additionalProperties": false,
"properties": {
"dagName": {
"maxLength": 256,
"minLength": 1,
"type": [
"string",
"null"
]
},
"enabled": {
"type": "boolean"
},
"lockType": {
"enum": [
"hard",
"soft"
],
"type": "string"
},
"metadata": {
"type": [
"object",
"null"
]
},
"owners": {
"items": {
"additionalProperties": false,
"properties": {
"email": {
"_format": "email",
"type": "string"
},
"name": {
"maxLength": 256,
"minLength": 1,
"type": "string"
}
},
"required": [
"name",
"email"
],
"type": "object"
},
"maxItems": 64,
"minItems": 0,
"type": [
"array",
"null"
]
},
"playbooks": {
"items": {
"additionalProperties": false,
"properties": {
"dependsOn": {
"items": {
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"maxItems": 64,
"minItems": 0,
"type": "array"
},
"playbook": {
"maxLength": 256,
"minLength": 1,
"type": "string"
}
},
"required": [
"playbook",
"dependsOn"
],
"type": "object"
},
"maxItems": 64,
"minItems": 1,
"type": "array"
},
"sqlRunner": {
"pattern": "^(0|[1-9][0-9]{0,1})\\.(0|[1-9][0-9]{0,1})\\.(0|[1-9][0-9]{0,1})(-rc[0-9]{1,2}){0,1}$",
"type": [
"string",
"null"
]
},
"storage": {
"enum": [
"Default",
"BigQuery"
],
"type": "string"
}
},
"required": [
"enabled",
"lockType",
"storage",
"playbooks"
],
"self": {
"format": "jsonschema",
"name": "config",
"vendor": "com.snowplowanalytics.datamodeling",
"version": "1-0-0"
},
"type": "object"
} | sp_202_Normalized |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://bitbucket.org/pipelines.json",
"definitions": {
"image_name": {
"type": "string",
"description": "Name of the Docker image which may or may not include registry URL, tag, and digest value",
"default": "atlassian/default-image:latest",
"minLength": 1
},
"run_as_user": {
"type": "number",
"description": "Overrides image's default user, specified user UID must be an existing user in the image with a valid home directory"
},
"complex_image": {
"type": "object",
"oneOf": [
{
"properties": {
"name": {
"$ref": "#/definitions/image_name"
},
"run-as-user": {
"$ref": "#/definitions/run_as_user"
}
},
"required": [
"name"
],
"additionalProperties": false
},
{
"properties": {
"name": {
"$ref": "#/definitions/image_name"
},
"run-as-user": {
"$ref": "#/definitions/run_as_user"
},
"username": {
"type": "string",
"description": "Username to use to fetch the Docker image",
"minLength": 1
},
"password": {
"type": "string",
"description": "Password to use to fetch the Docker image",
"minLength": 1
},
"email": {
"type": "string",
"description": "Email to use to fetch the Docker image",
"minLength": 1
}
},
"required": [
"name",
"username",
"password"
],
"additionalProperties": false
},
{
"properties": {
"name": {
"$ref": "#/definitions/image_name"
},
"run-as-user": {
"$ref": "#/definitions/run_as_user"
},
"aws": {
"type": "object",
"oneOf": [
{
"properties": {
"access-key": {
"type": "string",
"description": "AWS access key for Amazon Elastic Container Registry (AWS ECR)",
"minLength": 1
},
"secret-key": {
"type": "string",
"description": "AWS secret key for Amazon Elastic Container Registry (AWS ECR)",
"minLength": 1
}
},
"required": [
"access-key",
"secret-key"
],
"additionalProperties": false
},
{
"properties": {
"oidc-role": {
"type": "string",
"description": "Provides Pipeline with access to private Docker images hosted in an Amazon Elastic Container Registry (AWS ECR)",
"minLength": 1
}
},
"required": [
"oidc-role"
],
"additionalProperties": false
}
]
}
},
"required": [
"aws",
"name"
],
"additionalProperties": false
}
]
},
"image": {
"oneOf": [
{
"$ref": "#/definitions/image_name"
},
{
"$ref": "#/definitions/complex_image"
}
]
},
"max_time": {
"type": "number",
"description": "Maximum amount of minutes a step can execute",
"exclusiveMinimum": 0,
"maximum": 120,
"default": 120
},
"size": {
"type": "string",
"description": "Multiplier of the resources allocated to a pipeline step",
"enum": [
"1x",
"2x"
],
"default": "1x"
},
"clone_properties": {
"type": "object",
"description": "Contains settings to clone the repository into a container",
"properties": {
"enabled": {
"type": "boolean",
"description": "Enables cloning of the repository before a step in a pipeline",
"default": true
},
"lfs": {
"type": "boolean",
"description": "Enables the download of LFS files in the clone (supported only for Git repositories)",
"default": false
},
"depth": {
"description": "Depth of Git clone (supported only for Git repositories)",
"oneOf": [
{
"type": "number",
"exclusiveMinimum": 0
},
{
"const": "full"
}
],
"default": 50
},
"skip-ssl-verify": {
"type": "boolean",
"description": "Disables SSL verification during git clone, allowing the use of self-signed certificates",
"default": false
}
}
},
"artifact_list": {
"type": "array",
"description": "Files produced by a step to share with a following step",
"items": {
"type": "string",
"description": "Glob pattern for the path to the artifacts"
},
"minItems": 1
},
"complex_artifacts": {
"type": "object",
"properties": {
"download": {
"type": "boolean",
"description": "Enables downloading of all available artifacts at the start of a step",
"default": true
},
"paths": {
"$ref": "#/definitions/artifact_list"
}
}
},
"fail_fast": {
"type": "boolean"
},
"runner_label": {
"type": "string",
"description": "Any label assigned to a self-hosted repository or workspace Pipeline runner",
"minLength": 1,
"maxLength": 50
},
"trigger": {
"type": "string",
"enum": [
"automatic",
"manual"
],
"default": "automatic"
},
"condition": {
"type": "object",
"properties": {
"changesets": {
"type": "object",
"description": "Condition on the changesets involved in a pipeline",
"properties": {
"includePaths": {
"type": "array",
"description": "Condition which holds only if any of the modified files match any of the defined patterns",
"items": {
"type": "string",
"description": "Glob pattern to match the file path",
"minLength": 1
},
"minItems": 1
}
},
"required": [
"includePaths"
],
"additionalProperties": false
}
},
"required": [
"changesets"
],
"additionalProperties": false
},
"step": {
"type": "object",
"properties": {
"step": {
"type": "object",
"description": "Build execution unit",
"properties": {
"after-script": {
"$ref": "#/definitions/script",
"description": "Commands to execute after the step succeeds or fails"
},
"artifacts": {
"anyOf": [
{
"$ref": "#/definitions/artifact_list"
},
{
"$ref": "#/definitions/complex_artifacts"
}
]
},
"caches": {
"type": "array",
"description": "Caches enabled for the step",
"items": {
"type": "string",
"description": "Name of the cache"
},
"minItems": 1
},
"clone": {
"$ref": "#/definitions/clone_properties"
},
"condition": {
"$ref": "#/definitions/condition",
"description": "Condition to execute the step"
},
"deployment": {
"type": "string",
"description": "Type of environment for the deployment step, used in the Deployments dashboard",
"minLength": 1
},
"fail-fast": {
"$ref": "#/definitions/fail_fast",
"description": "A flag reflecting whether other steps in a parallel group should be force stopped if this step fails"
},
"image": {
"$ref": "#/definitions/image"
},
"max-time": {
"$ref": "#/definitions/max_time"
},
"name": {
"type": "string",
"description": "Name of the step",
"minLength": 1
},
"oidc": {
"type": "boolean",
"description": "Enable the use of OpenID Connect to connect a pipeline step to a resource server"
},
"runs-on": {
"oneOf": [
{
"$ref": "#/definitions/runner_label"
},
{
"type": "array",
"description": "List of labels assigned to Pipeline runner",
"items": {
"$ref": "#/definitions/runner_label"
},
"minItems": 1
}
]
},
"script": {
"$ref": "#/definitions/script",
"description": "Commands to execute in the step"
},
"services": {
"type": "array",
"description": "Services enabled for the step",
"items": {
"type": "string",
"description": "Name of the service"
},
"minItems": 1,
"maxItems": 5
},
"size": {
"$ref": "#/definitions/size"
},
"trigger": {
"$ref": "#/definitions/trigger",
"description": "Specifies if a step runs automatically or only when manually triggered by a user"
}
},
"required": [
"script"
]
}
},
"additionalProperties": false
},
"stage": {
"type": "object",
"properties": {
"stage": {
"type": "object",
"properties": {
"condition": {
"$ref": "#/definitions/condition",
"description": "Condition to execute the stage"
},
"deployment": {
"type": "string",
"description": "Type of environment for the deployment stage, used in the Deployments dashboard",
"minLength": 1
},
"name": {
"type": "string",
"description": "Name of the stage",
"minLength": 1
},
"steps": {
"type": "array",
"description": "List of steps in a stage",
"items": {
"$ref": "#/definitions/step"
},
"minItems": 1
},
"trigger": {
"$ref": "#/definitions/trigger",
"description": "Specifies if the stage runs automatically or only when manually triggered by a user"
}
},
"required": [
"steps"
],
"additionalProperties": false
}
},
"additionalProperties": false
},
"parallel_steps": {
"type": "array",
"description": "Set of steps to run concurrently",
"items": {
"$ref": "#/definitions/step"
},
"minItems": 2
},
"step_or_stage_or_parallel_item": {
"oneOf": [
{
"$ref": "#/definitions/step"
},
{
"$ref": "#/definitions/stage"
},
{
"type": "object",
"properties": {
"parallel": {
"oneOf": [
{
"$ref": "#/definitions/parallel_steps"
},
{
"type": "object",
"properties": {
"fail-fast": {
"$ref": "#/definitions/fail_fast",
"description": "A flag reflecting whether all steps in a parallel group should be force stopped if any of its steps fails."
},
"steps": {
"$ref": "#/definitions/parallel_steps"
}
},
"required": [
"steps"
],
"additionalProperties": false
}
]
}
},
"additionalProperties": false
}
]
},
"actions_list": {
"type": "array",
"items": {
"$ref": "#/definitions/step_or_stage_or_parallel_item"
},
"minItems": 1
},
"named_pipelines": {
"type": "object",
"patternProperties": {
"^.*$": {
"$ref": "#/definitions/actions_list"
}
}
},
"script": {
"type": "array",
"items": {
"oneOf": [
{
"type": "string",
"description": "Command to execute"
},
{
"$ref": "#/definitions/pipe"
}
]
},
"minItems": 1
},
"pipe": {
"type": "object",
"description": "Pipe to execute",
"properties": {
"pipe": {
"type": "string",
"description": "Pipe identifier"
},
"variables": {
"type": "object",
"description": "Environment variables passed to the pipe",
"patternProperties": {
"^.*$": {
"oneOf": [
{
"type": "string",
"description": "Variable value"
},
{
"type": "array",
"items": {
"type": "string",
"description": "Array variable item value"
},
"minItems": 1
}
]
}
},
"minProperties": 1
}
},
"required": [
"pipe"
]
},
"cache_path": {
"type": "string",
"description": "Path to the directory to be cached, can be absolute or relative to the clone directory"
},
"cache_with_key": {
"type": "object",
"description": "Cache definition declaring a set of files as a key and path to the directory to be cached",
"properties": {
"key": {
"type": "object",
"description": "Cache key definition",
"properties": {
"files": {
"type": "array",
"items": {
"type": "string",
"description": "Path to a file or glob pattern of files in the repository which form the cache key"
},
"minItems": 1
}
},
"required": [
"files"
],
"additionalProperties": false
},
"path": {
"$ref": "#/definitions/cache_path"
}
},
"required": [
"key",
"path"
],
"additionalProperties": false
}
},
"type": "object",
"properties": {
"clone": {
"$ref": "#/definitions/clone_properties"
},
"definitions": {
"type": "object",
"description": "Defines resources used elsewhere in the pipeline configuration",
"properties": {
"caches": {
"type": "object",
"description": "Defines custom caches to be used by pipelines",
"patternProperties": {
"^[a-z0-9]([-a-z0-9]{0,48}[a-z0-9])?$": {
"oneOf": [
{
"$ref": "#/definitions/cache_path"
},
{
"$ref": "#/definitions/cache_with_key"
}
]
}
},
"not": {
"required": [
"docker"
]
},
"additionalProperties": false
},
"services": {
"type": "object",
"description": "Defines services that run in separate Docker containers",
"patternProperties": {
"^.*$": {
"type": "object",
"properties": {
"image": {
"$ref": "#/definitions/image"
},
"memory": {
"type": "number",
"description": "Memory limit for the service container, in megabytes",
"minimum": 128,
"default": 1024
},
"variables": {
"type": "object",
"description": "Environment variables passed to the service container",
"patternProperties": {
"^.*$": {
"type": "string"
}
},
"minProperties": 1
}
}
}
},
"additionalProperties": false
}
}
},
"image": {
"$ref": "#/definitions/image"
},
"options": {
"type": "object",
"properties": {
"docker": {
"type": "boolean",
"description": "A flag to add Docker to all build steps in all pipelines"
},
"max-time": {
"$ref": "#/definitions/max_time"
},
"size": {
"$ref": "#/definitions/size"
}
}
},
"pipelines": {
"type": "object",
"properties": {
"default": {
"$ref": "#/definitions/actions_list"
},
"branches": {
"$ref": "#/definitions/named_pipelines",
"description": "Branch-specific build pipelines"
},
"custom": {
"type": "object",
"description": "Pipelines that can only be triggered manually or scheduled from the Bitbucket Cloud interface",
"patternProperties": {
"^.*$": {
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"properties": {
"variables": {
"type": "array",
"description": "List of variables for the custom pipeline",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of a variable for the custom pipeline",
"minLength": 1
},
"default": {
"type": "string",
"description": "Default value for the variable, used unless the value is manually set when the pipeline is run"
},
"allowed-values": {
"type": "array",
"description": "A list of values that are allowed for the variable",
"items": {
"type": "string",
"description": "Allowed value for the variable"
},
"minItems": 1
},
"description": {
"type": "string",
"description": "Description of the variable",
"minLength": 1
}
},
"required": [
"name"
],
"additionalProperties": false
},
"minItems": 1
}
},
"additionalProperties": false
},
{
"$ref": "#/definitions/step_or_stage_or_parallel_item"
}
]
},
"minItems": 1
}
}
},
"pull-requests": {
"$ref": "#/definitions/named_pipelines",
"description": "Pull-request-specific build pipelines"
},
"tags": {
"$ref": "#/definitions/named_pipelines",
"description": "Tag-specific build pipelines"
}
},
"additionalProperties": false
}
},
"required": [
"pipelines"
]
}
| bitbucket-pipelines |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"time": {
"type": "string",
"format": "date-time"
},
"name": {
"type": "string"
},
"payload": {
"type": "object"
}
},
"required": [
"name"
],
"additionalProperties": false
}
} | o6191 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Export Webhook Schema",
"description": "Sent whenever a data export activity happens (e.g. export created/completed)",
"type": "object",
"properties": {
"id": {
"type": "string",
"title": "Export Id",
"description": "The unique identifier for this export"
},
"name": {
"type": [
"string",
"null"
],
"title": "Export Name",
"description": "The name of this export (e.g. User Details)"
},
"requester": {
"type": "string",
"title": "Requester",
"description": "The person or machine that requested this export"
},
"status": {
"type": "string",
"title": "Status",
"description": "The status of this export (e.g. is it running/finished?)",
"enum": [
"PENDING",
"ABORTED",
"COMPLETED"
]
},
"dateCreated": {
"type": "integer",
"title": "Date Created",
"description": "The date this export was created"
},
"dateCompleted": {
"type": [
"integer",
"null"
],
"title": "Date Completed",
"description": "The date this export completed"
},
"mailtoEmail": {
"type": [
"string",
"null"
],
"title": "Notification Email Address",
"description": "The email address that will receive a download link for this export when it completes"
},
"dateExpires": {
"type": [
"integer",
"null"
],
"title": "Date Expires",
"description": "The date this export expires (e.g. when it will no longer be downloadable)"
},
"outputFormat": {
"type": "string",
"title": "Output Format",
"description": "The format this export will be generated in (e.g. CSV or Excel)",
"enum": [
"XLSX",
"CSV"
]
},
"task": {
"type": "string",
"title": "Export Type",
"description": "The type of export generated",
"enum": [
"USER",
"REFERRAL",
"REWARD_BALANCE",
"USER_REWARD_BALANCE",
"USER_REFERRAL",
"REFERRAL_PARTICIPANT",
"REDEEMABLE_REWARD_BALANCE"
]
},
"operation": {
"type": "string",
"title": "Operation",
"description": "The operation being performed (for exports this is always QUERY)"
},
"params": {
"type": "object",
"title": "Export Filters",
"description": "These parameters are used to filter the export (e.g. by date or program)"
},
"stats": {
"type": [
"object",
"null"
],
"title": "Export Stats",
"description": "Statistics recorded upon completions of the export",
"properties": {
"recordsProcessed": {
"type": "integer",
"title": "Records Processed",
"description": "The number of records that were processed to complete this export"
},
"errors": {
"type": "integer",
"title": "Errors",
"description": "The number of errors that occurred while running this export"
}
},
"additionalProperties": false
},
"fileRef": {
"type": [
"string",
"null"
],
"title": "Uploaded File Reference",
"description": "A link to an uploaded file, if this export was based on an uploaded file (e.g. a list of redemption)"
}
},
"required": [
"id",
"requester",
"status",
"dateCreated",
"outputFormat",
"task",
"operation"
],
"additionalProperties": false
} | o72213 |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width",
"radius"
],
"type": "object"
},
"shape": {
"description": "The type of shape",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_c4066dbd |
{
"additionalProperties": false,
"properties": {
"additionalFields": {
"properties": {
"delivery_stage": {
"type": "string"
},
"eventAction": {
"type": "string"
},
"eventCategory": {
"type": "string"
},
"eventDetail": {
"type": "string"
},
"eventType": {
"type": "string"
},
"event_detail": {
"type": "string"
},
"event_type": {
"type": "string"
},
"journey_stage": {
"type": "string"
},
"service_identifier": {
"type": "string"
},
"stage": {
"type": "string"
},
"website": {
"type": "string"
}
},
"type": "object"
},
"chunk-size": {
"type": "number"
},
"dataType": {
"type": "string"
},
"empty-data-set": {
"type": "boolean"
},
"idMapping": {
"items": {
"type": "string"
},
"type": "array"
},
"mappings": {
"properties": {
"eventLabel": {
"type": "string"
},
"eventLabel_0": {
"type": "string"
},
"eventLabel_1": {
"type": "string"
},
"goal10Completions": {
"type": "string"
},
"goal10Starts": {
"type": "string"
},
"goal11Completions": {
"type": "string"
},
"goal11Starts": {
"type": "string"
},
"goal12Completions": {
"type": "string"
},
"goal12Starts": {
"type": "string"
},
"goal1Completions": {
"type": "string"
},
"goal1Starts": {
"type": "string"
},
"goal2Completions": {
"type": "string"
},
"goal2Starts": {
"type": "string"
},
"goal3Completions": {
"type": "string"
},
"goal3Starts": {
"type": "string"
},
"goal4Completions": {
"type": "string"
},
"goal4Starts": {
"type": "string"
},
"goal5Completions": {
"type": "string"
},
"goal5Starts": {
"type": "string"
},
"goal6Completions": {
"type": "string"
},
"goal6Starts": {
"type": "string"
},
"goal7Completions": {
"type": "string"
},
"goal7Starts": {
"type": "string"
},
"goal8Completions": {
"type": "string"
},
"goal8Starts": {
"type": "string"
},
"goal9Completions": {
"type": "string"
},
"goal9Starts": {
"type": "string"
},
"pageviews": {
"type": "string"
},
"searchStartPage": {
"type": "string"
},
"sessions": {
"type": "string"
},
"timeSpan": {
"type": "string"
}
},
"type": "object"
},
"plugins": {
"items": {
"type": "string"
},
"type": "array"
}
},
"title": "Google Analytics Collector Options",
"type": "object"
} | o21480 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$",
"type": "string"
},
"analytics_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations."
},
"body_html_and_govspeak": {
"anyOf": [
{
"type": "string"
}
],
"description": "The main content provided as HTML with the govspeak markdown it's rendered from"
},
"change_history": {
"items": {
"additionalProperties": false,
"properties": {
"note": {
"description": "A summary of the change",
"type": "string"
},
"public_timestamp": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"public_timestamp",
"note"
],
"type": "object"
},
"type": "array"
},
"country": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"slug": {
"type": "string"
},
"synonyms": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"slug",
"name"
],
"type": "object"
},
"description": {
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"additionalProperties": false,
"properties": {
"alert_status": {
"items": {
"type": "string"
},
"type": "array"
},
"change_description": {
"type": "string"
},
"change_history": {
"$ref": "#/definitions/change_history"
},
"country": {
"$ref": "#/definitions/country"
},
"document": {
"$ref": "#/definitions/file_attachment_asset"
},
"email_signup_link": {
"$ref": "#/definitions/email_signup_link"
},
"image": {
"$ref": "#/definitions/image_asset"
},
"max_cache_time": {
"$ref": "#/definitions/max_cache_time"
},
"parts": {
"$ref": "#/definitions/parts"
},
"publishing_request_id": {
"$ref": "#/definitions/publishing_request_id"
},
"reviewed_at": {
"_format": "date-time",
"type": "string"
},
"summary": {
"type": "string"
},
"updated_at": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"summary",
"country",
"updated_at",
"reviewed_at",
"change_description",
"alert_status",
"email_signup_link",
"parts"
],
"type": "object"
},
"email_signup_link": {
"_format": "uri",
"description": "Path to email signup form. TODO: Check if can be switched to use links instead",
"type": "string"
},
"file_attachment_asset": {
"additionalProperties": false,
"properties": {
"accessible": {
"type": "boolean"
},
"alternative_format_contact_email": {
"type": "string"
},
"attachment_type": {
"enum": [
"file"
],
"type": "string"
},
"content_type": {
"type": "string"
},
"file_size": {
"type": "integer"
},
"filename": {
"type": "string"
},
"id": {
"type": "string"
},
"locale": {
"$ref": "#/definitions/locale"
},
"number_of_pages": {
"type": "integer"
},
"preview_url": {
"_format": "uri",
"type": "string"
},
"title": {
"type": "string"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"attachment_type",
"content_type",
"id",
"url"
],
"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"
},
"image_asset": {
"additionalProperties": false,
"properties": {
"alt_text": {
"type": "string"
},
"caption": {
"type": "string"
},
"content_type": {
"type": "string"
},
"credit": {
"type": "string"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"content_type",
"url"
],
"type": "object"
},
"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"
},
"max_cache_time": {
"description": "The maximum length of time the content should be cached, in seconds",
"type": "integer"
},
"parts": {
"items": {
"additionalProperties": false,
"properties": {
"body": {
"$ref": "#/definitions/body_html_and_govspeak"
},
"slug": {
"_format": "uri",
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"slug",
"body"
],
"type": "object"
},
"type": "array"
},
"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": [
"travel_advice"
],
"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": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"related_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"role_appointments": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"secondary_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Prototype-stage taxonomy label for this content item"
},
"topic_taxonomy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"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": [
"travel_advice"
],
"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"
} | o21415 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://luciozambon.altervista.org/egiga2m/schemas/tree_search.json",
"type": "object",
"additionalProperties": {
"type": "string"
}
} | o57711 |
{
"properties": {
"advancedclientlessvpnmode": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"allowedlogingroups": {
"type": "string"
},
"allprotocolproxy": {
"type": "string"
},
"alwaysonprofilename": {
"type": "string"
},
"authorizationgroup": {
"type": "string"
},
"autoproxyurl": {
"type": "string"
},
"builtin": {
"enum": [
"MODIFIABLE",
"DELETABLE",
"IMMUTABLE",
"PARTITION_ALL"
],
"readonly": true,
"type": "object"
},
"citrixreceiverhome": {
"type": "string"
},
"clientchoices": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"clientcleanupprompt": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"clientconfiguration": {
"enum": [
"none",
"trace"
],
"type": "object"
},
"clientdebug": {
"enum": [
"debug",
"stats",
"events",
"OFF"
],
"type": "string"
},
"clientidletimeout": {
"type": "integer"
},
"clientidletimeoutwarning": {
"readonly": true,
"type": "integer"
},
"clientlessmodeurlencoding": {
"enum": [
"TRANSPARENT",
"OPAQUE",
"ENCRYPT"
],
"type": "string"
},
"clientlesspersistentcookie": {
"enum": [
"ALLOW",
"DENY",
"PROMPT"
],
"type": "string"
},
"clientlessvpnmode": {
"enum": [
"ON",
"OFF",
"DISABLED"
],
"type": "string"
},
"clientoptions": {
"enum": [
"none",
"all",
"services",
"filetransfer",
"configuration"
],
"type": "string"
},
"clientsecurity": {
"type": "string"
},
"clientsecuritygroup": {
"type": "string"
},
"clientsecuritylog": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"clientsecuritymessage": {
"type": "string"
},
"defaultauthorizationaction": {
"enum": [
"ALLOW",
"DENY"
],
"type": "string"
},
"dnsvservername": {
"type": "string"
},
"emailhome": {
"type": "string"
},
"epaclienttype": {
"enum": [
"AGENT",
"PLUGIN"
],
"type": "string"
},
"feature": {
"enum": [
"WL",
"WebLogging",
"SP",
"SurgeProtection",
"LB",
"LoadBalancing",
"CS",
"ContentSwitching",
"CR",
"CacheRedirection",
"SC",
"SureConnect",
"CMP",
"CMPcntl",
"CompressionControl",
"PQ",
"PriorityQueuing",
"HDOSP",
"HttpDoSProtection",
"SSLVPN",
"AAA",
"GSLB",
"GlobalServerLoadBalancing",
"SSL",
"SSLOffload",
"SSLOffloading",
"CF",
"ContentFiltering",
"IC",
"IntegratedCaching",
"OSPF",
"OSPFRouting",
"RIP",
"RIPRouting",
"BGP",
"BGPRouting",
"REWRITE",
"IPv6PT",
"IPv6protocoltranslation",
"AppFw",
"ApplicationFirewall",
"RESPONDER",
"HTMLInjection",
"push",
"NSPush",
"NetScalerPush",
"AppFlow",
"CloudBridge",
"ISIS",
"ISISRouting",
"CH",
"CallHome",
"AppQoE",
"ContentAccelerator",
"SYSTEM",
"RISE",
"FEO",
"LSN",
"LargeScaleNAT",
"RDPProxy",
"Rep",
"Reputation",
"URLFiltering",
"VideoOptimization",
"ForwardProxy",
"SSLInterception",
"AdaptiveTCP",
"CQA",
"CI",
"ContentInspection",
"Bot"
],
"readonly": true,
"type": "string"
},
"forcecleanup": {
"enum": [
"none",
"all",
"cookie",
"addressbar",
"plugin",
"filesystemapplication",
"application",
"applicationdata",
"clientcertificate",
"autocomplete",
"cache"
],
"type": "object"
},
"forcedtimeout": {
"type": "integer"
},
"forcedtimeoutwarning": {
"type": "integer"
},
"fqdnspoofedip": {
"type": "string"
},
"ftpproxy": {
"type": "string"
},
"gopherproxy": {
"type": "string"
},
"homepage": {
"type": "string"
},
"httpport": {
"type": "object"
},
"httpproxy": {
"type": "string"
},
"icaproxy": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"iconwithreceiver": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"iipdnssuffix": {
"type": "string"
},
"kcdaccount": {
"type": "string"
},
"killconnections": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"linuxpluginupgrade": {
"enum": [
"Always",
"Essential",
"Never"
],
"type": "string"
},
"locallanaccess": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"loginscript": {
"type": "string"
},
"logoutscript": {
"type": "string"
},
"macpluginupgrade": {
"enum": [
"Always",
"Essential",
"Never"
],
"type": "string"
},
"name": {
"type": "string"
},
"netmask": {
"type": "string"
},
"ntdomain": {
"type": "string"
},
"pcoipprofilename": {
"type": "string"
},
"proxy": {
"enum": [
"BROWSER",
"NS",
"OFF"
],
"type": "string"
},
"proxyexception": {
"type": "string"
},
"proxylocalbypass": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"rdpclientprofilename": {
"type": "string"
},
"rfc1918": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"securebrowse": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"sesstimeout": {
"type": "integer"
},
"sfgatewayauthtype": {
"enum": [
"domain",
"RSA",
"domainAndRSA",
"SMS",
"smartCard",
"sfAuth",
"sfAuthAndRSA"
],
"type": "string"
},
"smartgroup": {
"type": "string"
},
"socksproxy": {
"type": "string"
},
"splitdns": {
"enum": [
"LOCAL",
"REMOTE",
"BOTH"
],
"type": "string"
},
"splittunnel": {
"enum": [
"ON",
"OFF",
"REVERSE"
],
"type": "string"
},
"spoofiip": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"sslproxy": {
"type": "string"
},
"sso": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"ssocredential": {
"enum": [
"PRIMARY",
"SECONDARY"
],
"type": "string"
},
"storefronturl": {
"type": "string"
},
"transparentinterception": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"useiip": {
"enum": [
"NOSPILLOVER",
"SPILLOVER",
"OFF"
],
"type": "string"
},
"usemip": {
"enum": [
"NS",
"OFF"
],
"type": "string"
},
"useraccounting": {
"type": "string"
},
"wihome": {
"type": "string"
},
"wihomeaddresstype": {
"enum": [
"IPV4",
"IPV6"
],
"type": "string"
},
"windowsautologon": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"windowsclienttype": {
"enum": [
"AGENT",
"PLUGIN"
],
"type": "string"
},
"windowspluginupgrade": {
"enum": [
"Always",
"Essential",
"Never"
],
"type": "string"
},
"winsip": {
"type": "string"
},
"wiportalmode": {
"enum": [
"NORMAL",
"COMPACT"
],
"type": "string"
}
},
"title": "vpnsessionaction",
"type": "object"
} | o31177 |
{
"properties": {
"date_range": {
"properties": {
"end_date": {
"description": "The end date to filter news articles",
"format": "date",
"type": "string"
},
"start_date": {
"description": "The start date to filter news articles",
"format": "date",
"type": "string"
}
},
"type": "object"
},
"keywords": {
"description": "The keywords to search for in news articles",
"items": {
"type": "string"
},
"type": "array"
},
"language": {
"description": "The language of news articles to search",
"type": "string"
}
},
"required": [],
"type": "object"
} | search_news_702265fd |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"bulk_publishing": {
"type": "boolean"
},
"links": {
"type": "object",
"additionalProperties": false,
"properties": {
"facet_groups": {
"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.",
"$ref": "#/definitions/guid_list"
},
"facet_values": {
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups.",
"$ref": "#/definitions/guid_list"
},
"finder": {
"description": "Powers links from content back to finders the content is surfaced on",
"$ref": "#/definitions/guid_list"
},
"lead_organisations": {
"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.",
"$ref": "#/definitions/guid_list"
},
"mainstream_browse_pages": {
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps.",
"$ref": "#/definitions/guid_list"
},
"meets_user_needs": {
"description": "The user needs this piece of content meets.",
"$ref": "#/definitions/guid_list"
},
"ordered_related_items": {
"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.",
"$ref": "#/definitions/guid_list"
},
"ordered_related_items_overrides": {
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation.",
"$ref": "#/definitions/guid_list"
},
"organisations": {
"description": "All organisations linked to this content item. This should include lead organisations.",
"$ref": "#/definitions/guid_list"
},
"original_primary_publishing_organisation": {
"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.",
"$ref": "#/definitions/guid_list"
},
"parent": {
"description": "The parent content item.",
"$ref": "#/definitions/guid_list",
"maxItems": 1
},
"policy_areas": {
"description": "A largely deprecated tag currently only used to power email alerts.",
"$ref": "#/definitions/guid_list"
},
"primary_publishing_organisation": {
"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.",
"$ref": "#/definitions/guid_list",
"maxItems": 1
},
"related": {
"$ref": "#/definitions/guid_list"
},
"suggested_ordered_related_items": {
"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.",
"$ref": "#/definitions/guid_list"
},
"taxons": {
"description": "Prototype-stage taxonomy label for this content item",
"$ref": "#/definitions/guid_list"
},
"topics": {
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps.",
"$ref": "#/definitions/guid_list"
},
"world_locations": {
"$ref": "#/definitions/guid_list"
}
}
},
"previous_version": {
"type": "string"
}
},
"definitions": {
"guid": {
"type": "string",
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$"
},
"guid_list": {
"type": "array",
"items": {
"$ref": "#/definitions/guid"
},
"_uniqueItems": true
}
}
} | o21178 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LimitRangeItem": {
"description": "LimitRangeItem defines a min/max usage limit for any resource that matches on kind.",
"properties": {
"default": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Default resource requirement limit value by resource name if resource limit is omitted.",
"type": "object"
},
"defaultRequest": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.",
"type": "object"
},
"max": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Max usage constraints on this kind by resource name.",
"type": "object"
},
"maxLimitRequestRatio": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.",
"type": "object"
},
"min": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Min usage constraints on this kind by resource name.",
"type": "object"
},
"type": {
"description": "Type of resource that this limit applies to.",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"description": "LimitRangeSpec defines a min/max usage limit for resources that match on kind.",
"properties": {
"limits": {
"description": "Limits is the list of LimitRangeItem objects that are enforced.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LimitRangeItem"
},
"type": [
"array",
"null"
]
}
},
"required": [
"limits"
],
"type": "object"
} | kb_531_Normalized |
{
"properties": {
"Message": {
"description": "Optional. A custom message displayed on the screen in Conference Room Display mode",
"type": "string"
},
"PayloadDescription": {
"default": "Conference Room Display Payload",
"description": "Description of the payload",
"type": "string"
},
"PayloadDisplayName": {
"default": "Conference Room Display Payload",
"description": "Name of the payload",
"type": "string"
},
"PayloadIdentifier": {
"default": "com.apple.SubmitDiagInfo",
"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.conferenceroomdisplay",
"description": "The type of the payload, a reverse dns string",
"type": "string"
},
"PayloadUUID": {
"default": "",
"description": "Unique identifier for the payload (format 01234567-89AB-CDEF-0123-456789ABCDEF)",
"pattern": "^[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}$",
"type": "string"
},
"PayloadVersion": {
"default": 1,
"description": "The version of the whole configuration profile.",
"type": "number"
}
},
"title": "com.apple.conferenceroomdisplay",
"type": "object"
} | o61602 |
{
"properties": {
"accountHolderName": {
"_id": "order:010_accountHolderName",
"maxLength": 200,
"minLength": 1,
"title": "Account Name",
"type": "string"
},
"bankAccount": {
"_id": "order:040_bankAccount",
"maxLength": 20,
"minLength": 1,
"title": "Account Number",
"type": "string"
},
"currencies": {
"_id": "order:050_currencies",
"items": {
"enum": [
{
"enum": [
"USD"
],
"title": "$ (US)",
"type": "string"
},
{
"enum": [
"GBP"
],
"title": "\u00a3 (Sterling)",
"type": "string"
}
]
},
"minItems": 1,
"title": "Permitted currencies",
"type": "array"
},
"iban": {
"_id": "order:020_iban",
"description": "e.g. GB29 NWBK 6016 1331 9268 19. Exact format is country-specific.",
"maxLength": 39,
"minLength": 12,
"pattern": "^[A-Z]{2}[0-9]{2}(?: ?[0-9A-Z]{4}){2,6}? ?[0-9A-Z]{0,4}$",
"title": "IBAN",
"type": "string"
},
"name": {
"_id": "order:005_name",
"description": "A short name to identify this payment option e.g. in lists",
"maxLength": 20,
"minLength": 1,
"title": "Payment Option Name",
"type": "string"
},
"notes": {
"_id": "order:999_notes",
"description": "If the payee needs any additional information e.g. a payment reference to provide, please mention it here.",
"format": "textarea",
"title": "Notes",
"type": "string"
},
"sortCode": {
"_id": "order:030_sortCode",
"description": "Also known as Transit Code, IFSC, MFO, Clearing Number",
"maxLength": 10,
"minLength": 1,
"title": "Bank Code/Sort Code",
"type": "string"
},
"type": {
"_id": "order:007_type",
"description": "Type of payment",
"enum": [
"Online",
"Bank",
"InPerson"
],
"readonly": true,
"title": "Type",
"type": "string"
}
},
"required": [
"name",
"accountHolderName"
],
"type": "object"
} | o28235 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1_RuleWithOperations": {
"description": "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.",
"properties": {
"apiGroups": {
"description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"apiVersions": {
"description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"operations": {
"description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, or * for all operations. If '*' is present, the length of the slice must be one. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"resources": {
"description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"scope": {
"description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1_ServiceReference": {
"description": "ServiceReference holds a reference to Service.legacy.k8s.io",
"properties": {
"name": {
"description": "`name` is the name of the service. Required",
"type": "string"
},
"namespace": {
"description": "`namespace` is the namespace of the service. Required",
"type": "string"
},
"path": {
"description": "`path` is an optional URL path which will be sent in any request to this service.",
"type": "string"
},
"port": {
"_format": "int32",
"description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).",
"type": "integer"
}
},
"required": [
"namespace",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1_ValidatingWebhook": {
"description": "ValidatingWebhook describes an admission webhook and the resources and operations it applies to.",
"properties": {
"admissionReviewVersions": {
"description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy.",
"items": {
"type": "string"
},
"type": "array"
},
"clientConfig": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1_WebhookClientConfig",
"description": "ClientConfig defines how to communicate with the hook. Required"
},
"failurePolicy": {
"description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.",
"type": "string"
},
"matchPolicy": {
"description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Equivalent\"",
"type": "string"
},
"name": {
"description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.",
"type": "string"
},
"namespaceSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything."
},
"objectSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything."
},
"rules": {
"description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1_RuleWithOperations"
},
"type": "array"
},
"sideEffects": {
"description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.",
"type": "string"
},
"timeoutSeconds": {
"_format": "int32",
"description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 10 seconds.",
"type": "integer"
}
},
"required": [
"name",
"clientConfig",
"sideEffects",
"admissionReviewVersions"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1_WebhookClientConfig": {
"description": "WebhookClientConfig contains the information to make a TLS connection with the webhook",
"properties": {
"caBundle": {
"_format": "byte",
"description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.",
"type": "string"
},
"service": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1_ServiceReference",
"description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`."
},
"url": {
"description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.",
"type": "string"
}
},
"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_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it.",
"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": [
"admissionregistration.k8s.io/v1"
],
"type": [
"string",
"null"
]
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"ValidatingWebhookConfiguration"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata."
},
"webhooks": {
"description": "Webhooks is a list of webhooks and the affected resources and operations.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1_ValidatingWebhook"
},
"type": [
"array",
"null"
],
"x-kubernetes-patch-merge-key": "name",
"x-kubernetes-patch-strategy": "merge"
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "admissionregistration.k8s.io",
"kind": "ValidatingWebhookConfiguration",
"version": "v1"
}
]
} | kb_1097_Normalized |
{
"properties": {
"Static": {
"readonly": true,
"type": "boolean"
},
"active": {
"readonly": true,
"type": "boolean"
},
"advertise": {
"enum": [
"DISABLED",
"ENABLED"
],
"type": "string"
},
"bgp": {
"readonly": true,
"type": "boolean"
},
"connected": {
"readonly": true,
"type": "boolean"
},
"cost": {
"type": "integer"
},
"data": {
"readonly": true,
"type": "boolean"
},
"data1": {
"enum": [
"ENABLED",
"DISABLED"
],
"readonly": true,
"type": "string"
},
"detail": {
"type": "boolean"
},
"distance": {
"type": "integer"
},
"dynamic": {
"readonly": true,
"type": "boolean"
},
"failedprobes": {
"readonly": true,
"type": "integer"
},
"flags": {
"readonly": true,
"type": "boolean"
},
"gateway": {
"type": "string"
},
"gatewayname": {
"readonly": true,
"type": "string"
},
"isis": {
"readonly": true,
"type": "boolean"
},
"monitor": {
"type": "string"
},
"monstatcode": {
"readonly": true,
"type": "integer"
},
"monstatparam1": {
"readonly": true,
"type": "integer"
},
"monstatparam2": {
"readonly": true,
"type": "integer"
},
"monstatparam3": {
"readonly": true,
"type": "integer"
},
"msr": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"network": {
"type": "string"
},
"ospfv3": {
"readonly": true,
"type": "boolean"
},
"ownergroup": {
"type": "string"
},
"permanent": {
"readonly": true,
"type": "boolean"
},
"raroute": {
"readonly": true,
"type": "boolean"
},
"retain": {
"readonly": true,
"type": "integer"
},
"rip": {
"readonly": true,
"type": "boolean"
},
"routeowners": {
"enum": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17",
"18",
"19",
"20",
"21",
"22",
"23",
"24",
"25",
"26",
"27",
"28",
"29",
"30",
"31"
],
"readonly": true,
"type": "object"
},
"routetype": {
"enum": [
"CONNECTED",
"STATIC",
"DYNAMIC",
"OSPF",
"ISIS",
"BGP",
"RIP",
"ND-RA-ROUTE",
"FIB6"
],
"type": "string"
},
"state": {
"readonly": true,
"type": "integer"
},
"td": {
"type": "integer"
},
"totalfailedprobes": {
"readonly": true,
"type": "integer"
},
"totalprobes": {
"readonly": true,
"type": "integer"
},
"type": {
"readonly": true,
"type": "boolean"
},
"vlan": {
"type": "integer"
},
"vxlan": {
"type": "integer"
},
"weight": {
"type": "integer"
}
},
"title": "route6",
"type": "object"
} | o30699 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"userId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"creationDate": {
"type": "string",
"format": "date-time"
},
"lastUpdated": {
"type": "string",
"format": "date-time"
},
"passwordLastUpdated": {
"type": "string",
"format": "date-time"
},
"email": {
"type": "string",
"format": "email",
"maxLength": 1024
},
"firstName": {
"type": "string",
"minLength": 1,
"maxLength": 1024
},
"lastName": {
"type": "string",
"minLength": 1,
"maxLength": 1024
},
"companyName": {
"type": "string",
"maxLength": 1024
},
"title": {
"type": "string",
"maxLength": 1024
},
"phoneNumber": {
"type": "string",
"maxLength": 1024
},
"location": {
"type": "string",
"maxLength": 1024
},
"url": {
"type": "string",
"maxLength": 1024
},
"tokenCutoff": {
"type": "string",
"format": "date-time"
},
"emailVerified": {
"type": "boolean"
},
"twoFactorAuthEnabled": {
"type": "boolean"
},
"fullName": {
"type": "string"
},
"githubName": {
"type": "string"
},
"twitterName": {
"type": "string"
},
"avatarUrl": {
"type": "string",
"format": "url"
},
"limits": {
"apitoken": {
"type": "number"
},
"application": {
"type": "number"
},
"applicationkey": {
"type": "number"
},
"dashboard": {
"type": "number"
},
"datatable": {
"type": "number"
},
"device": {
"type": "number"
},
"devicerecipe": {
"type": "number"
},
"experiencedomain": {
"type": "number"
},
"experienceendpoint": {
"type": "number"
},
"experiencegroup": {
"type": "number"
},
"experienceslug": {
"type": "number"
},
"experienceuser": {
"type": "number"
},
"experienceversion": {
"type": "number"
},
"experienceview": {
"type": "number"
},
"file": {
"type": "number"
},
"flow": {
"type": "number"
},
"integration": {
"type": "number"
},
"notebook": {
"type": "number"
},
"webhook": {
"type": "number"
},
"dataTTL": {
"type": "number"
},
"payload": {
"type": "number"
},
"notebookMinutesPerRun": {
"type": "number"
},
"notebookMinutesPerMonth": {
"type": "number"
},
"notebookInParallel": {
"type": "number"
}
},
"recentDashboards": {
"title": "Recent Item List",
"description": "Schema for an array of recent items",
"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
}
}
}
}
}
},
"recentApplications": {
"title": "Recent Item List",
"description": "Schema for an array of recent items",
"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
}
}
}
}
}
},
"recentOrganizations": {
"title": "Recent Item List",
"description": "Schema for an array of recent items",
"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
}
}
}
}
}
},
"summary": {
"type": "object",
"properties": {
"apiTokenCount": {
"type": "number"
},
"appCount": {
"type": "number"
},
"dashCount": {
"type": "number"
},
"dataTableCount": {
"type": "number"
},
"deviceCount": {
"type": "number"
},
"deviceRecipeCount": {
"type": "number"
},
"experienceEndpointCount": {
"type": "number"
},
"experienceGroupCount": {
"type": "number"
},
"experienceSlugCount": {
"type": "number"
},
"experienceUserCount": {
"type": "number"
},
"experienceVersionCount": {
"type": "number"
},
"experienceViewCount": {
"type": "number"
},
"fileCount": {
"type": "number"
},
"flowCount": {
"type": "number"
},
"integrationCount": {
"type": "number"
},
"keyCount": {
"type": "number"
},
"orgCount": {
"type": "number"
},
"payloadCount": {
"title": "Payload Counts",
"description": "Schema for the result of a payload count request",
"type": "object",
"properties": {
"mqttOut": {
"type": "object",
"patternProperties": {
".*": {
"type": "number"
}
}
},
"mqttIn": {
"type": "object",
"patternProperties": {
".*": {
"type": "number"
}
}
},
"dataTable": {
"type": "object",
"patternProperties": {
".*": {
"type": "number"
}
}
},
"deviceState": {
"type": "object",
"patternProperties": {
".*": {
"type": "number"
}
}
},
"deviceCommand": {
"type": "object",
"patternProperties": {
".*": {
"type": "number"
}
}
},
"webhook": {
"type": "object",
"patternProperties": {
".*": {
"type": "number"
}
}
},
"timer": {
"type": "object",
"patternProperties": {
".*": {
"type": "number"
}
}
},
"event": {
"type": "object",
"patternProperties": {
".*": {
"type": "number"
}
}
},
"virtualButton": {
"type": "object",
"patternProperties": {
".*": {
"type": "number"
}
}
},
"deviceConnect": {
"type": "object",
"patternProperties": {
".*": {
"type": "number"
}
}
},
"deviceDisconnect": {
"type": "object",
"patternProperties": {
".*": {
"type": "number"
}
}
},
"endpoint": {
"type": "object",
"patternProperties": {
".*": {
"type": "number"
}
}
},
"integration": {
"type": "object",
"patternProperties": {
".*": {
"type": "number"
}
}
}
}
},
"storageStats": {
"type": "object",
"properties": {
"count": {
"type": "number"
},
"size": {
"type": "number"
}
}
},
"webhookCount": {
"type": "number"
}
}
},
"currentPeriodStart": {
"type": "string",
"format": "date-time"
},
"currentPeriodEnd": {
"type": "string",
"format": "date-time"
},
"ssoLinked": {
"type": "boolean"
}
}
} | o9926 |
{
"properties": {
"client_name": {
"description": "The name of the client",
"type": "string"
},
"items": {
"items": {
"properties": {
"description": {
"description": "The description of the item",
"type": "string"
},
"price": {
"description": "The price of the item",
"type": "number"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
}
},
"required": [
"description",
"price",
"quantity"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"client_name",
"items"
],
"type": "object"
} | generate_invoice_f5e3452e |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Pantry and role access level that user has",
"title": "User role in pantry",
"type": "object",
"properties": {
"pantryId": {
"description": "Unique ID of food pantry",
"type": "string",
"minLength": 1
},
"userId": {
"description": "Unique ID of user",
"type": "string",
"minLength": 1
},
"role": {
"description": "Role of the user",
"type": "string",
"enum": [
"administrator",
"contributor",
"viewer"
]
},
"createdAt": {
"description": "[Output only] Creation time of the user role",
"type": "string",
"format": "date-time",
"minLength": 1
},
"createdBy": {
"description": "[Output only] Creator of the user role",
"type": "string",
"minLength": 1
},
"updatedAt": {
"description": "[Output only] Last modification time of the user role",
"type": "string",
"format": "date-time",
"minLength": 1
},
"updatedBy": {
"description": "[Output only] User to last modify the user role",
"type": "string",
"minLength": 1
}
},
"required": [
"pantryId",
"role"
]
} | o53616 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"items": {
"properties": {
"description": {
"description": "The description of the item",
"type": "string"
},
"price": {
"description": "The price per unit of the item",
"type": "number"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
}
},
"required": [
"description",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"items"
],
"type": "object"
} | generate_invoice_5996285c |
{
"definitions": {
"timestamp": {
"description": "A timestamp",
"example": "2016-12-01T05:44:59.223Z",
"format": "date-time",
"type": "string"
},
"uuid": {
"description": "A UUID",
"example": "250c48ca-4d03-45d7-9814-03b18042866f",
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[89abAB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}$",
"type": "string"
}
},
"description": "Handy types to DRY things up a little",
"title": "Types",
"type": "object",
"properties": {
"timestamp": {
"$ref": "#/definitions/timestamp"
},
"uuid": {
"$ref": "#/definitions/uuid"
}
},
"required": [
"timestamp",
"uuid"
]
} | o35168 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"title": "Wangscape tile groups schema",
"description": "Lists Wangscape output tiles with locations, grouped by corner terrain types.",
"patternProperties": {
"^[0-9a-zA-Z_-]+\\.[0-9a-zA-Z_-]+\\.[0-9a-zA-Z_-]+\\.[0-9a-zA-Z_-]+$": {
"type": "array",
"title": "Tile group schema",
"description": "Lists the locations of all output tiles with a given sequence of corner terrain types.",
"items": {
"type": "object",
"title": "Tile location schema",
"description": "Specifies the location of a Wangscape output tile.",
"properties": {
"filename": {
"title": "Specifies the filename of the tileset containing the tile.",
"description": "",
"type": "string"
},
"x": {
"title": "Tile x offset schema",
"description": "Specifies the horizontal offset, in pixels, of the tile within the tileset.",
"type": "integer",
"minimum": 0
},
"y": {
"title": "Tile y offset schema",
"description": "Specifies the vertical offset, in pixels, of the tile within the tileset.",
"type": "integer",
"minimum": 0
}
},
"additionalProperties": false,
"required": [
"filename",
"x",
"y"
]
},
"minItems": 1
}
}
} | o74562 |
{
"properties": {
"date_range": {
"properties": {
"end_date": {
"description": "The end date of the news articles",
"format": "date",
"type": "string"
},
"start_date": {
"description": "The start date of the news articles",
"format": "date",
"type": "string"
}
},
"type": "object"
},
"language": {
"description": "The language of the news articles",
"type": "string"
},
"query": {
"description": "The search query for the news",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
} | search_news_b53cc6ae |
{
"title": "Invocation manifest for Task tsv Converter",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"config": {
"type": "object",
"properties": {
"Filename": {
"type": "string"
}
}
},
"inputs": {
"type": "object",
"properties": {
"file": {
"type": "object",
"properties": {
"type": {
"enum": [
"text",
"tabular data"
]
}
}
},
"LogConfig": {
"type": "object",
"properties": {
"base": {
"type": "string"
},
"found": {
"type": "boolean"
},
"value": {}
},
"required": [
"base",
"found",
"value"
]
}
},
"required": [
"file",
"LogConfig"
]
}
},
"required": [
"config",
"inputs"
]
} | o41362 |
{
"properties": {
"alertonly": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"comment": {
"type": "string"
},
"isautodeployed": {
"enum": [
"AUTODEPLOYED",
"NOTAUTODEPLOYED"
],
"type": "string"
},
"name": {
"type": "string"
},
"state": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
},
"xmlblockdtd": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlblockexternalentities": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlblockpi": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmldosurl": {
"type": "string"
},
"xmlmaxattributenamelength": {
"type": "integer"
},
"xmlmaxattributenamelengthcheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlmaxattributes": {
"type": "integer"
},
"xmlmaxattributescheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlmaxattributevaluelength": {
"type": "integer"
},
"xmlmaxattributevaluelengthcheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlmaxchardatalength": {
"type": "integer"
},
"xmlmaxchardatalengthcheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlmaxelementchildren": {
"type": "integer"
},
"xmlmaxelementchildrencheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlmaxelementdepth": {
"type": "integer"
},
"xmlmaxelementdepthcheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlmaxelementnamelength": {
"type": "integer"
},
"xmlmaxelementnamelengthcheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlmaxelements": {
"type": "integer"
},
"xmlmaxelementscheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlmaxentityexpansiondepth": {
"type": "integer"
},
"xmlmaxentityexpansiondepthcheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlmaxentityexpansions": {
"type": "integer"
},
"xmlmaxentityexpansionscheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlmaxfilesize": {
"type": "integer"
},
"xmlmaxfilesizecheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlmaxnamespaces": {
"type": "integer"
},
"xmlmaxnamespacescheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlmaxnamespaceurilength": {
"type": "integer"
},
"xmlmaxnamespaceurilengthcheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlmaxnodes": {
"type": "integer"
},
"xmlmaxnodescheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlmaxsoaparrayrank": {
"type": "integer"
},
"xmlmaxsoaparraysize": {
"type": "integer"
},
"xmlminfilesize": {
"type": "integer"
},
"xmlminfilesizecheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"xmlsoaparraycheck": {
"enum": [
"ON",
"OFF"
],
"type": "string"
}
},
"title": "appfwprofile_xmldosurl_binding",
"type": "object"
} | o30022 |
{
"additionalProperties": true,
"properties": {
"vera__events__c": {
"_id": "/vera__events__c",
"additionalProperties": true,
"properties": {
"vera__boats__c": {
"_id": "/vera__events__c/vera__boats__c",
"items": {
"_id": "/vera__events__c/vera__boats__c/0",
"additionalProperties": true,
"properties": {
"name": {
"_id": "/vera__events__c/vera__boats__c/0/name",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"vera__event_name__c": {
"_id": "/vera__events__c/vera__event_name__c",
"type": "string"
}
},
"required": [
"vera__event_name__c"
],
"type": "object"
}
},
"required": [
"vera__events__c"
],
"type": "object"
} | o78734 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the shape",
"type": "number"
},
"height": {
"description": "The height of the shape",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of geometric shape (e.g. square, circle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_256c8d1a |
{
"title": "Funscript",
"description": "Funjack's haptic script format",
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.github.com/funjack/launchcontrol/master/schemas/funscript.schema.json",
"type": "object",
"properties": {
"version": {
"description": "Funscript version",
"type": "string"
},
"range": {
"description": "Range of moment to use in percent",
"type": "integer",
"minimum": 0,
"maximum": 100
},
"inverted": {
"description": "Invert position values (0=100, 100=0)",
"type": "boolean"
},
"actions": {
"description": "Script actions",
"type": "array",
"items": {
"description": "An action",
"type": "object",
"properties": {
"pos": {
"description": "Position in percent",
"type": "integer",
"minimum": 0,
"maximum": 100
},
"at": {
"description": "Time to be at position in milliseconds",
"type": "integer",
"minimum": 0
}
},
"required": [
"pos",
"at"
]
}
}
},
"required": [
"actions"
]
} | o42186 |
{
"oneOf": [
{
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"resource_type": {
"enum": [
"asset",
"file"
],
"type": "string"
}
},
"required": [
"resource_type",
"path"
]
},
{
"additionalProperties": false,
"properties": {
"family": {
"type": "string"
},
"style": {
"type": "string"
}
},
"required": [
"style"
]
}
],
"type": "object"
} | o89639 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"device_iot": {
"type": "object",
"properties": {
"cat": {
"type": "integer"
},
"cby": {
"type": "string"
},
"tid": {
"type": "string"
}
},
"required": [
"tid",
"cby",
"cat"
]
},
"device_org_id": {
"type": "object",
"properties": {
"ref": {
"type": "string"
}
},
"required": [
"ref"
]
},
"deviceTest": {
"allOf": [
{
"$ref": "#/definitions/device"
},
{
"properties": {
"test": {
"type": "string"
}
}
}
],
"type": "object"
},
"device_location": {
"id": "/properties/location",
"type": "object",
"properties": {
"coordinates": {
"type": "array",
"items": {
"type": "number"
}
},
"type": {
"type": "string"
}
},
"required": [
"type",
"coordinates"
]
},
"device": {
"location": {
"$ref": "#/definitions/device_location"
},
"type": "object",
"properties": {
"lbl": {
"type": "string"
},
"id": {
"type": "string"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/deviceTest"
}
]
}
| o48116 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"$schema-location": "Entity-Schema.json",
"name": "Charm-Schema",
"version": "1",
"author": "denis",
"description": "Represent a Juju Charm",
"associated-tool": "Juju-CLI",
"type": "object",
"properties": {
"$schema-location": {
"enum": [
"Charm-Schema.json"
]
},
"id": {
"type": "string"
},
"name": {
"type": "string",
"default-value": "",
"description": "name of the Charm"
},
"summary": {
"type": "string",
"default-value": "",
"description": "summarised description of the Charm"
},
"description": {
"type": "string",
"default-value": "",
"description": "human readable description of the charm"
},
"maintainer": {
"type": "string",
"default-value": "",
"description": "maintainer of the Charm"
},
"category": {
"type": "string",
"default-value": "",
"description": ""
},
"repository": {
"type": "string",
"default-value": "local",
"description": ""
}
},
"required": [
"id",
"name",
"category",
"repository"
]
}
| o35773 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"kind": {
"type": "string",
"default": "resp",
"readonly": "true",
"description": "Defines that the message is a response"
},
"reqId": {
"type": "string",
"description": "The ID of the request that originated this response",
"minLength": 1,
"maxLength": 64,
"default": "0"
},
"type": {
"description": "Contains one of the APIs response type names",
"type": "string"
},
"code": {
"type": "integer",
"description": "Response code according to the HTTP status codes standard"
},
"body": {}
},
"required": [
"kind",
"reqId",
"code",
"type",
"body"
]
} | o9704 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"items": {
"additionalProperties": false,
"properties": {
"age": {
"type": "number"
},
"gender": {
"type": "string"
},
"id": {
"type": "number"
},
"items": {
"items": {
"additionalProperties": false,
"properties": {
"count": {
"type": "number"
},
"desc": {
"type": "string"
},
"name": {
"type": "string"
},
"sale": {
"type": "boolean"
}
},
"required": [
"count",
"desc",
"name",
"sale"
],
"type": "object"
},
"type": "array"
},
"name": {
"type": "string"
},
"parents": {
"additionalProperties": false,
"properties": {
"father": {
"type": "string"
},
"mother": {
"type": "string"
}
},
"required": [
"father",
"mother"
],
"type": "object"
},
"voice_actors": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"age",
"gender",
"id",
"items",
"name",
"parents",
"voice_actors"
],
"type": "object"
},
"title": "masterdata.json",
"type": "array"
} | o75589 |
{
"properties": {
"latitude": {
"description": "The latitude of the location",
"type": "number"
},
"longitude": {
"description": "The longitude of the location",
"type": "number"
},
"radius": {
"description": "The radius in meters to search for nearby places",
"type": "integer"
},
"types": {
"description": "The types of places to include in the search",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"latitude",
"longitude",
"radius"
],
"type": "object"
} | find_nearby_places_73939eda |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.",
"properties": {
"maxUnavailable": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\"."
},
"minAvailable": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying \"100%\"."
},
"selector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "Label query over pods whose evictions are managed by the disruption budget."
}
},
"type": "object"
} | kb_697_Normalized |
{
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the rectangle or triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"shape": {
"description": "The shape for area calculation",
"enum": [
"circle",
"rectangle",
"triangle"
],
"type": "string"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"shape"
],
"type": "object"
} | calculate_area_bfe5d103 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Test configuration",
"type": "object",
"properties": {
"spec": {
"type": "object",
"properties": {
"replicas": {
"type": "integer",
"minimum": 1
}
}
}
},
"required": [
"spec"
]
}
| o39871 |
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Schema for template meta data (aka front matter)",
"type": "object",
"properties": {
"target": {
"title": "Target path to write the configuration file to (defaults to template name minus extension)",
"description": "Can be an abolute or relative path that will be resolved relative to the directory confgen is called in (i.e. not relative to the template file).",
"type": "string"
},
"chmod": {
"title": "File permissions to apply to target file (chmod mode)",
"description": "Permissions must be given in decimal notation (common values are '644', '755', '700' etc.).\nInternally, they will be converted to their octal representation, which means that decimal '777' will actually apply octal '0777'.",
"type": "number",
"min": 0,
"max": 777
},
"reload": {
"title": "A command string to execute after writing the configuration file",
"type": "string"
},
"description": {
"title": "An optional descriptive text for template authors",
"type": "string"
}
},
"required": [],
"additionalProperties": true
} | o32736 |
{
"allOf": [
{
"$ref": "#/definitions/service"
},
{
"$ref": "#/definitions/constraints"
}
],
"definitions": {
"constraints": {
"_id": "#/definitions/constraints",
"anyOf": [
{
"not": {
"required": [
"image"
]
},
"required": [
"build"
]
},
{
"not": {
"anyOf": [
{
"required": [
"build"
]
},
{
"required": [
"dockerfile"
]
}
]
},
"required": [
"image"
]
}
]
},
"list_of_strings": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"list_or_dict": {
"oneOf": [
{
"additionalProperties": false,
"patternProperties": {
".+": {
"format": "bool-value-in-mapping",
"type": [
"string",
"number",
"boolean",
"null"
]
}
},
"type": "object"
},
{
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
}
]
},
"service": {
"_id": "#/definitions/service",
"additionalProperties": false,
"dependencies": {
"memswap_limit": [
"mem_limit"
]
},
"properties": {
"build": {
"type": "string"
},
"cap_add": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"cap_drop": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"cgroup_parent": {
"type": "string"
},
"command": {
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"container_name": {
"type": "string"
},
"cpu_quota": {
"type": [
"number",
"string"
]
},
"cpu_shares": {
"type": [
"number",
"string"
]
},
"cpuset": {
"type": "string"
},
"devices": {
"items": {
"type": "string"
},
"type": "array",
"_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": {
"$ref": "#/definitions/list_or_dict"
},
"expose": {
"items": {
"format": "expose",
"type": [
"string",
"number"
]
},
"type": "array",
"_uniqueItems": true
},
"extends": {
"oneOf": [
{
"type": "string"
},
{
"additionalProperties": false,
"properties": {
"file": {
"type": "string"
},
"service": {
"type": "string"
}
},
"required": [
"service"
],
"type": "object"
}
]
},
"external_links": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"extra_hosts": {
"$ref": "#/definitions/list_or_dict"
},
"hostname": {
"type": "string"
},
"image": {
"type": "string"
},
"ipc": {
"type": "string"
},
"labels": {
"$ref": "#/definitions/list_or_dict"
},
"links": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"logging": {
"additionalProperties": false,
"properties": {
"driver": {
"type": "string"
},
"options": {
"type": "object"
}
},
"type": "object"
},
"mac_address": {
"type": "string"
},
"mem_limit": {
"type": [
"number",
"string"
]
},
"memswap_limit": {
"type": [
"number",
"string"
]
},
"net": {
"type": "string"
},
"pid": {
"type": [
"string",
"null"
]
},
"ports": {
"items": {
"format": "ports",
"type": [
"string",
"number"
]
},
"type": "array",
"_uniqueItems": true
},
"privileged": {
"type": "boolean"
},
"read_only": {
"type": "boolean"
},
"restart": {
"type": "string"
},
"security_opt": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"stdin_open": {
"type": "boolean"
},
"tty": {
"type": "boolean"
},
"ulimits": {
"patternProperties": {
"^[a-z]+$": {
"oneOf": [
{
"type": "integer"
},
{
"additionalProperties": false,
"properties": {
"hard": {
"type": "integer"
},
"soft": {
"type": "integer"
}
},
"required": [
"soft",
"hard"
],
"type": "object"
}
]
}
},
"type": "object"
},
"user": {
"type": "string"
},
"volume_driver": {
"type": "string"
},
"volumes": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"volumes_from": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"working_dir": {
"type": "string"
}
},
"type": "object"
},
"string_or_list": {
"oneOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/list_of_strings"
}
]
}
},
"type": "object"
} | o55657 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"id": "https://json.schemastore.org/tmuxinator.json",
"properties": {
"defaults": {
"type": "object"
},
"name": {
"oneOf": [
{
"type": "number"
},
{
"type": "string",
"minLength": 1
}
]
},
"project_name": {
"description": "Name of project root (deprecated, use `name`)",
"type": "string"
},
"root": {
"type": "string"
},
"project_root": {
"description": "Name of project root (deprecated, use `root`)",
"type": "string"
},
"socket_name": {
"description": "Optional tmux socket.",
"type": "string"
},
"on_project_start": {
"description": "Runs on project start, always.",
"type": "string"
},
"on_project_first_start": {
"description": "Run on project start, the first time.",
"type": "string"
},
"on_project_restart": {
"description": "Run on project start, after the first time.",
"type": "string"
},
"on_project_exit": {
"description": "Run on project exit (detaching from tmux session).",
"type": "string"
},
"on_project_stop": {
"description": "Run on project stop.",
"type": "string"
},
"pre": {
"description": "Runs before everything (deprecated).",
"type": "string"
},
"post": {
"description": "Runs after everything (deprecated).",
"type": "string"
},
"rbenv": {
"description": "Specify version for rbenv (deprecated)",
"type": "string"
},
"cli_args": {
"description": "Pass arguments to tmux (deprecated)",
"type": "string"
},
"tabs": {
"description": "Specify tabs (deprecated)",
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "object"
}
]
}
},
"pre_window": {
"description": "Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.",
"type": "string"
},
"tmux_options": {
"description": "Pass command line options to tmux. Useful for specifying a different tmux.conf.",
"type": "string"
},
"tmux_command": {
"description": "Change the command to call tmux. This can be used by derivatives/wrappers like byobu.",
"type": "string"
},
"startup_window": {
"description": "Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used.",
"type": "string"
},
"startup_pane": {
"description": "Specifies (by index) which pane of the specified window will be selected on project startup. If not set, the first pane is used.",
"type": "string"
},
"attach": {
"description": "Controls whether the tmux session should be attached to automatically. Defaults to true.",
"type": "boolean",
"default": true
},
"tmux_detached": {
"description": "Deprecated. Use `attach`",
"type": "boolean"
},
"windows": {
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"pre": {
"type": "array",
"items": {
"type": "string"
}
},
"layout": {
"description": "The layout setting gets handed down to tmux directly, so you can choose from one of the five tmux standard layouts or specify your own.",
"type": "string"
},
"panes": {
"description": "Panes are optional and are children of window entries.",
"type": "array",
"items": {
"oneOf": [
{
"type": "number"
},
{
"type": "string",
"minLength": 1
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
}
}
]
}
}
},
"type": "object"
}
| tmuxinator |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"_elements"
],
"properties": {
"_attributes": {
"type": "object"
},
"_elements": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"password",
"gid",
"users"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"password": {
"type": "string"
},
"gid": {
"type": [
"integer",
"null"
],
"minimum": 0
},
"users": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
}
}
}
}
}
}
} | o25711 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"info-add-remove": {
"type": "object",
"properties": {
"set": {
"type": "object",
"minProperties": 1
},
"delete": {
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"info-replace": {
"type": "object",
"properties": {
"replace": {
"type": "object"
}
},
"additionalProperties": false
},
"info-update-input": {
"description": "Helper endpoint for editing an object's info key",
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/info-add-remove"
},
{
"$ref": "#/definitions/info-replace"
}
]
}
},
"properties": {
"info-add-remove": {
"$ref": "#/definitions/info-add-remove"
},
"info-replace": {
"$ref": "#/definitions/info-replace"
},
"info-update-input": {
"$ref": "#/definitions/info-update-input"
}
},
"required": [
"info-add-remove",
"info-replace",
"info-update-input"
]
} | o74185 |
{
"properties": {
"end_datetime": {
"description": "The end datetime of the event",
"format": "date-time",
"type": "string"
},
"location": {
"description": "The location of the event",
"type": "string"
},
"start_datetime": {
"description": "The start datetime of the event",
"format": "date-time",
"type": "string"
},
"title": {
"description": "The title of the event",
"type": "string"
}
},
"required": [
"title",
"start_datetime",
"end_datetime"
],
"type": "object"
} | create_calendar_event_1ac25f9d |
{
"properties": {
"person1": {
"properties": {
"date_of_birth": {
"description": "The date of birth of the first person",
"format": "date",
"type": "string"
},
"name": {
"description": "The name of the first person",
"type": "string"
}
},
"required": [
"name",
"date_of_birth"
],
"type": "object"
},
"person2": {
"properties": {
"date_of_birth": {
"description": "The date of birth of the second person",
"format": "date",
"type": "string"
},
"name": {
"description": "The name of the second person",
"type": "string"
}
},
"required": [
"name",
"date_of_birth"
],
"type": "object"
}
},
"required": [
"person1",
"person2"
],
"type": "object"
} | calculate_age_difference_d1ef7543 |
{
"title": "Deactivate maintenance mode",
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"devices"
],
"properties": {
"devices": {
"type": "array",
"description": "List of device names",
"items": {
"type": "string"
}
}
}
} | o71312 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.