json_schema
stringlengths 43
1.28M
| unique_id
stringlengths 2
41
|
---|---|
{
"properties": {
"departure_date": {
"description": "The departure date",
"format": "date",
"type": "string"
},
"destination": {
"description": "The destination airport",
"type": "string"
},
"origin": {
"description": "The origin airport",
"type": "string"
},
"passengers": {
"description": "The number of passengers",
"type": "integer"
},
"return_date": {
"description": "The return date (optional)",
"format": "date",
"type": "string"
}
},
"required": [
"origin",
"destination",
"departure_date",
"passengers"
],
"type": "object"
} | book_flight_17e661bc |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "JSON schema for Prisma prisma.yml files",
"definitions": {
"subscription": {
"description": "A piece of code that you should run."
}
},
"properties": {
"subscriptions": {
"description": "All server-side subscriptions",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/subscription"
}
}
}
} | o90969 |
{
"properties": {
"AutoFilterEnabled": {
"default": false,
"description": "Optional. If true, automatic filtering is enabled. This function evaluates each web page as it is\n\t\t\t\tloaded and attempts to identify and block content not suitable for children.\n\t\t\t\tThe search algorithm is complex and may vary from release to release, but it is basically looking for\n\t\t\t\tadult language, i.e. swearing and sexually explicit language. The default value is false.",
"type": "boolean"
},
"BlacklistedURLs": {
"description": "Each entry contains a URL that will not be accessible.",
"items": {
"type": "string"
},
"type": "array"
},
"FilterBrowsers": {
"default": true,
"description": "FilterBrowsers",
"type": "number"
},
"FilterSockets": {
"default": true,
"description": "FilterSockets",
"type": "number"
},
"FilterType": {
"default": "BuiltIn",
"description": "Type of filter, built-in or plug-in",
"type": "string"
},
"Organization": {
"description": "An Organization string that will be passed to the 3rd party plugin.",
"type": "string"
},
"Password": {
"description": "A password for the service.",
"type": "string"
},
"PayloadCertificateUUID": {
"description": "UUID of the certificate payload containing an identity used as the client credential",
"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"
},
"PayloadDescription": {
"default": "Configures content filtering settings",
"description": "Description of the payload",
"type": "string"
},
"PayloadDisplayName": {
"default": "Web Content Filter",
"description": "Name of the payload",
"type": "string"
},
"PayloadIdentifier": {
"default": "com.apple.webcontent-filter",
"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.webcontent-filter",
"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"
},
"PermittedURLs": {
"description": "Used only when AutoFilterEnabled is true. Otherwise, this field is ignored.\n\t\t\t\tEach entry contains a URL that is accessible whether the automatic filter allows access or not.",
"items": {
"type": "string"
},
"type": "array"
},
"PluginBundleID": {
"description": "The Bundle ID of the plugin that provides filtering service.",
"type": "string"
},
"ServerAddress": {
"description": " Server address (may be IP address, hostname, or URL).",
"type": "string"
},
"UserDefinedName": {
"description": "A string which will be displayed for this filtering configuration.",
"type": "string"
},
"UserName": {
"description": "A username for the service.",
"type": "string"
},
"WhitelistedBookmarks": {
"description": "Optional. If present, these URLs are added to the browser\u2019s bookmarks, and the user is not allowed to visit any sites other than these. The number of these URLs should be limited to about 500.",
"items": {
"description": "Whitelisted Bookmarks Item",
"properties": {
"BookmarkPath": {
"description": "Optional. The folder into which the bookmark should be added in Safari\u2014/Interesting Topic Pages/Biology/, for example.\n\t\t\t\t\t\t\t\tIf absent, the bookmark is added to the default bookmarks directory.",
"type": "string"
},
"Title": {
"description": "The title of the bookmark.",
"type": "string"
},
"URL": {
"description": "URL of the whitelisted bookmark.",
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"title": "com.apple.webcontent-filter",
"type": "object"
} | o61648 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"year": {
"type": "integer"
},
"name": {
"type": "string"
},
"current": {
"type": "boolean"
}
},
"required": [
"id",
"year",
"name",
"current"
]
}
} | o13683 |
{
"description": "A Person from Acme's catalog",
"ids": [
"id"
],
"localized": [
"firstName",
"lastName"
],
"properties": {
"age": {
"description": "Age in years",
"minimum": 0,
"type": "integer"
},
"firstName": {
"description": "First Name",
"type": "string"
},
"id": {
"description": "Id",
"type": "string"
},
"lastName": {
"description": "Last Name",
"type": "string"
}
},
"required": [
"id",
"firstName",
"lastName"
],
"title": "Person",
"type": "object"
} | o73409 |
{
"properties": {
"amenities": {
"description": "The preferred hotel amenities",
"items": {
"type": "string"
},
"type": "array"
},
"check_in_date": {
"description": "The check-in date in YYYY-MM-DD format",
"type": "string"
},
"check_out_date": {
"description": "The check-out date in YYYY-MM-DD format",
"type": "string"
},
"location": {
"description": "The preferred hotel location",
"type": "string"
},
"num_rooms": {
"description": "The number of rooms required",
"type": "integer"
}
},
"required": [
"location",
"check_in_date",
"check_out_date"
],
"type": "object"
} | search_hotels_d30ace06 |
{
"properties": {
"shape_dimensions": {
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius",
"length",
"width",
"base",
"height"
],
"type": "object"
},
"shape_type": {
"description": "The type of shape (e.g. circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape_type",
"shape_dimensions"
],
"type": "object"
} | calculate_area_a91effe5 |
{
"additionalProperties": false,
"description": "",
"properties": {
"country_code": {
"type": "integer"
},
"national_number": {
"type": "string"
}
},
"title": "phone_number",
"type": "object"
} | o28266 |
{
"$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": true,
"properties": {
"change_history": {
"$ref": "#/definitions/change_history"
}
},
"type": "object"
},
"first_published_at": {
"_format": "date-time",
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"frontend_links": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"frontend_links_with_base_path": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"guid": {
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$",
"type": "string"
},
"locale": {
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
],
"type": "string"
},
"public_updated_at": {
"_format": "date-time",
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"publishing_app_name": {
"description": "The application that published this item.",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
],
"type": "string"
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"publishing_scheduled_at": {
"_format": "date-time",
"description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.",
"type": "string"
},
"rendering_app": {
"description": "The application that renders this item.",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
],
"type": "string"
},
"scheduled_publishing_delay_seconds": {
"description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.",
"type": "integer"
},
"title": {
"type": "string"
},
"withdrawn_notice": {
"additionalProperties": false,
"properties": {
"explanation": {
"type": "string"
},
"withdrawn_at": {
"format": "date-time"
}
},
"type": "object"
}
},
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"enum": [
"knowledge_alpha"
],
"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"
},
"level_one_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"ministers": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"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"
},
"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"
},
"topic_taxonomy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
}
},
"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": [
"knowledge_alpha"
],
"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"
} | o21271 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{
"$ref": "#/definitions/CHJProperties"
},
{
"$ref": "#/definitions/HJProperties"
},
{
"$ref": "#/definitions/CProperties"
},
{
"$ref": "#/definitions/HProperties"
},
{
"$ref": "#/definitions/JProperties"
}
],
"definitions": {
"CHJProperties": {
"type": "object",
"properties": {
"indent_size": {
"description": "Indent size. [JS,CSS,HTML]",
"type": "integer",
"default": 4
},
"indent_char": {
"description": "Indentation character. [JS,CSS,HTML]",
"type": "string",
"default": " ",
"maxLength": 1
},
"eol": {
"description": "Character(s) to use as line terminators. [JS,CSS,HTML]",
"type": "string",
"default": "\n"
},
"indent_with_tabs": {
"description": "Indent with tabs, overrides 'indent_size' and 'indent_char' [JS,CSS,HTML]",
"type": "boolean",
"default": false
},
"end_with_newline": {
"description": "Ensure newline at end of file. [JS,CSS,HTML]",
"type": "boolean",
"default": false
},
"preserve_newlines": {
"description": "Preserve line-breaks. [JS,CSS,HTML]",
"type": "boolean",
"default": true
}
}
},
"HJProperties": {
"type": "object",
"properties": {
"max_preserve_newlines": {
"description": "Number of line-breaks to be preserved in one chunk. [JS,HTML]",
"type": "integer",
"default": 10
},
"brace_style": {
"description": "[collapse|expand|end-expand|none][,preserve-inline] [JS,HTML]",
"type": "string",
"default": "collapse",
"enum": [
"collapse",
"expand",
"end-expand",
"none",
"collapse,preserve-inline",
"expand,preserve-inline",
"end-expand,preserve-inline",
"none,preserve-inline"
]
},
"wrap_line_length": {
"description": "Wrap lines at next opportunity after N characters. [JS,HTML]",
"type": "integer",
"default": 0
}
}
},
"CProperties": {
"type": "object",
"properties": {
"selector_separator_newline": {
"description": "Add a newline between multiple selectors. [CSS]",
"type": "boolean",
"default": true
},
"newline_between_rules": {
"description": "Add a newline between CSS rules. [CSS]",
"type": "boolean",
"default": false
},
"space_around_selector_separator": {
"description": "(Deprecated: use space_around_combinator) [CSS]",
"type": "boolean",
"default": false
},
"space_around_combinator": {
"description": "Ensure space around selector separators (>+~). [CSS]",
"type": "boolean",
"default": false
}
}
},
"HProperties": {
"type": "object",
"properties": {
"void_elements": {
"description": "HTLM void elements - aka self-closing tags. [HTML]",
"type": "array",
"items": {
"type": "string"
},
"default": [
"area",
"base",
"br",
"col",
"embed",
"hr",
"img",
"input",
"keygen",
"link",
"menuitem",
"meta",
"param",
"source",
"track",
"wbr",
"!doctype",
"?xml",
"?php",
"basefont",
"isindex"
]
},
"wrap_attributes": {
"description": "Wrap attributes to new lines. [HTML]",
"type": "string",
"default": "auto",
"enum": ["auto", "force", "force-aligned", "force-expand-multiline"]
},
"wrap_attributes_indent_size": {
"description": "Indent wrapped attributes to after N characters. Defaults to 'indent_size'. [HTML]",
"type": "number"
},
"indent_inner_html": {
"description": "Indent <head> and <body> sections. [HTML]",
"type": "boolean",
"default": false
},
"indent_scripts": {
"description": "[keep|separate|normal] [HTML]",
"type": "string",
"default": "normal",
"enum": ["keep", "separate", "normal"]
},
"unformatted": {
"description": "List of tags that should not be reformatted. [HTML]",
"type": "array",
"items": {
"type": "string"
},
"default": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"ins",
"strike",
"tt"
]
},
"content_unformatted": {
"description": "List of tags whose content should not be reformatted. [HTML]",
"type": "array",
"items": {
"type": "string"
},
"default": ["pre"]
},
"extra_liners": {
"description": "List of tags that should have an extra newline before them. [HTML]",
"type": "array",
"items": {
"type": "string"
},
"default": ["head", "body", "/html"]
},
"indent_body_inner_html": {
"description": "Indent elements within html <body> element. [HTML]",
"type": "boolean",
"default": true
},
"indent_head_inner_html": {
"description": "Indent elements within html <head> element. [HTML]",
"type": "boolean",
"default": true
},
"indent_handlebars": {
"description": "format and indent {{#foo}} and {{/foo}}. [HTML]",
"type": "boolean",
"default": false
}
}
},
"JProperties": {
"type": "object",
"properties": {
"indent_level": {
"description": "Initial indentation level. [JS]",
"type": "integer",
"default": 0
},
"space_in_paren": {
"description": "Add padding spaces within parentheses, ie. f( a, b ). [JS]",
"type": "boolean",
"default": false
},
"space_in_empty_paren": {
"description": "Leave space in empty parentheses, ie. f( ). [JS]",
"type": "boolean",
"default": false
},
"jslint_happy": {
"description": "Enable jslint-stricter mode. (Forces 'space_after_anon_function') [JS]",
"type": "boolean",
"default": false
},
"space_after_anon_function": {
"description": "Add a space before an anonymous function's parens, ie. function (). [JS]",
"type": "boolean",
"default": false
},
"break_chained_methods": {
"description": "Break chained method calls across subsequent lines. [JS]",
"type": "boolean",
"default": false
},
"keep_array_indentation": {
"description": "Preserve array indentation. [JS]",
"type": "boolean",
"default": false
},
"keep_function_indentation": {
"description": "Preserve function indentation. [JS]",
"type": "boolean",
"default": false
},
"space_before_conditional": {
"description": "Ensure a space before conditional statement. [JS]",
"type": "boolean",
"default": true
},
"unescape_strings": {
"description": "Decode printable characters encoded in xNN notation. [JS]",
"type": "boolean",
"default": false
},
"comma_first": {
"description": "Put commas at the beginning of new line instead of end. [JS]",
"type": "boolean",
"default": false
},
"operator_position": {
"description": "Move operators to before or after a new line, or keep as is. [JS]",
"type": "string",
"enum": ["before-newline", "after-newline", "preserve-newline"],
"default": "before-newline"
},
"e4x": {
"description": "Pass E4X xml literals through untouched. [JS]",
"type": "boolean",
"default": false
},
"unindent_chained_methods": {
"description": "Unindent chained methods. [JS]",
"type": "boolean",
"default": false
}
}
}
},
"id": "https://json.schemastore.org/jsbeautifyrc",
"title": "JSON schema for beautifyrc",
"type": "object"
}
| jsbeautifyrc |
{
"definitions": {
"cpu": {
"description": "The virtual CPU",
"properties": {
"features": {
"items": {
"enum": [
"xsave",
"avx",
"aes"
]
},
"type": "array"
},
"model": {
"enum": [
"host",
"pentium",
"qemu64",
"kvm64"
]
}
},
"type": "object"
}
},
"properties": {
"bios": {
"description": "64k BIOS image",
"type": "string"
},
"cpu": {
"$ref": "#/definitions/cpu"
},
"description": {
"description": "A human-readable description of this config",
"type": "string"
},
"drives": {
"description": "Additional virtual hard drives",
"items": {
"properties": {
"file": {
"type": "string"
},
"format": {
"enum": [
"raw",
"qcow2",
"vdi"
]
},
"media": {
"enum": [
"disk"
]
},
"name": {
"type": "string"
},
"type": {
"enum": [
"ide",
"virtio"
]
}
},
"required": [
"file",
"type",
"format",
"media"
],
"type": "object"
},
"type": "array"
},
"image": {
"default": "service.img",
"description": "A bootable virtual machine image",
"type": "string"
},
"mem": {
"default": 128,
"description": "Amount of memory in megabytes",
"type": "number"
},
"modules": {
"description": "Multiboot 'modules', e.g. extra files provided at boot",
"items": {
"properties": {
"args": {
"type": "string"
},
"path": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"net": {
"description": "Network devices",
"items": {
"properties": {
"backend": {
"default": "tap",
"enum": [
"tap",
"user"
]
},
"device": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"device"
],
"type": "object"
},
"type": "array"
},
"smp": {
"description": "Number of virtual CPU's",
"type": "number"
},
"vfio": {
"description": "VFIO PCI-passthrough on device",
"type": "string"
},
"vga": {
"description": "Enable VGA screen",
"enum": [
"std",
"cirrus",
"vmware",
"qxl",
"xenfb",
"tcx",
"cg3",
"virtio",
"none"
]
}
},
"title": "Virtual Machine Image",
"type": "object"
} | o47749 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"___traits_trait_additional_properties_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": {},
"description": "A grab-bag object for non-validatable data.",
"title": "Has additional properties",
"type": "object"
},
"___traits_trait_alignment_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A property used to determine horizontal positioning of a content element relative to the elements that immediately follow it in the element sequence.",
"enum": [
"left",
"right",
"center"
],
"title": "Alignment",
"type": "string"
},
"___traits_trait_channel_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An optional list of output types for which this element should be visible",
"items": {
"type": "string"
},
"title": "Channel trait",
"type": "array"
},
"___traits_trait_content_elements_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Holds attributes of an ANS collection - a common parent to story and gallery objects.",
"items": {
"$ref": "#/definitions/content_element_json"
},
"title": "A collection of content.",
"type": "array"
},
"___traits_trait_focal_point_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Coordinates representing the 'visual center' of an image. The X axis is horizontal line and the Y axis the vertical line, with 0,0 being the LEFT, TOP of the image.",
"properties": {
"x": {
"description": "The coordinate point on the horizontal axis",
"type": "number"
},
"y": {
"description": "The coordinate point on the vertical axis",
"type": "number"
}
},
"required": [
"x",
"y"
],
"title": "Focal Point",
"type": "object"
},
"___traits_trait_gallery_properties_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An object for overrides for images when images are used in a gallery. Example usage: Each image in a gallery may have the images own focal point overridden by the gallery.",
"gallery_properties": {
"focal_point": {
"$ref": "#/definitions/___traits_trait_focal_point_json"
}
},
"title": "Has gallery properties",
"type": "object"
},
"___traits_trait_id_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A globally unique identifier of the content in the ANS repository.",
"title": "Globally Unique ID trait",
"type": "string"
},
"___traits_trait_subtype_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.",
"title": "Subtype or Template",
"type": "string"
},
"content_element_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": {},
"description": "An item that conforms to this schema can be rendered in a sequence",
"properties": {
"_id": {
"$ref": "#/definitions/___traits_trait_id_json"
},
"additional_properties": {
"$ref": "#/definitions/___traits_trait_additional_properties_json"
},
"alignment": {
"$ref": "#/definitions/___traits_trait_alignment_json"
},
"channels": {
"$ref": "#/definitions/___traits_trait_channel_json"
},
"gallery_properties": {
"$ref": "#/definitions/___traits_trait_gallery_properties_json"
},
"subtype": {
"$ref": "#/definitions/___traits_trait_subtype_json"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"title": "An element that can be listed as part of content elements",
"type": "object"
},
"table_cell_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A single table cell.",
"properties": {
"_id": {
"$ref": "#/definitions/___traits_trait_id_json"
},
"additional_properties": {
"$ref": "#/definitions/___traits_trait_additional_properties_json"
},
"channels": {
"$ref": "#/definitions/___traits_trait_channel_json"
},
"content_elements": {
"$ref": "#/definitions/___traits_trait_content_elements_json"
},
"subtype": {
"$ref": "#/definitions/___traits_trait_subtype_json"
},
"type": {
"enum": [
"table_cell"
]
}
},
"type": "object"
}
},
"description": "A list of table cells, usually for use in a table row.",
"properties": {
"_id": {
"$ref": "#/definitions/___traits_trait_id_json"
},
"additional_properties": {
"$ref": "#/definitions/___traits_trait_additional_properties_json"
},
"cells": {
"items": {
"$ref": "#/definitions/table_cell_json"
},
"type": "array"
},
"channels": {
"$ref": "#/definitions/___traits_trait_channel_json"
},
"subtype": {
"$ref": "#/definitions/___traits_trait_subtype_json"
},
"type": {
"enum": [
"table_row"
]
}
},
"type": "object"
} | wp_118_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string",
"minLength": 1
},
"gameBaseVariantId": {
"type": "string",
"minLength": 1
},
"iconUrl": {
"type": "string",
"minLength": 1
},
"id": {
"type": "string",
"minLength": 1
},
"contentId": {
"type": "string",
"minLength": 1
}
},
"required": [
"name",
"description",
"gameBaseVariantId",
"iconUrl",
"id",
"contentId"
]
} | o4258 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"properties": {
"end": {
"_format": "date",
"description": "Date your basis period ended",
"title": "End date",
"type": "string"
},
"start": {
"_format": "date",
"description": "Date your basis period began",
"title": "Start date",
"type": "string"
}
},
"required": [
"start",
"end"
],
"title": "Basis period",
"type": "object"
} | o17438 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"description": {
"type": "string",
"maxLength": 32767
},
"tags": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"value": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"required": [
"key",
"value"
],
"additionalProperties": false
},
"maxItems": 100
},
"attributes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"dataType": {
"type": "string",
"enum": [
"string",
"number",
"gps",
"boolean",
"blob"
]
},
"contentType": {
"type": "string",
"maxLength": 64
},
"description": {
"type": "string",
"maxLength": 32767
},
"attributeTags": {
"type": "object",
"patternProperties": {
"^[0-9a-zA-Z_-]{1,255}$": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"additionalProperties": false
},
"system": {
"type": "object",
"properties": {
"aggregation": {
"type": "string",
"enum": [
"FIRST",
"LAST",
"COUNT",
"MAX",
"MIN",
"MEDIAN",
"MEAN",
"SUM",
"STD_DEV"
]
},
"aggregationOptions": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false
},
"additionalProperties": false,
"maxItems": 0
},
"childAttributes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"mode": {
"type": "string",
"enum": [
"all",
"whitelist",
"blacklist"
]
},
"deviceIds": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"maxItems": 1000
},
"deviceTags": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"value": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"additionalProperties": false
},
"maxItems": 100
}
},
"required": [
"name",
"mode"
],
"additionalProperties": false
},
"maxItems": 256
}
},
"additionalProperties": false
}
},
"required": [
"name",
"dataType"
],
"additionalProperties": false
},
"maxItems": 256
},
"deviceClass": {
"type": "string",
"enum": [
"standalone",
"gateway",
"peripheral",
"floating",
"edgeCompute",
"system"
]
},
"gatewayId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"parentId": {
"oneOf": [
{
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
{
"type": "null"
}
]
},
"systemInterval": {
"type": "integer",
"minimum": 5,
"maximum": 3600
},
"keepDuplicates": {
"type": "boolean"
}
},
"additionalProperties": false,
"required": [
"name"
]
} | o9831 |
{
"additionalProperties": false,
"dependencies": {
"cost": [
"costModel"
]
},
"description": "Schema for an ad conversion event",
"minProperties": 1,
"properties": {
"action": {
"type": "string"
},
"advertiserId": {
"type": "string"
},
"campaignId": {
"type": "string"
},
"category": {
"type": "string"
},
"conversionId": {
"type": "string"
},
"cost": {
"minimum": 0,
"type": "number"
},
"costModel": {
"enum": [
"cpa",
"cpc",
"cpm"
]
},
"initialValue": {
"minimum": 0,
"type": "number"
},
"property": {
"type": "string"
}
},
"self": {
"format": "jsonschema",
"name": "ad_conversion",
"vendor": "com.snowplowanalytics.snowplow",
"version": "1-0-0"
},
"type": "object"
} | sp_252_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The group id"
},
"name": {
"type": "string",
"description": "The group name",
"minLength": 1
}
},
"claroline": {
"requiredAtCreation": [
"name"
],
"ids": [
"id",
"name"
]
}
} | o32477 |
{
"properties": {
"end": {
"properties": {
"latitude": {
"description": "The latitude of the ending point",
"type": "number"
},
"longitude": {
"description": "The longitude of the ending point",
"type": "number"
}
},
"type": "object"
},
"start": {
"properties": {
"latitude": {
"description": "The latitude of the starting point",
"type": "number"
},
"longitude": {
"description": "The longitude of the starting point",
"type": "number"
}
},
"type": "object"
}
},
"required": [
"start",
"end"
],
"type": "object"
} | calculate_distance_eebdfd73 |
{
"title": "JSON schema for Travis CI configuration files",
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"nonEmptyString": {
"type": "string",
"minLength": 1
},
"stringArrayUnique": {
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"items": {
"$ref": "#/definitions/nonEmptyString"
}
},
"stringOrStringArrayUnique": {
"oneOf": [
{
"$ref": "#/definitions/nonEmptyString"
},
{
"$ref": "#/definitions/stringArrayUnique"
}
]
},
"possiblySecretString": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"secure": {
"type": "string"
}
}
}
]
},
"slackRoom": {
"description": "Your account name, token and optional channel",
"type": "string",
"pattern": ".+:.+(#.+)?"
},
"notificationFrequency": {
"enum": [
"always",
"never",
"change"
]
},
"step": {
"anyOf": [
{
"type": "boolean"
},
{
"enum": [
"skip",
"ignore"
]
},
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"service": {
"enum": [
"cassandra",
"couchdb",
"docker",
"elasticsearch",
"mariadb",
"memcached",
"mongodb",
"mysql",
"neo4j",
"postgresql",
"rabbitmq",
"redis-server",
"rethinkdb",
"riak"
]
},
"cache": {
"enum": [
"bundler",
"cargo",
"ccache",
"cocoapods",
"packages",
"pip",
"yarn",
"npm"
]
},
"envVars": {
"oneOf": [
{
"$ref": "#/definitions/envVar"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/envVar"
}
}
]
},
"envVar": {
"oneOf": [
{
"type": "string",
"pattern": "[^=]+=.*"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"secure": {
"type": "string",
"pattern": "[^=]+=.*"
}
}
}
]
},
"job": {
"type": "object",
"properties": {
"language": {
"enum": [
"android",
"bash",
"c",
"c++",
"clojure",
"cpp",
"crystal",
"csharp",
"d",
"dart",
"dartlang",
"elixir",
"erlang",
"generic",
"go",
"golang",
"groovy",
"haskell",
"haxe",
"java",
"javascript",
"julia",
"jvm",
"minimal",
"nix",
"node",
"node.js",
"node_js",
"nodejs",
"obj-c",
"obj_c",
"objective-c",
"objective_c",
"perl",
"perl6",
"php",
"python",
"r",
"ruby",
"rust",
"scala",
"sh",
"shell",
"smalltalk"
]
},
"haxe": {
"type": "array",
"items": {
"type": "string"
}
},
"scala": {
"type": "array",
"items": {
"type": "string"
}
},
"sbt_args": {
"type": "string"
},
"crystal": {
"type": "array",
"items": {
"type": "string"
}
},
"neko": {
"type": "string"
},
"hxml": {
"type": "array",
"items": {
"type": "string"
}
},
"smalltalk": {
"type": "array",
"items": {
"type": "string"
}
},
"perl": {
"type": "array",
"items": {
"type": "string"
}
},
"perl6": {
"type": "array",
"items": {
"type": "string"
}
},
"d": {
"type": "array",
"items": {
"type": "string"
}
},
"dart": {
"type": "array",
"items": {
"type": "string"
}
},
"dart_task": {
"type": "array",
"items": {
"type": "object",
"properties": {
"test": {
"type": "string"
},
"install_dartium": {
"type": "boolean"
},
"xvfb": {
"type": "boolean"
},
"dartanalyzer": {
"type": "boolean"
},
"dartfmt": {
"type": "boolean"
}
}
}
},
"ghc": {
"type": "array",
"items": {
"type": "string"
}
},
"lein": {
"type": "string"
},
"android": {
"type": "object",
"properties": {
"components": {
"type": "array",
"items": {
"type": "string"
}
},
"licenses": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"node_js": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"compiler": {
"oneOf": [
{
"type": "array",
"items": {
"enum": [
"clang",
"gcc"
]
}
},
{
"enum": [
"clang",
"gcc"
]
}
]
},
"php": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"go": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"jdk": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"solution": {
"type": "string",
"description": "When the optional solution key is present, Travis will run NuGet package restore and build the given solution."
},
"mono": {
"oneOf": [
{
"enum": [
"none"
]
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"xcode_project": {
"type": "string"
},
"xcode_workspace": {
"type": "string"
},
"xcode_scheme": {
"type": "string"
},
"xcode_sdk": {
"type": "string"
},
"podfile": {
"type": "string",
"description": "By default, Travis CI will assume that your Podfile is in the root of the repository. If this is not the case, you can specify where the Podfile is"
},
"python": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
},
{
"type": "number"
}
]
},
"elixir": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"rust": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
},
{
"type": "number"
}
]
},
"erlang": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"julia": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"opt_release": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"rvm": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"gemfile": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"bundler_args": {
"type": "string"
},
"r": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"pandoc_version": {
"type": "string"
},
"brew_packages": {
"type": "array",
"description": "A list of packages to install via brew. This option is ignored on non-OS X builds.",
"items": {
"type": "string"
}
},
"r_binary_packages": {
"type": "array",
"items": {
"type": "string"
}
},
"r_packages": {
"type": "array",
"items": {
"type": "string"
}
},
"bioc_packages": {
"type": "array",
"items": {
"type": "string"
}
},
"r_github_packages": {
"type": "array",
"items": {
"type": "string"
}
},
"apt_packages": {
"type": "array",
"items": {
"type": "string"
}
},
"cran": {
"type": "string",
"description": "CRAN mirror to use for fetching packages"
},
"repos": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Dictionary of repositories to pass to options(repos)"
},
"os": {
"description": "The operating system to run the job on",
"oneOf": [
{
"enum": [
"osx",
"linux",
"windows"
]
},
{
"type": "array",
"items": {
"enum": [
"osx",
"linux",
"windows"
]
}
}
]
},
"osx_image": {
"oneOf": [
{
"enum": [
"xcode6.4",
"xcode7.3",
"xcode8",
"xcode8.3",
"xcode9",
"xcode9.1",
"xcode9.2",
"xcode9.3",
"xcode9.4",
"xcode10",
"xcode10.1"
]
},
{
"type": "array",
"items": {
"enum": [
"xcode6.4",
"xcode7.3",
"xcode8",
"xcode8.3",
"xcode9",
"xcode9.1",
"xcode9.2",
"xcode9.3",
"xcode9.4",
"xcode10",
"xcode10.1"
]
}
}
],
"default": "xcode9.4"
},
"dist": {
"description": "The Ubuntu distribution to use",
"enum": [
"precise",
"trusty",
"xenial"
]
},
"sudo": {
"enum": [
true,
false,
"",
"required",
"enabled"
]
},
"addons": {
"type": "object",
"properties": {
"apt": {
"type": "object",
"description": "To install packages not included in the default container-based-infrastructure you need to use the APT addon, as sudo apt-get is not available",
"properties": {
"update": {
"type": "boolean",
"description": "To update the list of available packages"
},
"sources": {
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"properties": {
"sourceline": {
"type": "string",
"description": "Key-value pairs which will be added to /etc/apt/sources.list"
},
"key_url": {
"type": "string",
"description": "When APT sources require GPG keys, you can specify this with key_url"
}
},
"required": [
"sourceline"
],
"additionalProperties": false
},
{
"type": "string",
"description": "Alias defined in source whitelist"
}
]
}
},
"packages": {
"type": "array",
"description": "To install packages from the package whitelist before your custom build steps",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"hosts": {
"description": "If your build requires setting up custom hostnames, you can specify a single host or a list of them. Travis CI will automatically setup the hostnames in /etc/hosts for both IPv4 and IPv6.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"artifacts": {
"oneOf": [
{
"enum": [
true
]
},
{
"type": "object",
"properties": {
"s3_region": {
"type": "string"
},
"paths": {
"type": "array",
"items": {
"type": "string"
}
},
"working_dir": {
"type": "string",
"description": "If you\u2019d like to upload file from a specific directory, you can change your working directory "
},
"debug": {
"type": "boolean",
"description": "If you\u2019d like to see more detail about what the artifacts addon is doing"
}
}
}
]
},
"firefox": {
"description": "Firefox addon",
"type": "string",
"enum": [
"latest",
"latest-esr",
"latest-beta",
"latest-dev",
"latest-nightly",
"latest-unsigned"
]
},
"chrome": {
"description": "Chrome addon",
"type": "string",
"enum": [
"stable",
"beta"
]
},
"rethinkdb": {
"description": "RethinkDB addon",
"type": "string"
},
"postgresql": {
"description": "PostgreSQL addon",
"type": "string"
},
"mariadb": {
"description": "MariaDB addon",
"type": "string"
},
"sauce_connect": {
"description": "Sauce Connect addon",
"oneOf": [
{
"type": "object",
"properties": {
"username": {
"type": "string"
},
"access_key": {
"type": "string"
}
}
},
{
"type": "boolean"
}
]
},
"sonarcloud": {
"description": "SonarCloud addon",
"type": "object",
"properties": {
"organization": {
"type": "string"
},
"token": {
"type": "object",
"properties": {
"secure": {
"type": "string"
}
}
}
}
},
"coverity_scan": {
"description": "Coverity Scan addon",
"type": "object",
"properties": {
"project": {
"description": "GitHub project metadata",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "number"
},
"description": {
"type": "string"
}
},
"required": [
"name"
]
},
"notification_email": {
"description": "Where email notification of build analysis results will be sent",
"type": "string"
},
"build_command_prepend": {
"description": "Commands to prepare for build_command",
"type": "string"
},
"build_command": {
"description": "The command that will be added as an argument to 'cov-build' to compile your project for analysis",
"type": "string"
},
"branch_pattern": {
"description": "Pattern to match selecting branches that will run analysis. We recommend leaving this set to 'coverity_scan'",
"type": "string"
}
}
},
"homebrew": {
"description": "Homebrew addon",
"type": "object",
"properties": {
"taps": {
"$ref": "#/definitions/stringOrStringArrayUnique"
},
"packages": {
"$ref": "#/definitions/stringOrStringArrayUnique"
},
"casks": {
"$ref": "#/definitions/stringOrStringArrayUnique"
},
"brewfile": {
"oneOf": [
{
"$ref": "#/definitions/nonEmptyString"
},
{
"type": "boolean",
"default": true
}
]
},
"update": {
"type": "boolean",
"default": true
}
}
},
"srcclr": {
"description": "SourceClear addon",
"oneOf": [
{
"type": "boolean",
"default": true
},
{
"type": "object",
"properties": {
"debug": {
"type": "boolean",
"default": true
}
}
}
]
}
},
"additionalProperties": false
},
"cache": {
"oneOf": [
{
"enum": [
false
]
},
{
"$ref": "#/definitions/cache"
},
{
"type": "array",
"items": {
"oneOf": [
{
"type": "string",
"$ref": "#/definitions/cache"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"directories": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
]
}
},
{
"type": "object",
"properties": {
"directories": {
"type": "array",
"items": {
"type": "string"
}
},
"timeout": {
"type": "number",
"description": "Upload timeout in seconds",
"default": 1800
},
"bundler": {
"type": "boolean"
},
"cocoapods": {
"type": "boolean"
},
"pip": {
"type": "boolean"
},
"yarn": {
"type": "boolean"
},
"ccache": {
"type": "boolean"
},
"packages": {
"type": "boolean"
},
"cargo": {
"type": "boolean"
},
"npm": {
"type": "boolean"
}
},
"additionalProperties": false
}
]
},
"services": {
"oneOf": [
{
"$ref": "#/definitions/service"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/service"
}
}
]
},
"git": {
"type": "object",
"properties": {
"depth": {
"oneOf": [
{
"type": "integer",
"description": "Set the git clone depth",
"default": 50
},
{
"enum": [
false
]
}
]
},
"quiet": {
"type": "boolean",
"description": "Travis CI clones repositories without the quiet flag (-q) by default. Enabling the quiet flag can be useful if you\u2019re trying to avoid log file size limits or even if you just don\u2019t need to include it."
},
"submodules": {
"type": "boolean",
"description": "Control whether submodules should be cloned"
},
"lfs_skip_smudge": {
"type": "boolean",
"description": "Skip fetching the git-lfs files during the initial git clone (equivalent to git lfs smudge --skip),"
}
},
"additionalProperties": false
},
"branches": {
"type": "object",
"description": "Specify which branches to build",
"properties": {
"except": {
"type": "array",
"items": {
"type": "string"
}
},
"only": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"env": {
"oneOf": [
{
"$ref": "#/definitions/envVars"
},
{
"type": "object",
"properties": {
"global": {
"$ref": "#/definitions/envVars"
},
"matrix": {
"$ref": "#/definitions/envVars"
}
},
"additionalProperties": false
}
]
},
"before_install": {
"$ref": "#/definitions/step"
},
"install": {
"$ref": "#/definitions/step"
},
"before_script": {
"$ref": "#/definitions/step"
},
"script": {
"$ref": "#/definitions/step"
},
"before_cache": {
"$ref": "#/definitions/step"
},
"after_success": {
"$ref": "#/definitions/step"
},
"after_failure": {
"$ref": "#/definitions/step"
},
"before_deploy": {
"$ref": "#/definitions/step"
},
"deploy": {
"oneOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/deployment"
}
},
{
"$ref": "#/definitions/deployment"
}
]
},
"after_deploy": {
"$ref": "#/definitions/step"
},
"after_script": {
"$ref": "#/definitions/step"
}
}
},
"deployment": {
"allOf": [
{
"type": "object",
"properties": {
"on": {
"type": "object",
"properties": {
"tags": {
"description": "Tell Travis CI to only deploy on tagged commits",
"oneOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"branch": {
"type": "string"
},
"all_branches": {
"type": "boolean"
},
"skip_cleanup": {
"type": "boolean",
"description": "After your tests ran and before the release, Travis CI will clean up any additional files and changes you made. Maybe that is not what you want, as you might generate some artifacts that are supposed to be released, too."
},
"repo": {
"type": "string"
},
"condition": {
"type": "string",
"description": "if [[ <condition> ]]; then <deploy>; fi"
}
}
}
}
},
{
"oneOf": [
{
"type": "object",
"properties": {
"provider": {
"enum": [
"script"
]
},
"script": {
"type": "string"
}
},
"required": [
"provider",
"script"
]
},
{
"type": "object",
"properties": {
"provider": {
"enum": [
"npm"
]
},
"email": {
"$ref": "#/definitions/possiblySecretString"
},
"api_key": {
"$ref": "#/definitions/possiblySecretString"
},
"tag": {
"type": "string"
}
},
"required": [
"provider",
"email",
"api_key"
]
},
{
"type": "object",
"properties": {
"provider": {
"enum": [
"surge"
]
},
"project": {
"type": "string"
},
"domain": {
"type": "string"
}
},
"required": [
"provider"
]
},
{
"type": "object",
"properties": {
"provider": {
"enum": [
"releases"
]
},
"api_key": {
"$ref": "#/definitions/possiblySecretString"
},
"user": {
"$ref": "#/definitions/possiblySecretString"
},
"password": {
"$ref": "#/definitions/possiblySecretString"
},
"file": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"file_glob": {
"type": "boolean"
},
"overwrite": {
"type": "boolean",
"description": "If you need to overwrite existing files"
}
},
"required": [
"provider"
]
},
{
"type": "object",
"description": "deploy to heroku, to see https://docs.travis-ci.com/user/deployment/heroku/",
"properties": {
"provider": {
"enum": [
"heroku"
]
},
"api_key": {
"description": "heroku auth token",
"anyOf": [
{
"$ref": "#/definitions/possiblySecretString"
},
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/possiblySecretString"
}
}
]
},
"app": {
"oneOf": [
{
"type": "string",
"description": "Deploy master branch to heroku app"
},
{
"type": "object",
"description": "Deploy the different branch to the different heroku app",
"additionalProperties": {
"type": "string"
}
}
]
},
"run": {
"description": "to run a command on Heroku after a successful deploy",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"skip_cleanup": {
"type": "boolean",
"description": "Travis CI default will clean up any additional files and changes you made, you can by it to skip the clean up"
},
"strategy": {
"enum": [
"api",
"git"
],
"description": "Travis CI supports different mechanisms for deploying to Heroku: api is default"
}
},
"required": [
"provider",
"api_key"
]
},
{
"type": "object",
"properties": {
"provider": {
"enum": [
"s3"
]
},
"access_key_id": {
"$ref": "#/definitions/possiblySecretString"
},
"secret_access_key": {
"$ref": "#/definitions/possiblySecretString"
},
"bucket": {
"type": "string"
},
"region": {
"type": "string"
},
"skip_cleanup": {
"type": "boolean",
"default": false
},
"acl": {
"enum": [
"private",
"public_read",
"public_read_write",
"authenticated_read",
"bucket_owner_read",
"bucket_owner_full_control"
]
},
"local_dir": {
"type": "string"
},
"upload-dir": {
"type": "string"
},
"detect_encoding": {
"type": "boolean",
"default": false
},
"default_text_charset": {
"type": "string"
},
"cache_control": {
"type": "string"
},
"expires": {
"type": "string"
},
"endpoint": {
"type": "string"
}
},
"required": [
"provider",
"access_key_id",
"secret_access_key",
"bucket"
]
},
{
"type": "object",
"properties": {
"provider": {
"type": "string",
"not": {
"enum": [
"script",
"npm",
"surge",
"releases",
"heroku",
"s3"
]
}
}
},
"required": [
"provider"
]
}
]
}
]
}
},
"allOf": [
{
"$ref": "#/definitions/job"
},
{
"type": "object",
"properties": {
"notifications": {
"type": "object",
"properties": {
"webhooks": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
},
{
"type": "object",
"properties": {
"urls": {
"oneOf": [
{
"type": "string",
"format": "uri"
},
{
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
}
]
}
},
"on_success": {
"$ref": "#/definitions/notificationFrequency"
},
"on_failure": {
"$ref": "#/definitions/notificationFrequency"
},
"on_start": {
"$ref": "#/definitions/notificationFrequency"
},
"on_cancel": {
"$ref": "#/definitions/notificationFrequency"
},
"on_error": {
"$ref": "#/definitions/notificationFrequency"
}
}
]
},
"slack": {
"oneOf": [
{
"$ref": "#/definitions/slackRoom"
},
{
"type": "object",
"properties": {
"rooms": {
"type": "array",
"items": {
"$ref": "#/definitions/slackRoom"
}
},
"on_pull_requests": {
"type": "boolean"
},
"template": {
"type": "array",
"items": {
"type": "string"
}
},
"on_success": {
"$ref": "#/definitions/notificationFrequency"
},
"on_failure": {
"$ref": "#/definitions/notificationFrequency"
}
},
"additionalProperties": false
}
]
},
"email": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"enum": [
false
]
},
{
"type": "object",
"properties": {
"recipients": {
"type": "array",
"items": {
"type": "string"
}
},
"on_success": {
"$ref": "#/definitions/notificationFrequency",
"default": "change"
},
"on_failure": {
"$ref": "#/definitions/notificationFrequency",
"default": "always"
}
}
}
]
},
"irc": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "object",
"properties": {
"channels": {
"type": "array",
"items": {
"type": "string"
}
},
"channel_key": {
"type": "string"
},
"nick": {
"type": "string"
},
"password": {
"type": "string"
},
"template": {
"type": "array",
"items": {
"type": "string"
}
},
"on_success": {
"$ref": "#/definitions/notificationFrequency",
"default": "always"
},
"on_failure": {
"$ref": "#/definitions/notificationFrequency",
"default": "always"
},
"skip_join": {
"type": "boolean"
},
"use_notice": {
"type": "boolean"
}
}
}
]
}
},
"additionalProperties": false
},
"matrix": {
"type": "object",
"properties": {
"exclude": {
"type": "array",
"items": {
"$ref": "#/definitions/job"
}
},
"include": {
"type": "array",
"items": {
"$ref": "#/definitions/job"
}
},
"allow_failures": {
"type": "array",
"items": {
"$ref": "#/definitions/job"
}
},
"fast_finish": {
"type": "boolean",
"description": "If some rows in the build matrix are allowed to fail, the build won\u2019t be marked as finished until they have completed. To mark the build as finished as soon as possible, add fast_finish: true"
}
},
"additionalProperties": false
},
"jobs": {
"type": "object",
"additionalProperties": false,
"properties": {
"include": {
"type": "array",
"items": {
"allOf": [
{
"$ref": "#/definitions/job"
},
{
"type": "object",
"properties": {
"stage": {
"type": "string",
"description": "The name of the build stage",
"default": "test"
}
}
}
]
}
},
"allow_failures": {
"type": "array",
"items": {
"$ref": "#/definitions/job"
}
}
}
},
"stages": {
"type": "array",
"description": "Specifies the order of build stages",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"if": {
"description": "Specifies a condition for the stage",
"type": "string"
}
}
}
]
}
}
}
}
]
} | o90972 |
{
"$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"
},
"description": {
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"additionalProperties": false,
"properties": {
"body": {
"$ref": "#/definitions/body_html_and_govspeak"
},
"change_history": {
"$ref": "#/definitions/change_history"
},
"change_notes": {
"$ref": "#/definitions/manual_change_notes"
},
"child_section_groups": {
"$ref": "#/definitions/manual_child_section_groups"
},
"organisations": {
"$ref": "#/definitions/manual_organisations"
}
},
"required": [
"body"
],
"type": "object"
},
"first_published_at": {
"_format": "date-time",
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"frontend_links": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"frontend_links_with_base_path": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"guid": {
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$",
"type": "string"
},
"locale": {
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
],
"type": "string"
},
"manual_change_notes": {
"description": "A history of changes to manuals and the associated section",
"items": {
"additionalProperties": false,
"properties": {
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"change_note": {
"type": "string"
},
"published_at": {
"_format": "date-time",
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"base_path",
"title",
"change_note",
"published_at"
],
"type": "object"
}
},
"manual_child_section_groups": {
"description": "Grouped sections of a manual",
"items": {
"additionalProperties": false,
"properties": {
"child_sections": {
"items": {
"additionalProperties": false,
"properties": {
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"description": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"description",
"base_path"
],
"type": "object"
},
"type": "array"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"child_sections"
],
"type": "object"
},
"type": "array"
},
"manual_organisations": {
"description": "A manual\u2019s organisations. TODO: Switch to use organisations in links",
"items": {
"additionalProperties": false,
"properties": {
"abbreviation": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"type": "string"
}
},
"required": [
"title",
"abbreviation",
"web_url"
],
"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": [
"manual"
],
"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"
},
"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"
},
"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"
},
"sections": {
"$ref": "#/definitions/frontend_links_with_base_path"
},
"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": [
"manual"
],
"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"
} | o21287 |
{
"$id": "https://json.schemastore.org/drupal-permissions.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": {
"title": "Permission definition",
"type": "object",
"required": ["title"],
"properties": {
"title": {
"title": "The human-readable name of the permission",
"type": "string"
},
"description": {
"title": "A description of what the permission does",
"type": "string"
},
"restrict access": {
"title": "Restrict access to this permission to trusted users",
"description": "This should be used for permissions that have inherent security risks across a variety of potential use cases (for example, the \"administer filters\" and \"bypass node access\" permissions provided by Drupal core).",
"type": "boolean"
}
},
"additionalProperties": false
},
"properties": {
"permission_callbacks": {
"title": "List of permission callbacks",
"type": "array",
"items": {
"title": "A callback that return array of permissions",
"type": "string"
},
"uniqueItems": true
}
},
"title": "JSON schema for Drupal permissions file",
"type": "object"
}
| drupal-permissions |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"js-types-syntax": {
"description": "Language in which JavaScript objects types are specified.",
"type": "string",
"enum": ["typescript"]
},
"description-markup": {
"description": "Markup language in which descriptions are formatted.",
"type": "string",
"default": "none",
"enum": ["html", "markdown", "none"]
},
"framework-config": {
"description": "Provide configuration for the specified web framework. This is an advanced feature, which is used to provide support for templating frameworks like Angular, Vue, Svelte, etc.",
"type": "object",
"properties": {
"enable-when": {
"$ref": "#/definitions/enablement-rules"
},
"disable-when": {
"$ref": "#/definitions/disablement-rules"
},
"canonical-names": {
"description": "In many frameworks symbols can have multiple versions of a name. Specify canonical name conversion rule for names of particular symbol kinds against which comparisons will be made. Format of the 'canonical-names' property names is '{namespace}/{symbol kind}'. By default symbol names in HTML namespace are converted to lower-case, and in CSS and JS namespaces are left as-is. In case of name patterns, rules are applied to each part of the pattern separately, so even if the symbol with pattern is in HTML namespace, references to JS events will be case-sensitive.",
"type": "object",
"patternProperties": {
"^/(html|css|js)/[^/\\n\\r]+$": {
"$ref": "#/definitions/name-converter"
}
},
"additionalProperties": false
},
"match-names": {
"description": "Provide an array of name conversions, in which particular symbol kinds should be matched against canonical names of symbols. By default symbol names are converted using canonical-names rule.",
"type": "object",
"patternProperties": {
"^/(html|css|js)/[^/\\n\\r]+$": {
"$ref": "#/definitions/name-converters"
}
},
"additionalProperties": false
},
"name-variants": {
"description": "Provide an array of name conversions, in which particular symbol kinds should be proposed in auto completion. Format of the 'name-variants' property names is '{namespace}/{symbol kind}'. All symbol kinds are by default provided as-is.",
"type": "object",
"patternProperties": {
"^/(html|css|js)/[^/\\n\\r]+$": {
"$ref": "#/definitions/name-converters"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"enablement-rules": {
"description": "Specify rules for enabling web framework support. Only one framework can be enabled in a particular file. If you need your contributions to be enabled in all files, regardless of the context, do not specify the framework.",
"type": "object",
"properties": {
"node-packages": {
"description": "Node.js package names, which enable framework support within the folder containing the package.json.",
"type": "array",
"items": {
"type": "string"
}
},
"script-url-patterns": {
"description": "RegExps to match script URLs, which enable framework support within a particular HTML.",
"type": "array",
"items": {
"$ref": "#/definitions/pattern"
}
},
"file-extensions": {
"description": "Extensions of files, which should have the framework support enabled. Use this to support custom file extensions like '.vue' or '.svelte'. Never specify generic extensions like '.html', '.js' or '.ts'. If you need your contributions to be present in every file don't specify the framework at all",
"type": "array",
"items": {
"type": "string"
}
},
"file-name-patterns": {
"description": "RegExp patterns to match file names, which should have the framework support enabled. Use carefully as broken pattern may even freeze IDE.",
"type": "array",
"items": {
"$ref": "#/definitions/pattern"
}
},
"ide-libraries": {
"description": "Global JavaScript libraries names enabled within the IDE, which enable framework support in the whole project",
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"disablement-rules": {
"description": "Specify rules for disabling web framework support. These rules take precedence over enable-when rules. They allow to turn off framework support in case of some conflicts between frameworks priority.",
"type": "object",
"properties": {
"file-extensions": {
"description": "Extensions of files, which should have the framework support disabled",
"type": "array",
"items": {
"type": "string"
}
},
"file-name-patterns": {
"description": "RegExp patterns to match file names, which should have the framework support disabled",
"type": "array",
"items": {
"$ref": "#/definitions/pattern"
}
}
},
"additionalProperties": false
},
"name-converters": {
"type": "array",
"items": {
"$ref": "#/definitions/name-converter"
}
},
"name-converter": {
"type": "string",
"enum": [
"as-is",
"PascalCase",
"camelCase",
"lowercase",
"UPPERCASE",
"kebab-case",
"snake_case"
]
},
"icon": {
"description": "Relative path to the icon representing the symbol.",
"type": "string"
},
"base-contribution": {
"type": "object",
"description": "The base for any contributions.",
"javaAbstract": true,
"javaInterfaces": ["GenericContributionsHost"],
"properties": {
"name": {
"$ref": "#/definitions/name"
},
"description": {
"$ref": "#/definitions/description"
},
"description-sections": {
"$ref": "#/definitions/description-sections"
},
"doc-url": {
"$ref": "#/definitions/doc-url"
},
"icon": {
"$ref": "#/definitions/icon"
},
"source": {
"$ref": "#/definitions/source"
},
"deprecated": {
"$ref": "#/definitions/deprecated"
},
"experimental": {
"$ref": "#/definitions/experimental"
},
"priority": {
"$ref": "#/definitions/priority"
},
"proximity": {
"$ref": "#/definitions/proximity"
},
"virtual": {
"$ref": "#/definitions/virtual"
},
"abstract": {
"$ref": "#/definitions/abstract"
},
"extension": {
"$ref": "#/definitions/extension"
},
"extends": {
"$ref": "#/definitions/extends"
},
"pattern": {
"$ref": "#/definitions/name-pattern-root"
},
"html": {
"$ref": "#/definitions/html"
},
"css": {
"$ref": "#/definitions/css"
},
"js": {
"$ref": "#/definitions/js"
},
"exclusive-contributions": {
"$ref": "#/definitions/exclusive-contributions"
}
}
},
"typed-contribution": {
"type": "object",
"description": "The base for any contribution, which can possibly have a JS type.",
"javaAbstract": true,
"allOf": [
{
"$ref": "#/definitions/base-contribution"
}
],
"properties": {
"type": {
"$ref": "#/definitions/type-list"
}
}
},
"generic-contribution": {
"type": "object",
"description": "A generic contribution. All contributions are of this type, except for HTML attributes and elements, as well as predefined CSS contribution kinds.",
"javaAbstract": true,
"allOf": [
{
"$ref": "#/definitions/typed-contribution"
}
],
"properties": {
"default": {
"$ref": "#/definitions/default"
},
"required": {
"$ref": "#/definitions/required"
},
"attribute-value": {
"$ref": "#/definitions/html-attribute-value"
}
}
},
"type-list": {
"description": "Specify type according to selected language for type syntax. The type can be specified by a string expression, an object with list of imports and an expression, or an array of possible types.",
"oneOf": [
{
"$ref": "#/definitions/type"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/type"
}
}
]
},
"type": {
"oneOf": [
{
"$ref": "#/definitions/type-reference"
},
{
"type": "string"
}
]
},
"type-reference": {
"type": "object",
"properties": {
"module": {
"description": "Name of module, which exports the type. May be omitted, in which case it's assumed to be the name of the library.",
"type": "string"
},
"name": {
"description": "Name of the symbol to import",
"type": "string"
}
},
"required": ["name"],
"additionalProperties": false
},
"html-value-type": {
"oneOf": [
{
"type": "string",
"description": "Provide one of special attribute value types: \"enum\", \"of-match\", or a simple JavaScript type according to the specified type format."
},
{
"$ref": "#/definitions/type-reference"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/type"
}
}
]
},
"source": {
"description": "Allows to specify the source of the entity. For Vue.js component this may be for instance a class.",
"type": "object",
"oneOf": [
{
"type": "object",
"properties": {
"file": {
"description": "Path to the file, relative to the web-types JSON.",
"type": "string"
},
"offset": {
"description": "Offset in the file under which the source symbol, like class name, is located.",
"type": "integer"
}
},
"required": ["file", "offset"],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"module": {
"description": "Name of module, which exports the symbol. May be omitted, in which case it's assumed to be the name of the library.",
"type": "string"
},
"symbol": {
"description": "Name of the exported symbol.",
"type": "string"
}
},
"required": ["symbol"],
"additionalProperties": false
}
]
},
"name": {
"type": "string"
},
"description": {
"description": "Short description to be rendered in documentation popup. It will be rendered according to description-markup setting.",
"type": "string"
},
"description-sections": {
"description": "Custom sections to be shown below description in the documentation popup.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"doc-url": {
"description": "Link to online documentation.",
"type": "string"
},
"virtual": {
"description": "Mark contribution as virtual. Virtual contributions can be filtered out if needed in references. A virtual contribution meaning may differ by framework or kind contexts, but usually means something synthetic or something, which gets erased in the runtime by the framework. E.g. Vue or Angular attribute bindings are virtual. ",
"type": "boolean"
},
"abstract": {
"description": "Mark contribution as abstract. Such contributions serve only as super contributions for other contributions.",
"type": "boolean"
},
"extension": {
"description": "Mark contribution as an extension. Such contributions do not define a new contribution on their own, but can provide additional properties or contributions to existing contributions.",
"type": "boolean"
},
"priority": {
"type": "string",
"enum": ["lowest", "low", "normal", "high", "highest"]
},
"proximity": {
"type": "integer"
},
"name-pattern-root": {
"oneOf": [
{
"$ref": "#/definitions/name-pattern"
},
{
"type": "string"
}
]
},
"exclusive-contributions": {
"description": "Specify list of contribution kinds qualified with a namespace, for which during reference resolution this will be the final contribution host. E.g. if a special HTML element does not accept standard attributes, add:\n\"exclusive-contributions\": [\"/html/attributes\"].",
"type": "array",
"items": {
"type": "string",
"pattern": "/(html|js|css)/[^/\\n\\r]+"
}
},
"name-pattern": {
"type": "object",
"oneOf": [
{
"type": "object",
"properties": {
"required": {
"$ref": "#/definitions/required"
},
"unique": {
"type": "boolean"
},
"repeat": {
"type": "boolean"
},
"template": {
"$ref": "#/definitions/name-pattern-template"
},
"or": {
"$ref": "#/definitions/name-pattern-template"
},
"delegate": {
"$ref": "#/definitions/reference"
},
"deprecated": {
"$ref": "#/definitions/deprecated"
},
"priority": {
"$ref": "#/definitions/priority"
},
"proximity": {
"$ref": "#/definitions/proximity"
},
"items": {
"$ref": "#/definitions/list-reference"
}
},
"additionalProperties": false
},
{
"type": "object",
"properties": {
"regex": {
"type": "string"
},
"case-sensitive": {
"type": "boolean",
"default": true
}
},
"required": ["regex"],
"additionalProperties": false
}
]
},
"name-pattern-template": {
"type": "array",
"minItems": 1,
"items": {
"oneOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/name-pattern-template"
},
{
"$ref": "#/definitions/name-pattern"
}
]
}
},
"list-reference": {
"description": "A reference to an element in Web-Types model.",
"oneOf": [
{
"$ref": "#/definitions/reference"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/reference"
}
}
]
},
"reference": {
"description": "A reference to an element in Web-Types model.",
"oneOf": [
{
"$ref": "#/definitions/reference-with-props"
},
{
"type": "string"
}
]
},
"reference-with-props": {
"type": "object",
"properties": {
"path": {
"type": "string"
},
"includeVirtual": {
"type": "boolean",
"default": true
},
"includeAbstract": {
"type": "boolean"
},
"filter": {
"type": "string"
}
},
"required": ["path"]
},
"extends": {
"$ref": "#/definitions/reference"
},
"default": {
"type": "string"
},
"required": {
"type": "boolean"
},
"deprecated": {
"type": "boolean",
"default": false
},
"experimental": {
"type": "boolean",
"default": false
},
"pattern": {
"description": "A RegEx pattern to match whole content. Syntax should work with at least ECMA, Java and Python implementations.",
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"regex": {
"type": "string"
},
"case-sensitive": {
"type": "boolean",
"default": true
}
}
}
]
},
"html-contributions-host": {
"type": "object",
"javaInterfaces": ["GenericContributionsHost"],
"javaInterface": true,
"properties": {
"elements": {
"description": "HTML elements.",
"type": "array",
"items": {
"$ref": "#/definitions/html-element"
}
},
"attributes": {
"description": "HTML attributes.",
"type": "array",
"items": {
"$ref": "#/definitions/html-attribute"
}
},
"events": {
"type": "array",
"items": {
"$ref": "#/definitions/generic-html-contribution"
},
"description": "DOM events are deprecated in HTML namespace. Contribute events to JS namespace: /js/events",
"deprecationMessage": "Contribute events to JS namespace: /js/events"
}
},
"patternProperties": {
"^(?!pattern$).*$": {
"$ref": "#/definitions/generic-html-contributions"
}
}
},
"generic-html-contributions": {
"javaLenientDeserialize": true,
"oneOf": [
{
"$ref": "#/definitions/generic-html-contribution-or-property"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/generic-html-contribution-or-property"
}
}
]
},
"generic-html-contribution-or-property": {
"javaInterfaces": ["GenericContributionOrProperty"],
"oneOf": [
{
"$ref": "#/definitions/generic-html-contribution"
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
}
]
},
"generic-html-contribution": {
"type": "object",
"allOf": [
{
"$ref": "#/definitions/generic-contribution"
},
{
"$ref": "#/definitions/html-contributions-host"
}
]
},
"html": {
"type": "object",
"description": "Contains contributions to HTML namespace. It's property names represent symbol kinds, its property values contain list of contributions of particular kind. There are 2 predefined kinds, which integrate directly with IDE - HTML elements and HTML attributes. There are also 2 deprecated kinds: tags (which is equivalent to 'elements') and 'events' (which was moved to JS namespace)",
"allOf": [
{
"$ref": "#/definitions/html-contributions-host"
}
],
"properties": {
"types-syntax": {
"$ref": "#/definitions/deprecated-types-syntax"
},
"description-markup": {
"$ref": "#/definitions/deprecated-description-markup"
},
"tags": {
"type": "array",
"description": "Deprecated, use `elements` property.",
"deprecationMessage": "Use `elements` property.",
"items": {
"$ref": "#/definitions/html-element"
}
}
}
},
"html-element": {
"type": "object",
"allOf": [
{
"$ref": "#/definitions/base-contribution"
},
{
"$ref": "#/definitions/html-contributions-host"
}
]
},
"html-attribute": {
"type": "object",
"allOf": [
{
"$ref": "#/definitions/base-contribution"
},
{
"$ref": "#/definitions/html-contributions-host"
}
],
"properties": {
"value": {
"$ref": "#/definitions/html-attribute-value"
},
"default": {
"type": "string"
},
"required": {
"$ref": "#/definitions/required"
},
"vue-argument": {
"$ref": "#/definitions/deprecated-html-attribute-vue-argument"
},
"vue-modifiers": {
"description": "Deprecated vue-specific property - contribute Vue directives to /contributions/html/vue-directives",
"deprecationMessage": "Contribute Vue directives to /contributions/html/vue-directives",
"type": "array",
"items": {
"$ref": "#/definitions/deprecated-html-attribute-vue-modifier"
}
}
}
},
"html-attribute-value": {
"type": "object",
"properties": {
"kind": {
"type": "string",
"enum": ["no-value", "plain", "expression"]
},
"type": {
"$ref": "#/definitions/html-value-type"
},
"required": {
"type": "boolean"
},
"default": {
"type": "string"
}
},
"additionalProperties": false
},
"css-contributions-host": {
"type": "object",
"javaInterfaces": ["GenericContributionsHost"],
"javaInterface": true,
"properties": {
"properties": {
"type": "array",
"description": "CSS properties",
"items": {
"$ref": "#/definitions/css-property"
}
},
"pseudo-elements": {
"description": "CSS pseudo-elements",
"type": "array",
"items": {
"$ref": "#/definitions/css-pseudo-element"
}
},
"pseudo-classes": {
"description": "CSS pseudo-classes",
"type": "array",
"items": {
"$ref": "#/definitions/css-pseudo-class"
}
},
"functions": {
"description": "CSS functions",
"type": "array",
"items": {
"$ref": "#/definitions/css-generic-item"
}
},
"classes": {
"description": "CSS classes",
"type": "array",
"items": {
"$ref": "#/definitions/css-generic-item"
}
}
},
"patternProperties": {
"^(?!pattern$).*$": {
"$ref": "#/definitions/generic-css-contributions"
}
}
},
"generic-css-contributions": {
"javaLenientDeserialize": true,
"oneOf": [
{
"$ref": "#/definitions/generic-css-contribution-or-property"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/generic-css-contribution-or-property"
}
}
]
},
"generic-css-contribution-or-property": {
"javaInterfaces": ["GenericContributionOrProperty"],
"oneOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"$ref": "#/definitions/generic-css-contribution"
}
]
},
"generic-css-contribution": {
"type": "object",
"allOf": [
{
"$ref": "#/definitions/generic-contribution"
},
{
"$ref": "#/definitions/css-contributions-host"
}
]
},
"css": {
"type": "object",
"description": "Contains contributions to CSS namespace. It's property names represent symbol kinds, its property values contain list of contributions of particular kind. There are 5 predefined kinds, which integrate directly with IDE - properties, classes, functions, pseudo-elements and pseudo-classes.",
"allOf": [
{
"$ref": "#/definitions/css-contributions-host"
}
]
},
"css-property": {
"type": "object",
"allOf": [
{
"$ref": "#/definitions/base-contribution"
},
{
"$ref": "#/definitions/css-contributions-host"
}
],
"properties": {
"values": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"css-generic-item": {
"type": "object",
"allOf": [
{
"$ref": "#/definitions/base-contribution"
},
{
"$ref": "#/definitions/css-contributions-host"
}
]
},
"css-pseudo-element": {
"type": "object",
"allOf": [
{
"$ref": "#/definitions/base-contribution"
},
{
"$ref": "#/definitions/css-contributions-host"
}
],
"properties": {
"arguments": {
"type": "boolean",
"description": "Specify whether the pseudo-element requires arguments."
}
}
},
"css-pseudo-class": {
"type": "object",
"allOf": [
{
"$ref": "#/definitions/base-contribution"
},
{
"$ref": "#/definitions/css-contributions-host"
}
],
"properties": {
"arguments": {
"type": "boolean",
"description": "Specify whether the pseudo-class requires arguments."
}
}
},
"js-contributions-host": {
"type": "object",
"javaInterfaces": ["GenericContributionsHost"],
"javaInterface": true,
"properties": {
"events": {
"type": "array",
"items": {
"$ref": "#/definitions/generic-js-contribution"
},
"description": "DOM events"
},
"properties": {
"type": "array",
"items": {
"$ref": "#/definitions/generic-js-contribution"
},
"description": "JavaScript properties of an object, HTML tag, framework component, etc."
}
},
"patternProperties": {
"^(?!pattern$).*$": {
"$ref": "#/definitions/generic-js-contributions"
}
}
},
"generic-js-contributions": {
"javaLenientDeserialize": true,
"oneOf": [
{
"$ref": "#/definitions/generic-js-contribution-or-property"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/generic-js-contribution-or-property"
}
}
]
},
"generic-js-contribution-or-property": {
"javaInterfaces": ["GenericContributionOrProperty"],
"oneOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"$ref": "#/definitions/generic-js-contribution"
}
]
},
"generic-js-contribution": {
"type": "object",
"allOf": [
{
"$ref": "#/definitions/generic-contribution"
},
{
"$ref": "#/definitions/js-contributions-host"
}
]
},
"js": {
"type": "object",
"description": "Contains contributions to JS namespace. It's property names represent symbol kinds, its property values contain list of contributions of particular kind. There are 2 predefined kinds, which integrate directly with IDE - properties and events.",
"allOf": [
{
"$ref": "#/definitions/js-contributions-host"
}
]
},
"deprecated-types-syntax": {
"oneOf": [
{
"$ref": "#/definitions/js-types-syntax"
}
],
"description": "Deprecated, use top-level js-types-syntax property.",
"deprecationMessage": "Use top-level js-types-syntax property."
},
"deprecated-description-markup": {
"description": "Deprecated, use top-level property.",
"deprecationMessage": "Use top-level property.",
"oneOf": [
{
"$ref": "#/definitions/description-markup"
}
]
},
"deprecated-html-attribute-vue-argument": {
"type": "object",
"description": "Deprecated vue-specific property - contribute Vue directives to /contributions/html/vue-directives",
"deprecationMessage": "Contribute Vue directives to /contributions/html/vue-directives",
"properties": {
"pattern": {
"$ref": "#/definitions/name-pattern-root"
},
"description": {
"$ref": "#/definitions/description"
},
"doc-url": {
"$ref": "#/definitions/doc-url"
},
"required": {
"description": "Whether directive requires an argument",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
},
"deprecated-html-attribute-vue-modifier": {
"type": "object",
"properties": {
"name": {
"$ref": "#/definitions/name"
},
"pattern": {
"$ref": "#/definitions/name-pattern-root"
},
"description": {
"$ref": "#/definitions/description"
},
"doc-url": {
"$ref": "#/definitions/doc-url"
}
},
"required": ["name"],
"additionalProperties": false
}
},
"id": "https://json.schemastore.org/web-types.json",
"properties": {
"$schema": {
"type": "string"
},
"framework": {
"description": "Framework, for which the components are provided by the library. If the library is not enabled in a particular context, all symbols from this file will not be available as well. If you want symbols to be always available do not specify framework.",
"type": "string"
},
"name": {
"description": "Name of the library.",
"type": "string"
},
"version": {
"description": "Version of the library, for which Web-Types are provided.",
"type": "string"
},
"js-types-syntax": {
"$ref": "#/definitions/js-types-syntax"
},
"description-markup": {
"$ref": "#/definitions/description-markup"
},
"framework-config": {
"$ref": "#/definitions/framework-config"
},
"default-icon": {
"$ref": "#/definitions/icon"
},
"contributions": {
"description": "Symbol can be contributed to one of the 3 namespaces - HTML, CSS and JS. Within a particular namespace there can be different kinds of symbols. In each of the namespaces, there are several predefined kinds, which integrate directly with IDE, but providers are free to define their own.",
"type": "object",
"properties": {
"html": {
"$ref": "#/definitions/html"
},
"css": {
"$ref": "#/definitions/css"
},
"js": {
"$ref": "#/definitions/js"
}
},
"additionalProperties": false
}
},
"required": ["name", "version"],
"title": "JSON schema for Web-Types",
"type": "object"
}
| web-types |
{
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"dateUTCISO": {
"pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$",
"type": "string"
}
},
"description": "Track cache-wide data",
"properties": {
"lastSweep": {
"$ref": "#/definitions/dateUTCISO"
}
},
"required": [
"lastSweep"
],
"type": "object"
} | o20376 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://jetbrains.org/intellij/schema/product.schema.json",
"title": "IntelliJ-based IDE installation",
"description": "Meta-information about installation of an IDE based on IntelliJ Platform",
"version": "0.1",
"type": "object",
"required": [
"name",
"version",
"buildNumber",
"productCode",
"launch"
],
"properties": {
"name": {
"description": "Full name of the product without edition, e.g. 'IntelliJ IDEA' or 'PyCharm'",
"type": "string"
},
"version": {
"description": "Marketing version of the product, e.g. '2018.3'",
"type": "string"
},
"versionSuffix": {
"description": "Specifies type of this product version which is shown after the version number in the UI, e.g. 'EAP', 'EAP 2', 'Preview', etc. May be omitted (e.g. for release builds).",
"type": "string"
},
"buildNumber": {
"description": "Build number of the product, e.g. '183.239' or '183.SNAPSHOT'",
"type": "string"
},
"productCode": {
"description": "Product code (e.g. 'IC' for IntelliJ IDEA Community Edition) as used in full build number",
"type": "string"
},
"dataDirectoryName": {
"description": "Name of a directory used for storing settings, caches, etc. (e.g. 'IntelliJIdea2020.1' for IntelliJ IDEA 2020.1); the full path to the directory is OS-specific.",
"type": "string"
},
"svgIconPath": {
"description": "Path to an SVG file which contains the product icon (relative to the parent directory of this file, '/' as a separator, may start with '../'), e.g. 'bin/idea.svg'",
"type": "string"
},
"launch": {
"description": "Specifies how the IDE can be launched",
"type": "array",
"items": {
"type": "object",
"required": [
"os",
"launcherPath",
"vmOptionsFilePath"
],
"minItems": 1,
"properties": {
"os": {
"description": "Operation system this launch method is supposed to be used for",
"type": "string",
"enum": [
"Windows",
"Linux",
"macOS"
]
},
"launcherPath": {
"description": "Path to an executable file which starts the IDE (relative to the parent directory of this file, '/' as a separator, may start with '../'), e.g. 'bin/idea.sh'",
"type": "string"
},
"javaExecutablePath": {
"description": "Path to an JRE executable file (relative to the parent directory of this file, '/' as a separator, may start with '../'), e.g. 'jre64/bin/java'. May be missing if JRE isn't bundled with the product.",
"type": "string"
},
"vmOptionsFilePath": {
"description": "Path to a file containing JVM options which are used to start the IDE (relative to the parent directory of this file, '/' as a separator, may start with '../'), e.g. 'bin/idea64.vmoptions'",
"type": "string"
},
"startupWmClass": {
"description": "Value of 'WMClass' property used by some Linux desktop distributions to associate windows with the owning application, e.g. 'jetbrains-idea'. May be specified only if 'os' is 'Linux'.",
"type": "string"
}
}
}
}
}
} | o90954 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_FlowDistinguisherMethod": {
"description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.",
"properties": {
"type": {
"description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_FlowSchema": {
"description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".",
"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": [
"FlowSchema"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_FlowSchemaSpec",
"description": "`spec` is the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
},
"status": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_FlowSchemaStatus",
"description": "`status` is the current status of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status"
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "flowcontrol.apiserver.k8s.io",
"kind": "FlowSchema",
"version": "v1alpha1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_FlowSchemaCondition": {
"description": "FlowSchemaCondition describes conditions for a FlowSchema.",
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "`lastTransitionTime` is the last time the condition transitioned from one status to another."
},
"message": {
"description": "`message` is a human-readable message indicating details about last transition.",
"type": "string"
},
"reason": {
"description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "`status` is the status of the condition. Can be True, False, Unknown. Required.",
"type": "string"
},
"type": {
"description": "`type` is the type of the condition. Required.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_FlowSchemaSpec": {
"description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.",
"properties": {
"distinguisherMethod": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_FlowDistinguisherMethod",
"description": "`distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema. `nil` specifies that the distinguisher is disabled and thus will always be the empty string."
},
"matchingPrecedence": {
"_format": "int32",
"description": "`matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default.",
"type": "integer"
},
"priorityLevelConfiguration": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationReference",
"description": "`priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status. Required."
},
"rules": {
"description": "`rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PolicyRulesWithSubjects"
},
"type": "array",
"x-kubernetes-list-type": "atomic"
}
},
"required": [
"priorityLevelConfiguration"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_FlowSchemaStatus": {
"description": "FlowSchemaStatus represents the current state of a FlowSchema.",
"properties": {
"conditions": {
"description": "`conditions` is a list of the current states of FlowSchema.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_FlowSchemaCondition"
},
"type": "array",
"x-kubernetes-list-map-keys": [
"type"
],
"x-kubernetes-list-type": "map"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_GroupSubject": {
"description": "GroupSubject holds detailed information for group-kind subject.",
"properties": {
"name": {
"description": "name is the user group that matches, or \"*\" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_NonResourcePolicyRule": {
"description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.",
"properties": {
"nonResourceURLs": {
"description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n - \"/healthz\" is legal\n - \"/hea*\" is illegal\n - \"/hea\" is legal but matches nothing\n - \"/hea/*\" also matches nothing\n - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
},
"verbs": {
"description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
}
},
"required": [
"verbs",
"nonResourceURLs"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PolicyRulesWithSubjects": {
"description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.",
"properties": {
"nonResourceRules": {
"description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_NonResourcePolicyRule"
},
"type": "array",
"x-kubernetes-list-type": "atomic"
},
"resourceRules": {
"description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_ResourcePolicyRule"
},
"type": "array",
"x-kubernetes-list-type": "atomic"
},
"subjects": {
"description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_Subject"
},
"type": "array",
"x-kubernetes-list-type": "atomic"
}
},
"required": [
"subjects"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationReference": {
"description": "PriorityLevelConfigurationReference contains information that points to the \"request-priority\" being used.",
"properties": {
"name": {
"description": "`name` is the name of the priority level configuration being referenced Required.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_ResourcePolicyRule": {
"description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request.",
"properties": {
"apiGroups": {
"description": "`apiGroups` is a list of matching API groups and may not be empty. \"*\" matches all API groups and, if present, must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
},
"clusterScope": {
"description": "`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list.",
"type": "boolean"
},
"namespaces": {
"description": "`namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains \"*\". Note that \"*\" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
},
"resources": {
"description": "`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ \"services\", \"nodes/status\" ]. This list may not be empty. \"*\" matches all resources and, if present, must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
},
"verbs": {
"description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs and, if present, must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
}
},
"required": [
"verbs",
"apiGroups",
"resources"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_ServiceAccountSubject": {
"description": "ServiceAccountSubject holds detailed information for service-account-kind subject.",
"properties": {
"name": {
"description": "`name` is the name of matching ServiceAccount objects, or \"*\" to match regardless of name. Required.",
"type": "string"
},
"namespace": {
"description": "`namespace` is the namespace of matching ServiceAccount objects. Required.",
"type": "string"
}
},
"required": [
"namespace",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_Subject": {
"description": "Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.",
"properties": {
"group": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_GroupSubject"
},
"kind": {
"description": "Required",
"type": "string"
},
"serviceAccount": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_ServiceAccountSubject"
},
"user": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_UserSubject"
}
},
"required": [
"kind"
],
"type": "object",
"x-kubernetes-unions": [
{
"discriminator": "kind",
"fields-to-discriminateBy": {
"group": "Group",
"serviceAccount": "ServiceAccount",
"user": "User"
}
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_UserSubject": {
"description": "UserSubject holds detailed information for user-kind subject.",
"properties": {
"name": {
"description": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
"type": "string"
}
},
"required": [
"name"
],
"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": "FlowSchemaList is a list of FlowSchema 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": [
"flowcontrol.apiserver.k8s.io/v1alpha1"
],
"type": [
"string",
"null"
]
},
"items": {
"description": "`items` is a list of FlowSchemas.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_FlowSchema"
},
"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": [
"FlowSchemaList"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta",
"description": "`metadata` is the standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "flowcontrol.apiserver.k8s.io",
"kind": "FlowSchemaList",
"version": "v1alpha1"
}
]
} | kb_366_Normalized |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"bitbucket": {
"properties": {
"name": {
"default": "bitbucket",
"description": "name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"type": "object"
} | o60275 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"Type",
"HttpMethod",
"ResourceId",
"RestApiId"
],
"additionalProperties": false,
"properties": {
"Type": {
"type": "string",
"enum": [
"HTTP",
"AWS",
"MOCK"
]
},
"HttpMethod": {
"type": "string",
"enum": [
"DELETE",
"GET",
"HEAD",
"OPTIONS",
"PATCH",
"POST",
"PUT"
]
},
"ResourceId": {
"type": "string",
"pattern": "^[a-z0-9]+$"
},
"RestApiId": {
"type": "string",
"pattern": "^[a-z0-9]{10}$"
},
"CacheKeyParameters": {
"type": "array",
"items": {
"type": "string"
}
},
"CacheNamespace": {
"type": "string"
},
"Credentials": {
"type": "string"
},
"IntegrationHttpMethod": {
"type": "string"
},
"RequestTemplates": {
"type": "object",
"properties": {},
"patternProperties": {
".+": {
"type": "string"
}
},
"additionalProperties": false
},
"RequestParameters": {
"type": "object",
"properties": {},
"patternProperties": {
"^integration\\.request\\.(querystring|path|header)\\..+$": {
"type": "string",
"pattern": "^(method\\.request\\.(querystring|header|path)\\..+)|('.*')$"
}
},
"additionalProperties": false
},
"Uri": {
"type": "string"
}
}
} | o21849 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"description": {
"description": "A description of the environmental property",
"type": "string"
},
"id": {
"description": "Integer data. Ex: 2673",
"type": "integer"
},
"name": {
"description": "The environmental property being measured",
"type": "string"
},
"owner": {
"description": "A single related resource. Can be either a URI or set of nested resource data.",
"type": "string"
},
"resource_uri": {
"description": "Unicode string data. Ex: \"Hello World\"",
"type": "string"
},
"units": {
"description": "The units in which the environmental property is measured",
"type": "string"
},
"value": {
"description": "The value of the environmental property",
"type": "string"
}
},
"required": [
"value",
"name",
"owner"
],
"title": "Schema for environment objects",
"type": "object"
} | o58600 |
{
"id": "http://schlothauer.de/schemas/simple_gis_object.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "GIS_object",
"description": "A GIS object is an application defined type that owns GIS coordinates",
"type": "object",
"properties": {
"gis": {
"description": "Definition of an object that owns GIS coordinates. At minimum an object of this type owns one of the props",
"type": "object",
"properties": {
"center": {
"type": "string"
},
"area": {
"type": "string"
},
"route": {
"type": "string"
}
}
}
},
"required": [
"gis"
],
"version": 1
} | o73969 |
{
"properties": {
"dimensions": {
"properties": {
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius",
"length",
"width"
],
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. circle, rectangle)",
"type": "string"
}
},
"required": [
"shape"
],
"type": "object"
} | calculate_area_4411afc9 |
{
"properties": {
"diet": {
"description": "The dietary restrictions to consider",
"enum": [
"vegetarian",
"vegan",
"gluten-free",
"dairy-free",
"nut-free"
],
"type": "string"
},
"ingredients": {
"description": "The ingredients available for cooking",
"items": {
"type": "string"
},
"type": "array"
},
"max_prep_time": {
"description": "The maximum preparation time for the recipe",
"type": "integer"
}
},
"required": [
"ingredients"
],
"type": "object"
} | search_recipes_by_ingredients_016d76f7 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "HTML Email Template Schema",
"description": "Defines the customization points available in an HTML body email template.",
"type": "object",
"additionalProperties": false,
"required": [
"meta",
"htmlContent"
],
"properties": {
"meta": {
"type": "object",
"title": "Email",
"required": [
"fromName",
"fromAddress",
"subject"
],
"additionalProperties": false,
"properties": {
"fromName": {
"type": "string",
"title": "From Name",
"default": "My Company",
"propertyOrder": 1,
"minLength": 1,
"options": {
"validate": [
"handlebars"
]
}
},
"fromAddress": {
"type": "string",
"title": "From Address",
"default": "[email protected]",
"propertyOrder": 2,
"minLength": 5,
"options": {
"validate": [
"handlebars"
]
}
},
"subject": {
"type": "string",
"title": "Subject",
"propertyOrder": 3,
"minLength": 1,
"options": {
"validate": [
"handlebars"
],
"input_height": "50px"
}
}
}
},
"htmlContent": {
"type": "string",
"title": "HTML Content",
"description": "Raw HTML content that can use {{mergeTags}} from handlebars"
}
}
} | o72180 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"version",
"release",
"arch",
"vendor",
"checksum"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"version": {
"type": "string",
"minLength": 1
},
"release": {
"type": "string",
"minLength": 1
},
"arch": {
"type": "string",
"minLength": 1
},
"vendor": {
"type": "string"
},
"checksum": {
"type": "string",
"pattern": "^[a-f0-9]+$"
}
}
}
} | o65929 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "ReplicaSetCondition describes the state of a replica set at a certain point.",
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "The last time the condition transitioned from one status to another."
},
"message": {
"description": "A human readable message indicating details about the transition.",
"type": [
"string",
"null"
]
},
"reason": {
"description": "The reason for the condition's last transition.",
"type": [
"string",
"null"
]
},
"status": {
"description": "Status of the condition, one of True, False, Unknown.",
"type": [
"string",
"null"
]
},
"type": {
"description": "Type of replica set condition.",
"type": [
"string",
"null"
]
}
},
"required": [
"type",
"status"
],
"type": "object"
} | kb_800_Normalized |
{
"title": "Invocation manifest for FSL: SIENA - Longitudinal analysis of brain change",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"config": {
"type": "object",
"properties": {
"BET": {
"default": "",
"id": "-B",
"type": "string"
},
"BOTTOM": {
"default": "",
"id": "-b",
"type": "string"
},
"DEBUG": {
"default": false,
"id": "-d",
"type": "boolean"
},
"SEG": {
"default": false,
"id": "-2",
"type": "boolean"
},
"SS_BET": {
"default": false,
"id": "-m",
"type": "boolean"
},
"S_DIFF": {
"default": "",
"id": "-S",
"type": "string"
},
"T2": {
"default": false,
"id": "-t2",
"type": "boolean"
},
"TOP": {
"default": "",
"id": "-t",
"type": "string"
},
"VENT": {
"default": false,
"id": "-V",
"type": "boolean"
}
},
"required": [
"BET",
"BOTTOM",
"DEBUG",
"SEG",
"SS_BET",
"S_DIFF",
"T2",
"TOP",
"VENT"
]
},
"inputs": {
"type": "object",
"properties": {
"key": {
"type": "object"
},
"NIFTI_1": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
},
"NIFTI_2": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
},
"ventricle_mask": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
}
},
"required": [
"key",
"NIFTI_1",
"NIFTI_2"
]
}
},
"required": [
"config",
"inputs"
]
} | o41286 |
{
"description": "Article related configurations",
"properties": {
"highlight": {
"description": "Code highlight settings",
"nullable": true,
"properties": {
"clipboard": {
"default": true,
"description": "Show copy code button",
"nullable": true,
"type": "boolean"
},
"fold": {
"default": "unfolded",
"description": "Default folding status of the code blocks. Can be \"\", \"folded\", \"unfolded\"",
"enum": [
"",
"folded",
"unfolded"
],
"nullable": true,
"type": "string"
},
"theme": {
"default": "atom-one-light",
"description": "Code highlight themes\nhttps://github.com/highlightjs/highlight.js/tree/master/src/styles",
"nullable": true,
"type": "string"
}
},
"type": "object"
},
"readtime": {
"default": true,
"description": "Whether to show estimated article reading time",
"nullable": true,
"type": "boolean"
},
"thumbnail": {
"default": true,
"description": "Whether to show thumbnail image for every article",
"nullable": true,
"type": "boolean"
}
},
"type": "object"
} | o67675 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.10.5/traits/trait_content_restrictions.json",
"title": "Content Restrictions",
"description": "Trait that applies contains the content restrictions of an ANS object.",
"type": "object",
"properties": {
"content_code": {
"type": "string",
"description": "The content restriction code/level/flag associated with the ANS object"
},
"embargo": {
"description": "Embargo configuration to enforce publishing restrictions. Embargoed content must not go live.",
"type": "object",
"additionalProperties": false,
"properties": {
"active": {
"type": "boolean",
"description": "The boolean flag to indicate if the embargo is active or not. If this field is false, ignore the embargo."
},
"end_time": {
"type": "string",
"format": "date-time",
"description": "An optional end time for the embargo to indicate when it ends. When it's not defined, it means the embargo keeps applying. The end time should be ignored if active flag is false."
},
"description": {
"description": "An optional description for the embargo.",
"type": "string"
}
},
"required": [
"active"
]
},
"geo": {
"type": "object",
"description": "Geo-Restriction configuration that contains the restriction ids that this content should be associated with.",
"additionalProperties": false,
"properties": {
"restrictions": {
"type": "array",
"description": "An array containing the geo-restriction objects. Limited to a size of 1 for now.",
"minItems": 1,
"maxItems": 1,
"items": {
"type": "object",
"description": "An object specifying the _id of the restriction this content should be associated with.",
"additionalProperties": false,
"properties": {
"restriction_id": {
"type": "string",
"description": "The _id of the restriction that is stored in Global Settings."
}
},
"required": [
"restriction_id"
]
}
}
},
"required": [
"restrictions"
]
}
}
} | o85913 |
{
"properties": {
"User": {
"properties": {
"age": {
"format": "int32",
"type": "integer"
},
"foo": {
"format": "bar",
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"key": {
"type": "string"
},
"ref": {
"format": "ext-ref",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
} | o39448 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_PolicyRule": {
"description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.",
"properties": {
"apiGroups": {
"description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.",
"items": {
"type": "string"
},
"type": "array"
},
"nonResourceURLs": {
"description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.",
"items": {
"type": "string"
},
"type": "array"
},
"resourceNames": {
"description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.",
"items": {
"type": "string"
},
"type": "array"
},
"resources": {
"description": "Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '*/foo' represents the subresource 'foo' for all resources in the specified apiGroups.",
"items": {
"type": "string"
},
"type": "array"
},
"verbs": {
"description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"verbs"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_Role": {
"description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.20.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": "string"
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"Role"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata."
},
"rules": {
"description": "Rules holds all the PolicyRules for this Role",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_PolicyRule"
},
"type": "array"
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "rbac.authorization.k8s.io",
"kind": "Role",
"version": "v1beta1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": {
"description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
"properties": {
"continue": {
"description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
"type": "string"
},
"remainingItemCount": {
"_format": "int64",
"description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
"type": "integer"
},
"resourceVersion": {
"description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "RoleList is a collection of Roles Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.20.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": [
"string",
"null"
]
},
"items": {
"description": "Items is a list of Roles",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_Role"
},
"type": [
"array",
"null"
]
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"RoleList"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta",
"description": "Standard object's metadata."
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "rbac.authorization.k8s.io",
"kind": "RoleList",
"version": "v1beta1"
}
]
} | kb_865_Normalized |
{
"additionalProperties": false,
"description": "Snowplow Google BigQuery storage configuration",
"properties": {
"badRows": {
"description": "Google PubSub topic name to sink rows that were couldn't be transformed to TableRow",
"maxLength": 255,
"minLength": 3,
"type": "string"
},
"datasetId": {
"description": "BigQuery dataset id",
"type": "string"
},
"failedInserts": {
"description": "Google PubSub topic name to sink rows that were couldn't be inserted into BigQuery (due not existing column or service outage)",
"maxLength": 255,
"minLength": 3,
"type": "string"
},
"id": {
"_format": "uuid",
"description": "Machine-readable unique identifier",
"type": "string"
},
"input": {
"description": "Google PubSub subscription name with enriched TSV data",
"maxLength": 255,
"minLength": 3,
"type": "string"
},
"load": {
"description": "Loading mode and associated settings",
"oneOf": [
{
"properties": {
"mode": {
"enum": [
"STREAMING_INSERTS"
]
},
"retry": {
"description": "Whether transient failures should be retried or sent straight to failedInserts topic",
"type": "boolean"
}
},
"required": [
"retry"
]
},
{
"properties": {
"frequency": {
"description": "Frequency of load jobs, in seconds",
"maximum": 86400,
"minimum": 100,
"type": "integer"
},
"mode": {
"enum": [
"FILE_LOADS"
]
}
},
"required": [
"frequency"
]
}
],
"required": [
"mode"
],
"type": "object"
},
"name": {
"description": "Human-readable storage target name, used only for logging",
"type": "string"
},
"projectId": {
"description": "GCP project id",
"type": "string"
},
"purpose": {
"enum": [
"ENRICHED_EVENTS"
],
"type": "string"
},
"tableId": {
"description": "BigQuery table id",
"type": "string"
},
"typesSubscription": {
"description": "Google PubSub subscription name where Mutator gets observed types",
"maxLength": 255,
"minLength": 3,
"type": "string"
},
"typesTopic": {
"description": "Google PubSub topic name for sending observed types",
"type": "string"
}
},
"required": [
"name",
"id",
"projectId",
"input",
"datasetId",
"tableId",
"load",
"typesTopic",
"badRows",
"failedInserts",
"typesSubscription",
"purpose"
],
"self": {
"format": "jsonschema",
"name": "bigquery_config",
"vendor": "com.snowplowanalytics.snowplow.storage",
"version": "1-0-0"
},
"type": "object"
} | sp_361_Normalized |
{
"properties": {
"database": {
"description": "MySQL database configuration properties",
"properties": {
"name": {
"default": "defaultdb",
"description": "The name of a database to be created on startup.",
"type": "string"
},
"password": {
"default": "password",
"description": "The password for a user to be created with superuser access to this database only.",
"type": "string"
},
"root_password": {
"default": "root",
"description": "Specifies the password that will be set for the MySQL root superuser account.",
"type": "string"
},
"username": {
"default": "admin",
"description": "The username of a user to be created with superuser access to this database only.",
"type": "string"
}
},
"type": "object"
},
"mysql": {
"description": "MySQL service configuration properties",
"properties": {
"cpus": {
"default": 0.5,
"description": "CPU shares to allocate to each service instance.",
"minimum": 0.5,
"type": "number"
},
"mem": {
"default": 1024.0,
"description": "Memory to allocate to each service instance.",
"minimum": 512.0,
"type": "number"
}
},
"required": [
"cpus",
"mem"
],
"type": "object"
},
"networking": {
"description": "MySQL networking configuration properties",
"properties": {
"external_access": {
"description": "Enable access from outside the cluster through Marathon-LB.\nNOTE: this connection is unencrypted.",
"properties": {
"enable": {
"default": false,
"description": "Enable or disable creating a VIP for external access through a public node running Marathon-LB.",
"type": "boolean"
},
"external_access_port": {
"default": 13306,
"description": "For external access, port number to be used for clear communication in the external Marathon-LB load balancer",
"type": "number"
}
},
"type": "object"
},
"host_mode": {
"default": false,
"description": "Enable or disable host networking mode. NOTE: this requires the default port to be available on the target host. This also forces to have a single instance per node.",
"type": "boolean"
},
"port": {
"default": 3306,
"description": "Port number to be used for clear communication internally to the cluster. Currently unused and fixed to be 3306.",
"type": "number"
}
},
"type": "object"
},
"service": {
"description": "DC/OS service configuration properties",
"properties": {
"name": {
"default": "mysql",
"description": "Name of this service instance",
"type": "string"
}
},
"type": "object"
},
"storage": {
"description": "MySQL storage configuration properties",
"properties": {
"host_volume": {
"default": "/tmp",
"description": "If using non-persistent volumes (local volumes), this sets the location of a volume on the host to be used for the service. The final location will be derived from this value plus the name set in `name` (e.g. `/mnt/host_volume/service_name`). This can be a mounted NFS drive. Note that this path must be the same on all DC/OS agents. NOTE: if you don't change the default /tmp value, YOUR DATA WILL NOT BE SAVED IN ANY WAY.",
"type": "string"
},
"persistence": {
"description": "Enable persistent storage.",
"properties": {
"enable": {
"default": false,
"description": "Enable or disable persistent storage.",
"type": "boolean"
},
"external": {
"description": "External persistent storage properties",
"properties": {
"driver": {
"default": "rexray",
"description": "Volume driver to use for storage. The default value should be correct for most use cases.",
"type": "string"
},
"enable": {
"default": false,
"description": "Enable or disable external persistent storage. The `persistence` option must also be selected. Please note that for these to work, your DC/OS cluster MUST have been installed with the right options in `config.yaml`. Also, please note this requires a working configuration file for the driver (e.g. `rexray.yaml`).",
"type": "boolean"
},
"provider": {
"default": "dvdi",
"description": "Provider of the external persistent volume. The default value should be correct for most use cases.",
"type": "string"
},
"volume_name": {
"default": "mysql",
"description": "Name that your volume driver uses to look up your external volume. When your task is staged on an agent, the volume driver queries the storage service for a volume with this name. If one does not exist, it is created implicitly. Otherwise, the existing volume is reused.",
"type": "string"
}
},
"type": "object"
},
"volume_size": {
"default": 256,
"description": "If a new volume is to be created, this controls its size in MBs.",
"type": "number"
}
},
"type": "object"
}
},
"type": "object"
}
}
} | o90788 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceCondition": {
"description": "APIServiceCondition describes the state of an APIService at a particular point",
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Last time the condition transitioned from one status to another."
},
"message": {
"description": "Human-readable message indicating details about last transition.",
"type": "string"
},
"reason": {
"description": "Unique, one-word, CamelCase reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "Status is the status of the condition. Can be True, False, Unknown.",
"type": "string"
},
"type": {
"description": "Type is the type of the condition.",
"type": "string"
}
},
"required": [
"type",
"status"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceSpec": {
"description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.",
"properties": {
"caBundle": {
"_format": "byte",
"description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.",
"type": "string"
},
"group": {
"description": "Group is the API group name this server hosts",
"type": "string"
},
"groupPriorityMinimum": {
"_format": "int32",
"description": "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s",
"type": "integer"
},
"insecureSkipTLSVerify": {
"description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.",
"type": "boolean"
},
"service": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_ServiceReference",
"description": "Service is a reference to the service for this API server. It must communicate on port 443. If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled."
},
"version": {
"description": "Version is the API version this server hosts. For example, \"v1\"",
"type": "string"
},
"versionPriority": {
"_format": "int32",
"description": "VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.",
"type": "integer"
}
},
"required": [
"groupPriorityMinimum",
"versionPriority"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceStatus": {
"description": "APIServiceStatus contains derived information about an API server",
"properties": {
"conditions": {
"description": "Current service state of apiService.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceCondition"
},
"type": "array",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_ServiceReference": {
"description": "ServiceReference holds a reference to Service.legacy.k8s.io",
"properties": {
"name": {
"description": "Name is the name of the service",
"type": "string"
},
"namespace": {
"description": "Namespace is the namespace of the 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"
}
},
"type": "object"
}
},
"description": "APIService represents a server for a particular GroupVersion. Name must be \"version.group\".",
"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": [
"apiregistration.k8s.io/v1beta1"
],
"type": [
"string",
"null"
]
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"APIService"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceSpec",
"description": "Spec contains information for locating and communicating with a server"
},
"status": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceStatus",
"description": "Status contains derived information about an API server"
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "apiregistration.k8s.io",
"kind": "APIService",
"version": "v1beta1"
}
]
} | kb_25_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"description": "Spec to control the desired behavior of daemon set rolling update.",
"properties": {
"maxUnavailable": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update."
}
},
"type": "object"
} | kb_873_Normalized |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"coordinates": {
"type": "object",
"additionalProperties": false,
"required": [
"x",
"y"
],
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
}
}
},
"affineTransform": {
"description": "A 3x3 row-major matrix describing an affine transform to apply to the labwareOffset and calibrationPoint coordinates of the module (in certain circumstances, e.g. per slot)",
"type": "array",
"minItems": 3,
"maxItems": 3,
"items": {
"type": "array",
"minItems": 3,
"maxItems": 3,
"items": {
"type": "number"
}
}
}
},
"description": "Module specification",
"type": "object",
"required": [
"$otSharedSchema",
"moduleType",
"model",
"labwareOffset",
"dimensions",
"calibrationPoint",
"displayName",
"quirks",
"slotTransforms",
"compatibleWith"
],
"additionalProperties": false,
"properties": {
"$otSharedSchema": {
"type": "string",
"description": "The path to a valid Opentrons shared schema relative to the shared-data directory, without its extension. For instance, #/module/schemas/2 is a reference to this schema."
},
"moduleType": {
"enum": [
"temperatureModuleType",
"magneticModuleType",
"thermocyclerModuleType"
],
"type": "string"
},
"model": {
"type": "string",
"pattern": "^(temperatureModule|magneticModule|thermocyclerModule)V[0-9]+$"
},
"labwareOffset": {
"$ref": "#/definitions/coordinates"
},
"dimensions": {
"type": "object",
"required": [
"bareOverallHeight",
"overLabwareHeight"
],
"properties": {
"bareOverallHeight": {
"type": "number"
},
"overLabwareHeight": {
"type": "number"
},
"lidHeight": {
"type": "number"
}
}
},
"calibrationPoint": {
"$ref": "#/definitions/coordinates"
},
"displayName": {
"type": "string"
},
"quirks": {
"type": "array",
"description": "List of quirks for a given module",
"items": {
"type": "string"
}
},
"slotTransforms": {
"type": "object",
"description": "Per-deckmap sets of per-slot transforms, properties should be ids of decks such as \"ot2_standard\". Transforms for a deck not explicitly listed are the identity.",
"patternProperties": {
".*": {
"type": "object",
"patternProperties:": {
"^([1-9]|10|11)$": {
"type": "object",
"description": "Holds 2-D affine transforms that should be applied to top level keys plus the special property $image for applying to images images. If any top level key has no corresponding entry, it is an identity transform. If the transform applies to an entity specifying a 3D position, it should be applied only to the x and y.",
"patternProperties": {
".*": {
"type": "object",
"description": "The keys identify transforms that apply to different sections of the module definition. Most will be top level keys of the module def (for instance, \"labwareOffset\") but there may also be additional meta keys for values that are not in the def",
"patternProperties": {
".*": {
"$ref": "#/definitions/affineTransform"
}
}
}
}
}
}
}
}
},
"compatibleWith": {
"type": "array",
"items": {
"type": "string",
"description": "A compatible module model (e.g. temperatureModuleV1)"
}
}
}
} | o12456 |
{
"properties": {
"transforms": {
"items": {
"properties": {
"from": {
"type": "string"
},
"to": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
} | o83301 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"description": "The list of items in the invoice",
"items": {
"properties": {
"product_name": {
"description": "The name of the product",
"type": "string"
},
"quantity": {
"description": "The quantity of the product",
"type": "integer"
},
"unit_price": {
"description": "The unit price of the product",
"type": "number"
}
},
"required": [
"product_name",
"quantity",
"unit_price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"items"
],
"type": "object"
} | generate_invoice_c3dd131d |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Notice",
"description": "A gazette notice",
"type": "object",
"properties": {
"identifier": {
"description": "The publisher's identifier for the notice, which may not be unique",
"type": [
"integer",
"string"
]
},
"uid": {
"description": "An internal, constructed, unique identifier, which may be the same as `identifier`",
"type": "string"
},
"date_published": {
"description": "The date of publication of the notice",
"type": "string",
"_format": "date"
},
"summary": {
"description": "A brief summary of the notice's content",
"type": "string"
},
"subjects": {
"description": "The entities that the notice is primarily about",
"type": "array",
"items": {
"$ref": "#/definitions/entity"
}
},
"related_entities": {
"description": "Other entities that the notice is about",
"type": "array",
"items": {
"$ref": "#/definitions/entity"
}
},
"about": {
"description": "The content of the notice",
"type": "object",
"oneOf": [
{
"properties": {
"type": {
"description": "The class of content",
"type": "string",
"enum": [
"creation of subjects"
]
},
"classification": {
"description": "The type of creation",
"type": "array",
"items": {
"$ref": "#/definitions/classification"
}
},
"body": {
"description": "The unstructured prose content",
"$ref": "#/definitions/body"
},
"registration_date": {
"description": "The date of registration",
"type": "string",
"_format": "date"
},
"activity_start_date": {
"description": "The date on which activity started",
"type": "string",
"_format": "date"
},
"previous_owners": {
"description": "The previous owners of the locations",
"type": "array",
"items": {
"$ref": "#/definitions/entity"
}
},
"previous_operators": {
"description": "The previous operators of the locations",
"type": "array",
"items": {
"$ref": "#/definitions/entity"
}
},
"locations": {
"description": "Some locations of the subjects",
"type": "array",
"items": {
"$ref": "#/definitions/location"
}
}
},
"additionalProperties": false,
"required": [
"type"
]
},
{
"properties": {
"type": {
"description": "The class of content",
"type": "string",
"enum": [
"registration of locations"
]
},
"classification": {
"description": "The type of registration",
"type": "array",
"items": {
"$ref": "#/definitions/classification"
}
},
"body": {
"description": "The unstructured prose content",
"$ref": "#/definitions/body"
},
"registration_date": {
"description": "The date on which the subjects are registered",
"type": "string",
"_format": "date"
},
"activity_start_date": {
"description": "The date on which activity started",
"type": "string",
"_format": "date"
},
"effective_date": {
"description": "The date from which the change is in effect",
"type": "string",
"_format": "date"
},
"previous_owners": {
"description": "The previous owners of the locations",
"type": "array",
"items": {
"$ref": "#/definitions/entity"
}
},
"previous_operators": {
"description": "The previous operators of the locations",
"type": "array",
"items": {
"$ref": "#/definitions/entity"
}
},
"locations": {
"description": "Some locations of the subjects",
"type": "array",
"items": {
"$ref": "#/definitions/location"
}
}
},
"additionalProperties": false,
"required": [
"type"
]
},
{
"properties": {
"type": {
"description": "The class of content",
"type": "string",
"enum": [
"sale of locations"
]
},
"classification": {
"description": "The type of sale",
"type": "array",
"items": {
"$ref": "#/definitions/classification"
}
},
"body": {
"description": "The unstructured prose content",
"$ref": "#/definitions/body"
},
"registration_date": {
"description": "The date on which the subjects are registered",
"type": "string",
"_format": "date"
},
"activity_start_date": {
"description": "The date on which activity started",
"type": "string",
"_format": "date"
},
"effective_date": {
"description": "The date from which the change is in effect",
"type": "string",
"_format": "date"
},
"publication": {
"description": "Another publication in which the notice is published",
"type": "object",
"properties": {
"title": {
"description": "The title of the publication",
"type": "string"
},
"date_published": {
"description": "The date of publication of the publication",
"type": "string",
"_format": "date"
}
},
"additionalProperties": false,
"required": [
"title",
"date_published"
]
},
"opposition": {
"type": "string"
},
"statement_of_accounts": {
"type": "string"
},
"previous_owners": {
"description": "The previous owners of the locations",
"type": "array",
"items": {
"$ref": "#/definitions/entity"
}
},
"previous_operators": {
"description": "The previous operators of the locations",
"type": "array",
"items": {
"$ref": "#/definitions/entity"
}
},
"locations": {
"description": "Some locations of the subjects",
"type": "array",
"items": {
"$ref": "#/definitions/location"
}
}
},
"additionalProperties": false,
"required": [
"type"
]
},
{
"properties": {
"type": {
"description": "The class of content",
"type": "string",
"enum": [
"judgment"
]
},
"classification": {
"description": "The type of judgment",
"type": "array",
"items": {
"$ref": "#/definitions/classification"
}
},
"body": {
"description": "The unstructured prose content",
"$ref": "#/definitions/body"
},
"date": {
"description": "The date of the judgment",
"type": "string",
"_format": "date"
}
},
"additionalProperties": false,
"required": [
"type"
]
},
{
"properties": {
"type": {
"description": "The class of content",
"type": "string",
"enum": [
"other"
]
},
"classification": {
"description": "The type of judgment",
"type": "array",
"items": {
"$ref": "#/definitions/classification"
}
},
"body": {
"description": "The unstructured prose content",
"$ref": "#/definitions/body"
},
"title": {
"description": "The title of the notice",
"type": "string"
}
},
"additionalProperties": false,
"required": [
"type",
"body"
]
},
{
"properties": {
"type": {
"description": "The class of content",
"type": "string",
"enum": [
"modification of subjects"
]
},
"body": {
"description": "The unstructured prose content",
"$ref": "#/definitions/body"
},
"activity_start_date": {
"description": "The date on which activity started",
"type": "string",
"_format": "date"
},
"effective_date": {
"description": "The date from which the change is in effect",
"type": "string",
"_format": "date"
},
"previous_operators": {
"description": "The previous operators of the location",
"type": "array",
"items": {
"$ref": "#/definitions/entity"
}
}
},
"additionalProperties": false,
"required": [
"type"
]
},
{
"properties": {
"type": {
"description": "The class of content",
"type": "string",
"enum": [
"striking off of subjects"
]
},
"body": {
"description": "The unstructured prose content",
"$ref": "#/definitions/body"
},
"activity_end_date": {
"description": "The date on which activity ended",
"type": "string",
"_format": "date"
}
},
"additionalProperties": false,
"required": [
"type"
]
},
{
"properties": {
"type": {
"description": "The class of content",
"type": "string",
"enum": [
"filing"
]
},
"classification": {
"description": "The type of filing",
"type": "array",
"items": {
"$ref": "#/definitions/classification"
}
},
"body": {
"description": "The unstructured prose content",
"$ref": "#/definitions/body"
},
"closing_date": {
"description": "The closing date of the filing",
"type": "string",
"_format": "date"
}
},
"additionalProperties": false,
"required": [
"type"
]
}
]
},
"update_action": {
"description": "If this notice corrects or cancels an earlier notice, a description of the update",
"$ref": "#/definitions/update_action"
},
"issue": {
"description": "The issue of the gazette in which the notice is published. An issue contains many notices.",
"$ref": "#/definitions/issue"
},
"document": {
"description": "The section of the issue in which the notice is published. An issue may be split into many documents, each containing many notices.",
"$ref": "#/definitions/document"
},
"creator": {
"description": "The entity authoring the notice, for example a notary authoring a notice for a dissolution",
"$ref": "#/definitions/entity"
},
"publisher": {
"description": "The publisher of the notice, for example a clerk entering the notice into the gazette",
"$ref": "#/definitions/publisher"
},
"url": {
"description": "The URL of the notice, at which a human may verify the data",
"type": "string",
"_format": "uri"
},
"media_type": {
"description": "The media type of the URL resource",
"type": "string"
},
"source_url": {
"description": "The URL of the file from which the data was extracted by the scraper",
"type": "string",
"_format": "uri"
},
"sample_date": {
"description": "A date on which the data is known to be true",
"type": "string",
"_format": "date"
},
"retrieved_at": {
"description": "The time or date at which the source URL was requested",
"type": "string",
"_format": "date"
},
"confidence": {
"description": "The scraper's author's confidence in the accuracy of the data",
"type": "string",
"enum": [
"HIGH",
"MEDIUM",
"LOW"
]
},
"other_attributes": {
"description": "Any other structured data from the notice",
"type": "object"
}
},
"additionalProperties": false,
"required": [
"issue",
"uid",
"source_url",
"sample_date",
"confidence"
],
"definitions": {
"address": {
"$schema": "http://json-schema.org/draft-04/schema#",
"oneOf": [
{
"type": [
"string",
"null"
],
"minLength": 2
},
{
"name": "Address",
"description": "An address object",
"type": "object",
"properties": {
"street_address": {
"type": "string"
},
"locality": {
"type": "string"
},
"region": {
"type": "string"
},
"postal_code": {
"type": "string"
},
"country": {
"type": "string"
},
"country_code": {
"description": "ISO 3166-2 code for country",
"type": "string"
}
},
"anyOf": [
{
"required": [
"street_address"
]
},
{
"required": [
"postal_code"
]
},
{
"required": [
"locality",
"country"
]
}
]
}
]
},
"issue": {
"title": "Issue",
"description": "An issue of a gazette",
"type": "object",
"properties": {
"publication": {
"description": "The gazette of which the issue is a part",
"$ref": "#/definitions/publication"
},
"identifier": {
"description": "The identifier of the issue",
"type": [
"string",
"integer"
]
},
"title": {
"description": "The title of the issue",
"type": "string"
},
"edition_id": {
"description": "The identifier of the edition of which the issue is a part",
"type": [
"string",
"integer"
]
},
"page_range": {
"description": "The page range of the issue within the edition",
"type": "string",
"pattern": "^[0-9]*(-[0-9]*)?$"
},
"url": {
"description": "The URL of the issue",
"type": "string",
"_format": "uri"
},
"media_type": {
"description": "The media type of the URL resource",
"type": "string"
}
},
"additionalProperties": false,
"required": [
"publication"
]
},
"publication": {
"title": "Publication",
"description": "A gazette",
"type": "object",
"properties": {
"publisher": {
"description": "The publisher of the gazette",
"$ref": "#/definitions/publisher"
},
"jurisdiction_code": {
"description": "The jurisdiction covered by the gazette",
"type": "string"
},
"title": {
"description": "The title of the gazette",
"type": "string"
},
"url": {
"description": "The URL of the gazette",
"type": "string",
"_format": "uri"
},
"media_type": {
"description": "The media type of the URL resource",
"type": "string"
}
},
"additionalProperties": false,
"required": [
"publisher"
]
},
"publisher": {
"title": "Publisher",
"description": "A gazette publisher",
"type": "object",
"properties": {
"name": {
"description": "The name of the publisher",
"type": "string"
},
"identifier": {
"description": "The identifier of the publisher",
"type": [
"integer",
"string"
]
},
"url": {
"description": "The URL of the publisher",
"type": "string",
"_format": "uri"
},
"media_type": {
"description": "The media type of the URL resource",
"type": "string"
}
},
"additionalProperties": false,
"required": [
"name"
]
},
"document": {
"title": "Document",
"description": "A section of an issue",
"type": "object",
"properties": {
"page_range": {
"description": "The page range of the document within the issue",
"type": "string",
"pattern": "^[0-9]*(-[0-9]*)?$"
},
"url": {
"description": "The URL of the document",
"type": "string",
"_format": "uri"
},
"media_type": {
"description": "The media type of the URL resource",
"type": "string"
}
},
"additionalProperties": false,
"required": [
"url"
]
},
"location": {
"title": "Location",
"description": "A business location",
"type": "object",
"properties": {
"type": {
"description": "The type of location",
"type": "string",
"enum": [
"primary",
"secondary",
"other"
]
},
"name": {
"description": "The name of the location",
"type": "string"
},
"activity": {
"description": "The business activity at the location",
"type": "string"
},
"address": {
"description": "The address of the location",
"$ref": "#/definitions/address"
},
"origin": {
"description": "The origin of the location as an asset",
"type": "string"
}
},
"additionalProperties": false
},
"body": {
"title": "Body",
"description": "Content",
"type": "object",
"properties": {
"value": {
"description": "The content",
"type": "string"
},
"media_type": {
"description": "The media type of the content",
"type": "string",
"enum": [
"application/pdf",
"application/xml",
"text/plain",
"text/html"
]
}
},
"additionalProperties": false,
"required": [
"value"
]
},
"update_action": {
"title": "Update action",
"description": "An act of changing an object",
"type": "object",
"properties": {
"type": {
"description": "The type of change",
"type": "string",
"enum": [
"cancellation",
"correction"
]
},
"object": {
"description": "The object that was changed",
"type": "object",
"properties": {
"identifier": {
"description": "The publisher's identifier for the notice, which may not be unique",
"type": [
"integer",
"string"
]
},
"date_published": {
"description": "The date of publication of the notice",
"type": "string",
"_format": "date"
},
"issue": {
"description": "The issue of the gazette in which the notice is published. An issue contains many notices.",
"type": "object",
"properties": {
"identifier": {
"description": "The identifier of the issue",
"type": [
"string",
"integer"
]
},
"edition_id": {
"description": "The identifier of the edition of which the issue is a part",
"type": [
"string",
"integer"
]
}
},
"additionalProperties": false,
"required": [
"identifier"
]
}
},
"additionalProperties": false,
"required": [
"issue",
"identifier"
]
}
},
"additionalProperties": false,
"required": [
"object"
]
},
"entity": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"entity_type",
"entity_properties"
],
"oneOf": [
{
"properties": {
"entity_type": {
"enum": [
"company"
]
},
"entity_properties": {
"$ref": "#/definitions/company-for-nesting"
}
}
},
{
"properties": {
"entity_type": {
"enum": [
"person"
]
},
"entity_properties": {
"$ref": "#/definitions/person"
}
}
},
{
"properties": {
"entity_type": {
"enum": [
"organisation"
]
},
"entity_properties": {
"$ref": "#/definitions/organisation"
}
}
},
{
"properties": {
"entity_type": {
"enum": [
"unknown"
]
},
"entity_properties": {
"$ref": "#/definitions/unknown-entity-type"
}
}
}
]
},
"company-for-nesting": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A company in OpenCorporates",
"type": "object",
"properties": {
"company_number": {
"type": "string",
"description": "unique identifier given by the corporate register with which it is incorporated",
"minLength": 1
},
"name": {
"type": "string",
"description": "Legal name of the company",
"minLength": 1
},
"jurisdiction": {
"type": "string",
"description": "A free text field for the jurisdiction where the company is registered \u2013 this can be either the ISO 3166-2 code, the underscored version, or the standard name for the jurisdiction, e.g. France"
},
"jurisdiction_code": {
"type": "string",
"description": "Code representing the jurisdiction/company register which is the canonical record of the company\u2019s existence. Uses underscored ISO 3166-2 to represent it, e.g. es for Spain, us_de for Delaware",
"minLength": 2,
"maxLength": 5
},
"incorporation_date": {
"type": "string",
"_format": "date"
},
"dissolution_date": {
"type": "string",
"_format": "date"
},
"retrieved_at": {
"type": "string",
"_format": "date"
},
"current_status": {
"type": [
"string",
"null"
]
},
"company_type": {
"type": [
"string",
"null"
]
},
"registry_url": {
"type": "string"
},
"website": {
"oneOf": [
{
"type": "string",
"minLength": 5
},
{
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 5
}
}
]
},
"telephone_number": {
"type": "string",
"minLength": 4
},
"fax_number": {
"type": "string",
"minLength": 4
},
"registered_address": {
"$ref": "#/definitions/address"
},
"headquarters_address": {
"$ref": "#/definitions/address"
},
"mailing_address": {
"$ref": "#/definitions/address"
},
"addresses": {
"type": "array",
"items": {
"$ref": "#/definitions/address-with-type"
}
},
"officers": {
"type": "array",
"items": {
"$ref": "#/definitions/officer"
}
},
"share_parcels": {
"type": "array",
"items": {
"$ref": "#/definitions/share-parcel"
}
},
"total_shares": {
"$ref": "#/definitions/total-shares"
},
"filings": {
"type": "array",
"items": {
"$ref": "#/definitions/filing"
}
},
"identifiers": {
"type": "array",
"items": {
"$ref": "#/definitions/identifier"
}
},
"industry_codes": {
"type": "array",
"items": {
"$ref": "#/definitions/industry-code"
}
},
"previous_names": {
"type": "array",
"items": {
"$ref": "#/definitions/previous-name"
}
},
"alternative_names": {
"type": "array",
"items": {
"$ref": "#/definitions/alternative-name"
}
},
"branch": {
"type": [
"string",
"null"
],
"description": "A flag to denote whether a company is a branch entity. This should only be set if the company is a type of branch (otherwise should be null). In general the only option here is 'F' for a 'Foreign' branch, i.e. an out-of-jurisdiction entity that has registered as having a presence in the jurisdiction. In the US this is sometimes called a Foreign Corporation",
"enum": [
"F",
"L",
null
]
},
"all_attributes": {
"type": "object",
"description": "Other arbitrary attributes for a given company",
"properties": {
"jurisdiction_of_origin": {
"type": [
"string",
"null"
],
"description": "The jurisdiction of the 'home' company if this is a branch",
"minLength": 1
},
"home_company_number": {
"type": [
"string",
"null"
],
"description": "If the entity is a 'branch', this is the company_number of the 'home' company in the home company's jurisdiction",
"minLength": 1
},
"home_legal_name": {
"type": [
"string",
"null"
],
"description": "The legal name of the 'home' company in its jurisdiction if this is a branch, and the name is different from the legal name of the branch",
"minLength": 1
},
"registered_agent_address": {
"type": [
"string",
"null"
],
"description": "The address of the 'Agent', a public address to which legal papers can be served",
"minLength": 1
},
"registered_agent_name": {
"type": [
"string",
"null"
],
"description": "The 'Agent' of the company \u2013 a person or entity that is empowered to accept service for the company",
"minLength": 1
},
"number_of_employees": {
"anyOf": [
{
"type": "string",
"minLength": 1
},
{
"type": "number",
"minimum": 0
}
],
"description": "The number of employees"
},
"merged_into": {
"type": "object",
"description": "Information on the merger of this company into a 'survivor' company",
"properties": {
"surviving_company": {
"type": [
"object"
],
"description": "the surviving_company that this has been merged into",
"properties": {
"name": {
"type": "string",
"description": "The legal name of the surviving company",
"minLength": 1
},
"company_number": {
"type": "string",
"description": "The company_number of the surviving company, if known",
"minLength": 1
},
"jurisdiction": {
"type": "string",
"description": "The jurisdiction of incorporation of the surviving company",
"minLength": 2
}
},
"anyOf": [
{
"required": [
"name"
]
},
{
"required": [
"company_number"
]
}
]
},
"effective_date": {
"description": "The date of the merger",
"type": "string",
"_format": "date"
}
},
"additionalProperties": false,
"required": [
"surviving_company"
]
}
}
}
},
"additionalProperties": false,
"anyOf": [
{
"required": [
"name"
]
},
{
"required": [
"company_number"
]
}
]
},
"address-with-type": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An address with a type",
"type": "object",
"properties": {
"address": {
"$ref": "#/definitions/address"
},
"type": {
"enum": [
"registered",
"headquarters",
"mailing",
"trading",
"unknown"
]
}
},
"additionalProperties": false,
"required": [
"address",
"type"
]
},
"officer": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An officer (director, senior executive) of a company",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1,
"not": {
"pattern": "^[\\.\\,\\*\\\\\\-\\s\\{\\}\\(\\)]+$"
}
},
"start_date": {
"anyOf": [
{
"type": "string",
"_format": "date"
},
{
"type": "null"
}
]
},
"end_date": {
"anyOf": [
{
"type": "string",
"_format": "date"
},
{
"type": "null"
}
]
},
"position": {
"type": "string"
},
"uid": {
"type": "string",
"description": "a unique identifier given to the officership"
},
"other_attributes": {
"type": "object",
"properties": {
"date_of_birth": {
"type": "string",
"_format": "date"
},
"nationality": {
"type": "string"
},
"person_uid": {
"type": "string",
"description": "a unique identifier given to the individual (as opposed to the officership)"
},
"address": {
"$ref": "#/definitions/address"
},
"type": {
"type": "string",
"enum": [
"Person",
"Company"
],
"description": "The type of entity that is the officer (either 'Person' or 'Company')"
}
}
}
},
"required": [
"name"
]
},
"share-parcel": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "A parcel of shares in a company",
"properties": {
"number_of_shares": {
"description": "Number of shares, if known",
"type": "integer"
},
"percentage_of_shares": {
"description": "Percentage of shares, if known",
"type": "number",
"maximum": 100,
"minimum": 0
},
"percentage_of_shares_min": {
"description": "Minimum percentage of shares (if for example a band of percentage is given)",
"type": [
"number",
"null"
],
"maximum": 100,
"minimum": 0
},
"percentage_of_shares_max": {
"description": "Maximum percentage of shares (if for example a band of percentage is given)",
"type": [
"number",
"null"
],
"maximum": 100,
"minimum": 0
},
"voting_percentage": {
"description": "Percentage of votes, if known",
"type": "number",
"maximum": 100,
"minimum": 0
},
"voting_percentage_min": {
"description": "Minimum percentage of votes (if for example a band of votes is given)",
"type": [
"number",
"null"
],
"maximum": 100,
"minimum": 0
},
"voting_percentage_max": {
"description": "Maximum percentage of votes (if for example a band of votes is given)",
"type": [
"number",
"null"
],
"maximum": 100,
"minimum": 0
},
"share_class": {
"description": "Share class or classes, if known",
"type": "string"
},
"start_date": {
"type": "string",
"_format": "date"
},
"end_date": {
"type": "string",
"_format": "date"
},
"sample_date": {
"type": "string",
"_format": "date"
},
"shareholders": {
"description": "Legal persons who own this share parcel",
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"name": "shareholder",
"required": [
"name"
],
"properties": {
"name": {
"description": "Name of natural person or company",
"type": "string",
"minLength": 1
},
"jurisdiction": {
"description": "Jurisdiction of registration, if company",
"type": "string"
},
"company_number": {
"description": "Company number, if company and known",
"type": "string"
},
"identifier": {
"description": "Unique identifier of person",
"type": "string"
},
"type": {
"description": "Type of person if known (company or natural person)",
"enum": [
"Company",
"Person"
]
},
"address": {
"description": "Address given for shareholder",
"$ref": "#/definitions/address"
},
"address_country": {
"description": "Country part of owner's address (for example if address not given)",
"type": "string"
}
}
}
}
}
},
"total-shares": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The total number of shares a company has issued",
"type": "object",
"properties": {
"number": {
"type": "integer"
},
"share_class": {
"type": "string",
"minLength": 1
}
},
"required": [
"number"
]
},
"filing": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A statutory filing",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"date": {
"type": "string",
"_format": "date"
},
"description": {
"type": "string"
},
"uid": {
"type": "string"
},
"url": {
"type": "string"
},
"filing_type_code": {
"type": "string"
},
"filing_type_name": {
"type": "string"
},
"other_attributes": {
"type": "object"
}
},
"required": [
"date"
],
"anyOf": [
{
"required": [
"title"
]
},
{
"required": [
"description"
]
},
{
"required": [
"filing_type_name"
]
}
]
},
"identifier": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An identifier for an entity (possibly other things, e.g. securities in the future). Examples are tax IDs, non-profit IDs, SEC CIK numbers, Federal Reserve RSSD id. The main requirements for an identifier is that they should be well-defined, and issued by a government or have statutory standing",
"type": "object",
"properties": {
"uid": {
"type": "string",
"description": "The unique identifier given by the identifier system \u2013 it should be unique in the context of the identifier_system",
"minLength": 1
},
"identifier_system_code": {
"type": "string",
"description": "An identifier representing the identifier scheme. Some examples of this are us_fein (US Federal tax number), us_sec_cik (US Securities and Exchange Commission CIK), uk_ew_cc (Charity Commission of England & Wales), lei (Global Legal Entity Identifier System)"
}
},
"required": [
"uid",
"identifier_system_code"
]
},
"industry-code": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An industry code from a standard code list (e.g. NAICS 2007 or NACE 2). This schema is a sub-schema of Classification.",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"code": {
"type": "string"
},
"code_scheme_id": {
"type": "string",
"description": "An identifier representing industry code scheme. At the moment these are eu_nace_2, uk_sic_2003, uk_sic_2007, us_naics_2002, us_naics_2007, be_nace_2008, dk_db_2007, nz_bic_2006, no_sic_2007, anz_sic_2006, nz_bic_2006, in_nic_2004_mca, ca_qc_cae, lu_nace_2. For other code schemes, or details of these, contact [email protected]"
},
"start_date": {
"type": "string",
"_format": "date"
},
"end_date": {
"type": "string",
"_format": "date"
}
},
"required": [
"code",
"code_scheme_id"
]
},
"previous-name": {
"$schema": "http://json-schema.org/draft-04/schema#",
"name": "PreviousName",
"description": "A previous name of a company",
"type": "object",
"properties": {
"company_name": {
"type": "string",
"minLength": 1
},
"con_date": {
"type": "string",
"_format": "date",
"description": "The end (conversion) date of the name"
},
"start_date": {
"type": "string",
"_format": "date"
}
},
"required": [
"company_name"
]
},
"alternative-name": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An alternative name of a company, e.g. abbreviation, trading (including dba or doing business as), legal. As well as trading names etc, it can be used for storing alternative language representations of the legal name, in which case the language should be represented as two-letter ISO-639 code",
"type": "object",
"properties": {
"company_name": {
"type": "string",
"minLength": 1
},
"start_date": {
"type": "string",
"_format": "date"
},
"end_date": {
"type": "string",
"_format": "date"
},
"language": {
"type": "string",
"minLength": 2,
"maxLength": 2
},
"type": {
"type": "string",
"enum": [
"trading",
"abbreviation",
"legal",
"unknown",
"alias"
]
}
},
"required": [
"company_name",
"type"
]
},
"person": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A person, for example, referenced in some other context, e.g. director of a company, shareholder, licence-holder, lobbyist. This should be used only if the person is the subject of the datum",
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/definitions/person-name"
},
"jurisdiction": {
"type": "string",
"description": "Name of the jurisdiction in which the entity is based"
},
"company": {
"description": "Company the person is representing. NB If the licence holder is a company, and the individual is a just a contact, then use the company-schema for the entity. This is where the individual themselves are the subject entity (e.g. licence holder, disqualified director)",
"$ref": "#/definitions/company-for-nesting"
},
"relationship_with_company": {
"enum": [
"employee",
"director",
"shareholder",
null
]
},
"website": {
"oneOf": [
{
"type": "string",
"minLength": 5
},
{
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 5
}
}
]
},
"uid": {
"description": "Unique id of the person. Note: the unique id is not expected to be globally unique, but only unique with reference to the source from which it is derived. No check is made for uniqueness",
"type": "string",
"minLength": 1
},
"telephone_number": {
"type": "string",
"minLength": 4
},
"fax_number": {
"type": "string",
"minLength": 4
},
"registered_address": {
"description": "address for service (or address given in the context of legal requirement)",
"$ref": "#/definitions/address"
},
"headquarters_address": {
"$ref": "#/definitions/address"
},
"mailing_address": {
"$ref": "#/definitions/address"
},
"addresses": {
"type": "array",
"items": {
"$ref": "#/definitions/address-with-type"
}
},
"industry_codes": {
"type": "array",
"items": {
"$ref": "#/definitions/industry-code"
}
},
"alternative_names": {
"type": "array",
"items": {
"$ref": "#/definitions/alternative-name"
}
},
"date_of_birth": {
"anyOf": [
{
"type": "string",
"_format": "date"
},
{
"$ref": "#/definitions/date"
}
]
},
"nationality": {
"description": "The person's nationality",
"type": "string",
"_format": "non-blank"
},
"country_of_residence": {
"description": "The normal country of residence for the person",
"type": "string",
"_format": "non-blank"
},
"identifiers": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/identifier"
}
},
"other_attributes": {
"description": "Use for other attributes for which we don't yet have curated schema attributes",
"type": "object"
}
},
"required": [
"name"
]
},
"person-name": {
"$schema": "http://json-schema.org/draft-04/schema#",
"oneOf": [
{
"type": [
"string",
"null"
],
"_format": "non-blank"
},
{
"description": "The name of a person as an object",
"type": "object",
"properties": {
"given_name": {
"type": [
"string",
"null"
],
"_format": "non-blank",
"description": "The given name(s) (often first name) of a person, as opposed to their family name. Following FOAF practice, this is preferred to first_name"
},
"family_name": {
"type": [
"string",
"null"
],
"_format": "non-blank",
"description": "The family name (often last name) of a person, as opposed to their family name. Following FOAF practice, this is preferred to last_name"
},
"first_name": {
"type": [
"string",
"null"
],
"_format": "non-blank"
},
"middle_name": {
"type": [
"string",
"null"
],
"_format": "non-blank"
},
"last_name": {
"type": [
"string",
"null"
],
"_format": "non-blank"
},
"title": {
"type": [
"string",
"null"
],
"_format": "non-blank",
"description": "Title such as Mr, Ms, Dr etc"
},
"suffixes": {
"type": [
"string",
"null"
],
"_format": "non-blank",
"description": "Any suffixes, including degrees, honours (OBE), ordinals (John Smith Jr, Bill Jones II) etc"
}
}
}
]
},
"date": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A parsed date object. This allows us to represent not just normal dates, but also partial dates too",
"type": "object",
"properties": {
"year": {
"type": "number",
"description": "year part as YYYY"
},
"month": {
"type": "number",
"description": "month part of date in numbers e.g. 11 for November, 4 for April"
},
"day": {
"type": [
"number",
"null"
],
"description": "day part of date in numbers"
}
},
"additionalProperties": false,
"anyOf": [
{
"required": [
"year",
"month"
]
},
{
"required": [
"month",
"day"
]
}
]
},
"organisation": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An entity which is a distinct organisation, but is not a company nor an individual. Examples include governments and governmental entities (e.g. Multilateral Development Banks, Government Departments, municipalities, etc), and also membership organisations",
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "Name of the entity",
"minLength": 1
},
"jurisdiction": {
"type": "string",
"description": "Name of the jurisdiction in which the entity is incorporated/domiciled (use global for global entities, e.g. UN)"
},
"legal_form": {
"type": "string",
"description": "legal form of organisation, e.g. municipality, government department, trust, etc"
},
"website": {
"oneOf": [
{
"type": "string",
"minLength": 5
},
{
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 5
}
}
]
},
"telephone_number": {
"type": "string",
"minLength": 4
},
"fax_number": {
"type": "string",
"minLength": 4
},
"identifiers": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/identifier"
}
},
"registered_address": {
"$ref": "#/definitions/address"
},
"headquarters_address": {
"$ref": "#/definitions/address"
},
"mailing_address": {
"$ref": "#/definitions/address"
},
"addresses": {
"type": "array",
"items": {
"$ref": "#/definitions/address-with-type"
}
},
"industry_codes": {
"type": "array",
"items": {
"$ref": "#/definitions/industry-code"
}
},
"previous_names": {
"type": "array",
"items": {
"$ref": "#/definitions/previous-name"
}
},
"alternative_names": {
"type": "array",
"items": {
"$ref": "#/definitions/alternative-name"
}
},
"other_attributes": {
"description": "Use for other attributes for which we don't yet have curated schema attributes",
"type": "object"
}
},
"required": [
"name"
]
},
"unknown-entity-type": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An entity of unknown type - potentially a company, a person, government entity, or some unincorporated organisation",
"additionalProperties": false,
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the entity",
"minLength": 1
},
"jurisdiction": {
"type": "string",
"description": "Name of the jurisdiction in which the entity is incorporated/domiciled"
},
"uid": {
"description": "Unique id for the entity if it has one",
"type": "string"
},
"website": {
"oneOf": [
{
"type": "string",
"minLength": 5
},
{
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 5
}
}
]
},
"telephone_number": {
"type": "string",
"minLength": 4
},
"fax_number": {
"type": "string",
"minLength": 4
},
"registered_address": {
"$ref": "#/definitions/address"
},
"headquarters_address": {
"$ref": "#/definitions/address"
},
"mailing_address": {
"$ref": "#/definitions/address"
},
"addresses": {
"type": "array",
"items": {
"$ref": "#/definitions/address-with-type"
}
},
"identifiers": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/identifier"
}
},
"industry_codes": {
"type": "array",
"items": {
"$ref": "#/definitions/industry-code"
}
},
"previous_names": {
"type": "array",
"items": {
"$ref": "#/definitions/previous-name"
}
},
"alternative_names": {
"type": "array",
"items": {
"$ref": "#/definitions/alternative-name"
}
},
"other_attributes": {
"description": "Use for other attributes for which we don't yet have curated schema attributes",
"type": "object"
}
},
"required": [
"name"
]
},
"classification": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Classification",
"description": "A classification from a code list",
"type": "object",
"properties": {
"code_scheme_id": {
"description": "The scheme of the classification",
"type": "string"
},
"code": {
"description": "The classification",
"type": "string"
},
"name": {
"description": "A title or description of the classification, especially if the value is a code",
"type": "string"
}
},
"additionalProperties": false,
"anyOf": [
{
"required": [
"name"
]
},
{
"required": [
"code",
"code_scheme_id"
]
}
]
}
}
}
| o65420 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_GroupSubject": {
"description": "GroupSubject holds detailed information for group-kind subject.",
"properties": {
"name": {
"description": "name is the user group that matches, or \"*\" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_NonResourcePolicyRule": {
"description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.",
"properties": {
"nonResourceURLs": {
"description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n - \"/healthz\" is legal\n - \"/hea*\" is illegal\n - \"/hea\" is legal but matches nothing\n - \"/hea/*\" also matches nothing\n - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
},
"verbs": {
"description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
}
},
"required": [
"verbs",
"nonResourceURLs"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_ResourcePolicyRule": {
"description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request.",
"properties": {
"apiGroups": {
"description": "`apiGroups` is a list of matching API groups and may not be empty. \"*\" matches all API groups and, if present, must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
},
"clusterScope": {
"description": "`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list.",
"type": "boolean"
},
"namespaces": {
"description": "`namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains \"*\". Note that \"*\" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
},
"resources": {
"description": "`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ \"services\", \"nodes/status\" ]. This list may not be empty. \"*\" matches all resources and, if present, must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
},
"verbs": {
"description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs and, if present, must be the only entry. Required.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
}
},
"required": [
"verbs",
"apiGroups",
"resources"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_ServiceAccountSubject": {
"description": "ServiceAccountSubject holds detailed information for service-account-kind subject.",
"properties": {
"name": {
"description": "`name` is the name of matching ServiceAccount objects, or \"*\" to match regardless of name. Required.",
"type": "string"
},
"namespace": {
"description": "`namespace` is the namespace of matching ServiceAccount objects. Required.",
"type": "string"
}
},
"required": [
"namespace",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_Subject": {
"description": "Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.",
"properties": {
"group": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_GroupSubject"
},
"kind": {
"description": "Required",
"type": "string"
},
"serviceAccount": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_ServiceAccountSubject"
},
"user": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_UserSubject"
}
},
"required": [
"kind"
],
"type": "object",
"x-kubernetes-unions": [
{
"discriminator": "kind",
"fields-to-discriminateBy": {
"group": "Group",
"serviceAccount": "ServiceAccount",
"user": "User"
}
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_UserSubject": {
"description": "UserSubject holds detailed information for user-kind subject.",
"properties": {
"name": {
"description": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.",
"properties": {
"nonResourceRules": {
"description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_NonResourcePolicyRule"
},
"type": [
"array",
"null"
],
"x-kubernetes-list-type": "atomic"
},
"resourceRules": {
"description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_ResourcePolicyRule"
},
"type": [
"array",
"null"
],
"x-kubernetes-list-type": "atomic"
},
"subjects": {
"description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_Subject"
},
"type": [
"array",
"null"
],
"x-kubernetes-list-type": "atomic"
}
},
"required": [
"subjects"
],
"type": "object"
} | kb_751_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Order",
"description": "Order billing and shipping information",
"type": "object",
"properties": {
"orders": {
"type": "array",
"items": {
"properties": {
"order": {
"type": "string"
},
"billTo": {
"type": "string"
},
"billAddress": {
"type": "string"
},
"shipTo": {
"type": "string"
},
"shipAddress": {
"type": "string"
},
"loyaltyId": {
"type": "string"
},
"loyaltyBonus": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"order",
"billTo",
"billAddress"
],
"dependencies": {
"shipTo": [
"shipAddress"
],
"loyaltyId": [
"loyaltyBonus"
]
}
}
}
}
} | o83698 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerIngress": {
"description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.",
"properties": {
"hostname": {
"description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)",
"type": "string"
},
"ip": {
"description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)",
"type": "string"
}
},
"type": "object"
}
},
"description": "LoadBalancerStatus represents the status of a load-balancer.",
"properties": {
"ingress": {
"description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerIngress"
},
"type": [
"array",
"null"
]
}
},
"type": "object"
} | kb_540_Normalized |
{
"description": "Generates Angular's @Injectable classes to access translation messages from JSON.",
"properties": {
"$schema": {
"type": "string"
},
"argumentType": {
"default": "string",
"description": "Type for generated arguments. Defaults to 'string', but may be set to more permissive types, such as 'string | number' or even 'any'.",
"type": "string"
},
"defaultLocale": {
"default": "en",
"description": "Default locale. The file name of the default locale doesn't include the locale.",
"type": "string"
},
"input": {
"default": "src/translations",
"description": "Folder containing the translation JSON files to read from.",
"type": "string"
},
"locales": {
"default": [
"en"
],
"description": "A list of locales which can be processed",
"items": {
"type": "string"
},
"type": "array"
},
"mapping": {
"additionalProperties": {
"type": "string"
},
"description": "A mapping from JSON file (without extension) to the TS class name. Must be in the form: file1=Class1:file2=Class2:...",
"type": "object"
},
"output": {
"default": "src/app/messages",
"description": "Folder where the generated TS clases will be placed.",
"type": "string"
},
"separator": {
"default": ".",
"description": "File name separator between base name and locale",
"type": "string"
}
},
"title": "Options for ng-translation-gen",
"type": "object"
} | o33966 |
{
"properties": {
"admin_email": {
"default": "[email protected]",
"format": "email",
"type": "string"
},
"admin_password": {
"default": "liepw@#",
"type": "string"
},
"admin_username": {
"default": "lieadmin",
"type": "string"
},
"email_smtp_password": {
"default": "<password>",
"type": "string"
},
"email_smtp_port": {
"default": 587,
"type": "integer"
},
"email_smtp_server": {
"default": "smtp.gmail.com",
"type": "string"
},
"email_smtp_username": {
"default": "[email protected]",
"type": "string"
},
"email_smtp_usetls": {
"default": null,
"type": [
"string",
"null"
]
}
},
"title": "AuthSessionConfig",
"type": "object"
} | o10016 |
{
"description": "RoleRef contains information that points to the role being used",
"properties": {
"apiGroup": {
"description": "APIGroup is the group for the resource being referenced",
"type": [
"string",
"null"
]
},
"kind": {
"description": "Kind is the type of resource being referenced",
"type": [
"string",
"null"
]
},
"name": {
"description": "Name is the name of resource being referenced",
"type": [
"string",
"null"
]
}
},
"required": [
"apiGroup",
"kind",
"name"
],
"type": "object"
} | kb_867_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"config",
"inputs"
],
"type": "object",
"properties": {
"inputs": {
"required": [
"dcm2niix_input"
],
"type": "object",
"properties": {
"dcm2niix_input": {
"type": "object",
"properties": {
"type": {
"enum": [
"dicom",
"parrec"
]
}
}
}
}
},
"config": {
"required": [
"single_file_mode",
"merge2d",
"philips_scaling",
"anonymize_bids",
"bids_sidecar",
"text_notes_private",
"crop",
"filename",
"compress_nifti",
"decompress_dicoms",
"ignore_derived"
],
"type": "object",
"properties": {
"compress_nifti": {
"default": "y",
"type": "string",
"id": "-z"
},
"merge2d": {
"default": "n",
"type": "string",
"id": "-m"
},
"philips_scaling": {
"default": "y",
"type": "string",
"id": "-p"
},
"anonymize_bids": {
"default": "n",
"type": "string",
"id": "-ba"
},
"bids_sidecar": {
"default": "n",
"type": "string",
"id": "-b"
},
"text_notes_private": {
"default": "n",
"type": "string",
"id": "-t"
},
"crop": {
"default": "n",
"type": "string",
"id": "-x"
},
"filename": {
"default": "%f",
"type": "string",
"id": "-f"
},
"single_file_mode": {
"default": "n",
"type": "string",
"id": "-s"
},
"decompress_dicoms": {
"default": false,
"type": "boolean"
},
"ignore_derived": {
"default": "n",
"type": "string",
"id": "-i"
}
}
}
},
"title": "Invocation manifest for DCM2NIIX: v1.0.20170818"
} | o41399 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://github.com/ray-project/ray/python/ray/autoscaler/ray-schema.json",
"title": "Ray AutoScaler",
"description": "Ray autoscaler schema",
"type": "object",
"definitions": {
"commands": {
"type": "array",
"items": {
"type": "string",
"description": "shell command"
}
}
},
"required": [
"cluster_name",
"provider"
],
"additionalProperties": false,
"properties": {
"cluster_name": {
"description": "An unique identifier for the head node and workers of this cluster.",
"type": "string"
},
"min_workers": {
"description": "The minimum number of workers nodes to launch in addition to the head node. This number should be >= 0",
"type": "integer",
"minimum": 0
},
"max_workers": {
"description": "The maximum number of workers nodes to launch in addition to the head node. This takes precedence over min_workers.",
"type": "integer",
"minimum": 0
},
"initial_workers": {
"description": "The number of workers to launch initially, in addition to the head node.",
"type": "integer",
"minimum": 0
},
"autoscaling_mode": {
"description": "The mode of the autoscaler e.g. default, aggressive",
"type": "string",
"enum": [
"default",
"aggressive"
]
},
"target_utilization_fraction": {
"description": "The autoscaler will scale up the cluster to this target fraction of resources usage. For example, if a cluster of 8 nodes is 100% busy # and target_utilization was 0.8, it would resize the cluster to 10.",
"type": "number",
"minimum": 0,
"maximum": 1
},
"idle_timeout_minutes": {
"description": "If a node is idle for this many minutes, it will be removed.",
"type": "integer",
"minimum": 0
},
"provider": {
"type": "object",
"description": "Cloud-provider specific configuration.",
"required": [
"type"
],
"additionalProperties": true,
"properties": {
"type": {
"type": "string",
"description": "e.g. aws, azure, gcp,..."
},
"region": {
"type": "string",
"description": "e.g. us-east-1"
},
"module": {
"type": "string",
"description": "module, if using external node provider"
},
"head_ip": {
"type": "string",
"description": "gcp project id, if using gcp"
},
"worker_ips": {
"type": "array",
"description": "local cluster head node"
},
"use_internal_ips": {
"type": "boolean",
"description": "don't require public ips"
},
"namespace": {
"type": "string",
"description": "k8s namespace, if using k8s"
},
"location": {
"type": "string",
"description": "Azure location"
},
"resource_group": {
"type": "string",
"description": "Azure resource group"
},
"tags": {
"type": "object",
"description": "Azure user-defined tags"
},
"subscription_id": {
"type": "string",
"description": "Azure subscription id"
},
"msi_identity_id": {
"type": "string",
"description": "User-defined managed identity (generated by config)"
},
"msi_identity_principal_id": {
"type": "string",
"description": "User-defined managed identity principal id (generated by config)"
},
"subnet_id": {
"type": "string",
"description": "Network subnet id"
},
"autoscaler_service_account": {
"type": "object",
"description": "k8s autoscaler permissions, if using k8s"
},
"autoscaler_role": {
"type": "object",
"description": "k8s autoscaler permissions, if using k8s"
},
"autoscaler_role_binding": {
"type": "object",
"description": "k8s autoscaler permissions, if using k8s"
},
"cache_stopped_nodes": {
"type": "boolean",
"description": " Whether to try to reuse previously stopped nodes instead of launching nodes. This will also cause the autoscaler to stop nodes instead of terminating them. Only implemented for AWS."
},
"availability_zone": {
"type": "string",
"description": "GCP availability zone"
},
"project_id": {
"type": [
"string",
"null"
],
"description": "GCP globally unique project id"
},
"gcp_credentials": {
"type": "string",
"description": "JSON string constituting GCP credentials"
}
}
},
"auth": {
"type": "object",
"description": "How Ray will authenticate with newly launched nodes.",
"additionalProperties": false,
"properties": {
"ssh_user": {
"type": "string",
"default": "ubuntu"
},
"ssh_public_key": {
"type": "string"
},
"ssh_private_key": {
"type": "string"
}
}
},
"docker": {
"type": "object",
"description": "Docker configuration. If this is specified, all setup and start commands will be executed in the container.",
"additionalProperties": false,
"properties": {
"image": {
"type": "string",
"description": "the docker image name",
"default": "tensorflow/tensorflow:1.5.0-py3"
},
"container_name": {
"type": "string",
"default": "ray_docker"
},
"pull_before_run": {
"type": "boolean",
"description": "run `docker pull` first"
},
"run_options": {
"type": "array",
"description": "shared options for starting head/worker docker"
},
"head_image": {
"type": "string",
"description": "image for head node, takes precedence over 'image' if specified"
},
"head_run_options": {
"type": "array",
"description": "head specific run options, appended to run_options"
},
"worker_image": {
"type": "string",
"description": "analogous to head_image"
},
"worker_run_options": {
"type": "array",
"description": "analogous to head_run_options"
}
}
},
"head_node": {
"type": "object",
"description": "Provider-specific config for the head node, e.g. instance type."
},
"worker_nodes": {
"type": "object",
"description": "Provider-specific config for worker nodes. e.g. instance type."
},
"file_mounts": {
"type": "object",
"description": "Map of remote paths to local paths, e.g. {\"/tmp/data\": \"/my/local/data\"}"
},
"initialization_commands": {
"$ref": "#/definitions/commands",
"description": "List of commands that will be run before `setup_commands`. If docker is enabled, these commands will run outside the container and before docker is setup."
},
"setup_commands": {
"$ref": "#/definitions/commands",
"description": "List of common shell commands to run to setup nodes."
},
"head_setup_commands": {
"$ref": "#/definitions/commands",
"description": "Commands that will be run on the head node after common setup."
},
"worker_setup_commands": {
"$ref": "#/definitions/commands",
"description": "Commands that will be run on worker nodes after common setup."
},
"head_start_ray_commands": {
"$ref": "#/definitions/commands",
"description": "Command to start ray on the head node. You shouldn't need to modify this."
},
"worker_start_ray_commands": {
"$ref": "#/definitions/commands",
"description": "Command to start ray on worker nodes. You shouldn't need to modify this."
},
"no_restart": {
"description": "Whether to avoid restarting the cluster during updates. This field is controlled by the ray --no-restart flag and cannot be set by the user."
},
"available_instance_types": {
"type": "object",
"description": "A list of instance types available for launching with 'auto' worker type.",
"patternProperties": {
".*": {
"type": "object",
"properties": {
"max_workers": {
"type": "integer"
},
"resources": {
"type": "object",
".*": {
"type": "number"
}
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
}
} | o69582 |
{
"properties": {
"end_coordinates": {
"properties": {
"latitude": {
"description": "The latitude of the ending point",
"type": "number"
},
"longitude": {
"description": "The longitude of the ending point",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
},
"start_coordinates": {
"properties": {
"latitude": {
"description": "The latitude of the starting point",
"type": "number"
},
"longitude": {
"description": "The longitude of the starting point",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
}
},
"required": [
"start_coordinates",
"end_coordinates"
],
"type": "object"
} | calculate_distance_3e42c174 |
{
"additionalProperties": false,
"description": "Schema for a Mandrill message opened event",
"properties": {
"_id": {
"type": "string"
},
"ip": {
"type": "string"
},
"location": {
"additionalProperties": false,
"properties": {
"city": {
"type": "string"
},
"country": {
"type": "string"
},
"country_short": {
"type": "string"
},
"latitude": {
"type": "number"
},
"longitude": {
"type": "number"
},
"postal_code": {
"type": "string"
},
"region": {
"type": "string"
},
"timezone": {
"type": "string"
}
},
"type": [
"object",
"null"
]
},
"msg": {
"additionalProperties": false,
"properties": {
"_id": {
"type": "string"
},
"_version": {
"type": "string"
},
"clicks": {
"items": {
"additionalProperties": true,
"properties": {
"ip": {
"type": "string"
},
"location": {
"type": [
"string",
"null"
]
},
"ts": {
"_format": "date-time",
"type": "string"
},
"ua": {
"type": [
"string",
"null"
]
},
"url": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"email": {
"type": "string"
},
"metadata": {
"additionalProperties": true,
"properties": {
"user_id": {
"type": "number"
}
},
"type": "object"
},
"opens": {
"items": {
"additionalProperties": true,
"properties": {
"ip": {
"type": "string"
},
"location": {
"type": [
"string",
"null"
]
},
"ts": {
"_format": "date-time",
"type": "string"
},
"ua": {
"type": [
"string",
"null"
]
}
},
"type": "object"
},
"type": "array"
},
"resends": {
"type": "array"
},
"sender": {
"type": "string"
},
"smtp_events": {
"items": {
"additionalProperties": true,
"properties": {
"destination_ip": {
"type": "string"
},
"diag": {
"type": "string"
},
"size": {
"type": "integer"
},
"source_ip": {
"type": "string"
},
"ts": {
"_format": "date-time",
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"state": {
"type": "string"
},
"subaccount": {
"type": [
"string",
"null"
]
},
"subject": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"template": {
"type": [
"string",
"null"
]
},
"ts": {
"_format": "date-time",
"type": "string"
}
},
"type": "object"
},
"ts": {
"_format": "date-time",
"type": "string"
},
"user_agent": {
"type": "string"
},
"user_agent_parsed": {
"additionalProperties": false,
"properties": {
"mobile": {
"type": "boolean"
},
"os_company": {
"type": [
"string",
"null"
]
},
"os_company_url": {
"type": [
"string",
"null"
]
},
"os_family": {
"type": [
"string",
"null"
]
},
"os_icon": {
"type": [
"string",
"null"
]
},
"os_name": {
"type": [
"string",
"null"
]
},
"os_url": {
"type": [
"string",
"null"
]
},
"type": {
"type": [
"string",
"null"
]
},
"ua_company": {
"type": [
"string",
"null"
]
},
"ua_company_url": {
"type": [
"string",
"null"
]
},
"ua_family": {
"type": [
"string",
"null"
]
},
"ua_icon": {
"type": [
"string",
"null"
]
},
"ua_name": {
"type": [
"string",
"null"
]
},
"ua_url": {
"type": [
"string",
"null"
]
},
"ua_version": {
"type": [
"string",
"null"
]
}
},
"type": [
"object",
"null"
]
}
},
"self": {
"format": "jsonschema",
"name": "message_opened",
"vendor": "com.mandrill",
"version": "1-0-1"
},
"type": "object"
} | sp_130_Normalized |
{
"additionalProperties": false,
"description": "Schema for configuration of ua-parser enrichment",
"properties": {
"enabled": {
"type": "boolean"
},
"name": {
"type": "string"
},
"parameters": {
"additionalProperties": false,
"properties": {
"database": {
"type": "string"
},
"uri": {
"_format": "uri",
"type": "string"
}
},
"type": "object"
},
"vendor": {
"type": "string"
}
},
"required": [
"name",
"vendor",
"enabled"
],
"self": {
"format": "jsonschema",
"name": "ua_parser_config",
"vendor": "com.snowplowanalytics.snowplow",
"version": "1-0-1"
},
"type": "object"
} | sp_322_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Adform Adapter Params",
"description": "A schema which validates params accepted by the Adform adapter",
"type": "object",
"properties": {
"mid": {
"type": [
"integer",
"string"
],
"description": "An ID which identifies the placement selling the impression"
},
"priceType": {
"type": "string",
"enum": [
"gross",
"net"
],
"description": "An expected price type (net or gross) of bids."
},
"mkv": {
"type": "string",
"description": "Comma-separated key-value pairs. Forbidden symbols: &. Example: mkv='color:blue,length:350'",
"pattern": "^(\\s*|((\\s*[^,:&\\s]+\\s*:[^,:&]*)(,\\s*[^,:&\\s]+\\s*:[^,:&]*)*))$"
},
"mkw": {
"type": "string",
"description": "Comma-separated keywords. Forbidden symbols: &.",
"pattern": "^[^&]*$"
}
},
"required": [
"mid"
]
} | o68280 |
{
"definitions": {
"allowance": {
"properties": {
"cities": {
"type": "number"
},
"roads": {
"type": "number"
},
"settlements": {
"type": "number"
}
},
"required": [
"cities",
"settlements",
"roads"
],
"type": "object"
},
"board": {
"properties": {
"corners": {
"items": {
"$ref": "#/definitions/corner"
},
"type": "array"
},
"edges": {
"items": {
"$ref": "#/definitions/edge"
},
"type": "array"
},
"height": {
"type": "number"
},
"hex": {
"$ref": "#/definitions/hexInfo"
},
"tiles": {
"items": {
"$ref": "#/definitions/tile"
},
"type": "array"
},
"width": {
"type": "number"
}
},
"required": [
"width",
"height",
"hex",
"edges",
"tiles",
"corners"
],
"type": "object"
},
"corner": {
"properties": {
"center": {
"$ref": "#/definitions/point"
},
"id": {
"type": "string"
}
},
"required": [
"id",
"center"
],
"type": "object"
},
"edge": {
"properties": {
"center": {
"$ref": "#/definitions/point"
},
"ends": {
"$ref": "#/definitions/vector"
},
"id": {
"type": "string"
}
},
"required": [
"id",
"center",
"ends"
],
"type": "object"
},
"hexInfo": {
"properties": {
"apothem": {
"type": "number"
},
"circumradius": {
"type": "number"
}
},
"required": [
"apothem",
"circumradius"
],
"type": "object"
},
"point": {
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
},
"tile": {
"properties": {
"center": {
"$ref": "#/definitions/point"
},
"id": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "number"
}
},
"required": [
"id",
"center",
"type"
],
"type": "object"
},
"vector": {
"items": {
"$ref": "#/definitions/point",
"maxItems": 2,
"minItems": 2,
"_uniqueItems": true
},
"type": "array"
}
},
"properties": {
"allowance": {
"$ref": "#/definitions/allowance"
},
"board": {
"$ref": "#/definitions/board"
}
},
"required": [
"allowance",
"board"
],
"type": "object"
} | o33011 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_scheduling_v1beta1_PriorityClass": {
"description": "DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass. PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.",
"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"
},
"description": {
"description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.",
"type": "string"
},
"globalDefault": {
"description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.",
"type": "boolean"
},
"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": [
"PriorityClass"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"preemptionPolicy": {
"description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.",
"type": "string"
},
"value": {
"_format": "int32",
"description": "The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.",
"type": "integer"
}
},
"required": [
"value"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "scheduling.k8s.io",
"kind": "PriorityClass",
"version": "v1beta1"
}
]
},
"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": "PriorityClassList is a collection of priority classes.",
"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": [
"scheduling.k8s.io/v1beta1"
],
"type": [
"string",
"null"
]
},
"items": {
"description": "items is the list of PriorityClasses",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_scheduling_v1beta1_PriorityClass"
},
"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": [
"PriorityClassList"
],
"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": "scheduling.k8s.io",
"kind": "PriorityClassList",
"version": "v1beta1"
}
]
} | kb_764_Normalized |
{
"definitions": {
"contact": {
"properties": {
"contact": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"result_limit": {
"properties": {
"isotope": {
"type": "string"
},
"type": {
"enum": [
"limit"
]
},
"unit": {
"$ref": "#/definitions/units"
},
"value": {
"items": {
"type": "number"
},
"maxItems": 2,
"minItems": 1,
"type": "array"
}
},
"required": [
"type",
"isotope",
"unit",
"value"
],
"type": "object"
},
"result_measurement": {
"properties": {
"isotope": {
"type": "string"
},
"type": {
"enum": [
"measurement"
]
},
"unit": {
"$ref": "#/definitions/units"
},
"value": {
"items": {
"type": "number"
},
"maxItems": 3,
"minItems": 1,
"type": "array"
}
},
"required": [
"type",
"isotope",
"unit",
"value"
],
"type": "object"
},
"result_range": {
"properties": {
"isotope": {
"type": "string"
},
"type": {
"enum": [
"range"
]
},
"unit": {
"$ref": "#/definitions/units"
},
"value": {
"items": {
"type": "number"
},
"maxItems": 3,
"minItems": 1,
"type": "array"
}
},
"required": [
"type",
"isotope",
"unit",
"value"
],
"type": "object"
},
"units": {
"enum": [
"pct",
"g/g",
"ppm",
"ppb",
"ppt",
"ppq",
"Bq",
"Bq/kg",
"Bq/unit",
"Bq/m",
"Bq/cm",
"Bq/m2",
"Bq/cm2",
"Bq/m3",
"Bq/cm3",
"mBq",
"mBq/kg",
"mBq/unit",
"mBq/m",
"mBq/cm",
"mBq/m2",
"mBq/cm2",
"mBq/m3",
"mBq/cm3",
"uBq",
"uBq/kg",
"uBq/unit",
"uBq/m",
"uBq/cm",
"uBq/m2",
"uBq/cm2",
"uBq/m3",
"uBq/cm3",
"nBq",
"nBq/kg",
"nBq/unit",
"nBq/m",
"nBq/cm",
"nBq/m2",
"nBq/cm2",
"nBq/m3",
"nBq/cm3",
"pBq",
"pBq/kg",
"pBq/unit",
"pBq/m",
"pBq/cm",
"pBq/m2",
"pBq/cm2",
"pBq/m3",
"pBq/cm3",
"g",
"g/kg",
"g/unit",
"g/m",
"g/cm",
"g/m2",
"g/cm2",
"g/m3",
"g/cm3",
"mg",
"mg/kg",
"mg/unit",
"mg/m",
"mg/cm",
"mg/m2",
"mg/cm2",
"mg/m3",
"mg/cm3",
"ug",
"ug/kg",
"ug/unit",
"ug/m",
"ug/cm",
"ug/m2",
"ug/cm2",
"ug/m3",
"ug/cm3",
"ng",
"ng/kg",
"ng/unit",
"ng/m",
"ng/cm",
"ng/m2",
"ng/cm2",
"ng/m3",
"ng/cm3",
"pg",
"pg/kg",
"pg/unit",
"pg/m",
"pg/cm",
"pg/m2",
"pg/cm2",
"pg/m3",
"pg/cm3"
]
},
"user": {
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"required": [
"name",
"type"
],
"type": "object"
}
},
"description": "MADF 3.0",
"properties": {
"data_source": {
"properties": {
"input": {
"properties": {
"contact": {
"type": "string"
},
"date": {
"anyOf": [
{
"pattern": "[0-9]{4}-[0-9]{2}-[0-9]{2}",
"type": "string"
},
{
"pattern": "[0-9]{4}-[0-9]{2}-[0-9]{1}",
"type": "string"
},
{
"pattern": "[0-9]{4}-[1-2]{1}-[0-9]{2}",
"type": "string"
},
{
"pattern": "[0-9]{4}-[1-2]{1}-[0-9]{1}",
"type": "string"
},
{
"pattern": "[0-9]{4}-[0-9]{2}",
"type": "string"
},
{
"pattern": "[0-9]{4}-[0-9]{1}",
"type": "string"
},
{
"pattern": "[0-9]{4}",
"type": "string"
}
],
"type": "string"
},
"name": {
"type": "string"
},
"notes": {
"type": "string"
}
},
"required": [
"name",
"contact",
"date"
],
"type": "object"
},
"reference": {
"type": "string"
},
"user": {
"items": {
"$ref": "#/definitions/user"
},
"type": "array"
}
},
"type": "object"
},
"grouping": {
"type": "string"
},
"measurement": {
"properties": {
"date": {
"items": {
"anyOf": [
{
"pattern": "[0-9]{4}-[0-9]{2}-[0-9]{2}",
"type": "string"
},
{
"pattern": "[0-9]{4}-[0-9]{2}-[0-9]{1}",
"type": "string"
},
{
"pattern": "[0-9]{4}-[1-2]{1}-[0-9]{2}",
"type": "string"
},
{
"pattern": "[0-9]{4}-[1-2]{1}-[0-9]{1}",
"type": "string"
},
{
"pattern": "[0-9]{4}-[0-9]{2}",
"type": "string"
},
{
"pattern": "[0-9]{4}-[0-9]{1}",
"type": "string"
},
{
"pattern": "[0-9]{4}",
"type": "string"
},
{
"pattern": "^$",
"type": "string"
}
]
},
"maxItems": 2,
"minItems": 0,
"type": "array"
},
"institution": {
"type": "string"
},
"practitioner": {
"$ref": "#/definitions/contact"
},
"requestor": {
"$ref": "#/definitions/contact"
},
"results": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/result_measurement"
},
{
"$ref": "#/definitions/result_range"
},
{
"$ref": "#/definitions/result_limit"
}
]
},
"type": "array"
},
"technique": {
"type": "string"
},
"user": {
"items": {
"$ref": "#/definitions/user"
},
"type": "array"
}
},
"type": "object"
},
"sample": {
"properties": {
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"owner": {
"$ref": "#/definitions/contact"
},
"source": {
"type": "string"
},
"user": {
"items": {
"$ref": "#/definitions/user"
},
"type": "array"
}
},
"required": [
"name",
"description"
],
"type": "object"
},
"specification": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"grouping",
"specification",
"type",
"sample",
"data_source",
"measurement"
],
"type": "object"
} | o63198 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"description": "Configuration for a piece of audio content, over a stream.",
"properties": {
"audio_codec": {
"description": "The codec used to encode the audio stream. (E.g. mpeg)",
"title": "Audio Codec",
"type": "string"
},
"bitrate": {
"description": "The bitrate of the audio in kilobytes per second.",
"title": "Bitrate",
"type": "number"
},
"filesize": {
"description": "The size of the audio file in bytes.",
"title": "File size",
"type": "number"
},
"stream_type": {
"description": "The type of audio (e.g. mp3).",
"title": "Audio Stream Type",
"type": "string"
},
"url": {
"_format": "uri",
"description": "The file location of the stream.",
"title": "URL",
"type": "string"
}
},
"required": [
"url"
],
"title": "A stream of audio.",
"type": "object"
} | wp_104_Normalized |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"ThemePropertyChange": {
"properties": {
"name": {
"description": "Name of the theme property",
"type": "string"
},
"owner": {
"description": "Theming function this parameter belongs to",
"type": "string"
},
"remove": {
"description": "Remove directive/component/property",
"type": "boolean"
},
"replaceWith": {
"description": "Replace original selector/property with new one",
"type": "string"
}
},
"required": [
"name",
"owner"
],
"type": "object"
}
},
"properties": {
"changes": {
"description": "An array of changes to theme function properties",
"items": {
"$ref": "#/definitions/ThemePropertyChange"
},
"type": "array"
}
},
"required": [
"changes"
],
"type": "object"
} | o7499 |
{
"title": "Additional options for templates",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"definitions": {},
"additionalProperties": false,
"properties": {
"$schema": {
"type": "string"
},
"id": {
"type": "string"
},
"addname": {
"type": "string"
},
"creatematch": {
"description": "If the result of the file appears mcgen line with a predetermined pattern that are created with the file. Otherwise, no.",
"type": "string"
},
"ext": {
"type": "string"
},
"description": {
"type": "string"
},
"vars": {
"type": "array",
"items": {
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"value": {}
}
}
}
},
"required": [
"id",
"ext"
]
} | o36571 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"nonEmptyString": {
"type": "string",
"minLength": 1
},
"multiString": {
"anyOf": [
{
"$ref": "#/definitions/nonEmptyString"
},
{
"type": "array",
"items": {
"$ref": "#/definitions/nonEmptyString"
},
"_uniqueItems": true
}
]
}
},
"type": "object",
"properties": {
"name": {
"$ref": "#/definitions/nonEmptyString"
},
"description": {
"type": "string"
},
"namespace": {
"$ref": "#/definitions/nonEmptyString"
},
"version": {
"$ref": "#/definitions/nonEmptyString"
},
"downloadURL": {
"$ref": "#/definitions/nonEmptyString"
},
"updateURL": {
"$ref": "#/definitions/nonEmptyString"
},
"icon": {
"$ref": "#/definitions/nonEmptyString"
},
"include": {
"$ref": "#/definitions/multiString"
},
"exclude": {
"$ref": "#/definitions/multiString"
},
"match": {
"$ref": "#/definitions/multiString"
},
"require": {
"$ref": "#/definitions/multiString"
},
"resource": {
"$ref": "#/definitions/multiString"
},
"grant": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string",
"enum": [
"unsafeWindow",
"GM_getValue",
"GM_setValue",
"GM_listValues",
"GM_deleteValue",
"GM_getResourceText",
"GM_getResourceURL",
"GM_addStyle",
"GM_log",
"GM_openInTab",
"GM_registerMenuCommand",
"GM_setClipboard",
"GM_xmlhttpRequest"
]
},
"_uniqueItems": true
},
{
"type": "string",
"enum": [
"none"
]
}
],
"default": "none"
},
"run-at": {
"type": "string",
"enum": [
"document-end",
"document-start",
"document-idle"
],
"default": "document-end"
},
"noframes": {
"type": "boolean",
"default": false
}
},
"additionalProperties": {
"anyOf": [
{
"$ref": "#/definitions/multiString"
},
{
"type": "boolean"
}
]
},
"required": [
"name",
"namespace",
"version"
]
} | o10505 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"season": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"timeline": {
"type": "string"
},
"level": {
"type": "number"
},
"order": {
"type": "number"
},
"chapters": {
"type": "array",
"items": {}
}
},
"required": [
"id",
"season",
"name",
"description",
"timeline",
"level",
"order",
"chapters"
]
},
"properties": {},
"additionalProperties": false
} | o45217 |
{
"$id": "http://labcompass.futurecode.com/map.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"content": {
"enum": [
"Switch puzzle",
"Lever puzzle",
"Floor puzzle",
"Escort gauntlet",
"Trap gauntlet",
"darkshrine",
"argus",
"golden-key",
"golden-door",
"silver-key",
"silver-door"
]
},
"difficulty": {
"enum": [
"Normal",
"Cruel",
"Merciless",
"Uber"
]
},
"direction": {
"enum": [
"N",
"NE",
"E",
"SE",
"S",
"SW",
"W",
"NW",
"C"
]
},
"phase": {
"enum": [
"NoPhase",
"ChargeDisruptors",
"Conduits",
"Essences",
"Fonts",
"Gargoyles",
"Idols",
"Lieutenants",
"Portals"
]
},
"roomId": {
"type": "string"
},
"sectionLayout": {
"type": "string"
},
"trap": {
"enum": [
"NoTrap",
"BladeSentries",
"Darts",
"FurnaceTraps",
"Saws",
"Spikes",
"SpinningBlades"
]
},
"weapon": {
"enum": [
"NoWeapon",
"TwoSwords",
"SwordAndShield",
"TwoHandedMace"
]
}
},
"properties": {
"date": {
"pattern": "\\d{4}-\\d{2}-\\d{2}",
"type": "string"
},
"difficulty": {
"$ref": "#/definitions/difficulty"
},
"phase1": {
"$ref": "#/definitions/phase"
},
"phase2": {
"$ref": "#/definitions/phase"
},
"rooms": {
"items": {
"properties": {
"areacode": {
"type": "string"
},
"contents": {
"items": {
"$ref": "#/definitions/content"
},
"type": "array"
},
"exits": {
"additionalProperties": {
"$ref": "#/definitions/roomId"
},
"propertyNames": {
"$ref": "#/definitions/direction"
},
"type": "object"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"secretPassage": {
"type": "string"
},
"x": {
"type": "string"
},
"y": {
"type": "string"
}
},
"required": [
"name",
"areacode",
"id",
"x",
"y",
"contents",
"exits"
],
"type": "object"
},
"type": "array"
},
"section1layout": {
"$ref": "#/definitions/sectionLayout"
},
"section2layout": {
"$ref": "#/definitions/sectionLayout"
},
"section3layout": {
"$ref": "#/definitions/sectionLayout"
},
"trap1": {
"$ref": "#/definitions/trap"
},
"trap2": {
"$ref": "#/definitions/trap"
},
"weapon": {
"$ref": "#/definitions/weapon"
}
},
"required": [
"difficulty",
"date",
"weapon",
"phase1",
"phase2",
"trap1",
"trap2",
"rooms"
],
"title": "LabCompass Map File",
"type": "object"
} | o90904 |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"base": {
"description": "The base of the shape",
"type": "number"
},
"height": {
"description": "The height of the shape",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width",
"radius",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The shape for which area needs to be calculated",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_640a7b20 |
{
"properties": {
"action": {
"type": "string"
},
"comment": {
"type": "string"
},
"description": {
"readonly": true,
"type": "string"
},
"hits": {
"readonly": true,
"type": "integer"
},
"logaction": {
"type": "string"
},
"name": {
"type": "string"
},
"newname": {
"type": "string"
},
"policysubtype": {
"enum": [
"LOCAL",
"RADIUS",
"LDAP",
"TACACS",
"CERT",
"NEGOTIATE",
"SAML",
"PROFILE",
"DFA",
"SAMLIDP",
"WEBAUTH",
"OAUTH",
"NO_AUTHN",
"EPA",
"SFAUTH",
"AZUREVAULT",
"EMAIL",
"CAPTCHA"
],
"readonly": true,
"type": "string"
},
"rule": {
"type": "string"
},
"undefaction": {
"type": "string"
}
},
"title": "authenticationpolicy",
"type": "object"
} | o30125 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"projects",
"drivers"
],
"properties": {
"projects": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[a-z\\d\\./-]+$"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"name"
],
"additionalProperties": false
}
},
"releases": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[a-z]+$"
},
"wiki": {
"type": "string"
}
},
"required": [
"id",
"wiki"
]
}
},
"drivers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"project_id": {
"type": "string"
},
"vendor": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"maintainer": {
"$ref": "#/definitions/user"
},
"wiki": {
"type": "string"
},
"releases": {
"type": "array",
"items": {
"type": "string"
}
},
"ci_id": {
"type": "string"
}
},
"required": [
"project_id",
"vendor",
"name"
],
"additionalProperties": false
}
}
},
"definitions": {
"user": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"email": {
"type": "string",
"pattern": "^[a-z\\d_\\.-]+@([a-z\\d\\.-]+\\.)+[a-z]+$"
},
"irc": {
"type": "string"
},
"launchpad_id": {
"type": "string"
}
},
"required": [
"name"
],
"additionalProperties": false
}
}
} | o82199 |
{
"additionalProperties": true,
"description": "Schema for an Optimizely variation context (http://developers.optimizely.com/javascript/reference/#variations)",
"properties": {
"code": {
"type": [
"string",
"null"
]
},
"id": {
"type": [
"string",
"null"
]
},
"name": {
"type": [
"string",
"null"
]
}
},
"self": {
"format": "jsonschema",
"name": "variation",
"vendor": "com.optimizely",
"version": "1-0-0"
},
"type": "object"
} | sp_156_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Advangelists Adapter Params",
"description": "A schema which validates params accepted by the Advangelists adapter",
"type": "object",
"properties": {
"pubid": {
"type": "string",
"description": "An id used to identify Advangelists publisher.",
"minLength": 8
},
"placement": {
"type": "string",
"description": "An id used to identify placements."
}
},
"required": [
"pubid"
]
} | o68291 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"additionalProperties": false,
"definitions": {
"___traits_trait_additional_properties_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": {},
"description": "A grab-bag object for non-validatable data.",
"title": "Has additional properties",
"type": "object"
},
"___traits_trait_id_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A globally unique identifier of the content in the ANS repository.",
"title": "Globally Unique ID trait",
"type": "string"
},
"___traits_trait_version_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The version of ANS that this object was serialized as, in major.minor.patch format. For top-level content objects, this is a required trait.",
"enum": [
"0.10.9"
],
"title": "Describes the ANS version of this object",
"type": "string"
}
},
"description": "A hierarchical section or 'site' in a taxonomy. In the Arc ecosystem, these are stored in the arc-site-service.",
"properties": {
"_id": {
"$ref": "#/definitions/___traits_trait_id_json"
},
"additional_properties": {
"$ref": "#/definitions/___traits_trait_additional_properties_json"
},
"description": {
"description": "A short description or tagline about this site",
"type": "string"
},
"name": {
"description": "The name of this site",
"type": "string"
},
"parent_id": {
"description": "The id of this section's parent site, if any",
"type": "string"
},
"path": {
"description": "The url path to this site",
"type": "string"
},
"primary": {
"description": "Is this the primary site?",
"type": "boolean"
},
"type": {
"enum": [
"site"
]
},
"version": {
"$ref": "#/definitions/___traits_trait_version_json"
}
},
"required": [
"type",
"version",
"name"
],
"title": "Site",
"type": "object"
} | wp_115_Normalized |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"oneOf": [
{
"required": [
"length",
"width"
]
},
{
"required": [
"base",
"height"
]
}
],
"properties": {
"base": {
"description": "Base of the triangle",
"type": "number"
},
"height": {
"description": "Height of the triangle",
"type": "number"
},
"length": {
"description": "Length of the rectangle",
"type": "number"
},
"radius": {
"description": "Radius of the circle",
"type": "number"
},
"width": {
"description": "Width of the rectangle",
"type": "number"
}
},
"required": [
"radius"
],
"type": "object"
},
"shape": {
"description": "The type of shape",
"enum": [
"circle",
"rectangle",
"triangle"
],
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_731ad8f5 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"success": {
"type": "boolean",
"enum": [
true
]
},
"ctx": {
"type": "object",
"patternProperties": {
"^[0-9a-zA-Z_-]{1,255}$": {
"anyOf": [
{
"properties": {
"a": {
"type": "string",
"maxLength": 32767
},
"b": {
"type": "number"
},
"c": {
"type": "object",
"properties": {
"key": {
"type": "string",
"pattern": "^[0-9a-zA-Z_-]{1,255}$"
},
"value": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
},
"additionalProperties": false
}
}
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"description": {
"type": "string",
"maxLength": 32767
},
"tags": {
"type": "object",
"patternProperties": {
"^[0-9a-zA-Z_-]{1,255}$": {
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 255
}
}
}
}
}
}
]
}
},
"additionalProperties": false
}
}
}
| o9962 |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"base": {
"description": "The base of the shape",
"type": "number"
},
"height": {
"description": "The height of the shape",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of shape",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_6c8f62eb |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"layout": {
"type": "object",
"description": "Configures how the buttons are laid out on the screen.",
"properties": {
"variant": {
"description": "The layout variant.",
"type": "string",
"enum": [
"VERTICAL",
"HORIZONTAL"
],
"default": "HORIZONTAL"
}
}
},
"areas": {
"type": "object",
"description": "For each area, the number of grid columns which it takes up.",
"properties": {
"left": {
"type": "object",
"default": {},
"description": "Number of columns to use for the left (vertical: top) area.",
"properties": {
"columnWidth": {
"type": "integer",
"minimum": 0
}
}
},
"center": {
"type": "object",
"default": {},
"description": "Number of columns to use for the middle area.",
"properties": {
"columnWidth": {
"type": "integer",
"minimum": 0
}
}
},
"right": {
"type": "object",
"default": {},
"description": "Number of columns to use for the right (vertical: bottom) area.",
"properties": {
"columnWidth": {
"type": "integer",
"minimum": 0
}
}
}
}
},
"buttons": {
"type": "array",
"description": "A list of user-configured buttons, each with individual properties.",
"default": [],
"items": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Determines if the button is used at all (true) or ignored completely (false).",
"default": true
},
"align": {
"type": "string",
"description": "The area in which the button is inserted.",
"enum": [
"LEFT",
"CENTER",
"RIGHT"
],
"default": "LEFT"
},
"index": {
"type": "integer",
"description": "The position at which the button is inserted.",
"default": 0
},
"i18nHtmlLabel": {
"type": [
"string",
"object"
],
"description": "An (internationalized) HTML label to display on the button.",
"default": "Button"
},
"action": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"description": "Topic name of the action to request taking upon button activation."
},
"accessKey": {
"type": "string",
"description": "A key (single character) which is used as a shortcut to this button."
},
"class": {
"type": "string",
"description": "The predefined semantic class that this button belongs to.",
"enum": [
"NORMAL",
"PRIMARY",
"INFO",
"SUCCESS",
"WARNING",
"DANGER",
"INVERSE",
"LINK"
],
"default": "NORMAL"
},
"size": {
"type": "string",
"description": "The size of the button on the bar, interpreted according to theme.",
"enum": [
"MINI",
"SMALL",
"DEFAULT",
"LARGE"
],
"default": "DEFAULT"
},
"hideOn": {
"type": "array",
"description": "List of flags. Setting any of these causes the button to be hidden from view, unsetting any reverses the effect. Space for the button is reserved in either state.",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag",
"description": "Flag topic. Prefixing the topic with '!' inverts its meaning."
}
},
"disableOn": {
"type": "array",
"description": "List of flags. Setting any of these causes the button to be disabled ('greyed out'), unsetting any reverses the effect.",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag",
"description": "Flag topic. Prefixing the topic with '!' inverts its meaning."
}
},
"omitOn": {
"type": "array",
"description": "List of flags. Setting any of these causes the button to be removed from the layout, unsetting any reverses the effect. Other buttons may claim this button's space while it is omitted.",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag",
"description": "Flag topic. Prefixing the topic with '!' inverts its meaning."
}
},
"busyOn": {
"type": "array",
"description": "List of flags. Setting any of these causes the button (icon) to indicate a busy state, unsetting any reverses the effect.",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag",
"description": "Flag topic. Prefixing the topic with '!' inverts its meaning."
}
}
}
}
},
"previous": {
"type": "object",
"description": "A button to be used for 'back'-navigation. All properties (cf. feature 'buttons') have applicable default values.",
"properties": {
"enabled": {
"type": "boolean",
"default": false
},
"align": {
"type": "string",
"enum": [
"LEFT",
"CENTER",
"RIGHT"
],
"default": "LEFT"
},
"index": {
"type": "integer",
"default": -100
},
"i18nHtmlLabel": {
"type": [
"string",
"object"
],
"default": {
"en": "<i class=\"fa ax-icon-previous\"></i> Previous",
"de": "<i class=\"fa ax-icon-previous\"></i> Zur\u00fcck"
}
},
"action": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"default": "previous"
},
"accessKey": {
"type": "string"
},
"class": {
"type": "string",
"enum": [
"NORMAL",
"PRIMARY",
"INFO",
"SUCCESS",
"WARNING",
"DANGER",
"INVERSE",
"LINK"
],
"default": "NORMAL"
},
"size": {
"type": "string",
"enum": [
"MINI",
"SMALL",
"DEFAULT",
"LARGE"
],
"default": "DEFAULT"
},
"hideOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"disableOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"omitOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"busyOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
}
}
},
"next": {
"type": "object",
"description": "A button to be used for 'forwards'-navigation. All properties (cf. feature 'buttons') have applicable default values.",
"properties": {
"enabled": {
"type": "boolean",
"default": false
},
"align": {
"type": "string",
"enum": [
"LEFT",
"CENTER",
"RIGHT"
],
"default": "RIGHT"
},
"index": {
"type": "integer",
"default": 100
},
"i18nHtmlLabel": {
"type": [
"string",
"object"
],
"default": {
"en": "Next <i class=\"fa ax-icon-next\"></i>",
"de": "Weiter <i class=\"fa ax-icon-next\"></i>"
}
},
"action": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"default": "next"
},
"accessKey": {
"type": "string"
},
"class": {
"type": "string",
"enum": [
"NORMAL",
"PRIMARY",
"INFO",
"SUCCESS",
"WARNING",
"DANGER",
"INVERSE",
"LINK"
],
"default": "NORMAL"
},
"size": {
"type": "string",
"enum": [
"MINI",
"SMALL",
"DEFAULT",
"LARGE"
],
"default": "DEFAULT"
},
"hideOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"disableOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"omitOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"busyOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
}
}
},
"ok": {
"type": "object",
"description": "A button to be used for user confirmation. All properties (cf. feature 'buttons') have applicable default values.",
"properties": {
"enabled": {
"type": "boolean",
"default": false
},
"align": {
"type": "string",
"enum": [
"LEFT",
"CENTER",
"RIGHT"
],
"default": "RIGHT"
},
"index": {
"type": "integer",
"default": 94
},
"i18nHtmlLabel": {
"type": [
"string",
"object"
],
"default": "<i class=\"fa ax-icon-ok\"></i> OK"
},
"action": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"default": "ok"
},
"accessKey": {
"type": "string"
},
"class": {
"type": "string",
"enum": [
"NORMAL",
"PRIMARY",
"INFO",
"SUCCESS",
"WARNING",
"DANGER",
"INVERSE",
"LINK"
],
"default": "NORMAL"
},
"size": {
"type": "string",
"enum": [
"MINI",
"SMALL",
"DEFAULT",
"LARGE"
],
"default": "DEFAULT"
},
"hideOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"disableOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"omitOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"busyOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
}
}
},
"apply": {
"type": "object",
"description": "A button to be used for popup confirmation. All properties (cf. feature 'buttons') have applicable default values.",
"properties": {
"enabled": {
"type": "boolean",
"default": false
},
"align": {
"type": "string",
"enum": [
"LEFT",
"CENTER",
"RIGHT"
],
"default": "RIGHT"
},
"index": {
"type": "integer",
"default": 95
},
"i18nHtmlLabel": {
"type": [
"string",
"object"
],
"default": {
"en": "<i class=\"fa ax-icon-apply\"></i> Apply",
"de": "<i class=\"fa ax-icon-apply\"></i> Anwenden"
}
},
"action": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"default": "apply"
},
"accessKey": {
"type": "string"
},
"class": {
"type": "string",
"enum": [
"NORMAL",
"PRIMARY",
"INFO",
"SUCCESS",
"WARNING",
"DANGER",
"INVERSE",
"LINK"
],
"default": "NORMAL"
},
"size": {
"type": "string",
"enum": [
"MINI",
"SMALL",
"DEFAULT",
"LARGE"
],
"default": "DEFAULT"
},
"hideOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"disableOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"omitOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"busyOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
}
}
},
"cancel": {
"type": "object",
"description": "A button to be used for (popup) cancellation. All properties (cf. feature 'buttons') have applicable default values.",
"properties": {
"enabled": {
"type": "boolean",
"default": false
},
"align": {
"type": "string",
"enum": [
"LEFT",
"CENTER",
"RIGHT"
],
"default": "RIGHT"
},
"index": {
"type": "integer",
"default": 96
},
"i18nHtmlLabel": {
"type": [
"string",
"object"
],
"default": {
"en": "<i class=\"fa ax-icon-cancel\"></i> Cancel",
"de": "<i class=\"fa ax-icon-cancel\"></i> Abbrechen"
}
},
"action": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"default": "cancel"
},
"accessKey": {
"type": "string"
},
"class": {
"type": "string",
"enum": [
"NORMAL",
"PRIMARY",
"INFO",
"SUCCESS",
"WARNING",
"DANGER",
"INVERSE",
"LINK"
],
"default": "NORMAL"
},
"size": {
"type": "string",
"enum": [
"MINI",
"SMALL",
"DEFAULT",
"LARGE"
],
"default": "DEFAULT"
},
"hideOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"disableOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"omitOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"busyOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
}
}
},
"yes": {
"type": "object",
"description": "A button to be used for (popup) dialog approval. All properties (cf. feature 'buttons') have applicable default values.",
"properties": {
"enabled": {
"type": "boolean",
"default": false
},
"align": {
"type": "string",
"enum": [
"LEFT",
"CENTER",
"RIGHT"
],
"default": "RIGHT"
},
"index": {
"type": "integer",
"default": 97
},
"i18nHtmlLabel": {
"type": [
"string",
"object"
],
"default": {
"en": "<i class=\"fa ax-icon-yes\"></i> Yes",
"de": "<i class=\"fa ax-icon-yes\"></i> Ja"
}
},
"action": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"default": "yes"
},
"accessKey": {
"type": "string"
},
"class": {
"type": "string",
"enum": [
"NORMAL",
"PRIMARY",
"INFO",
"SUCCESS",
"WARNING",
"DANGER",
"INVERSE",
"LINK"
],
"default": "NORMAL"
},
"size": {
"type": "string",
"enum": [
"MINI",
"SMALL",
"DEFAULT",
"LARGE"
],
"default": "DEFAULT"
},
"hideOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"disableOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"omitOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"busyOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
}
}
},
"no": {
"type": "object",
"description": "A button to be used for (popup) dialog disapproval. All properties (cf. feature 'buttons') have applicable default values.",
"properties": {
"enabled": {
"type": "boolean",
"default": false
},
"align": {
"type": "string",
"enum": [
"LEFT",
"CENTER",
"RIGHT"
],
"default": "RIGHT"
},
"index": {
"type": "integer",
"default": 98
},
"i18nHtmlLabel": {
"type": [
"string",
"object"
],
"default": {
"en": "<i class=\"fa ax-icon-no\"></i> No",
"de": "<i class=\"fa ax-icon-no\"></i> Nein"
}
},
"action": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"default": "no"
},
"accessKey": {
"type": "string"
},
"class": {
"type": "string",
"enum": [
"NORMAL",
"PRIMARY",
"INFO",
"SUCCESS",
"WARNING",
"DANGER",
"INVERSE",
"LINK"
],
"default": "NORMAL"
},
"size": {
"type": "string",
"enum": [
"MINI",
"SMALL",
"DEFAULT",
"LARGE"
],
"default": "DEFAULT"
},
"hideOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"disableOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"omitOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"busyOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
}
}
},
"finish": {
"type": "object",
"description": "A button to be used for process completion. All properties (cf. feature 'buttons') have applicable default values.",
"properties": {
"enabled": {
"type": "boolean",
"default": false
},
"align": {
"type": "string",
"enum": [
"LEFT",
"CENTER",
"RIGHT"
],
"default": "RIGHT"
},
"index": {
"type": "integer",
"default": 99
},
"i18nHtmlLabel": {
"type": [
"string",
"object"
],
"default": {
"en": "<i class=\"fa ax-icon-finish\"></i> Finish",
"de": "<i class=\"fa ax-icon-finish\"></i> Fertigstellen"
}
},
"action": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"default": "finish"
},
"accessKey": {
"type": "string"
},
"class": {
"type": "string",
"enum": [
"NORMAL",
"PRIMARY",
"INFO",
"SUCCESS",
"WARNING",
"DANGER",
"INVERSE",
"LINK"
],
"default": "NORMAL"
},
"size": {
"type": "string",
"enum": [
"MINI",
"SMALL",
"DEFAULT",
"LARGE"
],
"default": "DEFAULT"
},
"hideOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"disableOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"omitOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"busyOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
}
}
},
"info": {
"type": "object",
"description": "A button to be used for information retrieval. All properties (cf. feature 'buttons') have applicable default values.",
"properties": {
"enabled": {
"type": "boolean",
"default": false
},
"align": {
"type": "string",
"enum": [
"LEFT",
"CENTER",
"RIGHT"
],
"default": "CENTER"
},
"index": {
"type": "integer",
"default": -50
},
"i18nHtmlLabel": {
"type": [
"string",
"object"
],
"default": "<i class=\"fa ax-icon-info\"></i> Info"
},
"action": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"default": "info"
},
"accessKey": {
"type": "string"
},
"class": {
"type": "string",
"enum": [
"NORMAL",
"PRIMARY",
"INFO",
"SUCCESS",
"WARNING",
"DANGER",
"INVERSE",
"LINK"
],
"default": "NORMAL"
},
"size": {
"type": "string",
"enum": [
"MINI",
"SMALL",
"DEFAULT",
"LARGE"
],
"default": "DEFAULT"
},
"hideOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"disableOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"omitOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"busyOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
}
}
},
"help": {
"type": "object",
"description": "A button to be used for requesting help. All properties (cf. feature 'buttons') have applicable default values.",
"properties": {
"enabled": {
"type": "boolean",
"default": false
},
"align": {
"type": "string",
"enum": [
"LEFT",
"CENTER",
"RIGHT"
],
"default": "CENTER"
},
"index": {
"type": "integer",
"default": -49
},
"i18nHtmlLabel": {
"type": [
"string",
"object"
],
"default": {
"en": "<i class=\"fa ax-icon-help\"></i> Help",
"de": "<i class=\"fa ax-icon-help\"></i> Hilfe"
}
},
"action": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"default": "help"
},
"accessKey": {
"type": "string"
},
"class": {
"type": "string",
"enum": [
"NORMAL",
"PRIMARY",
"INFO",
"SUCCESS",
"WARNING",
"DANGER",
"INVERSE",
"LINK"
],
"default": "NORMAL"
},
"size": {
"type": "string",
"enum": [
"MINI",
"SMALL",
"DEFAULT",
"LARGE"
],
"default": "DEFAULT"
},
"hideOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"disableOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"omitOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"busyOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
}
}
},
"print": {
"type": "object",
"description": "A button to be used for requesting a printout. All properties (cf. feature 'buttons') have applicable default values.",
"properties": {
"enabled": {
"type": "boolean",
"default": false
},
"align": {
"type": "string",
"enum": [
"LEFT",
"CENTER",
"RIGHT"
],
"default": "CENTER"
},
"index": {
"type": "integer",
"default": -48
},
"i18nHtmlLabel": {
"type": [
"string",
"object"
],
"default": {
"en": "<i class=\"fa ax-icon-print\"></i> Print",
"de": "<i class=\"fa ax-icon-print\"></i> Drucken"
}
},
"action": {
"type": "string",
"format": "topic",
"axRole": "outlet",
"default": "print"
},
"accessKey": {
"type": "string"
},
"class": {
"type": "string",
"enum": [
"NORMAL",
"PRIMARY",
"INFO",
"SUCCESS",
"WARNING",
"DANGER",
"INVERSE",
"LINK"
],
"default": "NORMAL"
},
"size": {
"type": "string",
"enum": [
"MINI",
"SMALL",
"DEFAULT",
"LARGE"
],
"default": "DEFAULT"
},
"hideOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"disableOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"omitOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
},
"busyOn": {
"type": "array",
"items": {
"type": "string",
"format": "flag-topic",
"axRole": "inlet",
"axPattern": "flag"
}
}
}
},
"i18n": {
"description": "Which locale to use for displaying this widget.",
"type": "object",
"properties": {
"locale": {
"type": "string",
"format": "topic",
"axRole": "inlet",
"description": "The topic under which to expect the locale for this widget.",
"default": "default"
}
}
}
}
} | o9354 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "A list of books",
"type": "array",
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "BookRecord",
"description": "A book record",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The id of the book"
},
"title": {
"type": "string",
"description": "Book title"
},
"author": {
"type": "string",
"description": "Book author"
},
"isbn": {
"type": "string",
"description": "Book ISDB (optional)"
}
},
"required": [
"id",
"title",
"author"
]
}
} | o49129 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"compilationOptions": {
"type": "object",
"properties": {
"define": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"warningsAsErrors": {
"type": "boolean",
"default": false
},
"allowUnsafe": {
"type": "boolean",
"default": false
},
"emitEntryPoint": {
"type": "boolean",
"default": false
},
"optimize": {
"type": "boolean",
"default": false
},
"languageVersion": {
"type": "string",
"enum": [
"csharp1",
"csharp2",
"csharp3",
"csharp4",
"csharp5",
"csharp6",
"experimental"
]
},
"keyFile": {
"type": "string"
},
"delaySign": {
"type": "boolean",
"default": false
},
"strongName": {
"type": "boolean",
"default": false
}
}
},
"configType": {
"type": "object",
"properties": {
"dependencies": {
"$ref": "#/definitions/dependencies"
},
"compilationOptions": {
"$ref": "#/definitions/compilationOptions"
},
"frameworkAssemblies": {
"$ref": "#/definitions/dependencies"
}
}
},
"dependencies": {
"type": "object",
"additionalProperties": {
"type": ["string", "object"],
"properties": {
"version": {
"type": "string"
},
"type": {
"type": "string",
"default": "default",
"enum": ["default", "build"]
},
"target": {
"type": "string",
"description": "Restrict this dependency to matching only a Project or a Package",
"enum": ["project", "package"]
}
}
}
},
"script": {
"type": ["string", "array"],
"items": {
"type": "string"
},
"description": "A command line script or scripts.\r\rAvailable variables:\r%project:Directory% - The project directory\r%project:Name% - The project name\r%project:Version% - The project version"
}
},
"id": "https://json.schemastore.org/project-1.0.0-beta8.json",
"properties": {
"authors": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"packInclude": {
"description": "Pairs of destination folders and glob patterns specifying additional files to include in the output NuGet package. (data type: JSON map). Example: { \"tools/\": \"tools/**/*.*\" }",
"type": "object"
},
"publishExclude": {
"description": "Glob pattern to specify files to exclude from publish output. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": ["obj/**/*.*", "bin/**/*.*", "**/.*/**"]
},
"compile": {
"description": "Glob pattern to specify files to compile. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": "**/*.cs"
},
"compileExclude": {
"description": "Glob pattern to specify files to exclude from compilation. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"compileFiles": {
"description": "Files to include in compilation (overrides 'compileExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"content": {
"description": "Glob pattern to specify files to include as content. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": "**/*"
},
"contentExclude": {
"description": "Glob pattern to specify files to exclude from the content list. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"contentFiles": {
"description": "Files to include as content (overrides 'contentExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"preprocess": {
"description": "Glob pattern to specify files to use for preprocessing. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": "compiler/preprocess/**/*.cs"
},
"preprocessExclude": {
"description": "Glob pattern to specify files to exclude from use for preprocessing. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"preprocessFiles": {
"description": "Files to include to use for preprocessing (overrides 'preprocessExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"resource": {
"description": "Glob pattern to specify files to include as resources. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": ["compiler/resources/**/*", "**/*.resx"]
},
"resourceExclude": {
"description": "Glob pattern to specify files to exclude from the resources list. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"resourceFiles": {
"description": "Files to include as resources (overrides 'resourceExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"shared": {
"description": "Glob pattern to specify files to share with dependent projects. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": "compiler/shared/**/*.cs"
},
"sharedExclude": {
"description": "Glob pattern to specify files to exclude from sharing with dependent projects. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"sharedFiles": {
"description": "Files to include for sharing with dependent projects (overrides 'sharedExclude'). (data type: string or array). Example: [ \"Folder1/File1.ext\", \"Folder2/File2.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"exclude": {
"description": "Glob pattern to indicate files to exclude from other glob patterns, in addition to the default patterns specified in 'excludeBuiltIn'. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
}
},
"excludeBuiltIn": {
"description": "Default glob pattern to indicate files to exclude from other glob patterns. (data type: string or array with glob pattern(s)). Example: [ \"Folder1/*.ext\", \"Folder2/*.ext\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": ["bin/**", "obj/**", "**/*.xproj"]
},
"commands": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"compilationOptions": {
"$ref": "#/definitions/compilationOptions"
},
"configurations": {
"type": "object",
"description": "Configurations are named groups of compilation settings. There are two defaults built into the runtime: 'Debug' and 'Release'.",
"additionalProperties": {
"type": "object",
"properties": {
"compilationOptions": {
"$ref": "#/definitions/compilationOptions"
}
}
}
},
"dependencies": {
"$ref": "#/definitions/dependencies"
},
"copyright": {
"description": "Copyright details for the package.",
"type": "string"
},
"iconUrl": {
"description": "A URL for the image to use as the icon for the package. This should be a 32x32-pixel .png file that has a transparent background.",
"type": "string"
},
"licenseUrl": {
"description": "A link to the license for the package.",
"type": "string"
},
"requireLicenseAcceptance": {
"description": "A Boolean value that specifies whether the client needs to ensure that the package license (described by licenseUrl) is accepted before the package is installed.",
"type": "boolean",
"default": false
},
"owners": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"projectUrl": {
"description": "A URL for the home page of the package.",
"type": "string"
},
"summary": {
"description": "A short description of the package.",
"type": "string"
},
"tags": {
"description": "A space-delimited list of tags and keywords that describe the package.",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"title": {
"description": "The human-friendly title of the package",
"type": "string"
},
"releaseNotes": {
"description": "A description of the changes made in each release of the package.",
"type": "string"
},
"language": {
"description": "The locale ID for the package, such as en-us.",
"type": "string"
},
"description": {
"description": "The description of the project/package.",
"type": "string"
},
"frameworks": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/configType"
}
},
"namedResource": {
"type": "object",
"description": "Overrides the generated resource names with custom ones.",
"additionalProperties": {
"type": "string"
}
},
"repository": {
"type": "object",
"description": "Contains information about the repository where the project is stored.",
"properties": {
"type": {
"type": "string",
"enum": ["git"],
"default": "git"
}
},
"additionalProperties": {
"type": "string"
}
},
"scripts": {
"type": "object",
"description": "Scripts to execute during the various stages.",
"properties": {
"prebuild": {
"$ref": "#/definitions/script"
},
"postbuild": {
"$ref": "#/definitions/script"
},
"prepack": {
"$ref": "#/definitions/script"
},
"postpack": {
"$ref": "#/definitions/script"
},
"prepublish": {
"$ref": "#/definitions/script"
},
"postpublish": {
"$ref": "#/definitions/script"
},
"prerestore": {
"$ref": "#/definitions/script"
},
"postrestore": {
"$ref": "#/definitions/script"
},
"prepare": {
"$ref": "#/definitions/script"
}
}
},
"version": {
"description": "The version of the project/package. Examples: 1.2.3, 1.2.3-beta, 1.2.3-*",
"type": "string"
},
"webroot": {
"description": "Specifies the web server root for the application. In Visual Studio when running IIS this folder will be used as the root of the application. Static files should be put in here.",
"type": "string"
}
},
"title": "JSON schema for DNX project.json files",
"type": "object"
}
| project-1 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"items": {
"properties": {
"item_name": {
"description": "The name of the item",
"type": "string"
},
"price": {
"description": "The price of the item",
"type": "number"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
}
},
"required": [
"item_name",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"items"
],
"type": "object"
} | create_invoice_48e07634 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"label": {
"type": "string"
},
"version": {
"type": "integer",
"default": 1
},
"regions": {
"type": "array",
"items": {
"$ref": "#/definitions/regionName"
}
}
},
"required": [
"name",
"label",
"version",
"regions"
],
"definitions": {
"regionName": {
"type": "string",
"pattern": "^[a-z]+(?:-+[a-z]+)*-v\\d+$"
}
}
} | o83392 |
{
"properties": {
"restreamer": {
"properties": {
"logger_level": {
"default": 3,
"description": "Logger Level",
"type": "integer"
},
"password": {
"default": "datarhei",
"description": "Password",
"type": "string"
},
"snapshot_refresh_interval": {
"default": 60,
"description": "Interval to create a new Snapshot (in seconds)",
"type": "integer"
},
"username": {
"default": "admin",
"description": "Username",
"type": "string"
}
},
"required": [
"username",
"password",
"logger_level",
"snapshot_refresh_interval"
],
"type": "object"
},
"service": {
"properties": {
"bridge": {
"default": false,
"description": "Whether to use BRIDGE networking mode for Docker container. By default, this is false and HOST mode networking is used.",
"type": "boolean"
},
"cpus": {
"default": 1,
"description": "CPU shares to allocate to each Restreamer instance.",
"minimum": 1,
"type": "number"
},
"instances": {
"default": 1,
"description": "Number of instances to run.",
"minimum": 1,
"type": "integer"
},
"maximumOverCapacity": {
"default": 0.2,
"description": "Maximum over capacity.",
"minimum": 0,
"type": "number"
},
"mem": {
"default": 1024.0,
"description": "Memory (MB) to allocate to each Restreamer task.",
"minimum": 256.0,
"type": "number"
},
"minimumHealthCapacity": {
"default": 0.5,
"description": "Minimum health capacity.",
"minimum": 0,
"type": "number"
},
"name": {
"default": "restreamer",
"description": "Name for this Restreamer application",
"type": "string"
},
"role": {
"default": "*",
"description": "Deploy Restreamer only on nodes with this role.",
"type": "string"
}
},
"required": [
"name",
"instances",
"cpus",
"mem"
],
"type": "object"
}
},
"type": "object"
} | o34898 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"properties": {
"input": {
"type": "array",
"properties": {
"format": {
"type": "string"
},
"name": {
"type": "string"
},
"cache": {
"type": "string"
},
"noData": {
"type": "integer"
},
"clip": {
"type": "object",
"properties": {
"xmin": {
"type": "number"
},
"ymin": {
"type": "number"
},
"xmax": {
"type": "number"
},
"ymax": {
"type": "number"
}
},
"required": [
"xmin",
"ymin",
"xmax",
"ymax"
]
},
"backend": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"path": {
"type": "string"
}
},
"required": [
"type",
"path"
]
}
},
"required": [
"format",
"name",
"backend"
],
"additionalProperties": false
},
"output": {
"type": "object",
"properties": {
"breaks": {
"type": "string"
},
"reprojectMethod": {
"type": "string"
},
"cellSize": {
"type": "object",
"properties": {
"width": {
"type": "number"
},
"height": {
"type": "number"
}
},
"required": [
"width",
"height"
]
},
"encoding": {
"type": "string"
},
"tileSize": {
"type": "integer"
},
"layoutExtent": {
"type": "object",
"properties": {
"xmin": {
"type": "number"
},
"ymin": {
"type": "number"
},
"xmax": {
"type": "number"
},
"ymax": {
"type": "number"
}
},
"required": [
"xmin",
"ymin",
"xmax",
"ymax"
]
},
"maxZoom": {
"type": "integer"
},
"resolutionThreshold": {
"type": "number"
},
"pyramid": {
"type": "boolean"
},
"backend": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"path": {
"type": "string"
},
"profile": {
"type": "string"
}
},
"required": [
"type",
"path"
]
},
"resampleMethod": {
"type": "string"
},
"keyIndexMethod": {
"type": "object",
"properties": {
"type": {
"type": "string"
}
},
"required": [
"type"
]
},
"layoutScheme": {
"type": "string"
},
"cellType": {
"type": "string"
},
"partitions": {
"type": "integer"
},
"crs": {
"type": "string"
}
},
"required": [
"backend",
"reprojectMethod",
"tileSize",
"pyramid",
"resampleMethod",
"keyIndexMethod"
],
"additionalProperties": false
},
"validation": {
"type": "object",
"properties": {
"sampleScale": {
"type": "number"
},
"resolutionThreshold": {
"type": "number"
},
"tmpDir": {
"type": "string"
},
"tiffLocal": {
"type": "string"
},
"dateTime": {
"type": "string"
}
},
"required": [
"sampleScale",
"resolutionThreshold",
"tmpDir",
"tiffLocal"
],
"additionalProperties": false
},
"attributes": {
"type": "object",
"properties": {
"tileType": {
"type": "string"
},
"ingestType": {
"type": "string"
}
},
"required": [
"tileType",
"ingestType"
],
"additionalProperties": false
}
},
"required": [
"input",
"output",
"validation",
"attributes"
],
"additionalProperties": false
} | o67456 |
{
"additionalProperties": false,
"description": "Schema for a Mandrill message sent event",
"properties": {
"_id": {
"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"
},
"reject": {
"type": [
"string",
"null"
]
},
"resends": {
"type": "array"
},
"sender": {
"type": "string"
},
"smtp_events": {
"items": {
"additionalProperties": true,
"properties": {
"destination_ip": {
"type": "string"
},
"diag": {
"type": "string"
},
"size": {
"type": "integer"
},
"source_ip": {
"type": "string"
},
"ts": {
"_format": "date-time",
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"state": {
"type": "string"
},
"subaccount": {
"type": [
"string",
"null"
]
},
"subject": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"template": {
"type": [
"string",
"null"
]
},
"ts": {
"_format": "date-time",
"type": "string"
}
},
"type": "object"
},
"ts": {
"_format": "date-time",
"type": "string"
}
},
"self": {
"format": "jsonschema",
"name": "message_sent",
"vendor": "com.mandrill",
"version": "1-0-0"
},
"type": "object"
} | sp_132_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_ServiceReference": {
"description": "ServiceReference holds a reference to Service.legacy.k8s.io",
"properties": {
"name": {
"description": "name is the name of the service. Required",
"type": "string"
},
"namespace": {
"description": "namespace is the namespace of the service. Required",
"type": "string"
},
"path": {
"description": "path is an optional URL path at which the webhook will be contacted.",
"type": "string"
},
"port": {
"_format": "int32",
"description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.",
"type": "integer"
}
},
"required": [
"namespace",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_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_apiextensions-apiserver_pkg_apis_apiextensions_v1_ServiceReference",
"description": "service is a reference to the service for this webhook. Either service or url must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`."
},
"url": {
"description": "url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.",
"type": "string"
}
},
"type": "object"
}
},
"description": "WebhookConversion describes how to call a conversion webhook",
"properties": {
"clientConfig": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig",
"description": "clientConfig is the instructions for how to call the webhook if strategy is `Webhook`."
},
"conversionReviewVersions": {
"description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. 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.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
}
},
"required": [
"conversionReviewVersions"
],
"type": "object"
} | kb_1154_Normalized |
{
"copyright": [
"Copyright 2013 Red Hat, Inc. and/or its affiliates.",
"This file is part of lightblue.",
"This program is free software: you can redistribute it and/or modify",
"it under the terms of the GNU General Public License as published by",
"the Free Software Foundation, either version 3 of the License, or",
"(at your option) any later version.",
"This program is distributed in the hope that it will be useful,",
"but WITHOUT ANY WARRANTY; without even the implied warranty of",
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the",
"GNU General Public License for more details.",
"You should have received a copy of the GNU General Public License",
"along with this program. If not, see <http://www.gnu.org/licenses/>."
],
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": true,
"properties": {
"requests": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true,
"properties": {
"seq": {
"type": "integer",
"description": "Sequence of the request"
},
"op": {
"type": "string",
"description": "one of find, update, insert, delete, save"
},
"request": {
"type": "object",
"description": "one of the request types"
}
}
}
}
}
} | o49496 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"completed": {
"type": "boolean"
},
"award": {
"type": "object",
"additionalProperties": false,
"properties": {
"startDate": {
"OneOf": [
{
"type": "string",
"pattern": "\\d{4}-\\d{2}-\\d{2}"
},
{
"type": "null"
}
]
},
"endDate": {
"OneOf": [
{
"type": "string",
"pattern": "\\d{4}-\\d{2}-\\d{2}"
},
{
"type": "null"
}
]
},
"awardingOrganisationName": {
"OneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"awardValue": {
"OneOf": [
{
"type": "string",
"pattern": "[\\d.]+"
},
{
"type": "null"
}
]
}
}
}
},
"title": "Schema to validate outcome updates",
"type": "object"
} | o21103 |
{
"$id": "https://json.schemastore.org/loobin-1.0.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"definitions": {
"ExampleUseCase": {
"title": "ExampleUseCase",
"description": "Use case base class",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"description": {
"title": "Description",
"type": "string"
},
"code": {
"title": "Code",
"type": "string"
},
"tactics": {
"title": "Tactics",
"type": "array",
"items": {
"enum": [
"Reconnaissance",
"Resource Development",
"Initial Access",
"Execution",
"Persistence",
"Privilege Escalation",
"Defense Evasion",
"Credential Access",
"Discovery",
"Lateral Movement",
"Collection",
"Exfiltration",
"Command and Control",
"Impact"
],
"type": "string"
}
},
"tags": {
"title": "Tags",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": ["name", "description"]
},
"Detection": {
"title": "Detection",
"description": "Detection base class",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": ["name", "url"]
},
"Resource": {
"title": "Resource",
"description": "External reference base class",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": ["name", "url"]
}
},
"description": "LOOBin base class",
"properties": {
"name": {
"title": "Name",
"description": "Name of the LOOBin",
"type": "string"
},
"author": {
"title": "Author",
"description": "Author of the LOOBin",
"type": "string"
},
"short_description": {
"title": "Short Description",
"description": "A short description of the LOOBin.This will display in the LOOBin card list and the LOOBins website search results.",
"type": "string"
},
"full_description": {
"title": "Full Description",
"description": "A full description of the LOOBin.This will display on the LOOBin's single page.",
"type": "string"
},
"created": {
"title": "Created",
"description": "Date the LOOBin was created",
"type": "string",
"format": "date"
},
"example_use_cases": {
"title": "Example Use Cases",
"description": "A list of example use cases for the LOOBin",
"type": "array",
"items": {
"$ref": "#/definitions/ExampleUseCase"
}
},
"paths": {
"title": "Paths",
"description": "A list of paths to the LOOBin",
"type": "array",
"items": {
"type": "string"
}
},
"detections": {
"title": "Detections",
"description": "A list of detections for the LOOBin",
"type": "array",
"items": {
"$ref": "#/definitions/Detection"
}
},
"resources": {
"title": "Resource",
"description": "A list of useful resources for the LOOBin",
"type": "array",
"items": {
"$ref": "#/definitions/Resource"
}
},
"acknowledgements": {
"title": "Acknowledgements",
"description": "Acknowledgements for the LOOBin",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"name",
"author",
"short_description",
"full_description",
"created",
"example_use_cases",
"paths",
"detections"
],
"title": "LOOBin",
"type": "object"
}
| loobin-1 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"config",
"inputs"
],
"type": "object",
"properties": {
"inputs": {
"required": [
"dcm2niix_input"
],
"type": "object",
"properties": {
"dcm2niix_input": {
"type": "object",
"properties": {
"type": {
"enum": [
"dicom",
"parrec"
]
}
}
}
}
},
"config": {
"required": [
"merge2d",
"bids_sidecar",
"text_notes_private",
"crop",
"filename",
"compress_nifti",
"decompress_dicoms"
],
"type": "object",
"properties": {
"merge2d": {
"default": "n",
"type": "string",
"id": "-m"
},
"bids_sidecar": {
"default": "n",
"type": "string",
"id": "-b"
},
"text_notes_private": {
"default": "n",
"type": "string",
"id": "-t"
},
"crop": {
"default": "n",
"type": "string",
"id": "-x"
},
"filename": {
"default": "%f",
"type": "string",
"id": "-f"
},
"compress_nifti": {
"default": "y",
"type": "string",
"id": "-z"
},
"decompress_dicoms": {
"default": false,
"type": "boolean"
}
}
}
},
"title": "Invocation manifest for DCM2NIIX: v1.0.20170130"
} | o41425 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://hepdata.org/bad-submission/schema/data",
"type": "object",
"properties": {
"type": {
"id": "http://jsonschema.net/data_file",
"type": "string"
},
"some_variables": {
"id": "http://hepdata.org/submission/schema/data/independent_variables",
"type": "array",
"items": {
"id": "http://hepdata.org/submission/schema/data/independent_variables/0",
"type": "object",
"properties": {
"header": {
"id": "http://hepdata.org/submission/schema/data/independent_variables/0/header",
"type": "object",
"properties": {
"name": {
"id": "http://hepdata.org/submission/schema/data/independent_variables/0/header/name",
"type": "string"
},
"units": {
"id": "http://hepdata.org/submission/schema/data/independent_variables/0/header/units",
"type": "string"
}
},
"additionalProperties": false,
"required": [
"name"
]
},
"values": {
"id": "http://hepdata.org/submission/schema/data/independent_variables/0/values",
"type": "array",
"items": {
"id": "http://hepdata.org/submission/schema/data/independent_variables/0/values/1",
"type": "object",
"properties": {
"value": {
"id": "http://hepdata.org/submission/schema/data/independent_variables/0/values/1/value",
"type": [
"string",
"number"
]
},
"low": {
"id": "http://hepdata.org/submission/schema/data/independent_variables/0/values/1/value",
"type": "number"
},
"high": {
"id": "http://hepdata.org/submission/schema/data/independent_variables/0/values/1/value",
"type": "number"
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false,
"required": [
"header",
"values"
]
},
"required": [
"0"
]
},
"name": {
"id": "http://hepdata.org/submission/schema/data/name",
"type": "string",
"title": "Name.",
"description": "Used to reference a data record when everything is in the same file.",
"name": "name"
}
},
"additionalProperties": false,
"required": [
"some_variables"
]
} | o6770 |
{
"properties": {
"creators": {
"aliases": [
"c"
],
"default": true,
"description": "Specifies whether to use creator functions for handling actions and reducers.",
"type": "boolean",
"x-prompt": "Do you want to use the create function?"
},
"flat": {
"default": true,
"description": "Flag to indicate if a dir is created.",
"type": "boolean"
},
"group": {
"aliases": [
"g"
],
"default": false,
"description": "Group actions, reducers and effects within relative subfolders",
"type": "boolean"
},
"module": {
"aliases": [
"m"
],
"description": "Specifies the declaring module.",
"type": "string"
},
"name": {
"$default": {
"$source": "argv",
"index": 0
},
"description": "The name of the entity.",
"type": "string",
"x-prompt": "What should be the name of the entity?"
},
"path": {
"description": "The path to create the component.",
"format": "path",
"type": "string",
"visible": false
},
"project": {
"aliases": [
"p"
],
"description": "The name of the project.",
"type": "string"
},
"reducers": {
"aliases": [
"r"
],
"description": "Specifies the reducers file.",
"type": "string"
},
"skipTests": {
"default": false,
"description": "When true, does not create test files.",
"type": "boolean"
}
},
"required": [],
"title": "NgRx Entity Options Schema",
"type": "object"
} | o63323 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerIngress": {
"description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.",
"properties": {
"hostname": {
"description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)",
"type": "string"
},
"ip": {
"description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerStatus": {
"description": "LoadBalancerStatus represents the status of a load-balancer.",
"properties": {
"ingress": {
"description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerIngress"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference": {
"description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.",
"properties": {
"apiGroup": {
"description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.",
"type": "string"
},
"kind": {
"description": "Kind is the type of resource being referenced",
"type": "string"
},
"name": {
"description": "Name is the name of resource being referenced",
"type": "string"
}
},
"required": [
"kind",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_HTTPIngressPath": {
"description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
"properties": {
"backend": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressBackend",
"description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to."
},
"path": {
"description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.",
"type": "string"
},
"pathType": {
"description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types. Defaults to ImplementationSpecific.",
"type": "string"
}
},
"required": [
"backend"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_HTTPIngressRuleValue": {
"description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.",
"properties": {
"paths": {
"description": "A collection of paths that map requests to backends.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_HTTPIngressPath"
},
"type": "array"
}
},
"required": [
"paths"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_Ingress": {
"description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.",
"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": [
"Ingress"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressSpec",
"description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
},
"status": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressStatus",
"description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "networking.k8s.io",
"kind": "Ingress",
"version": "v1beta1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressBackend": {
"description": "IngressBackend describes all endpoints for a given service and port.",
"properties": {
"resource": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference",
"description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified."
},
"serviceName": {
"description": "Specifies the name of the referenced service.",
"type": "string"
},
"servicePort": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Specifies the port of the referenced service."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressRule": {
"description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.",
"properties": {
"host": {
"description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.",
"type": "string"
},
"http": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_HTTPIngressRuleValue"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressSpec": {
"description": "IngressSpec describes the Ingress the user wishes to exist.",
"properties": {
"backend": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressBackend",
"description": "A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default."
},
"ingressClassName": {
"description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.",
"type": "string"
},
"rules": {
"description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressRule"
},
"type": "array"
},
"tls": {
"description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressTLS"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressStatus": {
"description": "IngressStatus describe the current state of the Ingress.",
"properties": {
"loadBalancer": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerStatus",
"description": "LoadBalancer contains the current status of the load-balancer."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressTLS": {
"description": "IngressTLS describes the transport layer security associated with an Ingress.",
"properties": {
"hosts": {
"description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.",
"items": {
"type": "string"
},
"type": "array"
},
"secretName": {
"description": "SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.",
"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_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"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"description": "IngressList is a collection of Ingress.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": [
"string",
"null"
]
},
"items": {
"description": "Items is the list of Ingress.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_Ingress"
},
"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": [
"IngressList"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta",
"description": "Standard object's metadata. 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": "networking.k8s.io",
"kind": "IngressList",
"version": "v1beta1"
}
]
} | kb_450_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"description": "ResourceRequirements describes the compute resource requirements.",
"properties": {
"limits": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": [
"object",
"null"
]
},
"requests": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity"
},
"description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/",
"type": [
"object",
"null"
]
}
},
"type": "object"
} | kb_845_Normalized |
{
"properties": {
"dimensions": {
"properties": {
"height": {
"description": "The height of the package in inches",
"type": "number"
},
"length": {
"description": "The length of the package in inches",
"type": "number"
},
"width": {
"description": "The width of the package in inches",
"type": "number"
}
},
"required": [
"length",
"width",
"height"
],
"type": "object"
},
"weight": {
"description": "The weight of the package in pounds",
"type": "number"
}
},
"required": [
"dimensions",
"weight"
],
"type": "object"
} | calculate_shipping_cost_61565378 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"_elements"
],
"oneOf": [
{
"properties": {
"_attributes": {
"type": "object",
"required": [
"repository_system"
],
"properties": {
"repository_system": {
"enum": [
"zypp"
]
}
}
},
"_elements": {
"type": "array",
"items": {
"type": "object",
"required": [
"alias",
"name",
"url",
"type",
"enabled",
"gpgcheck",
"autorefresh",
"priority"
],
"properties": {
"alias": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"type": {
"enum": [
"yast2",
"rpm-md",
"plaindir",
null
]
},
"url": {
"type": "string",
"_format": "uri",
"minLength": 1
},
"enabled": {
"type": "boolean"
},
"autorefresh": {
"type": "boolean"
},
"gpgcheck": {
"type": "boolean"
},
"priority": {
"type": "integer",
"minimum": 1
}
}
}
}
}
},
{
"properties": {
"_attributes": {
"type": "object",
"required": [
"repository_system"
],
"properties": {
"repository_system": {
"enum": [
"yum"
]
}
}
},
"_elements": {
"type": "array",
"items": {
"type": "object",
"required": [
"alias",
"name",
"url",
"type",
"enabled",
"gpgcheck",
"gpgkey",
"mirrorlist"
],
"properties": {
"alias": {
"type": "string",
"minLength": 1
},
"mirrorlist": {
"type": "string"
},
"name": {
"type": "string",
"minLength": 1
},
"type": {
"enum": [
"rpm-md",
null
]
},
"url": {
"type": "array",
"items": {
"type": "string",
"_format": "url",
"minLength": 1
}
},
"enabled": {
"type": "boolean"
},
"gpgcheck": {
"type": "boolean"
},
"gpgkey": {
"type": "array",
"items": {
"type": "string",
"_format": "url",
"minLength": 1
}
}
}
}
}
}
},
{
"properties": {
"_attributes": {
"type": "object",
"required": [
"repository_system"
],
"properties": {
"repository_system": {
"enum": [
"apt"
]
}
}
},
"_elements": {
"type": "array",
"items": {
"type": "object",
"required": [
"url",
"type",
"distribution",
"components"
],
"properties": {
"distribution": {
"type": "string",
"minLength": 1
},
"type": {
"enum": [
"deb",
"deb-src"
]
},
"url": {
"type": "string",
"_format": "uri",
"minLength": 1
},
"components": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
}
}
}
}
}
}
}
]
}
| o25751 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"name",
"version",
"architecture"
],
"properties": {
"name": {
"type": [
"string",
"null"
],
"minLength": 1
},
"version": {
"type": [
"string",
"null"
],
"minLength": 1
},
"architecture": {
"type": [
"string",
"null"
],
"minLength": 1
}
}
} | o65925 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.EiffelCompositionDefinedEvent",
"extendsJavaClass": "com.ericsson.eiffel.semantics.events.Event",
"properties": {
"meta": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.EiffelCompositionDefinedEventMeta",
"javaInterfaces": [
"com.ericsson.eiffel.semantics.events.Meta"
],
"properties": {
"id": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
},
"type": {
"type": "string",
"enum": [
"EiffelCompositionDefinedEvent"
]
},
"version": {
"type": "string",
"enum": [
"1.1.0"
],
"default": "1.1.0"
},
"time": {
"type": "integer",
"format": "utc-millisec"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"source": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Source",
"properties": {
"domainId": {
"type": "string"
},
"host": {
"type": "string"
},
"name": {
"type": "string"
},
"serializer": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Serializer",
"properties": {
"groupId": {
"type": "string"
},
"artifactId": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"groupId",
"artifactId",
"version"
],
"additionalProperties": false
},
"uri": {
"type": "string"
}
},
"additionalProperties": false
},
"security": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Security",
"properties": {
"sdm": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Sdm",
"properties": {
"authorIdentity": {
"type": "string"
},
"encryptedDigest": {
"type": "string"
}
},
"required": [
"authorIdentity",
"encryptedDigest"
],
"additionalProperties": false
}
},
"additionalProperties": false
}
},
"required": [
"id",
"type",
"version",
"time"
],
"additionalProperties": false
},
"data": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.EiffelCompositionDefinedEventData",
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string"
},
"customData": {
"type": "array",
"items": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.CustomData",
"properties": {
"key": {
"type": "string"
},
"value": {
"anyOf": [
{
"type": "object"
},
{
"type": "string"
},
{
"type": "array"
},
{
"type": "number"
}
]
}
},
"required": [
"key",
"value"
],
"additionalProperties": false
}
}
},
"required": [
"name"
],
"additionalProperties": false
},
"links": {
"type": "array",
"items": {
"type": "object",
"javaType": "com.ericsson.eiffel.semantics.events.Link",
"properties": {
"type": {
"type": "string"
},
"target": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
}
},
"required": [
"type",
"target"
],
"additionalProperties": false
}
}
},
"required": [
"meta",
"data",
"links"
],
"additionalProperties": false
} | o89729 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the shape (for triangle)",
"type": "number"
},
"height": {
"description": "The height of the shape (for triangle)",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape (for circle)",
"type": "number"
},
"width": {
"description": "The width of the shape (for rectangle)",
"type": "number"
}
},
"required": [
"length"
],
"type": "object"
},
"shape": {
"description": "The name of the geometric shape",
"enum": [
"rectangle",
"circle",
"triangle"
],
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_dc592ed1 |
{
"definitions": {
"issue": {
"description": "GitHub issue title and action comments (optional). Title and comments will be based on rule name in case this property is absent.",
"properties": {
"comments": {
"minProperties": 1,
"properties": {
"close": {
"type": "string"
},
"create": {
"type": "string"
},
"reopen": {
"type": "string"
},
"update": {
"type": "string"
}
},
"type": "object"
},
"remind": {
"type": "boolean"
},
"reopen": {
"type": "boolean"
},
"title": {
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}
},
"description": "schema for test case. Failing this schema will cause skipping the test case",
"properties": {
"diag": {
"description": "test diagnostics, includes all information necessary to manage the issue",
"properties": {
"issue": {
"$ref": "#/definitions/issue"
},
"message": {
"description": "not used in GitHub issues",
"type": "string"
},
"messages": {
"description": "these messages will be used as GitHub issue comments",
"items": {
"type": "string"
},
"type": "array"
},
"repo": {
"description": "full repository name, including organisation",
"pattern": "^(?:[A-Za-z0-9]+[-]?)+[A-Za-z0-9]\\/[A-Za-z0-9_-]+$",
"type\"": "string"
},
"rule": {
"description": "rule name",
"pattern": "^[A-Za-z](?:[A-Za-z0-9]+[-]?)+[A-Za-z0-9]$",
"type": "string"
},
"severity": {
"description": "severity can be used as GitHub issue label",
"type": "string"
}
},
"required": [
"repo",
"rule"
],
"type": "object"
},
"id": {
"description": "test sequential number",
"minLength": 1,
"type": "integer"
},
"name": {
"description": "test name, should be unique accross all tests",
"minLength": 1,
"type": "string"
},
"ok": {
"description": "test result",
"type": "boolean"
}
},
"required": [
"ok",
"id",
"name",
"diag"
],
"type": "object"
} | o10314 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.